@aws-sdk/types 3.222.0 → 3.224.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -343,6 +343,13 @@ export interface HandlerExecutionContext {
|
|
|
343
343
|
* Set at the same time as endpointV2.
|
|
344
344
|
*/
|
|
345
345
|
authSchemes?: AuthScheme[];
|
|
346
|
+
/**
|
|
347
|
+
* Used by DynamoDbDocumentClient.
|
|
348
|
+
*/
|
|
349
|
+
dynamoDbDocumentClientOptions?: Partial<{
|
|
350
|
+
overrideInputFilterSensitiveLog(...args: any[]): string | void;
|
|
351
|
+
overrideOutputFilterSensitiveLog(...args: any[]): string | void;
|
|
352
|
+
}>;
|
|
346
353
|
[key: string]: any;
|
|
347
354
|
}
|
|
348
355
|
export interface Pluggable<Input extends object, Output extends object> {
|
|
@@ -202,6 +202,10 @@ export interface HandlerExecutionContext {
|
|
|
202
202
|
userAgent?: UserAgent;
|
|
203
203
|
endpointV2?: EndpointV2;
|
|
204
204
|
authSchemes?: AuthScheme[];
|
|
205
|
+
dynamoDbDocumentClientOptions?: Partial<{
|
|
206
|
+
overrideInputFilterSensitiveLog(...args: any[]): string | void;
|
|
207
|
+
overrideOutputFilterSensitiveLog(...args: any[]): string | void;
|
|
208
|
+
}>;
|
|
205
209
|
[key: string]: any;
|
|
206
210
|
}
|
|
207
211
|
export interface Pluggable<Input extends object, Output extends object> {
|