aws-sdk 2.1360.0 → 2.1362.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.
- package/CHANGELOG.md +19 -1
- package/README.md +1 -1
- package/apis/chime-2018-05-01.min.json +32 -28
- package/apis/chime-sdk-media-pipelines-2021-07-15.min.json +2 -1
- package/apis/chime-sdk-meetings-2021-07-15.min.json +3 -1
- package/apis/comprehend-2017-11-27.min.json +181 -154
- package/apis/guardduty-2017-11-28.min.json +106 -53
- package/apis/iot-2015-05-28.min.json +1 -1
- package/apis/iot-2015-05-28.paginators.json +12 -0
- package/apis/ram-2018-01-04.min.json +396 -66
- package/apis/ram-2018-01-04.paginators.json +10 -0
- package/apis/s3-2006-03-01.examples.json +94 -94
- package/apis/sagemaker-2017-07-24.min.json +710 -703
- package/apis/secretsmanager-2017-10-17.examples.json +32 -0
- package/apis/securityhub-2018-10-26.examples.json +1516 -0
- package/apis/snowball-2016-06-30.min.json +79 -52
- package/apis/wafv2-2019-07-29.min.json +159 -73
- package/clients/chime.d.ts +94 -42
- package/clients/chimesdkmediapipelines.d.ts +14 -10
- package/clients/chimesdkmeetings.d.ts +33 -24
- package/clients/comprehend.d.ts +45 -5
- package/clients/ecs.d.ts +7 -7
- package/clients/gamelift.d.ts +240 -240
- package/clients/guardduty.d.ts +61 -4
- package/clients/iot.d.ts +1 -1
- package/clients/ram.d.ts +538 -91
- package/clients/rds.d.ts +16 -16
- package/clients/s3.d.ts +117 -117
- package/clients/sagemaker.d.ts +53 -39
- package/clients/secretsmanager.d.ts +10 -10
- package/clients/snowball.d.ts +56 -9
- package/clients/wafv2.d.ts +120 -10
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +13 -13
- package/dist/aws-sdk.js +197 -158
- package/dist/aws-sdk.min.js +82 -82
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -335,6 +335,38 @@ | |
| 335 335 | 
             
                    "title": "To store a secret value in a new version of a secret"
         | 
| 336 336 | 
             
                  }
         | 
| 337 337 | 
             
                ],
         | 
| 338 | 
            +
                "ReplicateSecretToRegions": [
         | 
| 339 | 
            +
                  {
         | 
| 340 | 
            +
                    "input": {
         | 
| 341 | 
            +
                      "AddReplicaRegions": [
         | 
| 342 | 
            +
                        {
         | 
| 343 | 
            +
                          "Region": "eu-west-3"
         | 
| 344 | 
            +
                        }
         | 
| 345 | 
            +
                      ],
         | 
| 346 | 
            +
                      "ForceOverwriteReplicaSecret": true,
         | 
| 347 | 
            +
                      "SecretId": "MyTestSecret"
         | 
| 348 | 
            +
                    },
         | 
| 349 | 
            +
                    "output": {
         | 
| 350 | 
            +
                      "ARN": "arn:aws:secretsmanager:us-west-2:123456789012:secret:MyTestSecret-1a2b3c",
         | 
| 351 | 
            +
                      "ReplicationStatus": [
         | 
| 352 | 
            +
                        {
         | 
| 353 | 
            +
                          "KmsKeyId": "alias/aws/secretsmanager",
         | 
| 354 | 
            +
                          "Region": "eu-west-3",
         | 
| 355 | 
            +
                          "Status": "InProgress"
         | 
| 356 | 
            +
                        }
         | 
| 357 | 
            +
                      ]
         | 
| 358 | 
            +
                    },
         | 
| 359 | 
            +
                    "comments": {
         | 
| 360 | 
            +
                      "input": {
         | 
| 361 | 
            +
                      },
         | 
| 362 | 
            +
                      "output": {
         | 
| 363 | 
            +
                      }
         | 
| 364 | 
            +
                    },
         | 
| 365 | 
            +
                    "description": "The following example replicates a secret to eu-west-3. The replica is encrypted with the AWS managed key aws/secretsmanager.",
         | 
| 366 | 
            +
                    "id": "example-1679591984774",
         | 
| 367 | 
            +
                    "title": "Example"
         | 
| 368 | 
            +
                  }
         | 
| 369 | 
            +
                ],
         | 
| 338 370 | 
             
                "RestoreSecret": [
         | 
| 339 371 | 
             
                  {
         | 
| 340 372 | 
             
                    "input": {
         |