@aws-sdk/client-dynamodb
Advanced tools
Comparing version
@@ -6,8 +6,8 @@ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types"; | ||
export interface ClientInputEndpointParameters { | ||
region?: string | Provider<string>; | ||
useDualstackEndpoint?: boolean | Provider<boolean>; | ||
useFipsEndpoint?: boolean | Provider<boolean>; | ||
region?: string | undefined | Provider<string | undefined>; | ||
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>; | ||
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>; | ||
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>; | ||
accountId?: string | Provider<string>; | ||
accountIdEndpointMode?: string | Provider<string>; | ||
accountId?: string | undefined | Provider<string | undefined>; | ||
accountIdEndpointMode?: string | undefined | Provider<string | undefined>; | ||
} | ||
@@ -45,10 +45,10 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & { | ||
export interface EndpointParameters extends __EndpointParameters { | ||
Region?: string; | ||
UseDualStack?: boolean; | ||
UseFIPS?: boolean; | ||
Endpoint?: string; | ||
AccountId?: string; | ||
AccountIdEndpointMode?: string; | ||
ResourceArn?: string; | ||
ResourceArnList?: string[]; | ||
Region?: string | undefined; | ||
UseDualStack?: boolean | undefined; | ||
UseFIPS?: boolean | undefined; | ||
Endpoint?: string | undefined; | ||
AccountId?: string | undefined; | ||
AccountIdEndpointMode?: string | undefined; | ||
ResourceArn?: string | undefined; | ||
ResourceArnList?: string[] | undefined; | ||
} |
@@ -20,4 +20,4 @@ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; | ||
streamCollector: import("@smithy/types").StreamCollector; | ||
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
apiVersion: string; | ||
@@ -55,3 +55,3 @@ cacheMiddleware?: boolean | undefined; | ||
endpointDiscoveryEnabled?: boolean | undefined; | ||
accountId?: string | import("@smithy/types").Provider<string>; | ||
accountId?: string | undefined | import("@smithy/types").Provider<string | undefined>; | ||
}; |
@@ -54,3 +54,3 @@ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; | ||
endpointDiscoveryEnabled?: boolean | undefined; | ||
accountId?: string | import("@smithy/types").Provider<string>; | ||
accountId?: string | undefined | import("@smithy/types").Provider<string | undefined>; | ||
}; |
@@ -20,4 +20,4 @@ import { DynamoDBClientConfig } from "./DynamoDBClient"; | ||
serviceId: string; | ||
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
region: string | import("@smithy/types").Provider<any>; | ||
@@ -54,3 +54,3 @@ profile?: string; | ||
endpointDiscoveryEnabled?: boolean | undefined; | ||
accountId?: string | import("@smithy/types").Provider<string>; | ||
accountId?: string | undefined | import("@smithy/types").Provider<string | undefined>; | ||
}; |
@@ -8,5 +8,5 @@ import { | ||
export interface ClientInputEndpointParameters { | ||
region?: string | Provider<string>; | ||
useDualstackEndpoint?: boolean | Provider<boolean>; | ||
useFipsEndpoint?: boolean | Provider<boolean>; | ||
region?: string | undefined | Provider<string | undefined>; | ||
useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>; | ||
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>; | ||
endpoint?: | ||
@@ -19,4 +19,4 @@ | string | ||
| Provider<EndpointV2>; | ||
accountId?: string | Provider<string>; | ||
accountIdEndpointMode?: string | Provider<string>; | ||
accountId?: string | undefined | Provider<string | undefined>; | ||
accountIdEndpointMode?: string | undefined | Provider<string | undefined>; | ||
} | ||
@@ -56,10 +56,10 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & { | ||
export interface EndpointParameters extends __EndpointParameters { | ||
Region?: string; | ||
UseDualStack?: boolean; | ||
UseFIPS?: boolean; | ||
Endpoint?: string; | ||
AccountId?: string; | ||
AccountIdEndpointMode?: string; | ||
ResourceArn?: string; | ||
ResourceArnList?: string[]; | ||
Region?: string | undefined; | ||
UseDualStack?: boolean | undefined; | ||
UseFIPS?: boolean | undefined; | ||
Endpoint?: string | undefined; | ||
AccountId?: string | undefined; | ||
AccountIdEndpointMode?: string | undefined; | ||
ResourceArn?: string | undefined; | ||
ResourceArnList?: string[] | undefined; | ||
} |
@@ -33,4 +33,6 @@ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler"; | ||
streamCollector: import("@smithy/types").StreamCollector; | ||
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & | ||
(boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & | ||
(boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
apiVersion: string; | ||
@@ -101,3 +103,6 @@ cacheMiddleware?: boolean | undefined; | ||
endpointDiscoveryEnabled?: boolean | undefined; | ||
accountId?: string | import("@smithy/types").Provider<string>; | ||
accountId?: | ||
| string | ||
| undefined | ||
| import("@smithy/types").Provider<string | undefined>; | ||
}; |
@@ -101,3 +101,6 @@ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler"; | ||
endpointDiscoveryEnabled?: boolean | undefined; | ||
accountId?: string | import("@smithy/types").Provider<string>; | ||
accountId?: | ||
| string | ||
| undefined | ||
| import("@smithy/types").Provider<string | undefined>; | ||
}; |
@@ -22,4 +22,6 @@ import { DynamoDBClientConfig } from "./DynamoDBClient"; | ||
serviceId: string; | ||
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>; | ||
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & | ||
(boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & | ||
(boolean | import("@smithy/types").Provider<boolean | undefined>); | ||
region: string | import("@smithy/types").Provider<any>; | ||
@@ -105,3 +107,6 @@ profile?: string; | ||
endpointDiscoveryEnabled?: boolean | undefined; | ||
accountId?: string | import("@smithy/types").Provider<string>; | ||
accountId?: | ||
| string | ||
| undefined | ||
| import("@smithy/types").Provider<string | undefined>; | ||
}; |
{ | ||
"name": "@aws-sdk/client-dynamodb", | ||
"description": "AWS SDK for JavaScript Dynamodb Client for Node.js, Browser and React Native", | ||
"version": "3.828.0", | ||
"version": "3.830.0", | ||
"scripts": { | ||
@@ -24,3 +24,3 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", | ||
"@aws-sdk/core": "3.826.0", | ||
"@aws-sdk/credential-provider-node": "3.828.0", | ||
"@aws-sdk/credential-provider-node": "3.830.0", | ||
"@aws-sdk/middleware-endpoint-discovery": "3.821.0", | ||
@@ -27,0 +27,0 @@ "@aws-sdk/middleware-host-header": "3.821.0", |
1946429
0.06%44037
0.03%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed