You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/utilities/idempotency.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -753,9 +753,9 @@ This means that we will raise **`IdempotencyKeyError`** if the evaluation of **`
753
753
}
754
754
```
755
755
756
-
### Customizing boto configuration
756
+
### Customizing AWS SDK configuration
757
757
758
-
The **`clientConfig`** and **`awsSdkV3Client`** parameters enable you to pass in custom configurations or your own [DynamoDBClient](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-dynamodb/classes/dynamodbclient.html){target="_blank"} when constructing the persistence store.
758
+
The **`clientConfig`** and **`awsSdkV3Client`** parameters enable you to pass in custom configurations or your own [DynamoDBClient](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/dynamodb/){target="_blank"} when constructing the persistence store.
Copy file name to clipboardExpand all lines: docs/utilities/parameters.md
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ The Parameters Utility helps to retrieve parameters from the System Manager Para
19
19
### Installation
20
20
21
21
???+ note
22
-
This utility supports **[AWS SDK for JavaScript v3](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/) only**. This allows the utility to be modular, and you to install only the SDK packages you need and keep your bundle size small.
22
+
This utility supports **[AWS SDK for JavaScript v3](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/){target="_blank"} only**. This allows the utility to be modular, and you to install only the SDK packages you need and keep your bundle size small.
23
23
24
24
Depending on the provider you want to use, install the library and the corresponding AWS SDK package:
25
25
@@ -367,18 +367,18 @@ You can use a special `sdkOptions` object argument to pass any supported option
367
367
368
368
Here is the mapping between this utility's functions and methods and the underlying SDK:
369
369
370
-
| Provider | Function/Method | Client name | Function name |
| SSM Parameter Store |`getParameter`|`@aws-sdk/client-ssm`|[GetParameterCommand](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ssm/classes/getparametercommand.html)|
373
-
| SSM Parameter Store |`getParameters`|`@aws-sdk/client-ssm`|[GetParametersByPathCommand](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ssm/classes/getparametersbypathcommand.html)|
374
-
| SSM Parameter Store |`SSMProvider.get`|`@aws-sdk/client-ssm`|[GetParameterCommand](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ssm/classes/getparametercommand.html)|
375
-
| SSM Parameter Store |`SSMProvider.getMultiple`|`@aws-sdk/client-ssm`|[GetParametersByPathCommand](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ssm/classes/getparametersbypathcommand.html)|
0 commit comments