@smithy/types
Advanced tools
| /** | ||
| * @internal | ||
| */ | ||
| export interface EndpointParameterInstructions { | ||
| [name: string]: BuiltInParamInstruction | ClientContextParamInstruction | StaticContextParamInstruction | ContextParamInstruction | OperationContextParamInstruction; | ||
| } | ||
| /** | ||
| * @internal | ||
| */ | ||
| export interface BuiltInParamInstruction { | ||
| type: "builtInParams"; | ||
| name: string; | ||
| } | ||
| /** | ||
| * @internal | ||
| */ | ||
| export interface ClientContextParamInstruction { | ||
| type: "clientContextParams"; | ||
| name: string; | ||
| } | ||
| /** | ||
| * @internal | ||
| */ | ||
| export interface StaticContextParamInstruction { | ||
| type: "staticContextParams"; | ||
| value: string | boolean; | ||
| } | ||
| /** | ||
| * @internal | ||
| */ | ||
| export interface ContextParamInstruction { | ||
| type: "contextParams"; | ||
| name: string; | ||
| } | ||
| /** | ||
| * @internal | ||
| */ | ||
| export interface OperationContextParamInstruction { | ||
| type: "operationContextParams"; | ||
| get(input: any): any; | ||
| } |
@@ -12,2 +12,3 @@ export * from "./abort"; | ||
| export * from "./endpoints"; | ||
| export type { EndpointParameterInstructions, BuiltInParamInstruction, ClientContextParamInstruction, StaticContextParamInstruction, ContextParamInstruction, OperationContextParamInstruction, } from "./endpoints/EndpointParameterInstructions"; | ||
| export * from "./eventStream"; | ||
@@ -14,0 +15,0 @@ export * from "./extensions"; |
+1
-1
| { | ||
| "name": "@smithy/types", | ||
| "version": "4.15.0", | ||
| "version": "4.15.1", | ||
| "scripts": { | ||
@@ -5,0 +5,0 @@ "build": "concurrently 'yarn:build:types' 'yarn:build:es:cjs'", |
153790
0.73%148
1.37%4254
1.02%