File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ export const handler = async (_event, _context): Promise<void> => {
295
295
}
296
296
297
297
try {
298
- // This will throw a TransformParameterError error
298
+ // This will throw a TransformParameterError
299
299
const values = parameters .getMultiple (' /param' , { transform: ' json' , throwOnTransformError: true });
300
300
} catch (err ) {
301
301
// ...
@@ -376,12 +376,12 @@ Here is the mapping between this utility's functions and methods and the underly
376
376
377
377
You can use ` awsSdkV3Client ` parameter via any of the available [Provider Classes](#built-in-provider-class).
378
378
379
- | Provider | Client |
380
- | --------------------------------------- | ------------------------------- |
381
- | [SSMProvider](#ssmprovider) | ` new boto3 . client ( " ssm " ) ` |
382
- | [SecretsProvider](#secretsprovider) | ` new boto3 . client ( " secrets " ) ` |
383
- | [AppConfigProvider](#appconfigprovider) | ` new boto3 . client ( " appconfig " ) ` |
384
- | [DynamoDBProvider](#dynamodbprovider) | ` new DynamoDBClient ();` |
379
+ | Provider | Client |
380
+ | --------------------------------------- | ----------------------------- |
381
+ | [SSMProvider](#ssmprovider) | ` new SSMClient (); ` |
382
+ | [SecretsProvider](#secretsprovider) | ` new SecretsManagerClient (); ` |
383
+ | [AppConfigProvider](#appconfigprovider) | ` new AppConfigDataClient (); ` |
384
+ | [DynamoDBProvider](#dynamodbprovider) | ` new DynamoDBClient ();` |
385
385
386
386
Bringing them together in a single code snippet would look like this:
387
387
You can’t perform that action at this time.
0 commit comments