aws-sdk 2.1366.0 → 2.1367.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 +12 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +936 -921
- package/apis/emr-containers-2020-10-01.min.json +52 -0
- package/apis/guardduty-2017-11-28.min.json +100 -69
- package/apis/iotdeviceadvisor-2020-09-18.min.json +13 -4
- package/apis/kafka-2018-11-14.min.json +570 -89
- package/apis/kafka-2018-11-14.paginators.json +12 -0
- package/apis/marketplace-catalog-2018-09-17.paginators.json +4 -2
- package/clients/ec2.d.ts +75 -52
- package/clients/emrcontainers.d.ts +61 -0
- package/clients/guardduty.d.ts +32 -2
- package/clients/iotdeviceadvisor.d.ts +16 -3
- package/clients/kafka.d.ts +634 -0
- package/clients/lambda.d.ts +1 -1
- package/clients/osis.d.ts +26 -26
- package/clients/qldb.d.ts +27 -27
- package/clients/sagemaker.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -10
- package/dist/aws-sdk.js +946 -928
- package/dist/aws-sdk.min.js +72 -72
- package/lib/core.js +1 -1
- package/lib/services/sqs.js +3 -2
- package/package.json +1 -1
| @@ -47,6 +47,18 @@ | |
| 47 47 | 
             
                  "output_token": "NextToken",
         | 
| 48 48 | 
             
                  "limit_key": "MaxResults",
         | 
| 49 49 | 
             
                  "result_key": "SecretArnList"
         | 
| 50 | 
            +
                },
         | 
| 51 | 
            +
                "ListVpcConnections": {
         | 
| 52 | 
            +
                  "input_token": "NextToken",
         | 
| 53 | 
            +
                  "output_token": "NextToken",
         | 
| 54 | 
            +
                  "limit_key": "MaxResults",
         | 
| 55 | 
            +
                  "result_key": "VpcConnections"
         | 
| 56 | 
            +
                },
         | 
| 57 | 
            +
                "ListClientVpcConnections": {
         | 
| 58 | 
            +
                  "input_token": "NextToken",
         | 
| 59 | 
            +
                  "output_token": "NextToken",
         | 
| 60 | 
            +
                  "limit_key": "MaxResults",
         | 
| 61 | 
            +
                  "result_key": "ClientVpcConnections"
         | 
| 50 62 | 
             
                }
         | 
| 51 63 | 
             
              }
         | 
| 52 64 | 
             
            }
         | 
| @@ -3,12 +3,14 @@ | |
| 3 3 | 
             
                "ListChangeSets": {
         | 
| 4 4 | 
             
                  "input_token": "NextToken",
         | 
| 5 5 | 
             
                  "output_token": "NextToken",
         | 
| 6 | 
            -
                  "limit_key": "MaxResults"
         | 
| 6 | 
            +
                  "limit_key": "MaxResults",
         | 
| 7 | 
            +
                  "result_key": "ChangeSetSummaryList"
         | 
| 7 8 | 
             
                },
         | 
| 8 9 | 
             
                "ListEntities": {
         | 
| 9 10 | 
             
                  "input_token": "NextToken",
         | 
| 10 11 | 
             
                  "output_token": "NextToken",
         | 
| 11 | 
            -
                  "limit_key": "MaxResults"
         | 
| 12 | 
            +
                  "limit_key": "MaxResults",
         | 
| 13 | 
            +
                  "result_key": "EntitySummaryList"
         | 
| 12 14 | 
             
                }
         | 
| 13 15 | 
             
              }
         | 
| 14 16 | 
             
            }
         |