aws-sdk 2.1657.0 → 2.1658.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/README.md +1 -1
- package/apis/batch-2016-08-10.min.json +62 -52
- package/apis/bedrock-2023-04-20.min.json +140 -86
- package/apis/bedrock-agent-2023-06-05.min.json +1991 -171
- package/apis/bedrock-agent-2023-06-05.paginators.json +24 -0
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +642 -216
- package/apis/bedrock-agent-runtime-2023-07-26.paginators.json +6 -0
- package/apis/bedrock-runtime-2023-09-30.min.json +329 -192
- package/apis/ec2-2016-11-15.min.json +79 -67
- package/apis/glue-2017-03-31.min.json +407 -368
- package/apis/groundstation-2019-05-23.min.json +7 -1
- package/apis/license-manager-linux-subscriptions-2018-05-10.min.json +236 -16
- package/apis/license-manager-linux-subscriptions-2018-05-10.paginators.json +6 -0
- package/apis/mediaconnect-2018-11-14.min.json +106 -94
- package/clients/batch.d.ts +12 -0
- package/clients/bedrock.d.ts +63 -14
- package/clients/bedrockagent.d.ts +2172 -171
- package/clients/bedrockagentruntime.d.ts +396 -11
- package/clients/bedrockruntime.d.ts +149 -6
- package/clients/ec2.d.ts +28 -3
- package/clients/glue.d.ts +48 -1
- package/clients/licensemanagerlinuxsubscriptions.d.ts +249 -10
- package/clients/mediaconnect.d.ts +13 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +82 -70
- package/dist/aws-sdk.min.js +76 -76
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -36,6 +36,24 @@ | |
| 36 36 | 
             
                  "limit_key": "maxResults",
         | 
| 37 37 | 
             
                  "result_key": "dataSourceSummaries"
         | 
| 38 38 | 
             
                },
         | 
| 39 | 
            +
                "ListFlowAliases": {
         | 
| 40 | 
            +
                  "input_token": "nextToken",
         | 
| 41 | 
            +
                  "output_token": "nextToken",
         | 
| 42 | 
            +
                  "limit_key": "maxResults",
         | 
| 43 | 
            +
                  "result_key": "flowAliasSummaries"
         | 
| 44 | 
            +
                },
         | 
| 45 | 
            +
                "ListFlowVersions": {
         | 
| 46 | 
            +
                  "input_token": "nextToken",
         | 
| 47 | 
            +
                  "output_token": "nextToken",
         | 
| 48 | 
            +
                  "limit_key": "maxResults",
         | 
| 49 | 
            +
                  "result_key": "flowVersionSummaries"
         | 
| 50 | 
            +
                },
         | 
| 51 | 
            +
                "ListFlows": {
         | 
| 52 | 
            +
                  "input_token": "nextToken",
         | 
| 53 | 
            +
                  "output_token": "nextToken",
         | 
| 54 | 
            +
                  "limit_key": "maxResults",
         | 
| 55 | 
            +
                  "result_key": "flowSummaries"
         | 
| 56 | 
            +
                },
         | 
| 39 57 | 
             
                "ListIngestionJobs": {
         | 
| 40 58 | 
             
                  "input_token": "nextToken",
         | 
| 41 59 | 
             
                  "output_token": "nextToken",
         | 
| @@ -47,6 +65,12 @@ | |
| 47 65 | 
             
                  "output_token": "nextToken",
         | 
| 48 66 | 
             
                  "limit_key": "maxResults",
         | 
| 49 67 | 
             
                  "result_key": "knowledgeBaseSummaries"
         | 
| 68 | 
            +
                },
         | 
| 69 | 
            +
                "ListPrompts": {
         | 
| 70 | 
            +
                  "input_token": "nextToken",
         | 
| 71 | 
            +
                  "output_token": "nextToken",
         | 
| 72 | 
            +
                  "limit_key": "maxResults",
         | 
| 73 | 
            +
                  "result_key": "promptSummaries"
         | 
| 50 74 | 
             
                }
         | 
| 51 75 | 
             
              }
         | 
| 52 76 | 
             
            }
         |