serverless-spy 0.0.36 → 0.0.38
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/.jsii +61 -22
- package/API.md +15 -1
- package/cli/cli.ts +145 -75
- package/cli/icons/Arch_AWS-Lambda_16.svg +18 -0
- package/cli/icons/Arch_Amazon-DynamoDB_16.svg +18 -0
- package/cli/icons/Arch_Amazon-EventBridge_16.svg +18 -0
- package/cli/icons/Arch_Amazon-Simple-Notification-Service_16.svg +18 -0
- package/cli/icons/Arch_Amazon-Simple-Queue-Service_16.svg +18 -0
- package/cli/icons/Arch_Amazon-Simple-Storage-Service_16.svg +18 -0
- package/cli/index.html +84 -25
- package/cli/node_modules/commander/LICENSE +22 -0
- package/cli/node_modules/commander/Readme.md +1114 -0
- package/cli/node_modules/commander/esm.mjs +16 -0
- package/cli/node_modules/commander/index.js +27 -0
- package/cli/node_modules/commander/lib/argument.js +147 -0
- package/cli/node_modules/commander/lib/command.js +2161 -0
- package/cli/node_modules/commander/lib/error.js +45 -0
- package/cli/node_modules/commander/lib/help.js +406 -0
- package/cli/node_modules/commander/lib/option.js +324 -0
- package/cli/node_modules/commander/lib/suggestSimilar.js +100 -0
- package/cli/node_modules/commander/package-support.json +16 -0
- package/cli/node_modules/commander/package.json +80 -0
- package/cli/node_modules/commander/typings/index.d.ts +879 -0
- package/cli/package.json +23 -0
- package/cli/sampleData.ts +518 -0
- package/cli/style.css +66 -42
- package/cli/webServerlessSpy.ts +461 -0
- package/common/SpyEventSender.ts +291 -0
- package/common/getWebSocketUrl.ts +21 -4
- package/common/spyEvents/EventBridgeBaseSpyEvent.ts +13 -0
- package/common/spyEvents/EventBridgeRuleSpyEvent.ts +2 -7
- package/common/spyEvents/EventBridgeSpyEvent.ts +2 -7
- package/common/spyEvents/FunctionBaseSpyEvent.ts +7 -0
- package/common/spyEvents/FunctionConsole.ts +5 -0
- package/common/spyEvents/FunctionConsoleSpyEvent.ts +5 -8
- package/common/spyEvents/FunctionResponseSpyEvent.ts +2 -5
- package/common/spyEvents/SnsSpyEventBase.ts +11 -0
- package/common/spyEvents/SnsSubscriptionSpyEvent.ts +3 -9
- package/common/spyEvents/SnsTopicSpyEvent.ts +3 -9
- package/dist/releasetag.txt +1 -1
- package/extension/interceptor.ts +91 -14
- package/functions/sendMessage.ts +4 -2
- package/lib/cli/cli.js +124 -65
- package/lib/cli/cli.mjs +125 -66
- package/lib/cli/sampleData.d.ts +892 -0
- package/lib/cli/sampleData.js +481 -0
- package/lib/cli/sampleData.mjs +478 -0
- package/lib/cli/webServerlessSpy.js +5516 -0
- package/lib/cli/webServerlessSpy.js.map +7 -0
- package/lib/common/SpyEventSender.d.ts +17 -0
- package/lib/common/SpyEventSender.js +227 -0
- package/lib/common/SpyEventSender.mjs +223 -0
- package/lib/common/getWebSocketUrl.d.ts +1 -1
- package/lib/common/getWebSocketUrl.js +19 -7
- package/lib/common/getWebSocketUrl.mjs +17 -5
- package/lib/common/spyEvents/EventBridgeBaseSpyEvent.d.ts +9 -0
- package/lib/common/spyEvents/EventBridgeBaseSpyEvent.js +3 -0
- package/lib/common/spyEvents/EventBridgeBaseSpyEvent.mjs +2 -0
- package/lib/common/spyEvents/EventBridgeRuleSpyEvent.d.ts +2 -7
- package/lib/common/spyEvents/EventBridgeRuleSpyEvent.js +1 -1
- package/lib/common/spyEvents/EventBridgeRuleSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/EventBridgeSpyEvent.d.ts +2 -7
- package/lib/common/spyEvents/EventBridgeSpyEvent.js +1 -1
- package/lib/common/spyEvents/EventBridgeSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/FunctionBaseSpyEvent.d.ts +6 -0
- package/lib/common/spyEvents/FunctionBaseSpyEvent.js +3 -0
- package/lib/common/spyEvents/FunctionBaseSpyEvent.mjs +2 -0
- package/lib/common/spyEvents/FunctionConsole.d.ts +5 -0
- package/lib/common/spyEvents/FunctionConsole.js +3 -0
- package/lib/common/spyEvents/FunctionConsole.mjs +2 -0
- package/lib/common/spyEvents/FunctionConsoleSpyEvent.d.ts +4 -8
- package/lib/common/spyEvents/FunctionConsoleSpyEvent.js +1 -1
- package/lib/common/spyEvents/FunctionConsoleSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/FunctionResponseSpyEvent.d.ts +2 -5
- package/lib/common/spyEvents/FunctionResponseSpyEvent.js +1 -1
- package/lib/common/spyEvents/FunctionResponseSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/SnsSpyEventBase.d.ts +10 -0
- package/lib/common/spyEvents/SnsSpyEventBase.js +3 -0
- package/lib/common/spyEvents/SnsSpyEventBase.mjs +2 -0
- package/lib/common/spyEvents/SnsSubscriptionSpyEvent.d.ts +2 -9
- package/lib/common/spyEvents/SnsSubscriptionSpyEvent.js +1 -1
- package/lib/common/spyEvents/SnsSubscriptionSpyEvent.mjs +1 -1
- package/lib/common/spyEvents/SnsTopicSpyEvent.d.ts +2 -9
- package/lib/common/spyEvents/SnsTopicSpyEvent.js +1 -1
- package/lib/common/spyEvents/SnsTopicSpyEvent.mjs +1 -1
- package/lib/extension/dist/layer/nodejs/node_modules/interceptor.js +1272 -581
- package/lib/extension/dist/layer/nodejs/node_modules/interceptor.js.map +4 -4
- package/lib/listener/SpyHandlers.ts.d.ts +30 -2
- package/lib/listener/SpyHandlers.ts.js +1 -1
- package/lib/listener/SpyHandlers.ts.mjs +1 -1
- package/lib/listener/WsListener.js +11 -11
- package/lib/listener/WsListener.mjs +12 -12
- package/lib/src/ServerlessSpy.js +2 -3
- package/lib/src/ServerlessSpy.mjs +1 -2
- package/listener/SpyHandlers.ts.ts +70 -9
- package/listener/WsListener.ts +21 -18
- package/node_modules/@aws-crypto/ie11-detection/CHANGELOG.md +8 -0
- package/node_modules/@aws-crypto/ie11-detection/build/index.js +5 -5
- package/node_modules/@aws-crypto/ie11-detection/build/index.js.map +1 -1
- package/node_modules/@aws-crypto/ie11-detection/package.json +3 -2
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +8 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/index.js +2 -2
- package/node_modules/@aws-crypto/supports-web-crypto/build/supportsWebCrypto.js +2 -2
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +3 -2
- package/node_modules/@aws-crypto/util/CHANGELOG.md +12 -0
- package/node_modules/@aws-crypto/util/README.md +5 -5
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js +1 -1
- package/node_modules/@aws-crypto/util/build/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/index.js +1 -1
- package/node_modules/@aws-crypto/util/build/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/isEmptyData.js +1 -1
- package/node_modules/@aws-crypto/util/build/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/numToUint8.js +1 -1
- package/node_modules/@aws-crypto/util/build/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js +1 -1
- package/node_modules/@aws-crypto/util/build/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/package.json +4 -3
- package/node_modules/@aws-sdk/abort-controller/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -6
- package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +8 -10
- package/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/abort-controller/package.json +4 -3
- package/node_modules/@aws-sdk/chunked-blob-reader/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/chunked-blob-reader/dist-types/ts3.4/index.d.ts +5 -1
- package/node_modules/@aws-sdk/chunked-blob-reader/package.json +3 -2
- package/node_modules/@aws-sdk/chunked-blob-reader-native/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/chunked-blob-reader-native/dist-types/ts3.4/index.d.ts +5 -1
- package/node_modules/@aws-sdk/chunked-blob-reader-native/package.json +4 -3
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-es/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/ApiGatewayManagementApi.d.ts +55 -20
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/ApiGatewayManagementApiClient.d.ts +123 -76
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/PostToConnectionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/commands/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/ApiGatewayManagementApiServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/models/models_0.d.ts +59 -66
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +41 -11
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.browser.d.ts +69 -38
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.d.ts +69 -38
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.native.d.ts +70 -37
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/node_modules/@aws-sdk/client-apigatewaymanagementapi/package.json +35 -34
- package/node_modules/@aws-sdk/client-cognito-identity/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-es/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentity.d.ts +398 -120
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/CognitoIdentityClient.d.ts +240 -96
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/CreateIdentityPoolCommand.d.ts +33 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentitiesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DeleteIdentityPoolCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/DescribeIdentityPoolCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetCredentialsForIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetIdentityPoolRolesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetOpenIdTokenForDeveloperIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/GetPrincipalTagAttributeMapCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListIdentityPoolsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/LookupDeveloperIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/MergeDeveloperIdentitiesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetIdentityPoolRolesCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/SetPrincipalTagAttributeMapCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkDeveloperIdentityCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UnlinkIdentityCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/UpdateIdentityPoolCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/CognitoIdentityServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/models/models_0.d.ts +449 -567
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/ListIdentityPoolsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.browser.d.ts +69 -38
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.d.ts +69 -38
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.native.d.ts +70 -37
- package/node_modules/@aws-sdk/client-cognito-identity/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
- package/node_modules/@aws-sdk/client-cognito-identity/package.json +36 -35
- package/node_modules/@aws-sdk/client-dynamodb/CHANGELOG.md +102 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/protocols/Aws_json1_0.js +3 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/protocols/Aws_json1_0.js +3 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +2 -2
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +3 -3
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +917 -270
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +423 -129
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +53 -53
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +2256 -2833
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -4
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +638 -161
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +72 -41
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +72 -41
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +73 -40
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -7
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/CHANGELOG.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/CONTRIBUTING.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/LICENSE.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/README.md +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/bin/uuid +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/index.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/md5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/nil.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/parse.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/regex.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/rng.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/sha1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/stringify.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v3.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v35.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v4.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/v5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/validate.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-browser/version.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/index.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/md5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/nil.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/parse.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/regex.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/rng.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/sha1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/stringify.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v3.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v35.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v4.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/v5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/validate.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/esm-node/version.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/index.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/md5-browser.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/md5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/nil.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/parse.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/regex.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/rng-browser.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/rng.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/sha1-browser.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/sha1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/stringify.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuid.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidNIL.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidParse.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidStringify.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidValidate.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidVersion.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv1.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv3.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv4.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/umd/uuidv5.min.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/uuid-bin.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v1.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v3.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v35.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v4.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/v5.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/validate.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/dist/version.js +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/package.json +0 -0
- package/node_modules/{uuid → @aws-sdk/client-dynamodb/node_modules/uuid}/wrapper.mjs +0 -0
- package/node_modules/@aws-sdk/client-dynamodb/package.json +37 -36
- package/node_modules/@aws-sdk/client-eventbridge/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-es/protocols/Aws_json1_1.js +3 -0
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/EventBridge.d.ts +956 -285
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/EventBridgeClient.d.ts +440 -129
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ActivateEventSourceCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CancelReplayCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreateEventBusCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/CreatePartnerEventSourceCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeactivateEventSourceCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeauthorizeConnectionCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteEventBusCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeletePartnerEventSourceCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeConnectionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEventBusCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeEventSourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribePartnerEventSourceCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeReplayCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DescribeRuleCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/DisableRuleCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/EnableRuleCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListApiDestinationsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListArchivesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEventBusesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListEventSourcesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListPartnerEventSourceAccountsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListPartnerEventSourcesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListReplaysCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListRuleNamesByTargetCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListRulesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/ListTargetsByRuleCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutEventsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutPartnerEventsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutRuleCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/PutTargetsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/RemoveTargetsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/StartReplayCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/TestEventPatternCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateApiDestinationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateArchiveCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/commands/index.d.ts +56 -56
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/EventBridgeServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/models/models_0.d.ts +1543 -2033
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +677 -170
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-eventbridge/dist-types/ts3.4/runtimeConfig.shared.d.ts +17 -13
- package/node_modules/@aws-sdk/client-eventbridge/package.json +37 -36
- package/node_modules/@aws-sdk/client-lambda/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +1087 -320
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +482 -136
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +39 -24
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/index.d.ts +63 -63
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/LambdaServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +1639 -2086
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionUrlConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/index.d.ts +12 -12
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +761 -191
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/index.d.ts +5 -5
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +11 -7
- package/node_modules/@aws-sdk/client-lambda/package.json +36 -35
- package/node_modules/@aws-sdk/client-s3/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoints.js +9 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoints.js +9 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +1645 -470
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +684 -184
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +39 -24
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +39 -24
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +41 -24
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +93 -93
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2578 -3419
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +482 -689
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectsV2Paginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +1124 -281
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +84 -49
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +87 -50
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +85 -48
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/index.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/package.json +52 -51
- package/node_modules/@aws-sdk/client-sns/CHANGELOG.md +105 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/SNS.js +30 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/GetDataProtectionPolicyCommand.js +36 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/PutDataProtectionPolicyCommand.js +36 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/models_0.js +14 -2
- package/node_modules/@aws-sdk/client-sns/dist-cjs/protocols/Aws_query.js +152 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/SNS.js +30 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetDataProtectionPolicyCommand.js +39 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PutDataProtectionPolicyCommand.js +39 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/models/models_0.js +3 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/protocols/Aws_query.js +199 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/SNS.d.ts +14 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/SNSClient.d.ts +4 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/models/models_0.d.ts +47 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/protocols/Aws_query.d.ts +6 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNS.d.ts +724 -205
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/SNSClient.d.ts +355 -113
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +35 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +34 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SubscribeCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/index.d.ts +42 -40
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/SNSServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/models/models_0.d.ts +815 -940
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListEndpointsByPlatformApplicationPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListOriginationNumbersPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListPhoneNumbersOptedOutPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListPlatformApplicationsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSMSSandboxPhoneNumbersPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSubscriptionsByTopicPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListSubscriptionsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/ListTopicsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/protocols/Aws_query.d.ts +509 -122
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sns/package.json +35 -34
- package/node_modules/@aws-sdk/client-sqs/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQS.d.ts +344 -105
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/SQSClient.d.ts +224 -95
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +31 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/TagQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/index.d.ts +20 -20
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/SQSServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/models/models_0.d.ts +452 -545
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/ListDeadLetterSourceQueuesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/ListQueuesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/protocols/Aws_query.d.ts +245 -62
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -39
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +69 -40
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -38
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sqs/package.json +37 -36
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/README.md +505 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/package.json +135 -0
- package/node_modules/@aws-sdk/client-ssm/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@aws-sdk/client-sso/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/client-sso/README.md +8 -8
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +8 -8
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +7 -7
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +17 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +72 -25
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +119 -74
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +30 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +101 -123
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -14
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +45 -31
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +45 -31
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +46 -30
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sso/package.json +32 -31
- package/node_modules/@aws-sdk/client-sts/CHANGELOG.md +96 -0
- package/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +15 -2
- package/node_modules/@aws-sdk/client-sts/dist-cjs/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +32 -5
- package/node_modules/@aws-sdk/client-sts/dist-es/endpoints.js +1 -0
- package/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +4 -3
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +140 -45
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +151 -81
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +32 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +39 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +36 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +35 -17
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +22 -8
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +25 -16
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/STSServiceException.d.ts +7 -6
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +238 -302
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -26
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/node_modules/@aws-sdk/client-sts/package.json +38 -35
- package/node_modules/@aws-sdk/config-resolver/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +2 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -4
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +18 -15
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +27 -25
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +13 -11
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +8 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -2
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +14 -17
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +5 -6
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +1 -2
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -8
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -7
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +9 -6
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +20 -11
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +8 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +8 -5
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +13 -6
- package/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -3
- package/node_modules/@aws-sdk/config-resolver/package.json +8 -7
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/CHANGELOG.md +88 -0
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/CognitoProviderParameters.d.ts +7 -10
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/InMemoryStorage.d.ts +8 -8
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/IndexedDbStorage.d.ts +10 -10
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Logins.d.ts +3 -3
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/Storage.d.ts +5 -6
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentity.d.ts +14 -13
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/fromCognitoIdentityPool.d.ts +19 -15
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/localStorage.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/dist-types/ts3.4/resolveLogins.d.ts +2 -3
- package/node_modules/@aws-sdk/credential-provider-cognito-identity/package.json +6 -5
- package/node_modules/@aws-sdk/credential-provider-env/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +6 -7
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -4
- package/node_modules/@aws-sdk/credential-provider-imds/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +6 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +8 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +9 -7
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +6 -5
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +11 -9
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +14 -13
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +7 -5
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/types.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +2 -3
- package/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +8 -6
- package/node_modules/@aws-sdk/credential-provider-imds/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-ini/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +15 -14
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +16 -17
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +5 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +8 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +5 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +12 -8
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -9
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +10 -9
- package/node_modules/@aws-sdk/credential-provider-node/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +14 -9
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +6 -4
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -11
- package/node_modules/@aws-sdk/credential-provider-process/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +6 -3
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +5 -2
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -5
- package/node_modules/@aws-sdk/credential-provider-sso/CHANGELOG.md +80 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +15 -18
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +9 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +13 -15
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +4 -3
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +11 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +32 -30
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +5 -4
- package/node_modules/@aws-sdk/credential-providers/CHANGELOG.md +91 -0
- package/node_modules/@aws-sdk/credential-providers/README.md +29 -0
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromIni.js +2 -2
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromNodeProviderChain.js +2 -2
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromTemporaryCredentials.js +5 -0
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromTokenFile.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-cjs/fromWebToken.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromIni.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromNodeProviderChain.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromTemporaryCredentials.js +25 -9
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromTokenFile.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-es/fromWebToken.js +1 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromIni.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromNodeProviderChain.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromTemporaryCredentials.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromTokenFile.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/fromWebToken.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentity.d.ts +17 -9
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromCognitoIdentityPool.d.ts +15 -7
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromContainerMetadata.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromEnv.d.ts +2 -3
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromIni.d.ts +8 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromInstanceMetadata.d.ts +5 -4
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromNodeProviderChain.d.ts +10 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromProcess.d.ts +6 -6
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromSSO.d.ts +8 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTemporaryCredentials.d.ts +17 -12
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromTokenFile.d.ts +10 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/fromWebToken.d.ts +10 -8
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.d.ts +12 -12
- package/node_modules/@aws-sdk/credential-providers/dist-types/ts3.4/index.web.d.ts +4 -4
- package/node_modules/@aws-sdk/credential-providers/package.json +17 -16
- package/node_modules/@aws-sdk/endpoint-cache/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +5 -6
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +20 -20
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/endpoint-cache/package.json +3 -2
- package/node_modules/@aws-sdk/eventstream-codec/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +9 -13
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +9 -10
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/Int64.d.ts +9 -12
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/Message.d.ts +30 -22
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +2 -2
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +9 -7
- package/node_modules/@aws-sdk/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +12 -12
- package/node_modules/@aws-sdk/eventstream-codec/package.json +7 -6
- package/node_modules/@aws-sdk/eventstream-serde-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/EventStreamMarshaller.d.ts +23 -15
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/provider.d.ts +2 -3
- package/node_modules/@aws-sdk/eventstream-serde-browser/dist-types/ts3.4/utils.d.ts +6 -4
- package/node_modules/@aws-sdk/eventstream-serde-browser/package.json +5 -4
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-types/ts3.4/EventStreamSerdeConfig.d.ts +15 -12
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/eventstream-serde-config-resolver/package.json +4 -3
- package/node_modules/@aws-sdk/eventstream-serde-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/EventStreamMarshaller.d.ts +24 -15
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/provider.d.ts +2 -3
- package/node_modules/@aws-sdk/eventstream-serde-node/dist-types/ts3.4/utils.d.ts +4 -4
- package/node_modules/@aws-sdk/eventstream-serde-node/package.json +6 -5
- package/node_modules/@aws-sdk/eventstream-serde-universal/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/EventStreamMarshaller.d.ts +24 -14
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/fixtures/MockEventMessageSource.fixture.d.ts +14 -15
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/fixtures/event.fixture.d.ts +4 -5
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/getChunkedStream.d.ts +3 -1
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/getUnmarshalledStream.d.ts +11 -8
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/eventstream-serde-universal/dist-types/ts3.4/provider.d.ts +2 -3
- package/node_modules/@aws-sdk/eventstream-serde-universal/package.json +6 -5
- package/node_modules/@aws-sdk/fetch-http-handler/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +21 -16
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -1
- package/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -2
- package/node_modules/@aws-sdk/fetch-http-handler/package.json +8 -7
- package/node_modules/@aws-sdk/hash-blob-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/hash-blob-browser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/hash-blob-browser/package.json +7 -6
- package/node_modules/@aws-sdk/hash-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/hash-node/package.json +5 -4
- package/node_modules/@aws-sdk/hash-stream-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/HashCalculator.d.ts +11 -8
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/fileStreamHasher.d.ts +3 -4
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/hash-stream-node/dist-types/ts3.4/readableStreamHasher.d.ts +3 -4
- package/node_modules/@aws-sdk/hash-stream-node/package.json +5 -4
- package/node_modules/@aws-sdk/invalid-dependency/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -1
- package/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -2
- package/node_modules/@aws-sdk/invalid-dependency/package.json +4 -3
- package/node_modules/@aws-sdk/is-array-buffer/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/is-array-buffer/package.json +3 -2
- package/node_modules/@aws-sdk/lib-dynamodb/CHANGELOG.md +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocument.d.ts +221 -72
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocumentClient.d.ts +104 -33
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +30 -12
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +78 -36
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchGetCommand.d.ts +87 -46
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +131 -66
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/DeleteCommand.d.ts +100 -48
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +56 -27
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +72 -36
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/GetCommand.d.ts +55 -26
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/PutCommand.d.ts +97 -48
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +87 -42
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +78 -39
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactGetCommand.d.ts +77 -41
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +117 -56
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/UpdateCommand.d.ts +107 -51
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/index.d.ts +13 -13
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/utils.d.ts +18 -10
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/index.d.ts +4 -4
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -4
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -4
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/node_modules/@aws-sdk/lib-dynamodb/package.json +7 -6
- package/node_modules/@aws-sdk/md5-js/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/md5-js/dist-types/ts3.4/constants.d.ts +3 -6
- package/node_modules/@aws-sdk/md5-js/dist-types/ts3.4/index.d.ts +11 -11
- package/node_modules/@aws-sdk/md5-js/package.json +9 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeDisableMultiregionAccessPointConfigOptions.d.ts +6 -4
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeUseArnRegionConfigOptions.d.ts +4 -5
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketEndpointMiddleware.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostname.d.ts +10 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostnameUtils.d.ts +84 -80
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/configurations.d.ts +31 -43
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +16 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +9 -8
- package/node_modules/@aws-sdk/middleware-content-length/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +13 -6
- package/node_modules/@aws-sdk/middleware-content-length/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/CHANGELOG.md +56 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -4
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -7
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -14
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +25 -30
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -8
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +8 -7
- package/node_modules/@aws-sdk/middleware-expect-continue/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +16 -8
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/configuration.d.ts +16 -17
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/constants.d.ts +11 -13
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/flexibleChecksumsMiddleware.d.ts +7 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksum.d.ts +10 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumAlgorithmForRequest.d.ts +12 -9
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumAlgorithmListForResponse.d.ts +4 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumLocationName.d.ts +4 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getFlexibleChecksumsPlugin.d.ts +14 -16
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/hasHeader.d.ts +2 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/isStreaming.d.ts +1 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/selectChecksumAlgorithmFunction.d.ts +7 -5
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/stringHasher.d.ts +5 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/types.d.ts +3 -5
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/validateChecksumFromResponse.d.ts +10 -8
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +6 -5
- package/node_modules/@aws-sdk/middleware-host-header/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -15
- package/node_modules/@aws-sdk/middleware-host-header/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/ts3.4/configuration.d.ts +12 -12
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/ts3.4/index.d.ts +13 -6
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-logger/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -4
- package/node_modules/@aws-sdk/middleware-logger/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +18 -9
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-retry/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +16 -1
- package/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +18 -3
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +29 -15
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -39
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +37 -25
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/config.d.ts +6 -8
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +23 -26
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/constants.d.ts +9 -18
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -10
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +10 -10
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +15 -4
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +20 -5
- package/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +16 -24
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/README.md +505 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/package.json +135 -0
- package/node_modules/@aws-sdk/middleware-retry/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@aws-sdk/middleware-retry/package.json +8 -7
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/dist-types/ts3.4/inject-endpoint-id.d.ts +22 -14
- package/node_modules/@aws-sdk/middleware-sdk-eventbridge/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/CHANGELOG.md +62 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/configuration.js +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/throw-200-exceptions.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/configuration.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/configuration.d.ts +24 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/check-content-length-header.d.ts +13 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/configuration.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +19 -12
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +13 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/write-get-object-response-endpoint.d.ts +20 -14
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/write-get-object-response-endpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +7 -6
- package/node_modules/@aws-sdk/middleware-sdk-sqs/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/configurations.d.ts +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/receive-message.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/send-message-batch.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-types/ts3.4/send-message.d.ts +13 -5
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -4
- package/node_modules/@aws-sdk/middleware-sdk-sts/CHANGELOG.md +64 -0
- package/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +33 -25
- package/node_modules/@aws-sdk/middleware-sdk-sts/package.json +8 -7
- package/node_modules/@aws-sdk/middleware-serde/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +8 -1
- package/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +15 -5
- package/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +5 -2
- package/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +2 -1
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +9 -2
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -4
- package/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +14 -2
- package/node_modules/@aws-sdk/middleware-serde/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-signing/CHANGELOG.md +70 -0
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +30 -15
- package/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +3 -1
- package/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +21 -10
- package/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +13 -11
- package/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +5 -5
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +62 -58
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +19 -6
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +1 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-signing/package.json +9 -7
- package/node_modules/@aws-sdk/middleware-ssec/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-ssec/dist-types/ts3.4/index.d.ts +21 -10
- package/node_modules/@aws-sdk/middleware-ssec/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-stack/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +13 -3
- package/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +14 -3
- package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -2
- package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +47 -22
- package/node_modules/@aws-sdk/middleware-stack/package.json +4 -3
- package/node_modules/@aws-sdk/middleware-user-agent/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +17 -19
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -4
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +20 -6
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +6 -5
- package/node_modules/@aws-sdk/node-config-provider/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +18 -14
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +7 -5
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +10 -9
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +5 -3
- package/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/node-config-provider/package.json +6 -5
- package/node_modules/@aws-sdk/node-http-handler/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +1 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +6 -4
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -3
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -27
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +28 -30
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +12 -13
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +17 -10
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +6 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +6 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +9 -6
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -2
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +12 -13
- package/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +7 -5
- package/node_modules/@aws-sdk/node-http-handler/package.json +7 -6
- package/node_modules/@aws-sdk/property-provider/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +6 -7
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +6 -7
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +6 -7
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +2 -3
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -2
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +6 -6
- package/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +11 -9
- package/node_modules/@aws-sdk/property-provider/package.json +4 -3
- package/node_modules/@aws-sdk/protocol-http/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +8 -4
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +26 -20
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +17 -14
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -4
- package/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -1
- package/node_modules/@aws-sdk/protocol-http/package.json +4 -3
- package/node_modules/@aws-sdk/querystring-builder/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/querystring-builder/package.json +5 -4
- package/node_modules/@aws-sdk/querystring-parser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +4 -2
- package/node_modules/@aws-sdk/querystring-parser/package.json +4 -3
- package/node_modules/@aws-sdk/service-error-classification/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +4 -8
- package/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/service-error-classification/package.json +4 -3
- package/node_modules/@aws-sdk/shared-ini-file-loader/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +1 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileData.d.ts +2 -3
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +3 -5
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +1 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +13 -21
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +2 -3
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +8 -8
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +8 -8
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +7 -6
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -2
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +8 -8
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +1 -1
- package/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +8 -7
- package/node_modules/@aws-sdk/shared-ini-file-loader/package.json +4 -3
- package/node_modules/@aws-sdk/signature-v4/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +10 -0
- package/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +10 -0
- package/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +1 -0
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +63 -39
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +9 -4
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -43
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +14 -7
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +6 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +2 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +13 -4
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +7 -7
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +9 -7
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +2 -3
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -14
- package/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -2
- package/node_modules/@aws-sdk/signature-v4/package.json +10 -9
- package/node_modules/@aws-sdk/signature-v4-multi-region/CHANGELOG.md +56 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4MultiRegion.d.ts +29 -15
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +8 -7
- package/node_modules/@aws-sdk/smithy-client/CHANGELOG.md +59 -0
- package/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +56 -9
- package/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +56 -9
- package/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +21 -0
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +56 -16
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +29 -6
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -1
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +4 -8
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +6 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +16 -12
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/exceptions.d.ts +33 -16
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +18 -18
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +10 -12
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/object-mapping.d.ts +39 -38
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +62 -49
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/resolve-path.d.ts +8 -1
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +1 -2
- package/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +5 -2
- package/node_modules/@aws-sdk/smithy-client/package.json +5 -4
- package/node_modules/@aws-sdk/types/CHANGELOG.md +57 -0
- package/node_modules/@aws-sdk/types/dist-cjs/auth.js +2 -0
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +1 -0
- package/{lib/cli/ws.d.ts → node_modules/@aws-sdk/types/dist-es/auth.js} +0 -0
- package/node_modules/@aws-sdk/types/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +18 -0
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +7 -5
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +33 -0
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +12 -0
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +13 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +11 -17
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +52 -17
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +17 -7
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +10 -13
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +14 -20
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +43 -14
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +99 -83
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +33 -40
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +22 -21
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +17 -14
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +207 -155
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +8 -11
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +7 -9
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +11 -18
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +40 -37
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +24 -26
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +40 -47
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +15 -13
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +6 -9
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +18 -12
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +50 -62
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +9 -15
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
- package/node_modules/@aws-sdk/types/package.json +3 -2
- package/node_modules/@aws-sdk/url-parser/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +4 -1
- package/node_modules/@aws-sdk/url-parser/dist-es/index.js +4 -1
- package/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/url-parser/package.json +5 -4
- package/node_modules/@aws-sdk/util-arn-parser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-arn-parser/dist-types/ts3.4/index.d.ts +17 -17
- package/node_modules/@aws-sdk/util-arn-parser/package.json +3 -2
- package/node_modules/@aws-sdk/util-base64-browser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-base64-browser/dist-types/ts3.4/index.d.ts +3 -4
- package/node_modules/@aws-sdk/util-base64-browser/package.json +3 -2
- package/node_modules/@aws-sdk/util-base64-node/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-base64-node/dist-types/ts3.4/index.d.ts +3 -4
- package/node_modules/@aws-sdk/util-base64-node/package.json +4 -3
- package/node_modules/@aws-sdk/util-body-length-browser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-browser/package.json +3 -2
- package/node_modules/@aws-sdk/util-body-length-node/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-body-length-node/package.json +3 -2
- package/node_modules/@aws-sdk/util-buffer-from/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +19 -4
- package/node_modules/@aws-sdk/util-buffer-from/package.json +4 -3
- package/node_modules/@aws-sdk/util-config-provider/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -6
- package/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-config-provider/package.json +3 -2
- package/node_modules/@aws-sdk/util-defaults-mode-browser/CHANGELOG.md +56 -0
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +6 -7
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +8 -8
- package/node_modules/@aws-sdk/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +8 -8
- package/node_modules/@aws-sdk/util-defaults-mode-browser/package.json +6 -5
- package/node_modules/@aws-sdk/util-defaults-mode-node/CHANGELOG.md +64 -0
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +6 -6
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +3 -3
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +10 -9
- package/node_modules/@aws-sdk/util-defaults-mode-node/package.json +9 -8
- package/node_modules/@aws-sdk/util-dynamodb/CHANGELOG.md +99 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/models.d.ts +9 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToAttr.d.ts +7 -5
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToNative.d.ts +7 -5
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/marshall.d.ts +52 -25
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/models.d.ts +44 -12
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/unmarshall.d.ts +9 -9
- package/node_modules/@aws-sdk/util-dynamodb/package.json +4 -3
- package/node_modules/@aws-sdk/util-hex-encoding/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +3 -4
- package/node_modules/@aws-sdk/util-hex-encoding/package.json +3 -2
- package/node_modules/@aws-sdk/util-locate-window/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +3 -2
- package/node_modules/@aws-sdk/util-middleware/CHANGELOG.md +51 -0
- package/node_modules/@aws-sdk/util-middleware/dist-types/normalizeProvider.d.ts +3 -0
- package/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/index.d.ts +1 -1
- package/node_modules/@aws-sdk/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +4 -2
- package/node_modules/@aws-sdk/util-middleware/package.json +4 -3
- package/node_modules/@aws-sdk/util-stream-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +2 -2
- package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-stream-browser/dist-types/ts3.4/sdk-stream-mixin.d.ts +4 -3
- package/node_modules/@aws-sdk/util-stream-browser/package.json +8 -7
- package/node_modules/@aws-sdk/util-stream-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +3 -4
- package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-stream-node/dist-types/ts3.4/sdk-stream-mixin.d.ts +3 -4
- package/node_modules/@aws-sdk/util-stream-node/package.json +6 -5
- package/node_modules/@aws-sdk/util-uri-escape/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -1
- package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -1
- package/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-uri-escape/package.json +3 -2
- package/node_modules/@aws-sdk/util-user-agent-browser/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +6 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +6 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +5 -4
- package/node_modules/@aws-sdk/util-user-agent-node/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +12 -10
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +6 -5
- package/node_modules/@aws-sdk/util-utf8-browser/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +3 -4
- package/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -2
- package/node_modules/@aws-sdk/util-utf8-browser/package.json +3 -2
- package/node_modules/@aws-sdk/util-utf8-node/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/util-utf8-node/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-utf8-node/package.json +4 -3
- package/node_modules/@aws-sdk/util-waiter/CHANGELOG.md +48 -0
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +6 -3
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +13 -3
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -2
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -1
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +4 -3
- package/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +20 -24
- package/node_modules/@aws-sdk/util-waiter/package.json +5 -4
- package/node_modules/@aws-sdk/xml-builder/CHANGELOG.md +16 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +14 -14
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +7 -7
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -3
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -2
- package/node_modules/@serverless-stack/node/README.md +5 -0
- package/node_modules/@serverless-stack/node/auth/adapter/adapter.d.ts +3 -0
- package/node_modules/@serverless-stack/node/auth/adapter/adapter.js +3 -0
- package/node_modules/@serverless-stack/node/auth/adapter/github.d.ts +2 -0
- package/node_modules/@serverless-stack/node/auth/adapter/github.js +21 -0
- package/node_modules/@serverless-stack/node/auth/adapter/google.d.ts +9 -0
- package/node_modules/@serverless-stack/node/auth/adapter/google.js +18 -0
- package/node_modules/@serverless-stack/node/auth/adapter/link.d.ts +8 -0
- package/node_modules/@serverless-stack/node/auth/adapter/link.js +41 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oauth.d.ts +25 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oauth.js +52 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oidc.d.ts +17 -0
- package/node_modules/@serverless-stack/node/auth/adapter/oidc.js +50 -0
- package/node_modules/@serverless-stack/node/auth/adapter/twitch.d.ts +2 -0
- package/node_modules/@serverless-stack/node/auth/adapter/twitch.js +11 -0
- package/node_modules/@serverless-stack/node/auth/auth.d.ts +21 -0
- package/node_modules/@serverless-stack/node/auth/auth.js +44 -0
- package/node_modules/@serverless-stack/node/auth/index.d.ts +10 -7
- package/node_modules/@serverless-stack/node/auth/index.js +10 -19
- package/node_modules/@serverless-stack/node/auth/session.d.ts +76 -0
- package/node_modules/@serverless-stack/node/auth/session.js +111 -0
- package/node_modules/@serverless-stack/node/context/context.d.ts +12 -0
- package/node_modules/@serverless-stack/node/context/context.js +66 -0
- package/node_modules/@serverless-stack/node/context/handler.d.ts +16 -0
- package/node_modules/@serverless-stack/node/context/handler.js +18 -0
- package/node_modules/@serverless-stack/node/context/http.d.ts +14 -0
- package/node_modules/@serverless-stack/node/context/http.js +65 -0
- package/node_modules/@serverless-stack/node/context/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/context/index.js +3 -0
- package/node_modules/@serverless-stack/node/graphql/index.d.ts +28 -9
- package/node_modules/@serverless-stack/node/graphql/index.js +15 -29
- package/node_modules/@serverless-stack/node/job/index.d.ts +31 -0
- package/node_modules/@serverless-stack/node/job/index.js +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/CHANGELOG.md +1104 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortController.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/AbortSignal.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/AbortController.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/AbortSignal.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/AbortController.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/AbortSignal.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortController.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/abort-controller/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/CHANGELOG.md +3476 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/README.md +269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/Lambda.js +877 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/LambdaClient.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/AddLayerVersionPermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/AddPermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/CreateFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionConcurrencyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteLayerVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/DeleteProvisionedConcurrencyConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetAccountSettingsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionConcurrencyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionConfigurationCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionByArnCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetLayerVersionPolicyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetPolicyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/GetProvisionedConcurrencyConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/InvokeAsyncCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/InvokeCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListAliasesCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListCodeSigningConfigsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListEventSourceMappingsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionEventInvokeConfigsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionsByCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListFunctionsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListLayerVersionsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListLayersCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListProvisionedConcurrencyConfigsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListTagsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/ListVersionsByFunctionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PublishLayerVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PublishVersionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionConcurrencyCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/PutProvisionedConcurrencyConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/RemoveLayerVersionPermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/RemovePermissionCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/TagResourceCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UntagResourceCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateAliasCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateCodeSigningConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateEventSourceMappingCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionCodeCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionConfigurationCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/UpdateFunctionEventInvokeConfigCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/commands/index.js +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoints.js +207 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/models/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/models/models_0.js +1133 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListAliasesPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListCodeSigningConfigsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListEventSourceMappingsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionEventInvokeConfigsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionsByCodeSigningConfigPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListFunctionsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListLayerVersionsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListLayersPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListProvisionedConcurrencyConfigsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/ListVersionsByFunctionPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/pagination/index.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/protocols/Aws_restJson1.js +9556 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionActive.js +54 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionExists.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-cjs/waiters/waitForFunctionUpdated.js +54 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/Lambda.js +880 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/LambdaClient.js +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddLayerVersionPermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddPermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionConcurrencyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteLayerVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAccountSettingsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConcurrencyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConfigurationCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionByArnCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionPolicyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetPolicyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeAsyncCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListAliasesCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCodeSigningConfigsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListEventSourceMappingsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayerVersionsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayersCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListTagsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListVersionsByFunctionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishLayerVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishVersionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionConcurrencyCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemoveLayerVersionPermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemovePermissionCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/TagResourceCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UntagResourceCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateAliasCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCodeSigningConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateEventSourceMappingCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionCodeCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionConfigurationCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/commands/index.js +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/endpoints.js +203 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/models/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/models/models_0.js +788 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListAliasesPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListCodeSigningConfigsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListEventSourceMappingsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionEventInvokeConfigsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionsByCodeSigningConfigPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListFunctionsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListLayerVersionsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListLayersPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListProvisionedConcurrencyConfigsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/ListVersionsByFunctionPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/pagination/index.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/protocols/Aws_restJson1.js +10456 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.browser.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.native.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActive.js +69 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdated.js +69 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +890 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/LambdaClient.d.ts +263 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +138 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +81 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAccountSettingsCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAliasCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCodeSigningConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetPolicyCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListAliasesCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListTagsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/TagResourceCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UntagResourceCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateAliasCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +138 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/commands/index.d.ts +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +4789 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListAliasesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListFunctionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayerVersionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListLayersPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/pagination/index.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/protocols/Aws_restJson1.d.ts +176 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +295 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/LambdaClient.d.ts +129 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/index.d.ts +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +2254 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListCodeSigningConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListEventSourceMappingsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionEventInvokeConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsByCodeSigningConfigPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListFunctionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayerVersionsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListLayersPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListProvisionedConcurrencyConfigsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/ListVersionsByFunctionPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/pagination/index.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +176 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-lambda/package.json +95 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/CHANGELOG.md +3269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/README.md +218 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/SSO.js +67 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/SSOClient.js +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/GetRoleCredentialsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountRolesCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/ListAccountsCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/LogoutCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/commands/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/endpoints.js +275 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/models/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/models/models_0.js +95 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/Interfaces.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountRolesPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/ListAccountsPaginator.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/pagination/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/protocols/Aws_restJson1.js +521 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/endpoints.js +271 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +74 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +594 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +153 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +255 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +72 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +154 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sso/package.json +91 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/CHANGELOG.md +2418 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/README.md +208 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/STS.js +127 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetAccessKeyInfoCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetCallerIdentityCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetFederationTokenCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/GetSessionTokenCommand.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/commands/index.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/defaultRoleAssumers.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/defaultStsRoleAssumers.js +76 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/endpoints.js +217 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/models/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/models/models_0.js +177 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/protocols/Aws_query.js +1249 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.browser.js +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/STS.js +130 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/STSClient.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithSAMLCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/AssumeRoleWithWebIdentityCommand.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/DecodeAuthorizationMessageCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetAccessKeyInfoCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetCallerIdentityCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetFederationTokenCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/GetSessionTokenCommand.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/commands/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/defaultRoleAssumers.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/defaultStsRoleAssumers.js +87 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/endpoints.js +213 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/models/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/models/models_0.js +117 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +1330 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.browser.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.native.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-es/runtimeConfig.shared.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/STS.d.ts +619 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/STSClient.d.ts +152 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleCommand.d.ts +124 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithSAMLCommand.d.ts +166 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/AssumeRoleWithWebIdentityCommand.d.ts +170 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/DecodeAuthorizationMessageCommand.d.ts +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetAccessKeyInfoCommand.d.ts +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetCallerIdentityCommand.d.ts +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetFederationTokenCommand.d.ts +120 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/GetSessionTokenCommand.d.ts +86 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/defaultStsRoleAssumers.d.ts +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +1211 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/protocols/Aws_query.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.browser.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.native.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/runtimeConfig.shared.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STS.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/STSClient.d.ts +79 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultRoleAssumers.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +367 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/protocols/Aws_query.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.browser.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.native.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/client-sts/package.json +96 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/CHANGELOG.md +2281 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/normalizeBoolean.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/endpointsConfig/utils/normalizeEndpoint.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/config.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/getRealRegion.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/PartitionHash.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/RegionHash.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-cjs/regionInfo/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeBoolean.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/endpointsConfig/utils/normalizeEndpoint.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/getRealRegion.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/isFipsRegion.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getRegionInfo.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedHostname.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedPartition.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/normalizeBoolean.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/endpointsConfig/utils/normalizeEndpoint.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/config.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/RegionHash.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/regionInfo/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/normalizeBoolean.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/endpointsConfig/utils/normalizeEndpoint.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/config-resolver/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/CHANGELOG.md +1269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-env/package.json +55 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/CHANGELOG.md +1263 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/Endpoint.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointMode.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromContainerMetadata.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +93 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/remoteProvider/retry.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromContainerMetadata.js +82 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/fromInstanceMetadata.js +127 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/Endpoint.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointMode.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-imds/package.json +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/CHANGELOG.md +1265 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +105 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +141 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-ini/package.json +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/CHANGELOG.md +1569 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/README.md +89 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-node/package.json +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/CHANGELOG.md +1121 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +82 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-process/package.json +57 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/CHANGELOG.md +323 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +88 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +110 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +54 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-sso/package.json +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/CHANGELOG.md +217 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +126 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/credential-provider-web-identity/package.json +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/CHANGELOG.md +1856 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/fetch-http-handler.js +78 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/request-timeout.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-cjs/stream-collector.js +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/fetch-http-handler.js +90 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/request-timeout.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-es/stream-collector.js +68 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/fetch-http-handler.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/fetch-http-handler/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/CHANGELOG.md +1191 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-cjs/index.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-es/index.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-types/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/hash-node/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/CHANGELOG.md +480 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidFunction.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-cjs/invalidProvider.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidFunction.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/invalidProvider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/invalid-dependency/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/CHANGELOG.md +561 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-es/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/is-array-buffer/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/CHANGELOG.md +1472 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-cjs/index.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-content-length/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/CHANGELOG.md +947 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-host-header/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/CHANGELOG.md +355 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-cjs/loggerMiddleware.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-logger/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/CHANGELOG.md +1178 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/DefaultRateLimiter.js +104 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/StandardRetryStrategy.js +89 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/config.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/configurations.js +69 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/constants.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/defaultRetryQuota.js +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/delayDecider.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/index.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryDecider.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/retryMiddleware.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-cjs/types.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/AdaptiveRetryStrategy.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/DefaultRateLimiter.js +119 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/StandardRetryStrategy.js +130 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/config.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/configurations.js +77 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/constants.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/defaultRetryQuota.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/delayDecider.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/index.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/retryMiddleware.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/DefaultRateLimiter.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/StandardRetryStrategy.d.ts +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/config.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/configurations.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/constants.d.ts +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/defaultRetryQuota.d.ts +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/delayDecider.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/index.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/retryDecider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/retryMiddleware.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/config.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/configurations.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/constants.d.ts +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/ts3.4/types.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/dist-types/types.d.ts +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-retry/package.json +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/CHANGELOG.md +202 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-cjs/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-es/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/index.d.ts +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/dist-types/ts3.4/index.d.ts +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-sdk-sts/package.json +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/CHANGELOG.md +896 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/deserializerMiddleware.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/serdePlugin.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-cjs/serializerMiddleware.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/deserializerMiddleware.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-es/serializerMiddleware.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/deserializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/serdePlugin.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/serializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-serde/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/CHANGELOG.md +1840 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/configurations.js +90 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/middleware.js +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getSkewCorrectedDate.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/getUpdatedSystemClockOffset.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-cjs/utils/isClockSkewed.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/configurations.js +87 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/middleware.js +59 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-es/utils/isClockSkewed.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/configurations.d.ts +88 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/middleware.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/configurations.d.ts +57 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/middleware.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getSkewCorrectedDate.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/getUpdatedSystemClockOffset.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/ts3.4/utils/isClockSkewed.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getSkewCorrectedDate.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/getUpdatedSystemClockOffset.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/dist-types/utils/isClockSkewed.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-signing/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/CHANGELOG.md +1330 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/README.md +78 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/MiddlewareStack.js +215 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-cjs/types.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/MiddlewareStack.js +212 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/MiddlewareStack.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/ts3.4/types.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/dist-types/types.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-stack/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/CHANGELOG.md +1116 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/configurations.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/constants.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/user-agent-middleware.js +61 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +64 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/middleware-user-agent/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/CHANGELOG.md +399 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/configLoader.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromEnv.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromSharedConfigFiles.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/fromStatic.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromEnv.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromSharedConfigFiles.js +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/fromStatic.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/configLoader.d.ts +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromEnv.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/fromStatic.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/configLoader.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-config-provider/package.json +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/CHANGELOG.md +1614 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/constants.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/get-transformed-headers.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/index.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http-handler.js +76 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/node-http2-handler.js +131 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/readable.mock.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/server.mock.js +60 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-connection-timeout.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/set-socket-timeout.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/collector.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/index.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/stream-collector/readable.mock.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-cjs/write-request-body.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/get-transformed-headers.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/node-http-handler.js +77 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/node-http2-handler.js +143 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/readable.mock.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/server.mock.js +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/set-connection-timeout.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/set-socket-timeout.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/collector.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/index.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/stream-collector/readable.mock.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-es/write-request-body.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/constants.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/node-http-handler.d.ts +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/node-http2-handler.d.ts +58 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/server.mock.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/collector.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/constants.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/server.mock.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/dist-types/write-request-body.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/node-http-handler/package.json +60 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/CHANGELOG.md +1156 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/ProviderError.js +36 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/chain.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/fromStatic.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-cjs/memoize.js +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/ProviderError.js +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/chain.js +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/fromStatic.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-es/memoize.js +70 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ProviderError.d.ts +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/chain.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/fromStatic.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/memoize.d.ts +37 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/ProviderError.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/chain.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/fromStatic.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/dist-types/ts3.4/memoize.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/property-provider/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/CHANGELOG.md +1178 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpHandler.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpRequest.js +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/httpResponse.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/index.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-cjs/isValidHostname.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpRequest.js +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/httpResponse.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpHandler.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpRequest.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/httpResponse.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpHandler.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpRequest.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/httpResponse.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/protocol-http/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/CHANGELOG.md +1138 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-cjs/index.js +25 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-es/index.js +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-builder/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/CHANGELOG.md +1101 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-es/index.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/querystring-parser/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/CHANGELOG.md +667 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-cjs/constants.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-cjs/index.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-es/constants.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-es/index.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/constants.d.ts +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/constants.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/service-error-classification/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/CHANGELOG.md +704 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/README.md +102 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-cjs/index.js +84 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-es/index.js +105 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/index.d.ts +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/shared-ini-file-loader/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/CHANGELOG.md +2827 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/SignatureV4.js +150 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/cloneRequest.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/constants.js +46 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/credentialDerivation.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalHeaders.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getCanonicalQuery.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/getPayloadHash.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/headerUtil.js +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/moveHeadersToQuery.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/normalizeProvider.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/prepareRequest.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/suite.fixture.js +402 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-cjs/utilDate.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/SignatureV4.js +269 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/cloneRequest.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/credentialDerivation.js +66 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalHeaders.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getCanonicalQuery.js +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/getPayloadHash.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/headerUtil.js +60 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/moveHeadersToQuery.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/normalizeProvider.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/prepareRequest.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-es/utilDate.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/SignatureV4.d.ts +63 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/cloneRequest.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/credentialDerivation.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/moveHeadersToQuery.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/normalizeProvider.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +39 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/cloneRequest.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/normalizeProvider.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/signature-v4/package.json +56 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/CHANGELOG.md +1387 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/client.js +28 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/command.js +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/constants.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/date-utils.js +156 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/extended-encode-uri-component.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/get-array-if-single-item.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/get-value-from-text-node.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/index.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/lazy-json.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/parse-utils.js +206 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/ser-utils.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-cjs/split-every.js +31 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/client.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/command.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/date-utils.js +150 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/extended-encode-uri-component.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/get-array-if-single-item.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/index.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/lazy-json.js +40 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/parse-utils.js +190 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/ser-utils.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-es/split-every.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/client.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/command.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/constants.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/date-utils.d.ts +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/get-array-if-single-item.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/get-value-from-text-node.d.ts +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/index.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/lazy-json.d.ts +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/parse-utils.d.ts +203 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ser-utils.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/split-every.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/client.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/command.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/constants.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/date-utils.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/lazy-json.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/parse-utils.d.ts +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/ser-utils.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/dist-types/ts3.4/split-every.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/smithy-client/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/CHANGELOG.md +1712 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/abort.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/client.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/command.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/credentials.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/crypto.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/eventStream.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/http.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/index.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/logger.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/middleware.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/pagination.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/response.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/serde.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/shapes.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/signature.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/transfer.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/util.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-cjs/waiter.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/index.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/abort.d.ts +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/client.d.ts +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/command.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +84 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/http.d.ts +92 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/index.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/logger.d.ts +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +338 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/response.d.ts +34 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/serde.d.ts +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/signature.d.ts +100 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +13 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +78 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +44 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +155 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +56 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/util.d.ts +112 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +32 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/types/package.json +43 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/CHANGELOG.md +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-cjs/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-es/index.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/url-parser/package.json +46 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/CHANGELOG.md +561 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-cjs/index.js +86 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-es/index.js +81 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-types/index.d.ts +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-browser/package.json +46 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/CHANGELOG.md +672 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-cjs/index.js +20 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-es/index.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-types/index.d.ts +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-base64-node/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/CHANGELOG.md +574 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/README.md +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-cjs/index.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-es/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-browser/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/CHANGELOG.md +611 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/README.md +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-cjs/index.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-es/index.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-body-length-node/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/CHANGELOG.md +617 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-cjs/index.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-es/index.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-types/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-buffer-from/package.json +49 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/CHANGELOG.md +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-cjs/booleanSelector.js +18 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-cjs/index.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-es/booleanSelector.js +14 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-es/index.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/booleanSelector.d.ts +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-config-provider/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/CHANGELOG.md +558 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-cjs/index.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-es/index.js +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-hex-encoding/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/CHANGELOG.md +666 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri-path.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/escape-uri.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/escape-uri.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri-path.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/escape-uri.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-uri-escape/package.json +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/CHANGELOG.md +1672 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +22 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-browser/package.json +48 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/CHANGELOG.md +1759 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +41 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/is-crt-available.js +15 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +12 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-user-agent-node/package.json +51 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/CHANGELOG.md +561 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/pureJs.js +47 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-cjs/whatwgEncodingApi.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/pureJs.js +42 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-es/whatwgEncodingApi.js +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/pureJs.d.ts +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/pureJs.d.ts +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/ts3.4/whatwgEncodingApi.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/dist-types/whatwgEncodingApi.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-browser/package.json +45 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/CHANGELOG.md +669 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/README.md +4 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-cjs/index.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-es/index.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-utf8-node/package.json +53 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/CHANGELOG.md +260 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/LICENSE +201 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/README.md +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/createWaiter.js +27 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/poller.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/index.js +5 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/sleep.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/utils/validate.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-cjs/waiter.js +38 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/createWaiter.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/poller.js +52 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/index.js +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/sleep.js +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/utils/validate.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-es/waiter.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/poller.d.ts +10 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/createWaiter.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/poller.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/utils/validate.d.ts +3 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/ts3.4/waiter.d.ts +24 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/sleep.d.ts +1 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/utils/validate.d.ts +6 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/dist-types/waiter.d.ts +33 -0
- package/node_modules/@serverless-stack/node/node_modules/@aws-sdk/util-waiter/package.json +50 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/CHANGELOG.md +229 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/LICENSE.md +9 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/README.md +505 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/bin/uuid +2 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/index.js +79 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/md5-browser.js +223 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/md5.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/nil.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/parse.js +45 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/regex.js +8 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/rng-browser.js +26 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/rng.js +24 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/sha1.js +23 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/stringify.js +39 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v1.js +107 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v3.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v35.js +78 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v4.js +37 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/v5.js +16 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/validate.js +17 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/dist/version.js +21 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/package.json +135 -0
- package/node_modules/@serverless-stack/node/node_modules/uuid/wrapper.mjs +10 -0
- package/node_modules/@serverless-stack/node/package.json +19 -8
- package/node_modules/asn1.js/.eslintrc.js +27 -0
- package/node_modules/asn1.js/LICENSE +21 -0
- package/node_modules/asn1.js/README.md +100 -0
- package/node_modules/asn1.js/lib/asn1/api.js +57 -0
- package/node_modules/asn1.js/lib/asn1/base/buffer.js +153 -0
- package/node_modules/asn1.js/lib/asn1/base/index.js +8 -0
- package/node_modules/asn1.js/lib/asn1/base/node.js +638 -0
- package/node_modules/asn1.js/lib/asn1/base/reporter.js +123 -0
- package/node_modules/asn1.js/lib/asn1/constants/der.js +58 -0
- package/node_modules/asn1.js/lib/asn1/constants/index.js +21 -0
- package/node_modules/asn1.js/lib/asn1/decoders/der.js +335 -0
- package/node_modules/asn1.js/lib/asn1/decoders/index.js +6 -0
- package/node_modules/asn1.js/lib/asn1/decoders/pem.js +51 -0
- package/node_modules/asn1.js/lib/asn1/encoders/der.js +295 -0
- package/node_modules/asn1.js/lib/asn1/encoders/index.js +6 -0
- package/node_modules/asn1.js/lib/asn1/encoders/pem.js +23 -0
- package/node_modules/asn1.js/lib/asn1.js +11 -0
- package/node_modules/asn1.js/package.json +36 -0
- package/node_modules/aws-sdk/CHANGELOG.md +108 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +651 -18
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.paginators.json +11 -0
- package/node_modules/aws-sdk/apis/backup-gateway-2021-01-01.min.json +59 -8
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +325 -8
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.paginators.json +17 -0
- package/node_modules/aws-sdk/apis/codestar-notifications-2019-10-15.min.json +7 -2
- package/node_modules/aws-sdk/apis/cognito-idp-2016-04-18.min.json +60 -51
- package/node_modules/aws-sdk/apis/comprehend-2017-11-27.min.json +237 -126
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +275 -134
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +18 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.examples.json +5 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.min.json +148 -0
- package/node_modules/aws-sdk/apis/controltower-2018-05-10.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/customer-profiles-2020-08-15.min.json +12 -3
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/devicefarm-2015-06-23.min.json +166 -132
- package/node_modules/aws-sdk/apis/drs-2020-02-26.min.json +45 -45
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1678 -1323
- package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +90 -45
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +34 -19
- package/node_modules/aws-sdk/apis/evidently-2021-02-01.min.json +41 -15
- package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +3 -1
- package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.min.json +732 -15
- package/node_modules/aws-sdk/apis/identitystore-2020-06-15.paginators.json +16 -2
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.examples.json +5 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.min.json +1961 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.paginators.json +82 -0
- package/node_modules/aws-sdk/apis/iotfleetwise-2021-06-17.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
- package/node_modules/aws-sdk/apis/iotthingsgraph-2018-09-06.min.json +105 -35
- package/node_modules/aws-sdk/apis/ivs-2020-07-14.min.json +25 -19
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +59 -22
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
- package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +39 -11
- package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
- package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +21 -0
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +249 -213
- package/node_modules/aws-sdk/apis/mediapackage-2017-10-12.min.json +57 -54
- package/node_modules/aws-sdk/apis/metadata.json +6 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +361 -180
- package/node_modules/aws-sdk/apis/nimble-2020-08-01.waiters2.json +1 -1
- package/node_modules/aws-sdk/apis/rds-data-2018-08-01.min.json +132 -132
- package/node_modules/aws-sdk/apis/runtime.lex.v2-2020-08-07.min.json +64 -40
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +102 -19
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +799 -690
- package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +399 -287
- package/node_modules/aws-sdk/apis/transfer-2018-11-05.min.json +174 -20
- package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
- package/node_modules/aws-sdk/clients/all.d.ts +2 -0
- package/node_modules/aws-sdk/clients/all.js +3 -1
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +632 -0
- package/node_modules/aws-sdk/clients/apprunner.d.ts +1 -1
- package/node_modules/aws-sdk/clients/backupgateway.d.ts +72 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +7 -7
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +443 -12
- package/node_modules/aws-sdk/clients/codegurureviewer.d.ts +134 -134
- package/node_modules/aws-sdk/clients/codestarnotifications.d.ts +29 -29
- package/node_modules/aws-sdk/clients/cognitoidentityserviceprovider.d.ts +24 -11
- package/node_modules/aws-sdk/clients/comprehend.d.ts +148 -34
- package/node_modules/aws-sdk/clients/connect.d.ts +144 -10
- package/node_modules/aws-sdk/clients/controltower.d.ts +169 -0
- package/node_modules/aws-sdk/clients/controltower.js +18 -0
- package/node_modules/aws-sdk/clients/cur.d.ts +1 -1
- package/node_modules/aws-sdk/clients/customerprofiles.d.ts +22 -10
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
- package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
- package/node_modules/aws-sdk/clients/devicefarm.d.ts +38 -0
- package/node_modules/aws-sdk/clients/drs.d.ts +3 -2
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +521 -150
- package/node_modules/aws-sdk/clients/ecs.d.ts +11 -11
- package/node_modules/aws-sdk/clients/eks.d.ts +74 -16
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +16 -1
- package/node_modules/aws-sdk/clients/evidently.d.ts +42 -5
- package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
- package/node_modules/aws-sdk/clients/glue.d.ts +8 -0
- package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
- package/node_modules/aws-sdk/clients/identitystore.d.ts +806 -22
- package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
- package/node_modules/aws-sdk/clients/iotfleetwise.d.ts +2549 -0
- package/node_modules/aws-sdk/clients/iotfleetwise.js +19 -0
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
- package/node_modules/aws-sdk/clients/iotthingsgraph.d.ts +2 -2
- package/node_modules/aws-sdk/clients/ivs.d.ts +9 -0
- package/node_modules/aws-sdk/clients/kendra.d.ts +8 -8
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +175 -2
- package/node_modules/aws-sdk/clients/lexruntimev2.d.ts +25 -3
- package/node_modules/aws-sdk/clients/lightsail.d.ts +66 -3
- package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +35 -0
- package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
- package/node_modules/aws-sdk/clients/mediaconnect.d.ts +25 -1
- package/node_modules/aws-sdk/clients/medialive.d.ts +38 -0
- package/node_modules/aws-sdk/clients/mediapackage.d.ts +2 -0
- package/node_modules/aws-sdk/clients/nimble.d.ts +14 -14
- package/node_modules/aws-sdk/clients/rds.d.ts +18 -18
- package/node_modules/aws-sdk/clients/rdsdataservice.d.ts +130 -130
- package/node_modules/aws-sdk/clients/redshift.d.ts +15 -15
- package/node_modules/aws-sdk/clients/route53.d.ts +3 -3
- package/node_modules/aws-sdk/clients/s3control.d.ts +109 -41
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +197 -30
- package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
- package/node_modules/aws-sdk/clients/ssm.d.ts +122 -7
- package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
- package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
- package/node_modules/aws-sdk/clients/transfer.d.ts +206 -0
- package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -16
- package/node_modules/aws-sdk/clients/wafv2.d.ts +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +38 -11
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +938 -796
- package/node_modules/aws-sdk/dist/aws-sdk.js +3290 -2114
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -82
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +4 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +3 -3
- package/node_modules/aws-sdk/package.json +2 -1
- package/node_modules/bn.js/LICENSE +19 -0
- package/node_modules/bn.js/README.md +200 -0
- package/node_modules/bn.js/lib/bn.js +3446 -0
- package/node_modules/bn.js/package.json +36 -0
- package/node_modules/ecdsa-sig-formatter/CODEOWNERS +1 -0
- package/node_modules/ecdsa-sig-formatter/LICENSE +201 -0
- package/node_modules/ecdsa-sig-formatter/README.md +65 -0
- package/node_modules/ecdsa-sig-formatter/package.json +46 -0
- package/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.d.ts +17 -0
- package/node_modules/ecdsa-sig-formatter/src/ecdsa-sig-formatter.js +187 -0
- package/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js +23 -0
- package/node_modules/es-abstract/2015/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2015/ToNumber.js +1 -1
- package/node_modules/es-abstract/2016/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2016/ToNumber.js +1 -1
- package/node_modules/es-abstract/2017/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2017/ToNumber.js +1 -1
- package/node_modules/es-abstract/2018/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2018/ToNumber.js +1 -1
- package/node_modules/es-abstract/2019/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2019/ToNumber.js +1 -1
- package/node_modules/es-abstract/2020/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2020/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2020/ToNumber.js +1 -1
- package/node_modules/es-abstract/2021/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2021/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2021/ToNumber.js +1 -1
- package/node_modules/es-abstract/2022/GetSubstitution.js +1 -1
- package/node_modules/es-abstract/2022/SameValueNonNumeric.js +1 -1
- package/node_modules/es-abstract/2022/StringToNumber.js +1 -1
- package/node_modules/es-abstract/CHANGELOG.md +14 -0
- package/node_modules/es-abstract/helpers/regexTester.js +2 -6
- package/node_modules/es-abstract/package.json +12 -10
- package/node_modules/fast-jwt/LICENSE.md +13 -0
- package/node_modules/fast-jwt/README.md +420 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/LICENSE.txt +21 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/README.md +112 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bi-map.d.ts +46 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bi-map.js +195 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-set.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-set.js +379 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-vector.d.ts +42 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bit-vector.js +550 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bk-tree.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bk-tree.js +180 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bloom-filter.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/bloom-filter.js +186 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/circular-buffer.d.ts +34 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/circular-buffer.js +131 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/critbit-tree-map.js +515 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-map.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-map.js +162 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-weak-map.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/default-weak-map.js +108 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fibonacci-heap.js +320 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-deque.d.ts +34 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-deque.js +351 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-stack.d.ts +36 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fixed-stack.js +242 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-map.js +185 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/hashed-array-tree.js +209 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/heap.d.ts +96 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/heap.js +576 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/index.d.ts +48 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/index.js +58 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/inverted-index.d.ts +33 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/inverted-index.js +249 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/kd-tree.d.ts +25 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/kd-tree.js +447 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/linked-list.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/linked-list.js +261 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache-with-delete.d.ts +13 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache-with-delete.js +287 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache.d.ts +43 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-cache.js +436 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map-with-delete.d.ts +13 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map-with-delete.js +287 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map.d.ts +43 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/lru-map.js +261 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-array.js +447 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-map.d.ts +47 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-map.js +408 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-set.d.ts +37 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/multi-set.js +440 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/package.json +103 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/passjoin-index.d.ts +54 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/passjoin-index.js +518 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/queue.d.ts +27 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/queue.js +215 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/set.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/set.js +356 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/insertion.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/insertion.js +50 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/quick.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sort/quick.js +116 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-map.d.ts +26 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-map.js +243 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-queue-set.js +218 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-set.d.ts +23 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/sparse-set.js +168 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/stack.d.ts +27 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/stack.js +210 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-disjoint-set.js +195 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/static-interval-tree.js +387 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/suffix-array.d.ts +37 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/suffix-array.js +352 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/symspell.d.ts +33 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/symspell.js +547 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie-map.d.ts +30 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie-map.js +477 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie.d.ts +26 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/trie.js +167 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/binary-search.js +216 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/bitwise.js +109 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/comparators.js +79 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/hash-tables.js +107 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/iterables.js +93 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/merge.js +563 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/murmurhash3.js +87 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/typed-arrays.js +187 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/utils/types.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vector.d.ts +81 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vector.js +373 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vp-tree.d.ts +27 -0
- package/node_modules/fast-jwt/node_modules/mnemonist/vp-tree.js +367 -0
- package/node_modules/fast-jwt/node_modules/obliterator/LICENSE.txt +21 -0
- package/node_modules/fast-jwt/node_modules/obliterator/README.md +415 -0
- package/node_modules/fast-jwt/node_modules/obliterator/chain.d.ts +5 -0
- package/node_modules/fast-jwt/node_modules/obliterator/chain.js +46 -0
- package/node_modules/fast-jwt/node_modules/obliterator/combinations.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/combinations.js +76 -0
- package/node_modules/fast-jwt/node_modules/obliterator/consume.d.ts +1 -0
- package/node_modules/fast-jwt/node_modules/obliterator/consume.js +29 -0
- package/node_modules/fast-jwt/node_modules/obliterator/every.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/every.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/filter.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/filter.js +28 -0
- package/node_modules/fast-jwt/node_modules/obliterator/find.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/find.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach-with-null-keys.d.ts +29 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach-with-null-keys.js +83 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach.d.ts +24 -0
- package/node_modules/fast-jwt/node_modules/obliterator/foreach.js +73 -0
- package/node_modules/fast-jwt/node_modules/obliterator/includes.d.ts +6 -0
- package/node_modules/fast-jwt/node_modules/obliterator/includes.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/index.d.ts +20 -0
- package/node_modules/fast-jwt/node_modules/obliterator/index.js +26 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iter.d.ts +1 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iter.js +46 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iterator.d.ts +18 -0
- package/node_modules/fast-jwt/node_modules/obliterator/iterator.js +96 -0
- package/node_modules/fast-jwt/node_modules/obliterator/map.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/map.js +29 -0
- package/node_modules/fast-jwt/node_modules/obliterator/match.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/match.js +43 -0
- package/node_modules/fast-jwt/node_modules/obliterator/package.json +46 -0
- package/node_modules/fast-jwt/node_modules/obliterator/permutations.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/permutations.js +94 -0
- package/node_modules/fast-jwt/node_modules/obliterator/power-set.d.ts +3 -0
- package/node_modules/fast-jwt/node_modules/obliterator/power-set.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/range.d.ts +10 -0
- package/node_modules/fast-jwt/node_modules/obliterator/range.js +44 -0
- package/node_modules/fast-jwt/node_modules/obliterator/some.d.ts +8 -0
- package/node_modules/fast-jwt/node_modules/obliterator/some.js +27 -0
- package/node_modules/fast-jwt/node_modules/obliterator/split.d.ts +4 -0
- package/node_modules/fast-jwt/node_modules/obliterator/split.js +68 -0
- package/node_modules/fast-jwt/node_modules/obliterator/support.js +2 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take-into.d.ts +9 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take-into.js +39 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take.d.ts +6 -0
- package/node_modules/fast-jwt/node_modules/obliterator/take.js +39 -0
- package/node_modules/fast-jwt/node_modules/obliterator/types.d.ts +18 -0
- package/node_modules/fast-jwt/package.json +84 -0
- package/node_modules/fast-jwt/src/crypto.js +362 -0
- package/node_modules/fast-jwt/src/decoder.js +60 -0
- package/node_modules/fast-jwt/src/error.js +45 -0
- package/node_modules/fast-jwt/src/index.d.ts +122 -0
- package/node_modules/fast-jwt/src/index.js +13 -0
- package/node_modules/fast-jwt/src/signer.js +309 -0
- package/node_modules/fast-jwt/src/utils.js +65 -0
- package/node_modules/fast-jwt/src/verifier.js +470 -0
- package/node_modules/get-intrinsic/CHANGELOG.md +7 -0
- package/node_modules/get-intrinsic/index.js +1 -1
- package/node_modules/get-intrinsic/package.json +7 -4
- package/node_modules/is-callable/.editorconfig +5 -0
- package/node_modules/is-callable/.eslintrc +0 -11
- package/node_modules/is-callable/CHANGELOG.md +50 -0
- package/node_modules/is-callable/README.md +16 -0
- package/node_modules/is-callable/index.js +35 -8
- package/node_modules/is-callable/package.json +27 -13
- package/node_modules/is-callable/test/index.js +86 -12
- package/node_modules/jose/LICENSE.md +21 -0
- package/node_modules/jose/README.md +159 -0
- package/node_modules/jose/dist/browser/index.js +31 -0
- package/node_modules/jose/dist/browser/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/browser/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/browser/jwe/flattened/decrypt.js +137 -0
- package/node_modules/jose/dist/browser/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/browser/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/browser/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/browser/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/browser/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/browser/jwks/local.js +98 -0
- package/node_modules/jose/dist/browser/jwks/remote.js +81 -0
- package/node_modules/jose/dist/browser/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/browser/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/browser/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/browser/jws/flattened/verify.js +104 -0
- package/node_modules/jose/dist/browser/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/browser/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/browser/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/browser/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/jwt/produce.js +54 -0
- package/node_modules/jose/dist/browser/jwt/sign.js +21 -0
- package/node_modules/jose/dist/browser/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/browser/jwt/verify.js +16 -0
- package/node_modules/jose/dist/browser/key/export.js +12 -0
- package/node_modules/jose/dist/browser/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/browser/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/browser/key/import.js +120 -0
- package/node_modules/jose/dist/browser/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/browser/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/browser/lib/cek.js +20 -0
- package/node_modules/jose/dist/browser/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/browser/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/browser/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/browser/lib/crypto_key.js +145 -0
- package/node_modules/jose/dist/browser/lib/decrypt_key_management.js +98 -0
- package/node_modules/jose/dist/browser/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/browser/lib/epoch.js +1 -0
- package/node_modules/jose/dist/browser/lib/format_pem.js +4 -0
- package/node_modules/jose/dist/browser/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/browser/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/browser/lib/is_object.js +16 -0
- package/node_modules/jose/dist/browser/lib/iv.js +20 -0
- package/node_modules/jose/dist/browser/lib/jwt_claims_set.js +91 -0
- package/node_modules/jose/dist/browser/lib/secs.js +44 -0
- package/node_modules/jose/dist/browser/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/browser/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/browser/package.json +1 -0
- package/node_modules/jose/dist/browser/runtime/aeskw.js +32 -0
- package/node_modules/jose/dist/browser/runtime/asn1.js +118 -0
- package/node_modules/jose/dist/browser/runtime/base64url.js +37 -0
- package/node_modules/jose/dist/browser/runtime/bogus.js +6 -0
- package/node_modules/jose/dist/browser/runtime/check_cek_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/check_key_length.js +8 -0
- package/node_modules/jose/dist/browser/runtime/decrypt.js +85 -0
- package/node_modules/jose/dist/browser/runtime/digest.js +6 -0
- package/node_modules/jose/dist/browser/runtime/ecdhes.js +33 -0
- package/node_modules/jose/dist/browser/runtime/encrypt.js +68 -0
- package/node_modules/jose/dist/browser/runtime/env.js +3 -0
- package/node_modules/jose/dist/browser/runtime/fetch_jwks.js +34 -0
- package/node_modules/jose/dist/browser/runtime/generate.js +126 -0
- package/node_modules/jose/dist/browser/runtime/get_sign_verify_key.js +17 -0
- package/node_modules/jose/dist/browser/runtime/is_key_like.js +5 -0
- package/node_modules/jose/dist/browser/runtime/jwk_to_key.js +135 -0
- package/node_modules/jose/dist/browser/runtime/key_to_jwk.js +21 -0
- package/node_modules/jose/dist/browser/runtime/pbes2kw.js +51 -0
- package/node_modules/jose/dist/browser/runtime/random.js +2 -0
- package/node_modules/jose/dist/browser/runtime/rsaes.js +37 -0
- package/node_modules/jose/dist/browser/runtime/sign.js +11 -0
- package/node_modules/jose/dist/browser/runtime/subtle_dsa.js +28 -0
- package/node_modules/jose/dist/browser/runtime/subtle_rsaes.js +12 -0
- package/node_modules/jose/dist/browser/runtime/timing_safe_equal.js +19 -0
- package/node_modules/jose/dist/browser/runtime/verify.js +16 -0
- package/node_modules/jose/dist/browser/runtime/webcrypto.js +2 -0
- package/node_modules/jose/dist/browser/runtime/zlib.js +7 -0
- package/node_modules/jose/dist/browser/util/base64url.js +3 -0
- package/node_modules/jose/dist/browser/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/browser/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/browser/util/errors.js +147 -0
- package/node_modules/jose/dist/node/cjs/index.js +65 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/decrypt.js +31 -0
- package/node_modules/jose/dist/node/cjs/jwe/compact/encrypt.js +30 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/decrypt.js +141 -0
- package/node_modules/jose/dist/node/cjs/jwe/flattened/encrypt.js +179 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/decrypt.js +35 -0
- package/node_modules/jose/dist/node/cjs/jwe/general/encrypt.js +182 -0
- package/node_modules/jose/dist/node/cjs/jwk/embedded.js +21 -0
- package/node_modules/jose/dist/node/cjs/jwk/thumbprint.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwks/local.js +104 -0
- package/node_modules/jose/dist/node/cjs/jwks/remote.js +85 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/sign.js +21 -0
- package/node_modules/jose/dist/node/cjs/jws/compact/verify.js +25 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/sign.js +85 -0
- package/node_modules/jose/dist/node/cjs/jws/flattened/verify.js +108 -0
- package/node_modules/jose/dist/node/cjs/jws/general/sign.js +71 -0
- package/node_modules/jose/dist/node/cjs/jws/general/verify.js +28 -0
- package/node_modules/jose/dist/node/cjs/jwt/decrypt.js +27 -0
- package/node_modules/jose/dist/node/cjs/jwt/encrypt.js +72 -0
- package/node_modules/jose/dist/node/cjs/jwt/produce.js +58 -0
- package/node_modules/jose/dist/node/cjs/jwt/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/jwt/unsecured.js +36 -0
- package/node_modules/jose/dist/node/cjs/jwt/verify.js +20 -0
- package/node_modules/jose/dist/node/cjs/key/export.js +18 -0
- package/node_modules/jose/dist/node/cjs/key/generate_key_pair.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/generate_secret.js +8 -0
- package/node_modules/jose/dist/node/cjs/key/import.js +127 -0
- package/node_modules/jose/dist/node/cjs/lib/aesgcmkw.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/buffer_utils.js +60 -0
- package/node_modules/jose/dist/node/cjs/lib/cek.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/check_iv_length.js +10 -0
- package/node_modules/jose/dist/node/cjs/lib/check_key_type.js +47 -0
- package/node_modules/jose/dist/node/cjs/lib/check_p2s.js +9 -0
- package/node_modules/jose/dist/node/cjs/lib/crypto_key.js +150 -0
- package/node_modules/jose/dist/node/cjs/lib/decrypt_key_management.js +100 -0
- package/node_modules/jose/dist/node/cjs/lib/encrypt_key_management.js +89 -0
- package/node_modules/jose/dist/node/cjs/lib/epoch.js +3 -0
- package/node_modules/jose/dist/node/cjs/lib/format_pem.js +6 -0
- package/node_modules/jose/dist/node/cjs/lib/invalid_key_input.js +34 -0
- package/node_modules/jose/dist/node/cjs/lib/is_disjoint.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/is_object.js +19 -0
- package/node_modules/jose/dist/node/cjs/lib/iv.js +24 -0
- package/node_modules/jose/dist/node/cjs/lib/jwt_claims_set.js +93 -0
- package/node_modules/jose/dist/node/cjs/lib/secs.js +46 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_algorithms.js +13 -0
- package/node_modules/jose/dist/node/cjs/lib/validate_crit.js +36 -0
- package/node_modules/jose/dist/node/cjs/runtime/aeskw.js +55 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1.js +48 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_decoder.js +47 -0
- package/node_modules/jose/dist/node/cjs/runtime/asn1_sequence_encoder.js +91 -0
- package/node_modules/jose/dist/node/cjs/runtime/base64url.js +26 -0
- package/node_modules/jose/dist/node/cjs/runtime/cbc_tag.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_cek_length.js +37 -0
- package/node_modules/jose/dist/node/cjs/runtime/check_modulus_length.js +52 -0
- package/node_modules/jose/dist/node/cjs/runtime/ciphers.js +8 -0
- package/node_modules/jose/dist/node/cjs/runtime/decrypt.js +97 -0
- package/node_modules/jose/dist/node/cjs/runtime/digest.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/dsa_digest.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/ecdhes.js +70 -0
- package/node_modules/jose/dist/node/cjs/runtime/encrypt.js +74 -0
- package/node_modules/jose/dist/node/cjs/runtime/env.js +7 -0
- package/node_modules/jose/dist/node/cjs/runtime/fetch_jwks.js +45 -0
- package/node_modules/jose/dist/node/cjs/runtime/generate.js +105 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_named_curve.js +95 -0
- package/node_modules/jose/dist/node/cjs/runtime/get_sign_verify_key.js +24 -0
- package/node_modules/jose/dist/node/cjs/runtime/hmac_digest.js +16 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_like.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/is_key_object.js +7 -0
- package/node_modules/jose/dist/node/cjs/runtime/jwk_to_key.js +122 -0
- package/node_modules/jose/dist/node/cjs/runtime/key_to_jwk.js +164 -0
- package/node_modules/jose/dist/node/cjs/runtime/node_key.js +83 -0
- package/node_modules/jose/dist/node/cjs/runtime/pbes2kw.js +48 -0
- package/node_modules/jose/dist/node/cjs/runtime/random.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/rsaes.js +69 -0
- package/node_modules/jose/dist/node/cjs/runtime/sign.js +25 -0
- package/node_modules/jose/dist/node/cjs/runtime/timing_safe_equal.js +5 -0
- package/node_modules/jose/dist/node/cjs/runtime/verify.js +42 -0
- package/node_modules/jose/dist/node/cjs/runtime/webcrypto.js +11 -0
- package/node_modules/jose/dist/node/cjs/runtime/zlib.js +11 -0
- package/node_modules/jose/dist/node/cjs/util/base64url.js +6 -0
- package/node_modules/jose/dist/node/cjs/util/decode_jwt.js +36 -0
- package/node_modules/jose/dist/node/cjs/util/decode_protected_header.js +38 -0
- package/node_modules/jose/dist/node/cjs/util/errors.js +165 -0
- package/node_modules/jose/dist/node/esm/index.js +29 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/decrypt.js +27 -0
- package/node_modules/jose/dist/node/esm/jwe/compact/encrypt.js +26 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/decrypt.js +137 -0
- package/node_modules/jose/dist/node/esm/jwe/flattened/encrypt.js +175 -0
- package/node_modules/jose/dist/node/esm/jwe/general/decrypt.js +31 -0
- package/node_modules/jose/dist/node/esm/jwe/general/encrypt.js +178 -0
- package/node_modules/jose/dist/node/esm/jwk/embedded.js +17 -0
- package/node_modules/jose/dist/node/esm/jwk/thumbprint.js +53 -0
- package/node_modules/jose/dist/node/esm/jwks/local.js +98 -0
- package/node_modules/jose/dist/node/esm/jwks/remote.js +81 -0
- package/node_modules/jose/dist/node/esm/jws/compact/sign.js +17 -0
- package/node_modules/jose/dist/node/esm/jws/compact/verify.js +21 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/sign.js +81 -0
- package/node_modules/jose/dist/node/esm/jws/flattened/verify.js +104 -0
- package/node_modules/jose/dist/node/esm/jws/general/sign.js +67 -0
- package/node_modules/jose/dist/node/esm/jws/general/verify.js +24 -0
- package/node_modules/jose/dist/node/esm/jwt/decrypt.js +23 -0
- package/node_modules/jose/dist/node/esm/jwt/encrypt.js +68 -0
- package/node_modules/jose/dist/node/esm/jwt/produce.js +54 -0
- package/node_modules/jose/dist/node/esm/jwt/sign.js +21 -0
- package/node_modules/jose/dist/node/esm/jwt/unsecured.js +32 -0
- package/node_modules/jose/dist/node/esm/jwt/verify.js +16 -0
- package/node_modules/jose/dist/node/esm/key/export.js +12 -0
- package/node_modules/jose/dist/node/esm/key/generate_key_pair.js +4 -0
- package/node_modules/jose/dist/node/esm/key/generate_secret.js +4 -0
- package/node_modules/jose/dist/node/esm/key/import.js +120 -0
- package/node_modules/jose/dist/node/esm/lib/aesgcmkw.js +14 -0
- package/node_modules/jose/dist/node/esm/lib/buffer_utils.js +51 -0
- package/node_modules/jose/dist/node/esm/lib/cek.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/check_iv_length.js +8 -0
- package/node_modules/jose/dist/node/esm/lib/check_key_type.js +45 -0
- package/node_modules/jose/dist/node/esm/lib/check_p2s.js +6 -0
- package/node_modules/jose/dist/node/esm/lib/crypto_key.js +145 -0
- package/node_modules/jose/dist/node/esm/lib/decrypt_key_management.js +98 -0
- package/node_modules/jose/dist/node/esm/lib/encrypt_key_management.js +87 -0
- package/node_modules/jose/dist/node/esm/lib/epoch.js +1 -0
- package/node_modules/jose/dist/node/esm/lib/format_pem.js +4 -0
- package/node_modules/jose/dist/node/esm/lib/invalid_key_input.js +30 -0
- package/node_modules/jose/dist/node/esm/lib/is_disjoint.js +22 -0
- package/node_modules/jose/dist/node/esm/lib/is_object.js +16 -0
- package/node_modules/jose/dist/node/esm/lib/iv.js +20 -0
- package/node_modules/jose/dist/node/esm/lib/jwt_claims_set.js +91 -0
- package/node_modules/jose/dist/node/esm/lib/secs.js +44 -0
- package/node_modules/jose/dist/node/esm/lib/validate_algorithms.js +11 -0
- package/node_modules/jose/dist/node/esm/lib/validate_crit.js +34 -0
- package/node_modules/jose/dist/node/esm/package.json +1 -0
- package/node_modules/jose/dist/node/esm/runtime/aeskw.js +50 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1.js +41 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_decoder.js +44 -0
- package/node_modules/jose/dist/node/esm/runtime/asn1_sequence_encoder.js +88 -0
- package/node_modules/jose/dist/node/esm/runtime/base64url.js +20 -0
- package/node_modules/jose/dist/node/esm/runtime/cbc_tag.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/check_cek_length.js +35 -0
- package/node_modules/jose/dist/node/esm/runtime/check_modulus_length.js +48 -0
- package/node_modules/jose/dist/node/esm/runtime/ciphers.js +6 -0
- package/node_modules/jose/dist/node/esm/runtime/decrypt.js +95 -0
- package/node_modules/jose/dist/node/esm/runtime/digest.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/dsa_digest.js +22 -0
- package/node_modules/jose/dist/node/esm/runtime/ecdhes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/encrypt.js +72 -0
- package/node_modules/jose/dist/node/esm/runtime/env.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/fetch_jwks.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/generate.js +100 -0
- package/node_modules/jose/dist/node/esm/runtime/get_named_curve.js +91 -0
- package/node_modules/jose/dist/node/esm/runtime/get_sign_verify_key.js +21 -0
- package/node_modules/jose/dist/node/esm/runtime/hmac_digest.js +13 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_like.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/is_key_object.js +5 -0
- package/node_modules/jose/dist/node/esm/runtime/jwk_to_key.js +120 -0
- package/node_modules/jose/dist/node/esm/runtime/key_to_jwk.js +162 -0
- package/node_modules/jose/dist/node/esm/runtime/node_key.js +80 -0
- package/node_modules/jose/dist/node/esm/runtime/pbes2kw.js +43 -0
- package/node_modules/jose/dist/node/esm/runtime/random.js +1 -0
- package/node_modules/jose/dist/node/esm/runtime/rsaes.js +64 -0
- package/node_modules/jose/dist/node/esm/runtime/sign.js +23 -0
- package/node_modules/jose/dist/node/esm/runtime/timing_safe_equal.js +3 -0
- package/node_modules/jose/dist/node/esm/runtime/verify.js +40 -0
- package/node_modules/jose/dist/node/esm/runtime/webcrypto.js +8 -0
- package/node_modules/jose/dist/node/esm/runtime/zlib.js +6 -0
- package/node_modules/jose/dist/node/esm/util/base64url.js +3 -0
- package/node_modules/jose/dist/node/esm/util/decode_jwt.js +32 -0
- package/node_modules/jose/dist/node/esm/util/decode_protected_header.js +34 -0
- package/node_modules/jose/dist/node/esm/util/errors.js +147 -0
- package/node_modules/jose/dist/types/index.d.ts +47 -0
- package/node_modules/jose/dist/types/jwe/compact/decrypt.d.ts +33 -0
- package/node_modules/jose/dist/types/jwe/compact/encrypt.d.ts +60 -0
- package/node_modules/jose/dist/types/jwe/flattened/decrypt.d.ts +43 -0
- package/node_modules/jose/dist/types/jwe/flattened/encrypt.d.ts +89 -0
- package/node_modules/jose/dist/types/jwe/general/decrypt.d.ts +47 -0
- package/node_modules/jose/dist/types/jwe/general/encrypt.d.ts +74 -0
- package/node_modules/jose/dist/types/jwk/embedded.d.ts +23 -0
- package/node_modules/jose/dist/types/jwk/thumbprint.d.ts +44 -0
- package/node_modules/jose/dist/types/jwks/local.d.ts +48 -0
- package/node_modules/jose/dist/types/jwks/remote.d.ts +54 -0
- package/node_modules/jose/dist/types/jws/compact/sign.d.ts +34 -0
- package/node_modules/jose/dist/types/jws/compact/verify.d.ts +37 -0
- package/node_modules/jose/dist/types/jws/flattened/sign.d.ts +42 -0
- package/node_modules/jose/dist/types/jws/flattened/verify.d.ts +42 -0
- package/node_modules/jose/dist/types/jws/general/sign.d.ts +54 -0
- package/node_modules/jose/dist/types/jws/general/verify.d.ts +45 -0
- package/node_modules/jose/dist/types/jwt/decrypt.d.ts +40 -0
- package/node_modules/jose/dist/types/jwt/encrypt.d.ts +84 -0
- package/node_modules/jose/dist/types/jwt/produce.d.ts +53 -0
- package/node_modules/jose/dist/types/jwt/sign.d.ts +35 -0
- package/node_modules/jose/dist/types/jwt/unsecured.d.ts +44 -0
- package/node_modules/jose/dist/types/jwt/verify.d.ts +44 -0
- package/node_modules/jose/dist/types/key/export.d.ts +47 -0
- package/node_modules/jose/dist/types/key/generate_key_pair.d.ts +44 -0
- package/node_modules/jose/dist/types/key/generate_secret.d.ts +26 -0
- package/node_modules/jose/dist/types/key/import.d.ts +115 -0
- package/node_modules/jose/dist/types/types.d.ts +602 -0
- package/node_modules/jose/dist/types/util/base64url.d.ts +19 -0
- package/node_modules/jose/dist/types/util/decode_jwt.d.ts +17 -0
- package/node_modules/jose/dist/types/util/decode_protected_header.d.ts +15 -0
- package/node_modules/jose/dist/types/util/errors.d.ts +96 -0
- package/node_modules/jose/package.json +82 -0
- package/node_modules/minimalistic-assert/LICENSE +13 -0
- package/node_modules/minimalistic-assert/index.js +11 -0
- package/node_modules/minimalistic-assert/package.json +19 -0
- package/node_modules/minimalistic-assert/readme.md +4 -0
- package/node_modules/object-hash/LICENSE +22 -0
- package/node_modules/object-hash/dist/object_hash.js +1 -0
- package/node_modules/object-hash/index.js +453 -0
- package/node_modules/object-hash/package.json +53 -0
- package/node_modules/object-hash/readme.markdown +184 -0
- package/node_modules/oidc-token-hash/LICENSE.md +21 -0
- package/node_modules/oidc-token-hash/README.md +55 -0
- package/node_modules/oidc-token-hash/lib/index.js +106 -0
- package/node_modules/oidc-token-hash/lib/shake256.js +7 -0
- package/node_modules/oidc-token-hash/package.json +36 -0
- package/node_modules/openid-client/LICENSE.md +21 -0
- package/node_modules/openid-client/README.md +299 -0
- package/node_modules/openid-client/lib/client.js +1815 -0
- package/node_modules/openid-client/lib/device_flow_handle.js +125 -0
- package/node_modules/openid-client/lib/errors.js +55 -0
- package/node_modules/openid-client/lib/helpers/assert.js +24 -0
- package/node_modules/openid-client/lib/helpers/base64url.js +13 -0
- package/node_modules/openid-client/lib/helpers/client.js +209 -0
- package/node_modules/openid-client/lib/helpers/consts.js +7 -0
- package/node_modules/openid-client/lib/helpers/decode_jwt.js +27 -0
- package/node_modules/openid-client/lib/helpers/deep_clone.js +3 -0
- package/node_modules/openid-client/lib/helpers/defaults.js +27 -0
- package/node_modules/openid-client/lib/helpers/generators.js +14 -0
- package/node_modules/openid-client/lib/helpers/is_key_object.js +4 -0
- package/node_modules/openid-client/lib/helpers/is_plain_object.js +1 -0
- package/node_modules/openid-client/lib/helpers/issuer.js +110 -0
- package/node_modules/openid-client/lib/helpers/keystore.js +312 -0
- package/node_modules/openid-client/lib/helpers/merge.js +24 -0
- package/node_modules/openid-client/lib/helpers/pick.js +9 -0
- package/node_modules/openid-client/lib/helpers/process_response.js +71 -0
- package/node_modules/openid-client/lib/helpers/request.js +197 -0
- package/node_modules/openid-client/lib/helpers/unix_timestamp.js +1 -0
- package/node_modules/openid-client/lib/helpers/weak_cache.js +1 -0
- package/node_modules/openid-client/lib/helpers/webfinger_normalize.js +71 -0
- package/node_modules/openid-client/lib/helpers/www_authenticate_parser.js +14 -0
- package/node_modules/openid-client/lib/index.js +23 -0
- package/node_modules/openid-client/lib/index.mjs +9 -0
- package/node_modules/openid-client/lib/issuer.js +204 -0
- package/node_modules/openid-client/lib/issuer_registry.js +3 -0
- package/node_modules/openid-client/lib/passport_strategy.js +194 -0
- package/node_modules/openid-client/lib/token_set.js +35 -0
- package/node_modules/openid-client/node_modules/lru-cache/LICENSE +15 -0
- package/node_modules/openid-client/node_modules/lru-cache/README.md +166 -0
- package/node_modules/openid-client/node_modules/lru-cache/index.js +334 -0
- package/node_modules/openid-client/node_modules/lru-cache/package.json +34 -0
- package/node_modules/openid-client/package.json +118 -0
- package/node_modules/openid-client/types/index.d.ts +620 -0
- package/node_modules/safe-regex-test/.eslintrc +9 -0
- package/node_modules/safe-regex-test/.github/FUNDING.yml +12 -0
- package/node_modules/safe-regex-test/CHANGELOG.md +15 -0
- package/node_modules/safe-regex-test/LICENSE +21 -0
- package/node_modules/safe-regex-test/README.md +42 -0
- package/node_modules/safe-regex-test/index.js +17 -0
- package/node_modules/safe-regex-test/package.json +75 -0
- package/node_modules/safe-regex-test/test/index.js +37 -0
- package/node_modules/safer-buffer/LICENSE +21 -0
- package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/node_modules/safer-buffer/Readme.md +156 -0
- package/node_modules/safer-buffer/dangerous.js +58 -0
- package/node_modules/safer-buffer/package.json +34 -0
- package/node_modules/safer-buffer/safer.js +77 -0
- package/node_modules/safer-buffer/tests.js +406 -0
- package/node_modules/ws/lib/websocket.js +15 -15
- package/node_modules/ws/package.json +1 -1
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/package.json +40 -38
- package/cli/serverlessSpy.js +0 -73
- package/cli/ws.ts +0 -79
- package/common/publishSpyEvent.ts +0 -269
- package/lib/cli/ws.js +0 -68
- package/lib/cli/ws.mjs +0 -66
- package/lib/common/publishSpyEvent.d.ts +0 -4
- package/lib/common/publishSpyEvent.js +0 -211
- package/lib/common/publishSpyEvent.mjs +0 -205
- package/node_modules/@serverless-stack/node/.turbo/turbo-build.log +0 -2
- package/node_modules/@serverless-stack/node/CHANGELOG.md +0 -157
- package/node_modules/@serverless-stack/node/src/auth/index.ts +0 -24
- package/node_modules/@serverless-stack/node/src/config/index.ts +0 -120
- package/node_modules/@serverless-stack/node/src/graphql/index.ts +0 -96
- package/node_modules/@serverless-stack/node/tsconfig.json +0 -11
- package/node_modules/is-callable/.eslintignore +0 -1
- package/node_modules/is-callable/.istanbul.yml +0 -47
|
@@ -69,11 +69,11 @@ declare class EC2 extends Service {
|
|
|
69
69
|
*/
|
|
70
70
|
advertiseByoipCidr(callback?: (err: AWSError, data: EC2.Types.AdvertiseByoipCidrResult) => void): Request<EC2.Types.AdvertiseByoipCidrResult, AWSError>;
|
|
71
71
|
/**
|
|
72
|
-
* Allocates an Elastic IP address to your Amazon Web Services account. After you allocate the Elastic IP address you can associate it with an instance or network interface. After you release an Elastic IP address, it is released to the IP address pool and can be allocated to a different Amazon Web Services account. You can allocate an Elastic IP address from an address pool owned by Amazon Web Services or from an address pool created from a public IPv4 address range that you have brought to Amazon Web Services for use with your Amazon Web Services resources using bring your own IP addresses (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide. [EC2-VPC] If you release an Elastic IP address, you might be able to recover it. You cannot recover an Elastic IP address that you released after it is allocated to another Amazon Web Services account. You cannot recover an Elastic IP address for EC2-Classic. To attempt to recover an Elastic IP address that you released, specify it in this operation. An Elastic IP address is for use either in the EC2-Classic platform or in a VPC. By default, you can allocate 5 Elastic IP addresses for EC2-Classic per Region and 5 Elastic IP addresses for EC2-VPC per Region. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. You can allocate a carrier IP address which is a public IP address from a telecommunication carrier, to a network interface which resides in a subnet in a Wavelength Zone (for example an EC2 instance). We are retiring EC2-Classic
|
|
72
|
+
* Allocates an Elastic IP address to your Amazon Web Services account. After you allocate the Elastic IP address you can associate it with an instance or network interface. After you release an Elastic IP address, it is released to the IP address pool and can be allocated to a different Amazon Web Services account. You can allocate an Elastic IP address from an address pool owned by Amazon Web Services or from an address pool created from a public IPv4 address range that you have brought to Amazon Web Services for use with your Amazon Web Services resources using bring your own IP addresses (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide. [EC2-VPC] If you release an Elastic IP address, you might be able to recover it. You cannot recover an Elastic IP address that you released after it is allocated to another Amazon Web Services account. You cannot recover an Elastic IP address for EC2-Classic. To attempt to recover an Elastic IP address that you released, specify it in this operation. An Elastic IP address is for use either in the EC2-Classic platform or in a VPC. By default, you can allocate 5 Elastic IP addresses for EC2-Classic per Region and 5 Elastic IP addresses for EC2-VPC per Region. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. You can allocate a carrier IP address which is a public IP address from a telecommunication carrier, to a network interface which resides in a subnet in a Wavelength Zone (for example an EC2 instance). We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
73
73
|
*/
|
|
74
74
|
allocateAddress(params: EC2.Types.AllocateAddressRequest, callback?: (err: AWSError, data: EC2.Types.AllocateAddressResult) => void): Request<EC2.Types.AllocateAddressResult, AWSError>;
|
|
75
75
|
/**
|
|
76
|
-
* Allocates an Elastic IP address to your Amazon Web Services account. After you allocate the Elastic IP address you can associate it with an instance or network interface. After you release an Elastic IP address, it is released to the IP address pool and can be allocated to a different Amazon Web Services account. You can allocate an Elastic IP address from an address pool owned by Amazon Web Services or from an address pool created from a public IPv4 address range that you have brought to Amazon Web Services for use with your Amazon Web Services resources using bring your own IP addresses (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide. [EC2-VPC] If you release an Elastic IP address, you might be able to recover it. You cannot recover an Elastic IP address that you released after it is allocated to another Amazon Web Services account. You cannot recover an Elastic IP address for EC2-Classic. To attempt to recover an Elastic IP address that you released, specify it in this operation. An Elastic IP address is for use either in the EC2-Classic platform or in a VPC. By default, you can allocate 5 Elastic IP addresses for EC2-Classic per Region and 5 Elastic IP addresses for EC2-VPC per Region. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. You can allocate a carrier IP address which is a public IP address from a telecommunication carrier, to a network interface which resides in a subnet in a Wavelength Zone (for example an EC2 instance). We are retiring EC2-Classic
|
|
76
|
+
* Allocates an Elastic IP address to your Amazon Web Services account. After you allocate the Elastic IP address you can associate it with an instance or network interface. After you release an Elastic IP address, it is released to the IP address pool and can be allocated to a different Amazon Web Services account. You can allocate an Elastic IP address from an address pool owned by Amazon Web Services or from an address pool created from a public IPv4 address range that you have brought to Amazon Web Services for use with your Amazon Web Services resources using bring your own IP addresses (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the Amazon Elastic Compute Cloud User Guide. [EC2-VPC] If you release an Elastic IP address, you might be able to recover it. You cannot recover an Elastic IP address that you released after it is allocated to another Amazon Web Services account. You cannot recover an Elastic IP address for EC2-Classic. To attempt to recover an Elastic IP address that you released, specify it in this operation. An Elastic IP address is for use either in the EC2-Classic platform or in a VPC. By default, you can allocate 5 Elastic IP addresses for EC2-Classic per Region and 5 Elastic IP addresses for EC2-VPC per Region. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. You can allocate a carrier IP address which is a public IP address from a telecommunication carrier, to a network interface which resides in a subnet in a Wavelength Zone (for example an EC2 instance). We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
77
77
|
*/
|
|
78
78
|
allocateAddress(callback?: (err: AWSError, data: EC2.Types.AllocateAddressResult) => void): Request<EC2.Types.AllocateAddressResult, AWSError>;
|
|
79
79
|
/**
|
|
@@ -117,11 +117,11 @@ declare class EC2 extends Service {
|
|
|
117
117
|
*/
|
|
118
118
|
assignPrivateIpAddresses(callback?: (err: AWSError, data: EC2.Types.AssignPrivateIpAddressesResult) => void): Request<EC2.Types.AssignPrivateIpAddressesResult, AWSError>;
|
|
119
119
|
/**
|
|
120
|
-
* Associates an Elastic IP address, or carrier IP address (for instances that are in subnets in Wavelength Zones) with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. [EC2-Classic, VPC in an EC2-VPC-only account] If the Elastic IP address is already associated with a different instance, it is disassociated from that instance and associated with the specified instance. If you associate an Elastic IP address with an instance that has an existing Elastic IP address, the existing address is disassociated from the instance, but remains allocated to your account. [VPC in an EC2-Classic account] If you don't specify a private IP address, the Elastic IP address is associated with the primary IP address. If the Elastic IP address is already associated with a different instance or a network interface, you get an error unless you allow reassociation. You cannot associate an Elastic IP address with an instance or network interface that has an existing Elastic IP address. [Subnets in Wavelength Zones] You can associate an IP address from the telecommunication carrier to the instance or network interface. You cannot associate an Elastic IP address with an interface in a different network border group. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error, and you may be charged for each time the Elastic IP address is remapped to the same instance. For more information, see the Elastic IP Addresses section of Amazon EC2 Pricing. We are retiring EC2-Classic
|
|
120
|
+
* Associates an Elastic IP address, or carrier IP address (for instances that are in subnets in Wavelength Zones) with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. [EC2-Classic, VPC in an EC2-VPC-only account] If the Elastic IP address is already associated with a different instance, it is disassociated from that instance and associated with the specified instance. If you associate an Elastic IP address with an instance that has an existing Elastic IP address, the existing address is disassociated from the instance, but remains allocated to your account. [VPC in an EC2-Classic account] If you don't specify a private IP address, the Elastic IP address is associated with the primary IP address. If the Elastic IP address is already associated with a different instance or a network interface, you get an error unless you allow reassociation. You cannot associate an Elastic IP address with an instance or network interface that has an existing Elastic IP address. [Subnets in Wavelength Zones] You can associate an IP address from the telecommunication carrier to the instance or network interface. You cannot associate an Elastic IP address with an interface in a different network border group. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error, and you may be charged for each time the Elastic IP address is remapped to the same instance. For more information, see the Elastic IP Addresses section of Amazon EC2 Pricing. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
121
121
|
*/
|
|
122
122
|
associateAddress(params: EC2.Types.AssociateAddressRequest, callback?: (err: AWSError, data: EC2.Types.AssociateAddressResult) => void): Request<EC2.Types.AssociateAddressResult, AWSError>;
|
|
123
123
|
/**
|
|
124
|
-
* Associates an Elastic IP address, or carrier IP address (for instances that are in subnets in Wavelength Zones) with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. [EC2-Classic, VPC in an EC2-VPC-only account] If the Elastic IP address is already associated with a different instance, it is disassociated from that instance and associated with the specified instance. If you associate an Elastic IP address with an instance that has an existing Elastic IP address, the existing address is disassociated from the instance, but remains allocated to your account. [VPC in an EC2-Classic account] If you don't specify a private IP address, the Elastic IP address is associated with the primary IP address. If the Elastic IP address is already associated with a different instance or a network interface, you get an error unless you allow reassociation. You cannot associate an Elastic IP address with an instance or network interface that has an existing Elastic IP address. [Subnets in Wavelength Zones] You can associate an IP address from the telecommunication carrier to the instance or network interface. You cannot associate an Elastic IP address with an interface in a different network border group. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error, and you may be charged for each time the Elastic IP address is remapped to the same instance. For more information, see the Elastic IP Addresses section of Amazon EC2 Pricing. We are retiring EC2-Classic
|
|
124
|
+
* Associates an Elastic IP address, or carrier IP address (for instances that are in subnets in Wavelength Zones) with an instance or a network interface. Before you can use an Elastic IP address, you must allocate it to your account. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. [EC2-Classic, VPC in an EC2-VPC-only account] If the Elastic IP address is already associated with a different instance, it is disassociated from that instance and associated with the specified instance. If you associate an Elastic IP address with an instance that has an existing Elastic IP address, the existing address is disassociated from the instance, but remains allocated to your account. [VPC in an EC2-Classic account] If you don't specify a private IP address, the Elastic IP address is associated with the primary IP address. If the Elastic IP address is already associated with a different instance or a network interface, you get an error unless you allow reassociation. You cannot associate an Elastic IP address with an instance or network interface that has an existing Elastic IP address. [Subnets in Wavelength Zones] You can associate an IP address from the telecommunication carrier to the instance or network interface. You cannot associate an Elastic IP address with an interface in a different network border group. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error, and you may be charged for each time the Elastic IP address is remapped to the same instance. For more information, see the Elastic IP Addresses section of Amazon EC2 Pricing. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
125
125
|
*/
|
|
126
126
|
associateAddress(callback?: (err: AWSError, data: EC2.Types.AssociateAddressResult) => void): Request<EC2.Types.AssociateAddressResult, AWSError>;
|
|
127
127
|
/**
|
|
@@ -141,11 +141,11 @@ declare class EC2 extends Service {
|
|
|
141
141
|
*/
|
|
142
142
|
associateDhcpOptions(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
143
143
|
/**
|
|
144
|
-
* Associates an Identity and Access Management (IAM) role with an Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see Certificate Manager for Nitro Enclaves in the Amazon Web Services Nitro Enclaves User Guide. When the IAM role is associated with the ACM certificate, the certificate, certificate chain, and encrypted private key are placed in an Amazon S3
|
|
144
|
+
* Associates an Identity and Access Management (IAM) role with an Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see Certificate Manager for Nitro Enclaves in the Amazon Web Services Nitro Enclaves User Guide. When the IAM role is associated with the ACM certificate, the certificate, certificate chain, and encrypted private key are placed in an Amazon S3 location that only the associated IAM role can access. The private key of the certificate is encrypted with an Amazon Web Services managed key that has an attached attestation-based key policy. To enable the IAM role to access the Amazon S3 object, you must grant it permission to call s3:GetObject on the Amazon S3 bucket returned by the command. To enable the IAM role to access the KMS key, you must grant it permission to call kms:Decrypt on the KMS key returned by the command. For more information, see Grant the role permission to access the certificate and encryption key in the Amazon Web Services Nitro Enclaves User Guide.
|
|
145
145
|
*/
|
|
146
146
|
associateEnclaveCertificateIamRole(params: EC2.Types.AssociateEnclaveCertificateIamRoleRequest, callback?: (err: AWSError, data: EC2.Types.AssociateEnclaveCertificateIamRoleResult) => void): Request<EC2.Types.AssociateEnclaveCertificateIamRoleResult, AWSError>;
|
|
147
147
|
/**
|
|
148
|
-
* Associates an Identity and Access Management (IAM) role with an Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see Certificate Manager for Nitro Enclaves in the Amazon Web Services Nitro Enclaves User Guide. When the IAM role is associated with the ACM certificate, the certificate, certificate chain, and encrypted private key are placed in an Amazon S3
|
|
148
|
+
* Associates an Identity and Access Management (IAM) role with an Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see Certificate Manager for Nitro Enclaves in the Amazon Web Services Nitro Enclaves User Guide. When the IAM role is associated with the ACM certificate, the certificate, certificate chain, and encrypted private key are placed in an Amazon S3 location that only the associated IAM role can access. The private key of the certificate is encrypted with an Amazon Web Services managed key that has an attached attestation-based key policy. To enable the IAM role to access the Amazon S3 object, you must grant it permission to call s3:GetObject on the Amazon S3 bucket returned by the command. To enable the IAM role to access the KMS key, you must grant it permission to call kms:Decrypt on the KMS key returned by the command. For more information, see Grant the role permission to access the certificate and encryption key in the Amazon Web Services Nitro Enclaves User Guide.
|
|
149
149
|
*/
|
|
150
150
|
associateEnclaveCertificateIamRole(callback?: (err: AWSError, data: EC2.Types.AssociateEnclaveCertificateIamRoleResult) => void): Request<EC2.Types.AssociateEnclaveCertificateIamRoleResult, AWSError>;
|
|
151
151
|
/**
|
|
@@ -221,11 +221,11 @@ declare class EC2 extends Service {
|
|
|
221
221
|
*/
|
|
222
222
|
associateVpcCidrBlock(callback?: (err: AWSError, data: EC2.Types.AssociateVpcCidrBlockResult) => void): Request<EC2.Types.AssociateVpcCidrBlockResult, AWSError>;
|
|
223
223
|
/**
|
|
224
|
-
* We are retiring EC2-Classic
|
|
224
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Links an EC2-Classic instance to a ClassicLink-enabled VPC through one or more of the VPC's security groups. You cannot link an EC2-Classic instance to more than one VPC at a time. You can only link an instance that's in the running state. An instance is automatically unlinked from a VPC when it's stopped - you can link it to the VPC again when you restart it. After you've linked an instance, you cannot change the VPC security groups that are associated with it. To change the security groups, you must first unlink the instance, and then link it again. Linking your instance to a VPC is sometimes referred to as attaching your instance.
|
|
225
225
|
*/
|
|
226
226
|
attachClassicLinkVpc(params: EC2.Types.AttachClassicLinkVpcRequest, callback?: (err: AWSError, data: EC2.Types.AttachClassicLinkVpcResult) => void): Request<EC2.Types.AttachClassicLinkVpcResult, AWSError>;
|
|
227
227
|
/**
|
|
228
|
-
* We are retiring EC2-Classic
|
|
228
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Links an EC2-Classic instance to a ClassicLink-enabled VPC through one or more of the VPC's security groups. You cannot link an EC2-Classic instance to more than one VPC at a time. You can only link an instance that's in the running state. An instance is automatically unlinked from a VPC when it's stopped - you can link it to the VPC again when you restart it. After you've linked an instance, you cannot change the VPC security groups that are associated with it. To change the security groups, you must first unlink the instance, and then link it again. Linking your instance to a VPC is sometimes referred to as attaching your instance.
|
|
229
229
|
*/
|
|
230
230
|
attachClassicLinkVpc(callback?: (err: AWSError, data: EC2.Types.AttachClassicLinkVpcResult) => void): Request<EC2.Types.AttachClassicLinkVpcResult, AWSError>;
|
|
231
231
|
/**
|
|
@@ -277,11 +277,11 @@ declare class EC2 extends Service {
|
|
|
277
277
|
*/
|
|
278
278
|
authorizeSecurityGroupEgress(callback?: (err: AWSError, data: EC2.Types.AuthorizeSecurityGroupEgressResult) => void): Request<EC2.Types.AuthorizeSecurityGroupEgressResult, AWSError>;
|
|
279
279
|
/**
|
|
280
|
-
* Adds the specified inbound (ingress) rules to a security group. An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 CIDR address range, or from the instances that are associated with the specified destination security groups. When specifying an inbound rule for your security group in a VPC, the IpPermissions must include a source for the traffic. You specify a protocol for each rule (for example, TCP). For TCP and UDP, you must also specify the destination port or port range. For ICMP/ICMPv6, you must also specify the ICMP/ICMPv6 type and code. You can use -1 to mean all types or all codes. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. For more information about VPC security group quotas, see Amazon VPC quotas. We are retiring EC2-Classic
|
|
280
|
+
* Adds the specified inbound (ingress) rules to a security group. An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 CIDR address range, or from the instances that are associated with the specified destination security groups. When specifying an inbound rule for your security group in a VPC, the IpPermissions must include a source for the traffic. You specify a protocol for each rule (for example, TCP). For TCP and UDP, you must also specify the destination port or port range. For ICMP/ICMPv6, you must also specify the ICMP/ICMPv6 type and code. You can use -1 to mean all types or all codes. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. For more information about VPC security group quotas, see Amazon VPC quotas. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
281
281
|
*/
|
|
282
282
|
authorizeSecurityGroupIngress(params: EC2.Types.AuthorizeSecurityGroupIngressRequest, callback?: (err: AWSError, data: EC2.Types.AuthorizeSecurityGroupIngressResult) => void): Request<EC2.Types.AuthorizeSecurityGroupIngressResult, AWSError>;
|
|
283
283
|
/**
|
|
284
|
-
* Adds the specified inbound (ingress) rules to a security group. An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 CIDR address range, or from the instances that are associated with the specified destination security groups. When specifying an inbound rule for your security group in a VPC, the IpPermissions must include a source for the traffic. You specify a protocol for each rule (for example, TCP). For TCP and UDP, you must also specify the destination port or port range. For ICMP/ICMPv6, you must also specify the ICMP/ICMPv6 type and code. You can use -1 to mean all types or all codes. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. For more information about VPC security group quotas, see Amazon VPC quotas. We are retiring EC2-Classic
|
|
284
|
+
* Adds the specified inbound (ingress) rules to a security group. An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 CIDR address range, or from the instances that are associated with the specified destination security groups. When specifying an inbound rule for your security group in a VPC, the IpPermissions must include a source for the traffic. You specify a protocol for each rule (for example, TCP). For TCP and UDP, you must also specify the destination port or port range. For ICMP/ICMPv6, you must also specify the ICMP/ICMPv6 type and code. You can use -1 to mean all types or all codes. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. For more information about VPC security group quotas, see Amazon VPC quotas. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
285
285
|
*/
|
|
286
286
|
authorizeSecurityGroupIngress(callback?: (err: AWSError, data: EC2.Types.AuthorizeSecurityGroupIngressResult) => void): Request<EC2.Types.AuthorizeSecurityGroupIngressResult, AWSError>;
|
|
287
287
|
/**
|
|
@@ -436,6 +436,22 @@ declare class EC2 extends Service {
|
|
|
436
436
|
* Adds a route to a network to a Client VPN endpoint. Each Client VPN endpoint has a route table that describes the available destination network routes. Each route in the route table specifies the path for traffic to specific resources or networks.
|
|
437
437
|
*/
|
|
438
438
|
createClientVpnRoute(callback?: (err: AWSError, data: EC2.Types.CreateClientVpnRouteResult) => void): Request<EC2.Types.CreateClientVpnRouteResult, AWSError>;
|
|
439
|
+
/**
|
|
440
|
+
* Creates a range of customer-owned IP addresses.
|
|
441
|
+
*/
|
|
442
|
+
createCoipCidr(params: EC2.Types.CreateCoipCidrRequest, callback?: (err: AWSError, data: EC2.Types.CreateCoipCidrResult) => void): Request<EC2.Types.CreateCoipCidrResult, AWSError>;
|
|
443
|
+
/**
|
|
444
|
+
* Creates a range of customer-owned IP addresses.
|
|
445
|
+
*/
|
|
446
|
+
createCoipCidr(callback?: (err: AWSError, data: EC2.Types.CreateCoipCidrResult) => void): Request<EC2.Types.CreateCoipCidrResult, AWSError>;
|
|
447
|
+
/**
|
|
448
|
+
* Creates a pool of customer-owned IP (CoIP) addresses.
|
|
449
|
+
*/
|
|
450
|
+
createCoipPool(params: EC2.Types.CreateCoipPoolRequest, callback?: (err: AWSError, data: EC2.Types.CreateCoipPoolResult) => void): Request<EC2.Types.CreateCoipPoolResult, AWSError>;
|
|
451
|
+
/**
|
|
452
|
+
* Creates a pool of customer-owned IP (CoIP) addresses.
|
|
453
|
+
*/
|
|
454
|
+
createCoipPool(callback?: (err: AWSError, data: EC2.Types.CreateCoipPoolResult) => void): Request<EC2.Types.CreateCoipPoolResult, AWSError>;
|
|
439
455
|
/**
|
|
440
456
|
* Provides information to Amazon Web Services about your customer gateway device. The customer gateway device is the appliance at your end of the VPN connection. You must provide the IP address of the customer gateway device’s external interface. The IP address must be static and can be behind a device performing network address translation (NAT). For devices that use Border Gateway Protocol (BGP), you can also provide the device's BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN. For more information, see Customer gateway options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide. To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. An identical request returns information about the existing customer gateway; it doesn't create a new customer gateway.
|
|
441
457
|
*/
|
|
@@ -453,11 +469,11 @@ declare class EC2 extends Service {
|
|
|
453
469
|
*/
|
|
454
470
|
createDefaultSubnet(callback?: (err: AWSError, data: EC2.Types.CreateDefaultSubnetResult) => void): Request<EC2.Types.CreateDefaultSubnetResult, AWSError>;
|
|
455
471
|
/**
|
|
456
|
-
* Creates a default VPC with a size /16 IPv4 CIDR block and a default subnet in each Availability Zone. For more information about the components of a default VPC, see Default VPC and default subnets in the Amazon Virtual Private Cloud User Guide. You cannot specify the components of the default VPC yourself. If you deleted your previous default VPC, you can create a default VPC. You cannot have more than one default VPC per Region. If your account supports EC2-Classic, you cannot use this action to create a default VPC in a Region that supports EC2-Classic. If you want a default VPC in a Region that supports EC2-Classic, see "I really want a default VPC for my existing EC2 account. Is that possible?" in the Default VPCs FAQ. We are retiring EC2-Classic
|
|
472
|
+
* Creates a default VPC with a size /16 IPv4 CIDR block and a default subnet in each Availability Zone. For more information about the components of a default VPC, see Default VPC and default subnets in the Amazon Virtual Private Cloud User Guide. You cannot specify the components of the default VPC yourself. If you deleted your previous default VPC, you can create a default VPC. You cannot have more than one default VPC per Region. If your account supports EC2-Classic, you cannot use this action to create a default VPC in a Region that supports EC2-Classic. If you want a default VPC in a Region that supports EC2-Classic, see "I really want a default VPC for my existing EC2 account. Is that possible?" in the Default VPCs FAQ. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
457
473
|
*/
|
|
458
474
|
createDefaultVpc(params: EC2.Types.CreateDefaultVpcRequest, callback?: (err: AWSError, data: EC2.Types.CreateDefaultVpcResult) => void): Request<EC2.Types.CreateDefaultVpcResult, AWSError>;
|
|
459
475
|
/**
|
|
460
|
-
* Creates a default VPC with a size /16 IPv4 CIDR block and a default subnet in each Availability Zone. For more information about the components of a default VPC, see Default VPC and default subnets in the Amazon Virtual Private Cloud User Guide. You cannot specify the components of the default VPC yourself. If you deleted your previous default VPC, you can create a default VPC. You cannot have more than one default VPC per Region. If your account supports EC2-Classic, you cannot use this action to create a default VPC in a Region that supports EC2-Classic. If you want a default VPC in a Region that supports EC2-Classic, see "I really want a default VPC for my existing EC2 account. Is that possible?" in the Default VPCs FAQ. We are retiring EC2-Classic
|
|
476
|
+
* Creates a default VPC with a size /16 IPv4 CIDR block and a default subnet in each Availability Zone. For more information about the components of a default VPC, see Default VPC and default subnets in the Amazon Virtual Private Cloud User Guide. You cannot specify the components of the default VPC yourself. If you deleted your previous default VPC, you can create a default VPC. You cannot have more than one default VPC per Region. If your account supports EC2-Classic, you cannot use this action to create a default VPC in a Region that supports EC2-Classic. If you want a default VPC in a Region that supports EC2-Classic, see "I really want a default VPC for my existing EC2 account. Is that possible?" in the Default VPCs FAQ. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
461
477
|
*/
|
|
462
478
|
createDefaultVpc(callback?: (err: AWSError, data: EC2.Types.CreateDefaultVpcResult) => void): Request<EC2.Types.CreateDefaultVpcResult, AWSError>;
|
|
463
479
|
/**
|
|
@@ -581,13 +597,29 @@ declare class EC2 extends Service {
|
|
|
581
597
|
*/
|
|
582
598
|
createLaunchTemplateVersion(callback?: (err: AWSError, data: EC2.Types.CreateLaunchTemplateVersionResult) => void): Request<EC2.Types.CreateLaunchTemplateVersionResult, AWSError>;
|
|
583
599
|
/**
|
|
584
|
-
* Creates a static route for the specified local gateway route table.
|
|
600
|
+
* Creates a static route for the specified local gateway route table. You must specify one of the following targets: LocalGatewayVirtualInterfaceGroupId NetworkInterfaceId
|
|
585
601
|
*/
|
|
586
602
|
createLocalGatewayRoute(params: EC2.Types.CreateLocalGatewayRouteRequest, callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteResult) => void): Request<EC2.Types.CreateLocalGatewayRouteResult, AWSError>;
|
|
587
603
|
/**
|
|
588
|
-
* Creates a static route for the specified local gateway route table.
|
|
604
|
+
* Creates a static route for the specified local gateway route table. You must specify one of the following targets: LocalGatewayVirtualInterfaceGroupId NetworkInterfaceId
|
|
589
605
|
*/
|
|
590
606
|
createLocalGatewayRoute(callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteResult) => void): Request<EC2.Types.CreateLocalGatewayRouteResult, AWSError>;
|
|
607
|
+
/**
|
|
608
|
+
* Creates a local gateway route table.
|
|
609
|
+
*/
|
|
610
|
+
createLocalGatewayRouteTable(params: EC2.Types.CreateLocalGatewayRouteTableRequest, callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableResult, AWSError>;
|
|
611
|
+
/**
|
|
612
|
+
* Creates a local gateway route table.
|
|
613
|
+
*/
|
|
614
|
+
createLocalGatewayRouteTable(callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableResult, AWSError>;
|
|
615
|
+
/**
|
|
616
|
+
* Creates a local gateway route table virtual interface group association.
|
|
617
|
+
*/
|
|
618
|
+
createLocalGatewayRouteTableVirtualInterfaceGroupAssociation(params: EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
|
619
|
+
/**
|
|
620
|
+
* Creates a local gateway route table virtual interface group association.
|
|
621
|
+
*/
|
|
622
|
+
createLocalGatewayRouteTableVirtualInterfaceGroupAssociation(callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
|
591
623
|
/**
|
|
592
624
|
* Associates the specified VPC with the specified local gateway route table.
|
|
593
625
|
*/
|
|
@@ -645,11 +677,11 @@ declare class EC2 extends Service {
|
|
|
645
677
|
*/
|
|
646
678
|
createNetworkInsightsPath(callback?: (err: AWSError, data: EC2.Types.CreateNetworkInsightsPathResult) => void): Request<EC2.Types.CreateNetworkInsightsPathResult, AWSError>;
|
|
647
679
|
/**
|
|
648
|
-
* Creates a network interface in the specified subnet. For more information about network interfaces, see Elastic
|
|
680
|
+
* Creates a network interface in the specified subnet. The number of IP addresses you can assign to a network interface varies by instance type. For more information, see IP Addresses Per ENI Per Instance Type in the Amazon Virtual Private Cloud User Guide. For more information about network interfaces, see Elastic network interfaces in the Amazon Elastic Compute Cloud User Guide.
|
|
649
681
|
*/
|
|
650
682
|
createNetworkInterface(params: EC2.Types.CreateNetworkInterfaceRequest, callback?: (err: AWSError, data: EC2.Types.CreateNetworkInterfaceResult) => void): Request<EC2.Types.CreateNetworkInterfaceResult, AWSError>;
|
|
651
683
|
/**
|
|
652
|
-
* Creates a network interface in the specified subnet. For more information about network interfaces, see Elastic
|
|
684
|
+
* Creates a network interface in the specified subnet. The number of IP addresses you can assign to a network interface varies by instance type. For more information, see IP Addresses Per ENI Per Instance Type in the Amazon Virtual Private Cloud User Guide. For more information about network interfaces, see Elastic network interfaces in the Amazon Elastic Compute Cloud User Guide.
|
|
653
685
|
*/
|
|
654
686
|
createNetworkInterface(callback?: (err: AWSError, data: EC2.Types.CreateNetworkInterfaceResult) => void): Request<EC2.Types.CreateNetworkInterfaceResult, AWSError>;
|
|
655
687
|
/**
|
|
@@ -717,11 +749,11 @@ declare class EC2 extends Service {
|
|
|
717
749
|
*/
|
|
718
750
|
createRouteTable(callback?: (err: AWSError, data: EC2.Types.CreateRouteTableResult) => void): Request<EC2.Types.CreateRouteTableResult, AWSError>;
|
|
719
751
|
/**
|
|
720
|
-
* Creates a security group. A security group acts as a virtual firewall for your instance to control inbound and outbound traffic. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. When you create a security group, you specify a friendly name of your choice. You can have a security group for use in EC2-Classic with the same name as a security group for use in a VPC. However, you can't have two security groups for use in EC2-Classic with the same name or two security groups for use in a VPC with the same name. You have a default security group for use in EC2-Classic and a default security group for use in your VPC. If you don't specify a security group when you launch an instance, the instance is launched into the appropriate default security group. A default security group includes a default rule that grants instances unrestricted network access to each other. You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress. For more information about VPC security group limits, see Amazon VPC Limits. We are retiring EC2-Classic
|
|
752
|
+
* Creates a security group. A security group acts as a virtual firewall for your instance to control inbound and outbound traffic. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. When you create a security group, you specify a friendly name of your choice. You can have a security group for use in EC2-Classic with the same name as a security group for use in a VPC. However, you can't have two security groups for use in EC2-Classic with the same name or two security groups for use in a VPC with the same name. You have a default security group for use in EC2-Classic and a default security group for use in your VPC. If you don't specify a security group when you launch an instance, the instance is launched into the appropriate default security group. A default security group includes a default rule that grants instances unrestricted network access to each other. You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress. For more information about VPC security group limits, see Amazon VPC Limits. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
721
753
|
*/
|
|
722
754
|
createSecurityGroup(params: EC2.Types.CreateSecurityGroupRequest, callback?: (err: AWSError, data: EC2.Types.CreateSecurityGroupResult) => void): Request<EC2.Types.CreateSecurityGroupResult, AWSError>;
|
|
723
755
|
/**
|
|
724
|
-
* Creates a security group. A security group acts as a virtual firewall for your instance to control inbound and outbound traffic. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. When you create a security group, you specify a friendly name of your choice. You can have a security group for use in EC2-Classic with the same name as a security group for use in a VPC. However, you can't have two security groups for use in EC2-Classic with the same name or two security groups for use in a VPC with the same name. You have a default security group for use in EC2-Classic and a default security group for use in your VPC. If you don't specify a security group when you launch an instance, the instance is launched into the appropriate default security group. A default security group includes a default rule that grants instances unrestricted network access to each other. You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress. For more information about VPC security group limits, see Amazon VPC Limits. We are retiring EC2-Classic
|
|
756
|
+
* Creates a security group. A security group acts as a virtual firewall for your instance to control inbound and outbound traffic. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. When you create a security group, you specify a friendly name of your choice. You can have a security group for use in EC2-Classic with the same name as a security group for use in a VPC. However, you can't have two security groups for use in EC2-Classic with the same name or two security groups for use in a VPC with the same name. You have a default security group for use in EC2-Classic and a default security group for use in your VPC. If you don't specify a security group when you launch an instance, the instance is launched into the appropriate default security group. A default security group includes a default rule that grants instances unrestricted network access to each other. You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress. For more information about VPC security group limits, see Amazon VPC Limits. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
725
757
|
*/
|
|
726
758
|
createSecurityGroup(callback?: (err: AWSError, data: EC2.Types.CreateSecurityGroupResult) => void): Request<EC2.Types.CreateSecurityGroupResult, AWSError>;
|
|
727
759
|
/**
|
|
@@ -733,11 +765,11 @@ declare class EC2 extends Service {
|
|
|
733
765
|
*/
|
|
734
766
|
createSnapshot(callback?: (err: AWSError, data: EC2.Types.Snapshot) => void): Request<EC2.Types.Snapshot, AWSError>;
|
|
735
767
|
/**
|
|
736
|
-
* Creates crash-consistent snapshots of multiple EBS volumes and stores the data in S3. Volumes are chosen by specifying an instance. Any attached volumes will produce one snapshot each that is crash-consistent across the instance.
|
|
768
|
+
* Creates crash-consistent snapshots of multiple EBS volumes and stores the data in S3. Volumes are chosen by specifying an instance. Any attached volumes will produce one snapshot each that is crash-consistent across the instance. You can include all of the volumes currently attached to the instance, or you can exclude the root volume or specific data (non-root) volumes from the multi-volume snapshot set. You can create multi-volume snapshots of instances in a Region and instances on an Outpost. If you create snapshots from an instance in a Region, the snapshots must be stored in the same Region as the instance. If you create snapshots from an instance on an Outpost, the snapshots can be stored on the same Outpost as the instance, or in the Region for that Outpost.
|
|
737
769
|
*/
|
|
738
770
|
createSnapshots(params: EC2.Types.CreateSnapshotsRequest, callback?: (err: AWSError, data: EC2.Types.CreateSnapshotsResult) => void): Request<EC2.Types.CreateSnapshotsResult, AWSError>;
|
|
739
771
|
/**
|
|
740
|
-
* Creates crash-consistent snapshots of multiple EBS volumes and stores the data in S3. Volumes are chosen by specifying an instance. Any attached volumes will produce one snapshot each that is crash-consistent across the instance.
|
|
772
|
+
* Creates crash-consistent snapshots of multiple EBS volumes and stores the data in S3. Volumes are chosen by specifying an instance. Any attached volumes will produce one snapshot each that is crash-consistent across the instance. You can include all of the volumes currently attached to the instance, or you can exclude the root volume or specific data (non-root) volumes from the multi-volume snapshot set. You can create multi-volume snapshots of instances in a Region and instances on an Outpost. If you create snapshots from an instance in a Region, the snapshots must be stored in the same Region as the instance. If you create snapshots from an instance on an Outpost, the snapshots can be stored on the same Outpost as the instance, or in the Region for that Outpost.
|
|
741
773
|
*/
|
|
742
774
|
createSnapshots(callback?: (err: AWSError, data: EC2.Types.CreateSnapshotsResult) => void): Request<EC2.Types.CreateSnapshotsResult, AWSError>;
|
|
743
775
|
/**
|
|
@@ -996,6 +1028,22 @@ declare class EC2 extends Service {
|
|
|
996
1028
|
* Deletes a route from a Client VPN endpoint. You can only delete routes that you manually added using the CreateClientVpnRoute action. You cannot delete routes that were automatically added when associating a subnet. To remove routes that have been automatically added, disassociate the target subnet from the Client VPN endpoint.
|
|
997
1029
|
*/
|
|
998
1030
|
deleteClientVpnRoute(callback?: (err: AWSError, data: EC2.Types.DeleteClientVpnRouteResult) => void): Request<EC2.Types.DeleteClientVpnRouteResult, AWSError>;
|
|
1031
|
+
/**
|
|
1032
|
+
* Deletes a range of customer-owned IP addresses.
|
|
1033
|
+
*/
|
|
1034
|
+
deleteCoipCidr(params: EC2.Types.DeleteCoipCidrRequest, callback?: (err: AWSError, data: EC2.Types.DeleteCoipCidrResult) => void): Request<EC2.Types.DeleteCoipCidrResult, AWSError>;
|
|
1035
|
+
/**
|
|
1036
|
+
* Deletes a range of customer-owned IP addresses.
|
|
1037
|
+
*/
|
|
1038
|
+
deleteCoipCidr(callback?: (err: AWSError, data: EC2.Types.DeleteCoipCidrResult) => void): Request<EC2.Types.DeleteCoipCidrResult, AWSError>;
|
|
1039
|
+
/**
|
|
1040
|
+
* Deletes a pool of customer-owned IP (CoIP) addresses.
|
|
1041
|
+
*/
|
|
1042
|
+
deleteCoipPool(params: EC2.Types.DeleteCoipPoolRequest, callback?: (err: AWSError, data: EC2.Types.DeleteCoipPoolResult) => void): Request<EC2.Types.DeleteCoipPoolResult, AWSError>;
|
|
1043
|
+
/**
|
|
1044
|
+
* Deletes a pool of customer-owned IP (CoIP) addresses.
|
|
1045
|
+
*/
|
|
1046
|
+
deleteCoipPool(callback?: (err: AWSError, data: EC2.Types.DeleteCoipPoolResult) => void): Request<EC2.Types.DeleteCoipPoolResult, AWSError>;
|
|
999
1047
|
/**
|
|
1000
1048
|
* Deletes the specified customer gateway. You must delete the VPN connection before you can delete the customer gateway.
|
|
1001
1049
|
*/
|
|
@@ -1116,6 +1164,22 @@ declare class EC2 extends Service {
|
|
|
1116
1164
|
* Deletes the specified route from the specified local gateway route table.
|
|
1117
1165
|
*/
|
|
1118
1166
|
deleteLocalGatewayRoute(callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteResult, AWSError>;
|
|
1167
|
+
/**
|
|
1168
|
+
* Deletes a local gateway route table.
|
|
1169
|
+
*/
|
|
1170
|
+
deleteLocalGatewayRouteTable(params: EC2.Types.DeleteLocalGatewayRouteTableRequest, callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableResult, AWSError>;
|
|
1171
|
+
/**
|
|
1172
|
+
* Deletes a local gateway route table.
|
|
1173
|
+
*/
|
|
1174
|
+
deleteLocalGatewayRouteTable(callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableResult, AWSError>;
|
|
1175
|
+
/**
|
|
1176
|
+
* Deletes a local gateway route table virtual interface group association.
|
|
1177
|
+
*/
|
|
1178
|
+
deleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation(params: EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
|
1179
|
+
/**
|
|
1180
|
+
* Deletes a local gateway route table virtual interface group association.
|
|
1181
|
+
*/
|
|
1182
|
+
deleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation(callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
|
1119
1183
|
/**
|
|
1120
1184
|
* Deletes the specified association between a VPC and local gateway route table.
|
|
1121
1185
|
*/
|
|
@@ -1245,11 +1309,11 @@ declare class EC2 extends Service {
|
|
|
1245
1309
|
*/
|
|
1246
1310
|
deleteRouteTable(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
1247
1311
|
/**
|
|
1248
|
-
* Deletes a security group. If you attempt to delete a security group that is associated with an instance, or is referenced by another security group, the operation fails with InvalidGroup.InUse in EC2-Classic or DependencyViolation in EC2-VPC. We are retiring EC2-Classic
|
|
1312
|
+
* Deletes a security group. If you attempt to delete a security group that is associated with an instance, or is referenced by another security group, the operation fails with InvalidGroup.InUse in EC2-Classic or DependencyViolation in EC2-VPC. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
1249
1313
|
*/
|
|
1250
1314
|
deleteSecurityGroup(params: EC2.Types.DeleteSecurityGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
1251
1315
|
/**
|
|
1252
|
-
* Deletes a security group. If you attempt to delete a security group that is associated with an instance, or is referenced by another security group, the operation fails with InvalidGroup.InUse in EC2-Classic or DependencyViolation in EC2-VPC. We are retiring EC2-Classic
|
|
1316
|
+
* Deletes a security group. If you attempt to delete a security group that is associated with an instance, or is referenced by another security group, the operation fails with InvalidGroup.InUse in EC2-Classic or DependencyViolation in EC2-VPC. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
1253
1317
|
*/
|
|
1254
1318
|
deleteSecurityGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
1255
1319
|
/**
|
|
@@ -1549,11 +1613,11 @@ declare class EC2 extends Service {
|
|
|
1549
1613
|
*/
|
|
1550
1614
|
describeAccountAttributes(callback?: (err: AWSError, data: EC2.Types.DescribeAccountAttributesResult) => void): Request<EC2.Types.DescribeAccountAttributesResult, AWSError>;
|
|
1551
1615
|
/**
|
|
1552
|
-
* Describes the specified Elastic IP addresses or all of your Elastic IP addresses. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic
|
|
1616
|
+
* Describes the specified Elastic IP addresses or all of your Elastic IP addresses. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
1553
1617
|
*/
|
|
1554
1618
|
describeAddresses(params: EC2.Types.DescribeAddressesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeAddressesResult) => void): Request<EC2.Types.DescribeAddressesResult, AWSError>;
|
|
1555
1619
|
/**
|
|
1556
|
-
* Describes the specified Elastic IP addresses or all of your Elastic IP addresses. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic
|
|
1620
|
+
* Describes the specified Elastic IP addresses or all of your Elastic IP addresses. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
1557
1621
|
*/
|
|
1558
1622
|
describeAddresses(callback?: (err: AWSError, data: EC2.Types.DescribeAddressesResult) => void): Request<EC2.Types.DescribeAddressesResult, AWSError>;
|
|
1559
1623
|
/**
|
|
@@ -1621,11 +1685,11 @@ declare class EC2 extends Service {
|
|
|
1621
1685
|
*/
|
|
1622
1686
|
describeCarrierGateways(callback?: (err: AWSError, data: EC2.Types.DescribeCarrierGatewaysResult) => void): Request<EC2.Types.DescribeCarrierGatewaysResult, AWSError>;
|
|
1623
1687
|
/**
|
|
1624
|
-
* Describes one or more of your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink. You cannot use this request to return information about other instances. We are retiring EC2-Classic
|
|
1688
|
+
* Describes one or more of your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink. You cannot use this request to return information about other instances. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
1625
1689
|
*/
|
|
1626
1690
|
describeClassicLinkInstances(params: EC2.Types.DescribeClassicLinkInstancesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeClassicLinkInstancesResult) => void): Request<EC2.Types.DescribeClassicLinkInstancesResult, AWSError>;
|
|
1627
1691
|
/**
|
|
1628
|
-
* Describes one or more of your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink. You cannot use this request to return information about other instances. We are retiring EC2-Classic
|
|
1692
|
+
* Describes one or more of your linked EC2-Classic instances. This request only returns information about EC2-Classic instances linked to a VPC through ClassicLink. You cannot use this request to return information about other instances. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
1629
1693
|
*/
|
|
1630
1694
|
describeClassicLinkInstances(callback?: (err: AWSError, data: EC2.Types.DescribeClassicLinkInstancesResult) => void): Request<EC2.Types.DescribeClassicLinkInstancesResult, AWSError>;
|
|
1631
1695
|
/**
|
|
@@ -1773,11 +1837,11 @@ declare class EC2 extends Service {
|
|
|
1773
1837
|
*/
|
|
1774
1838
|
describeFleets(callback?: (err: AWSError, data: EC2.Types.DescribeFleetsResult) => void): Request<EC2.Types.DescribeFleetsResult, AWSError>;
|
|
1775
1839
|
/**
|
|
1776
|
-
* Describes one or more flow logs. To view the
|
|
1840
|
+
* Describes one or more flow logs. To view the published flow log records, you must view the log destination. For example, the CloudWatch Logs log group, the Amazon S3 bucket, or the Kinesis Data Firehose delivery stream.
|
|
1777
1841
|
*/
|
|
1778
1842
|
describeFlowLogs(params: EC2.Types.DescribeFlowLogsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeFlowLogsResult) => void): Request<EC2.Types.DescribeFlowLogsResult, AWSError>;
|
|
1779
1843
|
/**
|
|
1780
|
-
* Describes one or more flow logs. To view the
|
|
1844
|
+
* Describes one or more flow logs. To view the published flow log records, you must view the log destination. For example, the CloudWatch Logs log group, the Amazon S3 bucket, or the Kinesis Data Firehose delivery stream.
|
|
1781
1845
|
*/
|
|
1782
1846
|
describeFlowLogs(callback?: (err: AWSError, data: EC2.Types.DescribeFlowLogsResult) => void): Request<EC2.Types.DescribeFlowLogsResult, AWSError>;
|
|
1783
1847
|
/**
|
|
@@ -1933,11 +1997,11 @@ declare class EC2 extends Service {
|
|
|
1933
1997
|
*/
|
|
1934
1998
|
describeInstanceTypes(callback?: (err: AWSError, data: EC2.Types.DescribeInstanceTypesResult) => void): Request<EC2.Types.DescribeInstanceTypesResult, AWSError>;
|
|
1935
1999
|
/**
|
|
1936
|
-
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.
|
|
2000
|
+
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.
|
|
1937
2001
|
*/
|
|
1938
2002
|
describeInstances(params: EC2.Types.DescribeInstancesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeInstancesResult) => void): Request<EC2.Types.DescribeInstancesResult, AWSError>;
|
|
1939
2003
|
/**
|
|
1940
|
-
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.
|
|
2004
|
+
* Describes the specified instances or all instances. If you specify instance IDs, the output includes information for only the specified instances. If you specify filters, the output includes information for only those instances that meet the filter criteria. If you do not specify instance IDs or filters, the output includes information for all instances, which can affect performance. We recommend that you use pagination to ensure that the operation returns quickly and successfully. If you specify an instance ID that is not valid, an error is returned. If you specify an instance that you do not own, it is not included in the output. Recently terminated instances might appear in the returned results. This interval is usually less than one hour. If you describe instances in the rare case where an Availability Zone is experiencing a service disruption and you specify instance IDs that are in the affected zone, or do not specify any instance IDs at all, the call fails. If you describe instances and specify only instance IDs that are in an unaffected zone, the call works normally.
|
|
1941
2005
|
*/
|
|
1942
2006
|
describeInstances(callback?: (err: AWSError, data: EC2.Types.DescribeInstancesResult) => void): Request<EC2.Types.DescribeInstancesResult, AWSError>;
|
|
1943
2007
|
/**
|
|
@@ -2189,11 +2253,11 @@ declare class EC2 extends Service {
|
|
|
2189
2253
|
*/
|
|
2190
2254
|
describeReplaceRootVolumeTasks(callback?: (err: AWSError, data: EC2.Types.DescribeReplaceRootVolumeTasksResult) => void): Request<EC2.Types.DescribeReplaceRootVolumeTasksResult, AWSError>;
|
|
2191
2255
|
/**
|
|
2192
|
-
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.
|
|
2256
|
+
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.
|
|
2193
2257
|
*/
|
|
2194
2258
|
describeReservedInstances(params: EC2.Types.DescribeReservedInstancesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesResult) => void): Request<EC2.Types.DescribeReservedInstancesResult, AWSError>;
|
|
2195
2259
|
/**
|
|
2196
|
-
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.
|
|
2260
|
+
* Describes one or more of the Reserved Instances that you purchased. For more information about Reserved Instances, see Reserved Instances in the Amazon EC2 User Guide.
|
|
2197
2261
|
*/
|
|
2198
2262
|
describeReservedInstances(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesResult) => void): Request<EC2.Types.DescribeReservedInstancesResult, AWSError>;
|
|
2199
2263
|
/**
|
|
@@ -2205,19 +2269,19 @@ declare class EC2 extends Service {
|
|
|
2205
2269
|
*/
|
|
2206
2270
|
describeReservedInstancesListings(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesListingsResult) => void): Request<EC2.Types.DescribeReservedInstancesListingsResult, AWSError>;
|
|
2207
2271
|
/**
|
|
2208
|
-
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.
|
|
2272
|
+
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.
|
|
2209
2273
|
*/
|
|
2210
2274
|
describeReservedInstancesModifications(params: EC2.Types.DescribeReservedInstancesModificationsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesModificationsResult) => void): Request<EC2.Types.DescribeReservedInstancesModificationsResult, AWSError>;
|
|
2211
2275
|
/**
|
|
2212
|
-
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.
|
|
2276
|
+
* Describes the modifications made to your Reserved Instances. If no parameter is specified, information about all your Reserved Instances modification requests is returned. If a modification ID is specified, only information about the specific modification is returned. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide.
|
|
2213
2277
|
*/
|
|
2214
2278
|
describeReservedInstancesModifications(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesModificationsResult) => void): Request<EC2.Types.DescribeReservedInstancesModificationsResult, AWSError>;
|
|
2215
2279
|
/**
|
|
2216
|
-
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
|
2280
|
+
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
|
2217
2281
|
*/
|
|
2218
2282
|
describeReservedInstancesOfferings(params: EC2.Types.DescribeReservedInstancesOfferingsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesOfferingsResult) => void): Request<EC2.Types.DescribeReservedInstancesOfferingsResult, AWSError>;
|
|
2219
2283
|
/**
|
|
2220
|
-
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
|
2284
|
+
* Describes Reserved Instance offerings that are available for purchase. With Reserved Instances, you purchase the right to launch instances for a period of time. During that time period, you do not receive insufficient capacity errors, and you pay a lower usage rate than the rate charged for On-Demand instances for the actual time used. If you have listed your own Reserved Instances for sale in the Reserved Instance Marketplace, they will be excluded from these results. This is to ensure that you do not purchase your own Reserved Instances. For more information, see Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
|
2221
2285
|
*/
|
|
2222
2286
|
describeReservedInstancesOfferings(callback?: (err: AWSError, data: EC2.Types.DescribeReservedInstancesOfferingsResult) => void): Request<EC2.Types.DescribeReservedInstancesOfferingsResult, AWSError>;
|
|
2223
2287
|
/**
|
|
@@ -2229,19 +2293,19 @@ declare class EC2 extends Service {
|
|
|
2229
2293
|
*/
|
|
2230
2294
|
describeRouteTables(callback?: (err: AWSError, data: EC2.Types.DescribeRouteTablesResult) => void): Request<EC2.Types.DescribeRouteTablesResult, AWSError>;
|
|
2231
2295
|
/**
|
|
2232
|
-
* Finds available schedules that meet the specified criteria. You can search for an available schedule no more than 3 months in advance. You must meet the minimum required duration of 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours. After you find a schedule that meets your needs, call PurchaseScheduledInstances to purchase Scheduled Instances with that schedule.
|
|
2296
|
+
* Finds available schedules that meet the specified criteria. You can search for an available schedule no more than 3 months in advance. You must meet the minimum required duration of 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours. After you find a schedule that meets your needs, call PurchaseScheduledInstances to purchase Scheduled Instances with that schedule.
|
|
2233
2297
|
*/
|
|
2234
2298
|
describeScheduledInstanceAvailability(params: EC2.Types.DescribeScheduledInstanceAvailabilityRequest, callback?: (err: AWSError, data: EC2.Types.DescribeScheduledInstanceAvailabilityResult) => void): Request<EC2.Types.DescribeScheduledInstanceAvailabilityResult, AWSError>;
|
|
2235
2299
|
/**
|
|
2236
|
-
* Finds available schedules that meet the specified criteria. You can search for an available schedule no more than 3 months in advance. You must meet the minimum required duration of 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours. After you find a schedule that meets your needs, call PurchaseScheduledInstances to purchase Scheduled Instances with that schedule.
|
|
2300
|
+
* Finds available schedules that meet the specified criteria. You can search for an available schedule no more than 3 months in advance. You must meet the minimum required duration of 1,200 hours per year. For example, the minimum daily schedule is 4 hours, the minimum weekly schedule is 24 hours, and the minimum monthly schedule is 100 hours. After you find a schedule that meets your needs, call PurchaseScheduledInstances to purchase Scheduled Instances with that schedule.
|
|
2237
2301
|
*/
|
|
2238
2302
|
describeScheduledInstanceAvailability(callback?: (err: AWSError, data: EC2.Types.DescribeScheduledInstanceAvailabilityResult) => void): Request<EC2.Types.DescribeScheduledInstanceAvailabilityResult, AWSError>;
|
|
2239
2303
|
/**
|
|
2240
|
-
* Describes the specified Scheduled Instances or all your Scheduled Instances.
|
|
2304
|
+
* Describes the specified Scheduled Instances or all your Scheduled Instances.
|
|
2241
2305
|
*/
|
|
2242
2306
|
describeScheduledInstances(params: EC2.Types.DescribeScheduledInstancesRequest, callback?: (err: AWSError, data: EC2.Types.DescribeScheduledInstancesResult) => void): Request<EC2.Types.DescribeScheduledInstancesResult, AWSError>;
|
|
2243
2307
|
/**
|
|
2244
|
-
* Describes the specified Scheduled Instances or all your Scheduled Instances.
|
|
2308
|
+
* Describes the specified Scheduled Instances or all your Scheduled Instances.
|
|
2245
2309
|
*/
|
|
2246
2310
|
describeScheduledInstances(callback?: (err: AWSError, data: EC2.Types.DescribeScheduledInstancesResult) => void): Request<EC2.Types.DescribeScheduledInstancesResult, AWSError>;
|
|
2247
2311
|
/**
|
|
@@ -2261,11 +2325,11 @@ declare class EC2 extends Service {
|
|
|
2261
2325
|
*/
|
|
2262
2326
|
describeSecurityGroupRules(callback?: (err: AWSError, data: EC2.Types.DescribeSecurityGroupRulesResult) => void): Request<EC2.Types.DescribeSecurityGroupRulesResult, AWSError>;
|
|
2263
2327
|
/**
|
|
2264
|
-
* Describes the specified security groups or all of your security groups. A security group is for use with instances either in the EC2-Classic platform or in a specific VPC. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. We are retiring EC2-Classic
|
|
2328
|
+
* Describes the specified security groups or all of your security groups. A security group is for use with instances either in the EC2-Classic platform or in a specific VPC. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2265
2329
|
*/
|
|
2266
2330
|
describeSecurityGroups(params: EC2.Types.DescribeSecurityGroupsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeSecurityGroupsResult) => void): Request<EC2.Types.DescribeSecurityGroupsResult, AWSError>;
|
|
2267
2331
|
/**
|
|
2268
|
-
* Describes the specified security groups or all of your security groups. A security group is for use with instances either in the EC2-Classic platform or in a specific VPC. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. We are retiring EC2-Classic
|
|
2332
|
+
* Describes the specified security groups or all of your security groups. A security group is for use with instances either in the EC2-Classic platform or in a specific VPC. For more information, see Amazon EC2 security groups in the Amazon Elastic Compute Cloud User Guide and Security groups for your VPC in the Amazon Virtual Private Cloud User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2269
2333
|
*/
|
|
2270
2334
|
describeSecurityGroups(callback?: (err: AWSError, data: EC2.Types.DescribeSecurityGroupsResult) => void): Request<EC2.Types.DescribeSecurityGroupsResult, AWSError>;
|
|
2271
2335
|
/**
|
|
@@ -2525,19 +2589,19 @@ declare class EC2 extends Service {
|
|
|
2525
2589
|
*/
|
|
2526
2590
|
describeVpcAttribute(callback?: (err: AWSError, data: EC2.Types.DescribeVpcAttributeResult) => void): Request<EC2.Types.DescribeVpcAttributeResult, AWSError>;
|
|
2527
2591
|
/**
|
|
2528
|
-
* Describes the ClassicLink status of one or more VPCs. We are retiring EC2-Classic
|
|
2592
|
+
* Describes the ClassicLink status of one or more VPCs. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2529
2593
|
*/
|
|
2530
2594
|
describeVpcClassicLink(params: EC2.Types.DescribeVpcClassicLinkRequest, callback?: (err: AWSError, data: EC2.Types.DescribeVpcClassicLinkResult) => void): Request<EC2.Types.DescribeVpcClassicLinkResult, AWSError>;
|
|
2531
2595
|
/**
|
|
2532
|
-
* Describes the ClassicLink status of one or more VPCs. We are retiring EC2-Classic
|
|
2596
|
+
* Describes the ClassicLink status of one or more VPCs. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2533
2597
|
*/
|
|
2534
2598
|
describeVpcClassicLink(callback?: (err: AWSError, data: EC2.Types.DescribeVpcClassicLinkResult) => void): Request<EC2.Types.DescribeVpcClassicLinkResult, AWSError>;
|
|
2535
2599
|
/**
|
|
2536
|
-
* We are retiring EC2-Classic
|
|
2600
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Describes the ClassicLink DNS support status of one or more VPCs. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2537
2601
|
*/
|
|
2538
2602
|
describeVpcClassicLinkDnsSupport(params: EC2.Types.DescribeVpcClassicLinkDnsSupportRequest, callback?: (err: AWSError, data: EC2.Types.DescribeVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.DescribeVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2539
2603
|
/**
|
|
2540
|
-
* We are retiring EC2-Classic
|
|
2604
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Describes the ClassicLink DNS support status of one or more VPCs. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2541
2605
|
*/
|
|
2542
2606
|
describeVpcClassicLinkDnsSupport(callback?: (err: AWSError, data: EC2.Types.DescribeVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.DescribeVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2543
2607
|
/**
|
|
@@ -2621,11 +2685,11 @@ declare class EC2 extends Service {
|
|
|
2621
2685
|
*/
|
|
2622
2686
|
describeVpnGateways(callback?: (err: AWSError, data: EC2.Types.DescribeVpnGatewaysResult) => void): Request<EC2.Types.DescribeVpnGatewaysResult, AWSError>;
|
|
2623
2687
|
/**
|
|
2624
|
-
* We are retiring EC2-Classic
|
|
2688
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Unlinks (detaches) a linked EC2-Classic instance from a VPC. After the instance has been unlinked, the VPC security groups are no longer associated with it. An instance is automatically unlinked from a VPC when it's stopped.
|
|
2625
2689
|
*/
|
|
2626
2690
|
detachClassicLinkVpc(params: EC2.Types.DetachClassicLinkVpcRequest, callback?: (err: AWSError, data: EC2.Types.DetachClassicLinkVpcResult) => void): Request<EC2.Types.DetachClassicLinkVpcResult, AWSError>;
|
|
2627
2691
|
/**
|
|
2628
|
-
* We are retiring EC2-Classic
|
|
2692
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Unlinks (detaches) a linked EC2-Classic instance from a VPC. After the instance has been unlinked, the VPC security groups are no longer associated with it. An instance is automatically unlinked from a VPC when it's stopped.
|
|
2629
2693
|
*/
|
|
2630
2694
|
detachClassicLinkVpc(callback?: (err: AWSError, data: EC2.Types.DetachClassicLinkVpcResult) => void): Request<EC2.Types.DetachClassicLinkVpcResult, AWSError>;
|
|
2631
2695
|
/**
|
|
@@ -2725,27 +2789,27 @@ declare class EC2 extends Service {
|
|
|
2725
2789
|
*/
|
|
2726
2790
|
disableVgwRoutePropagation(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
2727
2791
|
/**
|
|
2728
|
-
* Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC that has EC2-Classic instances linked to it. We are retiring EC2-Classic
|
|
2792
|
+
* Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC that has EC2-Classic instances linked to it. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2729
2793
|
*/
|
|
2730
2794
|
disableVpcClassicLink(params: EC2.Types.DisableVpcClassicLinkRequest, callback?: (err: AWSError, data: EC2.Types.DisableVpcClassicLinkResult) => void): Request<EC2.Types.DisableVpcClassicLinkResult, AWSError>;
|
|
2731
2795
|
/**
|
|
2732
|
-
* Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC that has EC2-Classic instances linked to it. We are retiring EC2-Classic
|
|
2796
|
+
* Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC that has EC2-Classic instances linked to it. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2733
2797
|
*/
|
|
2734
2798
|
disableVpcClassicLink(callback?: (err: AWSError, data: EC2.Types.DisableVpcClassicLinkResult) => void): Request<EC2.Types.DisableVpcClassicLinkResult, AWSError>;
|
|
2735
2799
|
/**
|
|
2736
|
-
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request. We are retiring EC2-Classic
|
|
2800
|
+
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2737
2801
|
*/
|
|
2738
2802
|
disableVpcClassicLinkDnsSupport(params: EC2.Types.DisableVpcClassicLinkDnsSupportRequest, callback?: (err: AWSError, data: EC2.Types.DisableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.DisableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2739
2803
|
/**
|
|
2740
|
-
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request. We are retiring EC2-Classic
|
|
2804
|
+
* Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve to public IP addresses when addressed between a linked EC2-Classic instance and instances in the VPC to which it's linked. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
2741
2805
|
*/
|
|
2742
2806
|
disableVpcClassicLinkDnsSupport(callback?: (err: AWSError, data: EC2.Types.DisableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.DisableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2743
2807
|
/**
|
|
2744
|
-
* Disassociates an Elastic IP address from the instance or network interface it's associated with. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic
|
|
2808
|
+
* Disassociates an Elastic IP address from the instance or network interface it's associated with. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error.
|
|
2745
2809
|
*/
|
|
2746
2810
|
disassociateAddress(params: EC2.Types.DisassociateAddressRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
2747
2811
|
/**
|
|
2748
|
-
* Disassociates an Elastic IP address from the instance or network interface it's associated with. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic
|
|
2812
|
+
* Disassociates an Elastic IP address from the instance or network interface it's associated with. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. This is an idempotent operation. If you perform the operation more than once, Amazon EC2 doesn't return an error.
|
|
2749
2813
|
*/
|
|
2750
2814
|
disassociateAddress(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
2751
2815
|
/**
|
|
@@ -2909,19 +2973,19 @@ declare class EC2 extends Service {
|
|
|
2909
2973
|
*/
|
|
2910
2974
|
enableVolumeIO(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
2911
2975
|
/**
|
|
2912
|
-
* We are retiring EC2-Classic
|
|
2976
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Enables a VPC for ClassicLink. You can then link EC2-Classic instances to your ClassicLink-enabled VPC to allow communication over private IP addresses. You cannot enable your VPC for ClassicLink if any of your VPC route tables have existing routes for address ranges within the 10.0.0.0/8 IP address range, excluding local routes for VPCs in the 10.0.0.0/16 and 10.1.0.0/16 IP address ranges. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2913
2977
|
*/
|
|
2914
2978
|
enableVpcClassicLink(params: EC2.Types.EnableVpcClassicLinkRequest, callback?: (err: AWSError, data: EC2.Types.EnableVpcClassicLinkResult) => void): Request<EC2.Types.EnableVpcClassicLinkResult, AWSError>;
|
|
2915
2979
|
/**
|
|
2916
|
-
* We are retiring EC2-Classic
|
|
2980
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Enables a VPC for ClassicLink. You can then link EC2-Classic instances to your ClassicLink-enabled VPC to allow communication over private IP addresses. You cannot enable your VPC for ClassicLink if any of your VPC route tables have existing routes for address ranges within the 10.0.0.0/8 IP address range, excluding local routes for VPCs in the 10.0.0.0/16 and 10.1.0.0/16 IP address ranges. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide.
|
|
2917
2981
|
*/
|
|
2918
2982
|
enableVpcClassicLink(callback?: (err: AWSError, data: EC2.Types.EnableVpcClassicLinkResult) => void): Request<EC2.Types.EnableVpcClassicLinkResult, AWSError>;
|
|
2919
2983
|
/**
|
|
2920
|
-
* We are retiring EC2-Classic
|
|
2984
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request.
|
|
2921
2985
|
*/
|
|
2922
2986
|
enableVpcClassicLinkDnsSupport(params: EC2.Types.EnableVpcClassicLinkDnsSupportRequest, callback?: (err: AWSError, data: EC2.Types.EnableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.EnableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2923
2987
|
/**
|
|
2924
|
-
* We are retiring EC2-Classic
|
|
2988
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, the DNS hostname of a linked EC2-Classic instance resolves to its private IP address when addressed from an instance in the VPC to which it's linked. Similarly, the DNS hostname of an instance in a VPC resolves to its private IP address when addressed from a linked EC2-Classic instance. For more information, see ClassicLink in the Amazon Elastic Compute Cloud User Guide. You must specify a VPC ID in the request.
|
|
2925
2989
|
*/
|
|
2926
2990
|
enableVpcClassicLinkDnsSupport(callback?: (err: AWSError, data: EC2.Types.EnableVpcClassicLinkDnsSupportResult) => void): Request<EC2.Types.EnableVpcClassicLinkDnsSupportResult, AWSError>;
|
|
2927
2991
|
/**
|
|
@@ -3261,11 +3325,11 @@ declare class EC2 extends Service {
|
|
|
3261
3325
|
*/
|
|
3262
3326
|
importClientVpnClientCertificateRevocationList(callback?: (err: AWSError, data: EC2.Types.ImportClientVpnClientCertificateRevocationListResult) => void): Request<EC2.Types.ImportClientVpnClientCertificateRevocationListResult, AWSError>;
|
|
3263
3327
|
/**
|
|
3264
|
-
* Import single or multi-volume disk images or EBS snapshots into an Amazon Machine Image (AMI). For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.
|
|
3328
|
+
* Import single or multi-volume disk images or EBS snapshots into an Amazon Machine Image (AMI). Amazon Web Services VM Import/Export strongly recommends specifying a value for either the --license-type or --usage-operation parameter when you create a new VM Import task. This ensures your operating system is licensed appropriately and your billing is optimized. For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.
|
|
3265
3329
|
*/
|
|
3266
3330
|
importImage(params: EC2.Types.ImportImageRequest, callback?: (err: AWSError, data: EC2.Types.ImportImageResult) => void): Request<EC2.Types.ImportImageResult, AWSError>;
|
|
3267
3331
|
/**
|
|
3268
|
-
* Import single or multi-volume disk images or EBS snapshots into an Amazon Machine Image (AMI). For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.
|
|
3332
|
+
* Import single or multi-volume disk images or EBS snapshots into an Amazon Machine Image (AMI). Amazon Web Services VM Import/Export strongly recommends specifying a value for either the --license-type or --usage-operation parameter when you create a new VM Import task. This ensures your operating system is licensed appropriately and your billing is optimized. For more information, see Importing a VM as an image using VM Import/Export in the VM Import/Export User Guide.
|
|
3269
3333
|
*/
|
|
3270
3334
|
importImage(callback?: (err: AWSError, data: EC2.Types.ImportImageResult) => void): Request<EC2.Types.ImportImageResult, AWSError>;
|
|
3271
3335
|
/**
|
|
@@ -3524,6 +3588,14 @@ declare class EC2 extends Service {
|
|
|
3524
3588
|
* Modifies a launch template. You can specify which version of the launch template to set as the default version. When launching an instance, the default version applies when a launch template version is not specified.
|
|
3525
3589
|
*/
|
|
3526
3590
|
modifyLaunchTemplate(callback?: (err: AWSError, data: EC2.Types.ModifyLaunchTemplateResult) => void): Request<EC2.Types.ModifyLaunchTemplateResult, AWSError>;
|
|
3591
|
+
/**
|
|
3592
|
+
* Modifies the specified local gateway route.
|
|
3593
|
+
*/
|
|
3594
|
+
modifyLocalGatewayRoute(params: EC2.Types.ModifyLocalGatewayRouteRequest, callback?: (err: AWSError, data: EC2.Types.ModifyLocalGatewayRouteResult) => void): Request<EC2.Types.ModifyLocalGatewayRouteResult, AWSError>;
|
|
3595
|
+
/**
|
|
3596
|
+
* Modifies the specified local gateway route.
|
|
3597
|
+
*/
|
|
3598
|
+
modifyLocalGatewayRoute(callback?: (err: AWSError, data: EC2.Types.ModifyLocalGatewayRouteResult) => void): Request<EC2.Types.ModifyLocalGatewayRouteResult, AWSError>;
|
|
3527
3599
|
/**
|
|
3528
3600
|
* Modifies the specified managed prefix list. Adding or removing entries in a prefix list creates a new version of the prefix list. Changing the name of the prefix list does not affect the version. If you specify a current version number that does not match the true current version number, the request fails.
|
|
3529
3601
|
*/
|
|
@@ -3549,11 +3621,11 @@ declare class EC2 extends Service {
|
|
|
3549
3621
|
*/
|
|
3550
3622
|
modifyPrivateDnsNameOptions(callback?: (err: AWSError, data: EC2.Types.ModifyPrivateDnsNameOptionsResult) => void): Request<EC2.Types.ModifyPrivateDnsNameOptionsResult, AWSError>;
|
|
3551
3623
|
/**
|
|
3552
|
-
* Modifies the
|
|
3624
|
+
* Modifies the configuration of your Reserved Instances, such as the Availability Zone, instance count, or instance type. The Reserved Instances to be modified must be identical, except for Availability Zone, network platform, and instance type. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
3553
3625
|
*/
|
|
3554
3626
|
modifyReservedInstances(params: EC2.Types.ModifyReservedInstancesRequest, callback?: (err: AWSError, data: EC2.Types.ModifyReservedInstancesResult) => void): Request<EC2.Types.ModifyReservedInstancesResult, AWSError>;
|
|
3555
3627
|
/**
|
|
3556
|
-
* Modifies the
|
|
3628
|
+
* Modifies the configuration of your Reserved Instances, such as the Availability Zone, instance count, or instance type. The Reserved Instances to be modified must be identical, except for Availability Zone, network platform, and instance type. For more information, see Modifying Reserved Instances in the Amazon EC2 User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
3557
3629
|
*/
|
|
3558
3630
|
modifyReservedInstances(callback?: (err: AWSError, data: EC2.Types.ModifyReservedInstancesResult) => void): Request<EC2.Types.ModifyReservedInstancesResult, AWSError>;
|
|
3559
3631
|
/**
|
|
@@ -3709,11 +3781,11 @@ declare class EC2 extends Service {
|
|
|
3709
3781
|
*/
|
|
3710
3782
|
modifyVpcEndpointServicePermissions(callback?: (err: AWSError, data: EC2.Types.ModifyVpcEndpointServicePermissionsResult) => void): Request<EC2.Types.ModifyVpcEndpointServicePermissionsResult, AWSError>;
|
|
3711
3783
|
/**
|
|
3712
|
-
* We are retiring EC2-Classic
|
|
3784
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Modifies the VPC peering connection options on one side of a VPC peering connection. You can do the following: Enable/disable communication over the peering connection between an EC2-Classic instance that's linked to your VPC (using ClassicLink) and instances in the peer VPC. Enable/disable communication over the peering connection between instances in your VPC and an EC2-Classic instance that's linked to the peer VPC. Enable/disable the ability to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC. If the peered VPCs are in the same Amazon Web Services account, you can enable DNS resolution for queries from the local VPC. This ensures that queries from the local VPC resolve to private IP addresses in the peer VPC. This option is not available if the peered VPCs are in different different Amazon Web Services accounts or different Regions. For peered VPCs in different Amazon Web Services accounts, each Amazon Web Services account owner must initiate a separate request to modify the peering connection options. For inter-region peering connections, you must use the Region for the requester VPC to modify the requester VPC peering options and the Region for the accepter VPC to modify the accepter VPC peering options. To verify which VPCs are the accepter and the requester for a VPC peering connection, use the DescribeVpcPeeringConnections command.
|
|
3713
3785
|
*/
|
|
3714
3786
|
modifyVpcPeeringConnectionOptions(params: EC2.Types.ModifyVpcPeeringConnectionOptionsRequest, callback?: (err: AWSError, data: EC2.Types.ModifyVpcPeeringConnectionOptionsResult) => void): Request<EC2.Types.ModifyVpcPeeringConnectionOptionsResult, AWSError>;
|
|
3715
3787
|
/**
|
|
3716
|
-
* We are retiring EC2-Classic
|
|
3788
|
+
* We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. Modifies the VPC peering connection options on one side of a VPC peering connection. You can do the following: Enable/disable communication over the peering connection between an EC2-Classic instance that's linked to your VPC (using ClassicLink) and instances in the peer VPC. Enable/disable communication over the peering connection between instances in your VPC and an EC2-Classic instance that's linked to the peer VPC. Enable/disable the ability to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC. If the peered VPCs are in the same Amazon Web Services account, you can enable DNS resolution for queries from the local VPC. This ensures that queries from the local VPC resolve to private IP addresses in the peer VPC. This option is not available if the peered VPCs are in different different Amazon Web Services accounts or different Regions. For peered VPCs in different Amazon Web Services accounts, each Amazon Web Services account owner must initiate a separate request to modify the peering connection options. For inter-region peering connections, you must use the Region for the requester VPC to modify the requester VPC peering options and the Region for the accepter VPC to modify the accepter VPC peering options. To verify which VPCs are the accepter and the requester for a VPC peering connection, use the DescribeVpcPeeringConnections command.
|
|
3717
3789
|
*/
|
|
3718
3790
|
modifyVpcPeeringConnectionOptions(callback?: (err: AWSError, data: EC2.Types.ModifyVpcPeeringConnectionOptionsResult) => void): Request<EC2.Types.ModifyVpcPeeringConnectionOptionsResult, AWSError>;
|
|
3719
3791
|
/**
|
|
@@ -3765,11 +3837,11 @@ declare class EC2 extends Service {
|
|
|
3765
3837
|
*/
|
|
3766
3838
|
monitorInstances(callback?: (err: AWSError, data: EC2.Types.MonitorInstancesResult) => void): Request<EC2.Types.MonitorInstancesResult, AWSError>;
|
|
3767
3839
|
/**
|
|
3768
|
-
* Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the RestoreAddressToClassic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform. We are retiring EC2-Classic
|
|
3840
|
+
* Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the RestoreAddressToClassic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
3769
3841
|
*/
|
|
3770
3842
|
moveAddressToVpc(params: EC2.Types.MoveAddressToVpcRequest, callback?: (err: AWSError, data: EC2.Types.MoveAddressToVpcResult) => void): Request<EC2.Types.MoveAddressToVpcResult, AWSError>;
|
|
3771
3843
|
/**
|
|
3772
|
-
* Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the RestoreAddressToClassic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform. We are retiring EC2-Classic
|
|
3844
|
+
* Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC platform. The Elastic IP address must be allocated to your account for more than 24 hours, and it must not be associated with an instance. After the Elastic IP address is moved, it is no longer available for use in the EC2-Classic platform, unless you move it back using the RestoreAddressToClassic request. You cannot move an Elastic IP address that was originally allocated for use in the EC2-VPC platform to the EC2-Classic platform. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
3773
3845
|
*/
|
|
3774
3846
|
moveAddressToVpc(callback?: (err: AWSError, data: EC2.Types.MoveAddressToVpcResult) => void): Request<EC2.Types.MoveAddressToVpcResult, AWSError>;
|
|
3775
3847
|
/**
|
|
@@ -3813,19 +3885,19 @@ declare class EC2 extends Service {
|
|
|
3813
3885
|
*/
|
|
3814
3886
|
purchaseHostReservation(callback?: (err: AWSError, data: EC2.Types.PurchaseHostReservationResult) => void): Request<EC2.Types.PurchaseHostReservationResult, AWSError>;
|
|
3815
3887
|
/**
|
|
3816
|
-
* Purchases a Reserved Instance for use with your account. With Reserved Instances, you pay a lower hourly rate compared to On-Demand instance pricing. Use DescribeReservedInstancesOfferings to get a list of Reserved Instance offerings that match your specifications. After you've purchased a Reserved Instance, you can check for your new Reserved Instance with DescribeReservedInstances. To queue a purchase for a future date and time, specify a purchase time. If you do not specify a purchase time, the default is the current time. For more information, see Reserved Instances and Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
|
3888
|
+
* Purchases a Reserved Instance for use with your account. With Reserved Instances, you pay a lower hourly rate compared to On-Demand instance pricing. Use DescribeReservedInstancesOfferings to get a list of Reserved Instance offerings that match your specifications. After you've purchased a Reserved Instance, you can check for your new Reserved Instance with DescribeReservedInstances. To queue a purchase for a future date and time, specify a purchase time. If you do not specify a purchase time, the default is the current time. For more information, see Reserved Instances and Reserved Instance Marketplace in the Amazon EC2 User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
3817
3889
|
*/
|
|
3818
3890
|
purchaseReservedInstancesOffering(params: EC2.Types.PurchaseReservedInstancesOfferingRequest, callback?: (err: AWSError, data: EC2.Types.PurchaseReservedInstancesOfferingResult) => void): Request<EC2.Types.PurchaseReservedInstancesOfferingResult, AWSError>;
|
|
3819
3891
|
/**
|
|
3820
|
-
* Purchases a Reserved Instance for use with your account. With Reserved Instances, you pay a lower hourly rate compared to On-Demand instance pricing. Use DescribeReservedInstancesOfferings to get a list of Reserved Instance offerings that match your specifications. After you've purchased a Reserved Instance, you can check for your new Reserved Instance with DescribeReservedInstances. To queue a purchase for a future date and time, specify a purchase time. If you do not specify a purchase time, the default is the current time. For more information, see Reserved Instances and Reserved Instance Marketplace in the Amazon EC2 User Guide.
|
|
3892
|
+
* Purchases a Reserved Instance for use with your account. With Reserved Instances, you pay a lower hourly rate compared to On-Demand instance pricing. Use DescribeReservedInstancesOfferings to get a list of Reserved Instance offerings that match your specifications. After you've purchased a Reserved Instance, you can check for your new Reserved Instance with DescribeReservedInstances. To queue a purchase for a future date and time, specify a purchase time. If you do not specify a purchase time, the default is the current time. For more information, see Reserved Instances and Reserved Instance Marketplace in the Amazon EC2 User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
3821
3893
|
*/
|
|
3822
3894
|
purchaseReservedInstancesOffering(callback?: (err: AWSError, data: EC2.Types.PurchaseReservedInstancesOfferingResult) => void): Request<EC2.Types.PurchaseReservedInstancesOfferingResult, AWSError>;
|
|
3823
3895
|
/**
|
|
3824
|
-
* Purchases the Scheduled Instances with the specified schedule. Scheduled Instances enable you to purchase Amazon EC2 compute capacity by the hour for a one-year term. Before you can purchase a Scheduled Instance, you must call DescribeScheduledInstanceAvailability to check for available schedules and obtain a purchase token. After you purchase a Scheduled Instance, you must call RunScheduledInstances during each scheduled time period. After you purchase a Scheduled Instance, you can't cancel, modify, or resell your purchase.
|
|
3896
|
+
* You can no longer purchase Scheduled Instances. Purchases the Scheduled Instances with the specified schedule. Scheduled Instances enable you to purchase Amazon EC2 compute capacity by the hour for a one-year term. Before you can purchase a Scheduled Instance, you must call DescribeScheduledInstanceAvailability to check for available schedules and obtain a purchase token. After you purchase a Scheduled Instance, you must call RunScheduledInstances during each scheduled time period. After you purchase a Scheduled Instance, you can't cancel, modify, or resell your purchase.
|
|
3825
3897
|
*/
|
|
3826
3898
|
purchaseScheduledInstances(params: EC2.Types.PurchaseScheduledInstancesRequest, callback?: (err: AWSError, data: EC2.Types.PurchaseScheduledInstancesResult) => void): Request<EC2.Types.PurchaseScheduledInstancesResult, AWSError>;
|
|
3827
3899
|
/**
|
|
3828
|
-
* Purchases the Scheduled Instances with the specified schedule. Scheduled Instances enable you to purchase Amazon EC2 compute capacity by the hour for a one-year term. Before you can purchase a Scheduled Instance, you must call DescribeScheduledInstanceAvailability to check for available schedules and obtain a purchase token. After you purchase a Scheduled Instance, you must call RunScheduledInstances during each scheduled time period. After you purchase a Scheduled Instance, you can't cancel, modify, or resell your purchase.
|
|
3900
|
+
* You can no longer purchase Scheduled Instances. Purchases the Scheduled Instances with the specified schedule. Scheduled Instances enable you to purchase Amazon EC2 compute capacity by the hour for a one-year term. Before you can purchase a Scheduled Instance, you must call DescribeScheduledInstanceAvailability to check for available schedules and obtain a purchase token. After you purchase a Scheduled Instance, you must call RunScheduledInstances during each scheduled time period. After you purchase a Scheduled Instance, you can't cancel, modify, or resell your purchase.
|
|
3829
3901
|
*/
|
|
3830
3902
|
purchaseScheduledInstances(callback?: (err: AWSError, data: EC2.Types.PurchaseScheduledInstancesResult) => void): Request<EC2.Types.PurchaseScheduledInstancesResult, AWSError>;
|
|
3831
3903
|
/**
|
|
@@ -3909,11 +3981,11 @@ declare class EC2 extends Service {
|
|
|
3909
3981
|
*/
|
|
3910
3982
|
rejectVpcPeeringConnection(callback?: (err: AWSError, data: EC2.Types.RejectVpcPeeringConnectionResult) => void): Request<EC2.Types.RejectVpcPeeringConnectionResult, AWSError>;
|
|
3911
3983
|
/**
|
|
3912
|
-
* Releases the specified Elastic IP address. [EC2-Classic, default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it's associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress. We are retiring EC2-Classic
|
|
3984
|
+
* Releases the specified Elastic IP address. [EC2-Classic, default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it's associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. [Nondefault VPC] You must use DisassociateAddress to disassociate the Elastic IP address before you can release it. Otherwise, Amazon EC2 returns an error (InvalidIPAddress.InUse). After releasing an Elastic IP address, it is released to the IP address pool. Be sure to update your DNS records and any servers or devices that communicate with the address. If you attempt to release an Elastic IP address that you already released, you'll get an AuthFailure error if the address is already allocated to another Amazon Web Services account. [EC2-VPC] After you release an Elastic IP address for use in a VPC, you might be able to recover it. For more information, see AllocateAddress. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide.
|
|
3913
3985
|
*/
|
|
3914
3986
|
releaseAddress(params: EC2.Types.ReleaseAddressRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
3915
3987
|
/**
|
|
3916
|
-
* Releases the specified Elastic IP address. [EC2-Classic, default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it's associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress. We are retiring EC2-Classic
|
|
3988
|
+
* Releases the specified Elastic IP address. [EC2-Classic, default VPC] Releasing an Elastic IP address automatically disassociates it from any instance that it's associated with. To disassociate an Elastic IP address without releasing it, use DisassociateAddress. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide. [Nondefault VPC] You must use DisassociateAddress to disassociate the Elastic IP address before you can release it. Otherwise, Amazon EC2 returns an error (InvalidIPAddress.InUse). After releasing an Elastic IP address, it is released to the IP address pool. Be sure to update your DNS records and any servers or devices that communicate with the address. If you attempt to release an Elastic IP address that you already released, you'll get an AuthFailure error if the address is already allocated to another Amazon Web Services account. [EC2-VPC] After you release an Elastic IP address for use in a VPC, you might be able to recover it. For more information, see AllocateAddress. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide.
|
|
3917
3989
|
*/
|
|
3918
3990
|
releaseAddress(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
3919
3991
|
/**
|
|
@@ -3997,11 +4069,11 @@ declare class EC2 extends Service {
|
|
|
3997
4069
|
*/
|
|
3998
4070
|
requestSpotFleet(callback?: (err: AWSError, data: EC2.Types.RequestSpotFleetResponse) => void): Request<EC2.Types.RequestSpotFleetResponse, AWSError>;
|
|
3999
4071
|
/**
|
|
4000
|
-
* Creates a Spot Instance request. For more information, see Spot Instance requests in the Amazon EC2 User Guide for Linux Instances. We strongly discourage using the RequestSpotInstances API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide for Linux Instances. We are retiring EC2-Classic
|
|
4072
|
+
* Creates a Spot Instance request. For more information, see Spot Instance requests in the Amazon EC2 User Guide for Linux Instances. We strongly discourage using the RequestSpotInstances API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide for Linux Instances. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide for Linux Instances.
|
|
4001
4073
|
*/
|
|
4002
4074
|
requestSpotInstances(params: EC2.Types.RequestSpotInstancesRequest, callback?: (err: AWSError, data: EC2.Types.RequestSpotInstancesResult) => void): Request<EC2.Types.RequestSpotInstancesResult, AWSError>;
|
|
4003
4075
|
/**
|
|
4004
|
-
* Creates a Spot Instance request. For more information, see Spot Instance requests in the Amazon EC2 User Guide for Linux Instances. We strongly discourage using the RequestSpotInstances API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide for Linux Instances. We are retiring EC2-Classic
|
|
4076
|
+
* Creates a Spot Instance request. For more information, see Spot Instance requests in the Amazon EC2 User Guide for Linux Instances. We strongly discourage using the RequestSpotInstances API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide for Linux Instances. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide for Linux Instances.
|
|
4005
4077
|
*/
|
|
4006
4078
|
requestSpotInstances(callback?: (err: AWSError, data: EC2.Types.RequestSpotInstancesResult) => void): Request<EC2.Types.RequestSpotInstancesResult, AWSError>;
|
|
4007
4079
|
/**
|
|
@@ -4061,11 +4133,11 @@ declare class EC2 extends Service {
|
|
|
4061
4133
|
*/
|
|
4062
4134
|
resetSnapshotAttribute(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
4063
4135
|
/**
|
|
4064
|
-
* Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface. We are retiring EC2-Classic
|
|
4136
|
+
* Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
4065
4137
|
*/
|
|
4066
4138
|
restoreAddressToClassic(params: EC2.Types.RestoreAddressToClassicRequest, callback?: (err: AWSError, data: EC2.Types.RestoreAddressToClassicResult) => void): Request<EC2.Types.RestoreAddressToClassicResult, AWSError>;
|
|
4067
4139
|
/**
|
|
4068
|
-
* Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface. We are retiring EC2-Classic
|
|
4140
|
+
* Restores an Elastic IP address that was previously moved to the EC2-VPC platform back to the EC2-Classic platform. You cannot move an Elastic IP address that was originally allocated for use in EC2-VPC. The Elastic IP address must not be associated with an instance or network interface. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
4069
4141
|
*/
|
|
4070
4142
|
restoreAddressToClassic(callback?: (err: AWSError, data: EC2.Types.RestoreAddressToClassicResult) => void): Request<EC2.Types.RestoreAddressToClassicResult, AWSError>;
|
|
4071
4143
|
/**
|
|
@@ -4117,19 +4189,19 @@ declare class EC2 extends Service {
|
|
|
4117
4189
|
*/
|
|
4118
4190
|
revokeSecurityGroupEgress(callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupEgressResult) => void): Request<EC2.Types.RevokeSecurityGroupEgressResult, AWSError>;
|
|
4119
4191
|
/**
|
|
4120
|
-
* Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. [EC2-Classic, default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. We are retiring EC2-Classic
|
|
4192
|
+
* Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. [EC2-Classic, default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
4121
4193
|
*/
|
|
4122
4194
|
revokeSecurityGroupIngress(params: EC2.Types.RevokeSecurityGroupIngressRequest, callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupIngressResult) => void): Request<EC2.Types.RevokeSecurityGroupIngressResult, AWSError>;
|
|
4123
4195
|
/**
|
|
4124
|
-
* Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. [EC2-Classic, default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. We are retiring EC2-Classic
|
|
4196
|
+
* Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. [EC2-Classic, default VPC] If the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
4125
4197
|
*/
|
|
4126
4198
|
revokeSecurityGroupIngress(callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupIngressResult) => void): Request<EC2.Types.RevokeSecurityGroupIngressResult, AWSError>;
|
|
4127
4199
|
/**
|
|
4128
|
-
* Launches the specified number of instances using an AMI for which you have permissions. You can specify a number of options, or leave the default options. The following rules apply: [EC2-VPC] If you don't specify a subnet ID, we choose a default subnet from your default VPC for you. If you don't have a default VPC, you must specify a subnet ID in the request. [EC2-Classic] If don't specify an Availability Zone, we choose one for you. Some instance types must be launched into a VPC. If you do not have a default VPC, or if you do not specify a subnet ID, the request fails. For more information, see Instance types available only in a VPC. [EC2-VPC] All instances have a network interface with a primary private IPv4 address. If you don't specify this address, we choose one from the IPv4 range of your subnet. Not all instance types support IPv6 addresses. For more information, see Instance types. If you don't specify a security group ID, we use the default security group. For more information, see Security groups. If any of the AMIs have a product code attached for which the user has not subscribed, the request fails. You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters. To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances. An instance is ready for you to use when it's in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging your Amazon EC2 resources. Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key pairs. For troubleshooting, see What to do if an instance immediately terminates, and Troubleshooting connecting to your instance. We are retiring EC2-Classic
|
|
4200
|
+
* Launches the specified number of instances using an AMI for which you have permissions. You can specify a number of options, or leave the default options. The following rules apply: [EC2-VPC] If you don't specify a subnet ID, we choose a default subnet from your default VPC for you. If you don't have a default VPC, you must specify a subnet ID in the request. [EC2-Classic] If don't specify an Availability Zone, we choose one for you. Some instance types must be launched into a VPC. If you do not have a default VPC, or if you do not specify a subnet ID, the request fails. For more information, see Instance types available only in a VPC. [EC2-VPC] All instances have a network interface with a primary private IPv4 address. If you don't specify this address, we choose one from the IPv4 range of your subnet. Not all instance types support IPv6 addresses. For more information, see Instance types. If you don't specify a security group ID, we use the default security group. For more information, see Security groups. If any of the AMIs have a product code attached for which the user has not subscribed, the request fails. You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters. To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances. An instance is ready for you to use when it's in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging your Amazon EC2 resources. Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key pairs. For troubleshooting, see What to do if an instance immediately terminates, and Troubleshooting connecting to your instance. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide.
|
|
4129
4201
|
*/
|
|
4130
4202
|
runInstances(params: EC2.Types.RunInstancesRequest, callback?: (err: AWSError, data: EC2.Types.Reservation) => void): Request<EC2.Types.Reservation, AWSError>;
|
|
4131
4203
|
/**
|
|
4132
|
-
* Launches the specified number of instances using an AMI for which you have permissions. You can specify a number of options, or leave the default options. The following rules apply: [EC2-VPC] If you don't specify a subnet ID, we choose a default subnet from your default VPC for you. If you don't have a default VPC, you must specify a subnet ID in the request. [EC2-Classic] If don't specify an Availability Zone, we choose one for you. Some instance types must be launched into a VPC. If you do not have a default VPC, or if you do not specify a subnet ID, the request fails. For more information, see Instance types available only in a VPC. [EC2-VPC] All instances have a network interface with a primary private IPv4 address. If you don't specify this address, we choose one from the IPv4 range of your subnet. Not all instance types support IPv6 addresses. For more information, see Instance types. If you don't specify a security group ID, we use the default security group. For more information, see Security groups. If any of the AMIs have a product code attached for which the user has not subscribed, the request fails. You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters. To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances. An instance is ready for you to use when it's in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging your Amazon EC2 resources. Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key pairs. For troubleshooting, see What to do if an instance immediately terminates, and Troubleshooting connecting to your instance. We are retiring EC2-Classic
|
|
4204
|
+
* Launches the specified number of instances using an AMI for which you have permissions. You can specify a number of options, or leave the default options. The following rules apply: [EC2-VPC] If you don't specify a subnet ID, we choose a default subnet from your default VPC for you. If you don't have a default VPC, you must specify a subnet ID in the request. [EC2-Classic] If don't specify an Availability Zone, we choose one for you. Some instance types must be launched into a VPC. If you do not have a default VPC, or if you do not specify a subnet ID, the request fails. For more information, see Instance types available only in a VPC. [EC2-VPC] All instances have a network interface with a primary private IPv4 address. If you don't specify this address, we choose one from the IPv4 range of your subnet. Not all instance types support IPv6 addresses. For more information, see Instance types. If you don't specify a security group ID, we use the default security group. For more information, see Security groups. If any of the AMIs have a product code attached for which the user has not subscribed, the request fails. You can create a launch template, which is a resource that contains the parameters to launch an instance. When you launch an instance using RunInstances, you can specify the launch template instead of specifying the launch parameters. To ensure faster instance launches, break up large requests into smaller batches. For example, create five separate launch requests for 100 instances each instead of one launch request for 500 instances. An instance is ready for you to use when it's in the running state. You can check the state of your instance using DescribeInstances. You can tag instances and EBS volumes during launch, after launch, or both. For more information, see CreateTags and Tagging your Amazon EC2 resources. Linux instances have access to the public key of the key pair at boot. You can use this key to provide secure access to the instance. Amazon EC2 public images use this feature to provide secure access without passwords. For more information, see Key pairs. For troubleshooting, see What to do if an instance immediately terminates, and Troubleshooting connecting to your instance. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide.
|
|
4133
4205
|
*/
|
|
4134
4206
|
runInstances(callback?: (err: AWSError, data: EC2.Types.Reservation) => void): Request<EC2.Types.Reservation, AWSError>;
|
|
4135
4207
|
/**
|
|
@@ -4572,7 +4644,7 @@ declare namespace EC2 {
|
|
|
4572
4644
|
}
|
|
4573
4645
|
export type AcceleratorManufacturer = "nvidia"|"amd"|"amazon-web-services"|"xilinx"|string;
|
|
4574
4646
|
export type AcceleratorManufacturerSet = AcceleratorManufacturer[];
|
|
4575
|
-
export type AcceleratorName = "a100"|"v100"|"k80"|"t4"|"m60"|"radeon-pro-v520"|"vu9p"|string;
|
|
4647
|
+
export type AcceleratorName = "a100"|"v100"|"k80"|"t4"|"m60"|"radeon-pro-v520"|"vu9p"|"inferentia"|"k520"|string;
|
|
4576
4648
|
export type AcceleratorNameSet = AcceleratorName[];
|
|
4577
4649
|
export interface AcceleratorTotalMemoryMiB {
|
|
4578
4650
|
/**
|
|
@@ -4812,6 +4884,25 @@ declare namespace EC2 {
|
|
|
4812
4884
|
*/
|
|
4813
4885
|
Description?: String;
|
|
4814
4886
|
}
|
|
4887
|
+
export interface AddedPrincipal {
|
|
4888
|
+
/**
|
|
4889
|
+
* The type of principal.
|
|
4890
|
+
*/
|
|
4891
|
+
PrincipalType?: PrincipalType;
|
|
4892
|
+
/**
|
|
4893
|
+
* The Amazon Resource Name (ARN) of the principal.
|
|
4894
|
+
*/
|
|
4895
|
+
Principal?: String;
|
|
4896
|
+
/**
|
|
4897
|
+
* The ID of the service permission.
|
|
4898
|
+
*/
|
|
4899
|
+
ServicePermissionId?: String;
|
|
4900
|
+
/**
|
|
4901
|
+
* The ID of the service.
|
|
4902
|
+
*/
|
|
4903
|
+
ServiceId?: String;
|
|
4904
|
+
}
|
|
4905
|
+
export type AddedPrincipalSet = AddedPrincipal[];
|
|
4815
4906
|
export interface AdditionalDetail {
|
|
4816
4907
|
/**
|
|
4817
4908
|
* The information type.
|
|
@@ -5059,7 +5150,7 @@ declare namespace EC2 {
|
|
|
5059
5150
|
*/
|
|
5060
5151
|
PreviewNextCidr?: Boolean;
|
|
5061
5152
|
/**
|
|
5062
|
-
* Exclude a particular CIDR range from being returned by the pool.
|
|
5153
|
+
* Exclude a particular CIDR range from being returned by the pool. Disallowed CIDRs are only allowed if using netmask length for allocation.
|
|
5063
5154
|
*/
|
|
5064
5155
|
DisallowedCidrs?: IpamPoolAllocationDisallowedCidrs;
|
|
5065
5156
|
}
|
|
@@ -5074,6 +5165,7 @@ declare namespace EC2 {
|
|
|
5074
5165
|
export type AllocationIds = AllocationId[];
|
|
5075
5166
|
export type AllocationState = "available"|"under-assessment"|"permanent-failure"|"released"|"released-permanent-failure"|"pending"|string;
|
|
5076
5167
|
export type AllocationStrategy = "lowestPrice"|"diversified"|"capacityOptimized"|"capacityOptimizedPrioritized"|string;
|
|
5168
|
+
export type AllocationType = "used"|string;
|
|
5077
5169
|
export interface AllowedPrincipal {
|
|
5078
5170
|
/**
|
|
5079
5171
|
* The type of principal.
|
|
@@ -5083,6 +5175,18 @@ declare namespace EC2 {
|
|
|
5083
5175
|
* The Amazon Resource Name (ARN) of the principal.
|
|
5084
5176
|
*/
|
|
5085
5177
|
Principal?: String;
|
|
5178
|
+
/**
|
|
5179
|
+
* The ID of the service permission.
|
|
5180
|
+
*/
|
|
5181
|
+
ServicePermissionId?: String;
|
|
5182
|
+
/**
|
|
5183
|
+
* The tags.
|
|
5184
|
+
*/
|
|
5185
|
+
Tags?: TagList;
|
|
5186
|
+
/**
|
|
5187
|
+
* The ID of the service.
|
|
5188
|
+
*/
|
|
5189
|
+
ServiceId?: String;
|
|
5086
5190
|
}
|
|
5087
5191
|
export type AllowedPrincipalSet = AllowedPrincipal[];
|
|
5088
5192
|
export type AllowsMultipleInstanceTypes = "on"|"off"|string;
|
|
@@ -5229,6 +5333,10 @@ declare namespace EC2 {
|
|
|
5229
5333
|
* The ID of a VPC peering connection.
|
|
5230
5334
|
*/
|
|
5231
5335
|
VpcPeeringConnectionId?: String;
|
|
5336
|
+
/**
|
|
5337
|
+
* The state. The following are the possible values: active blackhole
|
|
5338
|
+
*/
|
|
5339
|
+
State?: String;
|
|
5232
5340
|
}
|
|
5233
5341
|
export interface AnalysisSecurityGroupRule {
|
|
5234
5342
|
/**
|
|
@@ -5293,7 +5401,7 @@ declare namespace EC2 {
|
|
|
5293
5401
|
*/
|
|
5294
5402
|
Ipv6AddressCount?: Integer;
|
|
5295
5403
|
/**
|
|
5296
|
-
*
|
|
5404
|
+
* The IPv6 addresses to be assigned to the network interface. You can't use this option if you're specifying a number of IPv6 addresses.
|
|
5297
5405
|
*/
|
|
5298
5406
|
Ipv6Addresses?: Ipv6AddressList;
|
|
5299
5407
|
/**
|
|
@@ -5333,7 +5441,7 @@ declare namespace EC2 {
|
|
|
5333
5441
|
*/
|
|
5334
5442
|
NetworkInterfaceId: NetworkInterfaceId;
|
|
5335
5443
|
/**
|
|
5336
|
-
*
|
|
5444
|
+
* The IP addresses to be assigned as a secondary private IP address to the network interface. You can't specify this parameter when also specifying a number of secondary IP addresses. If you don't specify an IP address, Amazon EC2 automatically selects an IP address within the subnet range.
|
|
5337
5445
|
*/
|
|
5338
5446
|
PrivateIpAddresses?: PrivateIpAddressStringList;
|
|
5339
5447
|
/**
|
|
@@ -6028,7 +6136,7 @@ declare namespace EC2 {
|
|
|
6028
6136
|
*/
|
|
6029
6137
|
GroupId?: SecurityGroupId;
|
|
6030
6138
|
/**
|
|
6031
|
-
* [EC2-Classic, default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request.
|
|
6139
|
+
* [EC2-Classic, default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.
|
|
6032
6140
|
*/
|
|
6033
6141
|
GroupName?: SecurityGroupName;
|
|
6034
6142
|
/**
|
|
@@ -6502,6 +6610,17 @@ declare namespace EC2 {
|
|
|
6502
6610
|
State?: CancelSpotInstanceRequestState;
|
|
6503
6611
|
}
|
|
6504
6612
|
export type CancelledSpotInstanceRequestList = CancelledSpotInstanceRequest[];
|
|
6613
|
+
export interface CapacityAllocation {
|
|
6614
|
+
/**
|
|
6615
|
+
* The usage type. used indicates that the instance capacity is in use by instances that are running in the Capacity Reservation.
|
|
6616
|
+
*/
|
|
6617
|
+
AllocationType?: AllocationType;
|
|
6618
|
+
/**
|
|
6619
|
+
* The amount of instance capacity associated with the usage. For example a value of 4 indicates that instance capacity for 4 instances is currently in use.
|
|
6620
|
+
*/
|
|
6621
|
+
Count?: Integer;
|
|
6622
|
+
}
|
|
6623
|
+
export type CapacityAllocations = CapacityAllocation[];
|
|
6505
6624
|
export interface CapacityReservation {
|
|
6506
6625
|
/**
|
|
6507
6626
|
* The ID of the Capacity Reservation.
|
|
@@ -6591,6 +6710,10 @@ declare namespace EC2 {
|
|
|
6591
6710
|
* The Amazon Resource Name (ARN) of the cluster placement group in which the Capacity Reservation was created. For more information, see Capacity Reservations for cluster placement groups in the Amazon EC2 User Guide.
|
|
6592
6711
|
*/
|
|
6593
6712
|
PlacementGroupArn?: PlacementGroupArn;
|
|
6713
|
+
/**
|
|
6714
|
+
* Information about instance capacity usage.
|
|
6715
|
+
*/
|
|
6716
|
+
CapacityAllocations?: CapacityAllocations;
|
|
6594
6717
|
}
|
|
6595
6718
|
export interface CapacityReservationFleet {
|
|
6596
6719
|
/**
|
|
@@ -7233,6 +7356,20 @@ declare namespace EC2 {
|
|
|
7233
7356
|
CoIp?: String;
|
|
7234
7357
|
}
|
|
7235
7358
|
export type CoipAddressUsageSet = CoipAddressUsage[];
|
|
7359
|
+
export interface CoipCidr {
|
|
7360
|
+
/**
|
|
7361
|
+
* An address range in a customer-owned IP address space.
|
|
7362
|
+
*/
|
|
7363
|
+
Cidr?: String;
|
|
7364
|
+
/**
|
|
7365
|
+
* The ID of the address pool.
|
|
7366
|
+
*/
|
|
7367
|
+
CoipPoolId?: Ipv4PoolCoipId;
|
|
7368
|
+
/**
|
|
7369
|
+
* The ID of the local gateway route table.
|
|
7370
|
+
*/
|
|
7371
|
+
LocalGatewayRouteTableId?: String;
|
|
7372
|
+
}
|
|
7236
7373
|
export interface CoipPool {
|
|
7237
7374
|
/**
|
|
7238
7375
|
* The ID of the address pool.
|
|
@@ -7259,6 +7396,8 @@ declare namespace EC2 {
|
|
|
7259
7396
|
export type CoipPoolIdSet = Ipv4PoolCoipId[];
|
|
7260
7397
|
export type CoipPoolMaxResults = number;
|
|
7261
7398
|
export type CoipPoolSet = CoipPool[];
|
|
7399
|
+
export type ComponentAccount = string;
|
|
7400
|
+
export type ComponentRegion = string;
|
|
7262
7401
|
export interface ConfirmProductInstanceRequest {
|
|
7263
7402
|
/**
|
|
7264
7403
|
* The ID of the instance.
|
|
@@ -7835,6 +7974,43 @@ declare namespace EC2 {
|
|
|
7835
7974
|
*/
|
|
7836
7975
|
Status?: ClientVpnRouteStatus;
|
|
7837
7976
|
}
|
|
7977
|
+
export interface CreateCoipCidrRequest {
|
|
7978
|
+
/**
|
|
7979
|
+
* A customer-owned IP address range to create.
|
|
7980
|
+
*/
|
|
7981
|
+
Cidr: String;
|
|
7982
|
+
/**
|
|
7983
|
+
* The ID of the address pool.
|
|
7984
|
+
*/
|
|
7985
|
+
CoipPoolId: Ipv4PoolCoipId;
|
|
7986
|
+
/**
|
|
7987
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
7988
|
+
*/
|
|
7989
|
+
DryRun?: Boolean;
|
|
7990
|
+
}
|
|
7991
|
+
export interface CreateCoipCidrResult {
|
|
7992
|
+
/**
|
|
7993
|
+
* Information about a range of customer-owned IP addresses.
|
|
7994
|
+
*/
|
|
7995
|
+
CoipCidr?: CoipCidr;
|
|
7996
|
+
}
|
|
7997
|
+
export interface CreateCoipPoolRequest {
|
|
7998
|
+
/**
|
|
7999
|
+
* The ID of the local gateway route table.
|
|
8000
|
+
*/
|
|
8001
|
+
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
|
8002
|
+
/**
|
|
8003
|
+
* The tags to assign to the CoIP address pool.
|
|
8004
|
+
*/
|
|
8005
|
+
TagSpecifications?: TagSpecificationList;
|
|
8006
|
+
/**
|
|
8007
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
8008
|
+
*/
|
|
8009
|
+
DryRun?: Boolean;
|
|
8010
|
+
}
|
|
8011
|
+
export interface CreateCoipPoolResult {
|
|
8012
|
+
CoipPool?: CoipPool;
|
|
8013
|
+
}
|
|
7838
8014
|
export interface CreateCustomerGatewayRequest {
|
|
7839
8015
|
/**
|
|
7840
8016
|
* For devices that support BGP, the customer gateway's BGP ASN. Default: 65000
|
|
@@ -8079,35 +8255,39 @@ declare namespace EC2 {
|
|
|
8079
8255
|
*/
|
|
8080
8256
|
ClientToken?: String;
|
|
8081
8257
|
/**
|
|
8082
|
-
* The ARN
|
|
8258
|
+
* The ARN of the IAM role that allows Amazon EC2 to publish flow logs to a CloudWatch Logs log group in your account. This parameter is required if the destination type is cloud-watch-logs and unsupported otherwise.
|
|
8083
8259
|
*/
|
|
8084
8260
|
DeliverLogsPermissionArn?: String;
|
|
8085
8261
|
/**
|
|
8086
|
-
* The
|
|
8262
|
+
* The ARN of the IAM role that allows Amazon EC2 to publish flow logs across accounts.
|
|
8263
|
+
*/
|
|
8264
|
+
DeliverCrossAccountRole?: String;
|
|
8265
|
+
/**
|
|
8266
|
+
* The name of a new or existing CloudWatch Logs log group where Amazon EC2 publishes your flow logs. This parameter is valid only if the destination type is cloud-watch-logs.
|
|
8087
8267
|
*/
|
|
8088
8268
|
LogGroupName?: String;
|
|
8089
8269
|
/**
|
|
8090
|
-
* The
|
|
8270
|
+
* The IDs of the resources to monitor. For example, if the resource type is VPC, specify the IDs of the VPCs. Constraints: Maximum of 1000 resources
|
|
8091
8271
|
*/
|
|
8092
8272
|
ResourceIds: FlowLogResourceIds;
|
|
8093
8273
|
/**
|
|
8094
|
-
* The type of resource
|
|
8274
|
+
* The type of resource to monitor.
|
|
8095
8275
|
*/
|
|
8096
8276
|
ResourceType: FlowLogsResourceType;
|
|
8097
8277
|
/**
|
|
8098
|
-
* The type of traffic to
|
|
8278
|
+
* The type of traffic to monitor (accepted traffic, rejected traffic, or all traffic).
|
|
8099
8279
|
*/
|
|
8100
8280
|
TrafficType?: TrafficType;
|
|
8101
8281
|
/**
|
|
8102
|
-
* The type of destination
|
|
8282
|
+
* The type of destination for the flow log data. Default: cloud-watch-logs
|
|
8103
8283
|
*/
|
|
8104
8284
|
LogDestinationType?: LogDestinationType;
|
|
8105
8285
|
/**
|
|
8106
|
-
* The destination
|
|
8286
|
+
* The destination for the flow log data. The meaning of this parameter depends on the destination type. If the destination type is cloud-watch-logs, specify the ARN of a CloudWatch Logs log group. For example: arn:aws:logs:region:account_id:log-group:my_group Alternatively, use the LogGroupName parameter. If the destination type is s3, specify the ARN of an S3 bucket. For example: arn:aws:s3:::my_bucket/my_subfolder/ The subfolder is optional. Note that you can't use AWSLogs as a subfolder name. If the destination type is kinesis-data-firehose, specify the ARN of a Kinesis Data Firehose delivery stream. For example: arn:aws:firehose:region:account_id:deliverystream:my_stream
|
|
8107
8287
|
*/
|
|
8108
8288
|
LogDestination?: String;
|
|
8109
8289
|
/**
|
|
8110
|
-
* The fields to include in the flow log record
|
|
8290
|
+
* The fields to include in the flow log record. List the fields in the order in which they should appear. For more information about the available fields, see Flow log records. If you omit this parameter, the flow log is created using the default format. If you specify this parameter, you must include at least one field. Specify the fields using the ${field-id} format, separated by spaces. For the CLI, surround this parameter value with single quotes on Linux or double quotes on Windows.
|
|
8111
8291
|
*/
|
|
8112
8292
|
LogFormat?: String;
|
|
8113
8293
|
/**
|
|
@@ -8519,11 +8699,15 @@ declare namespace EC2 {
|
|
|
8519
8699
|
/**
|
|
8520
8700
|
* The ID of the virtual interface group.
|
|
8521
8701
|
*/
|
|
8522
|
-
LocalGatewayVirtualInterfaceGroupId
|
|
8702
|
+
LocalGatewayVirtualInterfaceGroupId?: LocalGatewayVirtualInterfaceGroupId;
|
|
8523
8703
|
/**
|
|
8524
8704
|
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
8525
8705
|
*/
|
|
8526
8706
|
DryRun?: Boolean;
|
|
8707
|
+
/**
|
|
8708
|
+
* The ID of the network interface.
|
|
8709
|
+
*/
|
|
8710
|
+
NetworkInterfaceId?: NetworkInterfaceId;
|
|
8527
8711
|
}
|
|
8528
8712
|
export interface CreateLocalGatewayRouteResult {
|
|
8529
8713
|
/**
|
|
@@ -8531,6 +8715,48 @@ declare namespace EC2 {
|
|
|
8531
8715
|
*/
|
|
8532
8716
|
Route?: LocalGatewayRoute;
|
|
8533
8717
|
}
|
|
8718
|
+
export interface CreateLocalGatewayRouteTableRequest {
|
|
8719
|
+
/**
|
|
8720
|
+
* The ID of the local gateway.
|
|
8721
|
+
*/
|
|
8722
|
+
LocalGatewayId: LocalGatewayId;
|
|
8723
|
+
/**
|
|
8724
|
+
* The mode of the local gateway route table.
|
|
8725
|
+
*/
|
|
8726
|
+
Mode?: LocalGatewayRouteTableMode;
|
|
8727
|
+
/**
|
|
8728
|
+
* The tags assigned to the local gateway route table.
|
|
8729
|
+
*/
|
|
8730
|
+
TagSpecifications?: TagSpecificationList;
|
|
8731
|
+
/**
|
|
8732
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
8733
|
+
*/
|
|
8734
|
+
DryRun?: Boolean;
|
|
8735
|
+
}
|
|
8736
|
+
export interface CreateLocalGatewayRouteTableResult {
|
|
8737
|
+
LocalGatewayRouteTable?: LocalGatewayRouteTable;
|
|
8738
|
+
}
|
|
8739
|
+
export interface CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest {
|
|
8740
|
+
/**
|
|
8741
|
+
* The ID of the local gateway route table.
|
|
8742
|
+
*/
|
|
8743
|
+
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
|
8744
|
+
/**
|
|
8745
|
+
* The ID of the local gateway route table virtual interface group association.
|
|
8746
|
+
*/
|
|
8747
|
+
LocalGatewayVirtualInterfaceGroupId: LocalGatewayVirtualInterfaceGroupId;
|
|
8748
|
+
/**
|
|
8749
|
+
* The tags assigned to the local gateway route table virtual interface group association.
|
|
8750
|
+
*/
|
|
8751
|
+
TagSpecifications?: TagSpecificationList;
|
|
8752
|
+
/**
|
|
8753
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
8754
|
+
*/
|
|
8755
|
+
DryRun?: Boolean;
|
|
8756
|
+
}
|
|
8757
|
+
export interface CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult {
|
|
8758
|
+
LocalGatewayRouteTableVirtualInterfaceGroupAssociation?: LocalGatewayRouteTableVirtualInterfaceGroupAssociation;
|
|
8759
|
+
}
|
|
8534
8760
|
export interface CreateLocalGatewayRouteTableVpcAssociationRequest {
|
|
8535
8761
|
/**
|
|
8536
8762
|
* The ID of the local gateway route table.
|
|
@@ -8807,11 +9033,11 @@ declare namespace EC2 {
|
|
|
8807
9033
|
*/
|
|
8808
9034
|
Groups?: SecurityGroupIdStringList;
|
|
8809
9035
|
/**
|
|
8810
|
-
* The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't
|
|
9036
|
+
* The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't specify a count of IPv6 addresses using this parameter if you've specified one of the following: specific IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes. If your subnet has the AssignIpv6AddressOnCreation attribute set, you can override that setting by specifying 0 as the IPv6 address count.
|
|
8811
9037
|
*/
|
|
8812
9038
|
Ipv6AddressCount?: Integer;
|
|
8813
9039
|
/**
|
|
8814
|
-
*
|
|
9040
|
+
* The IPv6 addresses from the IPv6 CIDR block range of your subnet. You can't specify IPv6 addresses using this parameter if you've specified one of the following: a count of IPv6 addresses, specific IPv6 prefixes, or a count of IPv6 prefixes.
|
|
8815
9041
|
*/
|
|
8816
9042
|
Ipv6Addresses?: InstanceIpv6AddressList;
|
|
8817
9043
|
/**
|
|
@@ -8819,27 +9045,27 @@ declare namespace EC2 {
|
|
|
8819
9045
|
*/
|
|
8820
9046
|
PrivateIpAddress?: String;
|
|
8821
9047
|
/**
|
|
8822
|
-
*
|
|
9048
|
+
* The private IPv4 addresses. You can't specify private IPv4 addresses if you've specified one of the following: a count of private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
8823
9049
|
*/
|
|
8824
9050
|
PrivateIpAddresses?: PrivateIpAddressSpecificationList;
|
|
8825
9051
|
/**
|
|
8826
|
-
* The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses.
|
|
9052
|
+
* The number of secondary private IPv4 addresses to assign to a network interface. When you specify a number of secondary IPv4 addresses, Amazon EC2 selects these IP addresses within the subnet's IPv4 CIDR range. You can't specify this option and specify more than one private IP address using privateIpAddresses. You can't specify a count of private IPv4 addresses if you've specified one of the following: specific private IPv4 addresses, specific IPv4 prefixes, or a count of IPv4 prefixes.
|
|
8827
9053
|
*/
|
|
8828
9054
|
SecondaryPrivateIpAddressCount?: Integer;
|
|
8829
9055
|
/**
|
|
8830
|
-
*
|
|
9056
|
+
* The IPv4 prefixes assigned to the network interface. You can't specify IPv4 prefixes if you've specified one of the following: a count of IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
|
|
8831
9057
|
*/
|
|
8832
9058
|
Ipv4Prefixes?: Ipv4PrefixList;
|
|
8833
9059
|
/**
|
|
8834
|
-
* The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface. You
|
|
9060
|
+
* The number of IPv4 prefixes that Amazon Web Services automatically assigns to the network interface. You can't specify a count of IPv4 prefixes if you've specified one of the following: specific IPv4 prefixes, specific private IPv4 addresses, or a count of private IPv4 addresses.
|
|
8835
9061
|
*/
|
|
8836
9062
|
Ipv4PrefixCount?: Integer;
|
|
8837
9063
|
/**
|
|
8838
|
-
*
|
|
9064
|
+
* The IPv6 prefixes assigned to the network interface. You can't specify IPv6 prefixes if you've specified one of the following: a count of IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
|
|
8839
9065
|
*/
|
|
8840
9066
|
Ipv6Prefixes?: Ipv6PrefixList;
|
|
8841
9067
|
/**
|
|
8842
|
-
* The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You
|
|
9068
|
+
* The number of IPv6 prefixes that Amazon Web Services automatically assigns to the network interface. You can't specify a count of IPv6 prefixes if you've specified one of the following: specific IPv6 prefixes, specific IPv6 addresses, or a count of IPv6 addresses.
|
|
8843
9069
|
*/
|
|
8844
9070
|
Ipv6PrefixCount?: Integer;
|
|
8845
9071
|
/**
|
|
@@ -10322,6 +10548,39 @@ declare namespace EC2 {
|
|
|
10322
10548
|
*/
|
|
10323
10549
|
Status?: ClientVpnRouteStatus;
|
|
10324
10550
|
}
|
|
10551
|
+
export interface DeleteCoipCidrRequest {
|
|
10552
|
+
/**
|
|
10553
|
+
* A customer-owned IP address range that you want to delete.
|
|
10554
|
+
*/
|
|
10555
|
+
Cidr: String;
|
|
10556
|
+
/**
|
|
10557
|
+
* The ID of the customer-owned address pool.
|
|
10558
|
+
*/
|
|
10559
|
+
CoipPoolId: Ipv4PoolCoipId;
|
|
10560
|
+
/**
|
|
10561
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
10562
|
+
*/
|
|
10563
|
+
DryRun?: Boolean;
|
|
10564
|
+
}
|
|
10565
|
+
export interface DeleteCoipCidrResult {
|
|
10566
|
+
/**
|
|
10567
|
+
* Information about a range of customer-owned IP addresses.
|
|
10568
|
+
*/
|
|
10569
|
+
CoipCidr?: CoipCidr;
|
|
10570
|
+
}
|
|
10571
|
+
export interface DeleteCoipPoolRequest {
|
|
10572
|
+
/**
|
|
10573
|
+
* The ID of the CoIP pool that you want to delete.
|
|
10574
|
+
*/
|
|
10575
|
+
CoipPoolId: Ipv4PoolCoipId;
|
|
10576
|
+
/**
|
|
10577
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
10578
|
+
*/
|
|
10579
|
+
DryRun?: Boolean;
|
|
10580
|
+
}
|
|
10581
|
+
export interface DeleteCoipPoolResult {
|
|
10582
|
+
CoipPool?: CoipPool;
|
|
10583
|
+
}
|
|
10325
10584
|
export interface DeleteCustomerGatewayRequest {
|
|
10326
10585
|
/**
|
|
10327
10586
|
* The ID of the customer gateway.
|
|
@@ -10649,6 +10908,32 @@ declare namespace EC2 {
|
|
|
10649
10908
|
*/
|
|
10650
10909
|
Route?: LocalGatewayRoute;
|
|
10651
10910
|
}
|
|
10911
|
+
export interface DeleteLocalGatewayRouteTableRequest {
|
|
10912
|
+
/**
|
|
10913
|
+
* The ID of the local gateway route table.
|
|
10914
|
+
*/
|
|
10915
|
+
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
|
10916
|
+
/**
|
|
10917
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
10918
|
+
*/
|
|
10919
|
+
DryRun?: Boolean;
|
|
10920
|
+
}
|
|
10921
|
+
export interface DeleteLocalGatewayRouteTableResult {
|
|
10922
|
+
LocalGatewayRouteTable?: LocalGatewayRouteTable;
|
|
10923
|
+
}
|
|
10924
|
+
export interface DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest {
|
|
10925
|
+
/**
|
|
10926
|
+
* The ID of the local gateway route table virtual interface group association.
|
|
10927
|
+
*/
|
|
10928
|
+
LocalGatewayRouteTableVirtualInterfaceGroupAssociationId: LocalGatewayRouteTableVirtualInterfaceGroupAssociationId;
|
|
10929
|
+
/**
|
|
10930
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
10931
|
+
*/
|
|
10932
|
+
DryRun?: Boolean;
|
|
10933
|
+
}
|
|
10934
|
+
export interface DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult {
|
|
10935
|
+
LocalGatewayRouteTableVirtualInterfaceGroupAssociation?: LocalGatewayRouteTableVirtualInterfaceGroupAssociation;
|
|
10936
|
+
}
|
|
10652
10937
|
export interface DeleteLocalGatewayRouteTableVpcAssociationRequest {
|
|
10653
10938
|
/**
|
|
10654
10939
|
* The ID of the association.
|
|
@@ -10915,7 +11200,7 @@ declare namespace EC2 {
|
|
|
10915
11200
|
*/
|
|
10916
11201
|
GroupId?: SecurityGroupId;
|
|
10917
11202
|
/**
|
|
10918
|
-
* [EC2-Classic, default VPC] The name of the security group. You can specify either the security group name or the security group ID.
|
|
11203
|
+
* [EC2-Classic, default VPC] The name of the security group. You can specify either the security group name or the security group ID. For security groups in a nondefault VPC, you must specify the security group ID.
|
|
10919
11204
|
*/
|
|
10920
11205
|
GroupName?: SecurityGroupName;
|
|
10921
11206
|
/**
|
|
@@ -12480,7 +12765,7 @@ declare namespace EC2 {
|
|
|
12480
12765
|
*/
|
|
12481
12766
|
DryRun?: Boolean;
|
|
12482
12767
|
/**
|
|
12483
|
-
* One or more filters. deliver-log-status - The status of the logs delivery (SUCCESS | FAILED). log-destination-type - The type of destination
|
|
12768
|
+
* One or more filters. deliver-log-status - The status of the logs delivery (SUCCESS | FAILED). log-destination-type - The type of destination for the flow log data (cloud-watch-logs | s3 | kinesis-data-firehose). flow-log-id - The ID of the flow log. log-group-name - The name of the log group. resource-id - The ID of the VPC, subnet, or network interface. traffic-type - The type of traffic (ACCEPT | REJECT | ALL). tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
|
|
12484
12769
|
*/
|
|
12485
12770
|
Filter?: FilterList;
|
|
12486
12771
|
/**
|
|
@@ -12745,7 +13030,7 @@ declare namespace EC2 {
|
|
|
12745
13030
|
*/
|
|
12746
13031
|
Owners?: OwnerStringList;
|
|
12747
13032
|
/**
|
|
12748
|
-
*
|
|
13033
|
+
* Specifies whether to include deprecated AMIs. Default: No deprecated AMIs are included in the response. If you are the AMI owner, all deprecated AMIs appear in the response regardless of what you specify for this parameter.
|
|
12749
13034
|
*/
|
|
12750
13035
|
IncludeDeprecated?: Boolean;
|
|
12751
13036
|
/**
|
|
@@ -13737,7 +14022,7 @@ declare namespace EC2 {
|
|
|
13737
14022
|
*/
|
|
13738
14023
|
AnalysisEndTime?: MillisecondDateTime;
|
|
13739
14024
|
/**
|
|
13740
|
-
* The filters. The following are the possible values:
|
|
14025
|
+
* The filters. The following are the possible values: path-found - A Boolean value that indicates whether a feasible path is found. status - The status of the analysis (running | succeeded | failed).
|
|
13741
14026
|
*/
|
|
13742
14027
|
Filters?: FilterList;
|
|
13743
14028
|
/**
|
|
@@ -13769,7 +14054,7 @@ declare namespace EC2 {
|
|
|
13769
14054
|
*/
|
|
13770
14055
|
NetworkInsightsPathIds?: NetworkInsightsPathIdList;
|
|
13771
14056
|
/**
|
|
13772
|
-
* The filters. The following are the possible values:
|
|
14057
|
+
* The filters. The following are the possible values: destination - The ID of the resource. destination-port - The destination port. protocol - The protocol. source - The ID of the resource.
|
|
13773
14058
|
*/
|
|
13774
14059
|
Filters?: FilterList;
|
|
13775
14060
|
/**
|
|
@@ -13834,7 +14119,7 @@ declare namespace EC2 {
|
|
|
13834
14119
|
export type DescribeNetworkInterfacePermissionsMaxResults = number;
|
|
13835
14120
|
export interface DescribeNetworkInterfacePermissionsRequest {
|
|
13836
14121
|
/**
|
|
13837
|
-
*
|
|
14122
|
+
* The network interface permission IDs.
|
|
13838
14123
|
*/
|
|
13839
14124
|
NetworkInterfacePermissionIds?: NetworkInterfacePermissionIdList;
|
|
13840
14125
|
/**
|
|
@@ -13871,7 +14156,7 @@ declare namespace EC2 {
|
|
|
13871
14156
|
*/
|
|
13872
14157
|
DryRun?: Boolean;
|
|
13873
14158
|
/**
|
|
13874
|
-
*
|
|
14159
|
+
* The network interface IDs. Default: Describes all your network interfaces.
|
|
13875
14160
|
*/
|
|
13876
14161
|
NetworkInterfaceIds?: NetworkInterfaceIdList;
|
|
13877
14162
|
/**
|
|
@@ -14772,7 +15057,7 @@ declare namespace EC2 {
|
|
|
14772
15057
|
export type DescribeSubnetsMaxResults = number;
|
|
14773
15058
|
export interface DescribeSubnetsRequest {
|
|
14774
15059
|
/**
|
|
14775
|
-
* One or more filters. availability-zone - The Availability Zone for the subnet. You can also use availabilityZone as the filter name. availability-zone-id - The ID of the Availability Zone for the subnet. You can also use availabilityZoneId as the filter name. available-ip-address-count - The number of IPv4 addresses in the subnet that are available. cidr-block - The IPv4 CIDR block of the subnet. The CIDR block you specify must exactly match the subnet's CIDR block for information to be returned for the subnet. You can also use cidr or cidrBlock as the filter names. default-for-az - Indicates whether this is the default subnet for the Availability Zone (true | false). You can also use defaultForAz as the filter name. ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated with the subnet. ipv6-cidr-block-association.association-id - An association ID for an IPv6 CIDR block associated with the subnet. ipv6-cidr-block-association.state - The state of an IPv6 CIDR block associated with the subnet. ipv6-native - Indicates whether this is an IPv6 only subnet (true | false). outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The ID of the Amazon Web Services account that owns the subnet. state - The state of the subnet (pending | available). subnet-arn - The Amazon Resource Name (ARN) of the subnet. subnet-id - The ID of the subnet. tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value. vpc-id - The ID of the VPC for the subnet.
|
|
15060
|
+
* One or more filters. availability-zone - The Availability Zone for the subnet. You can also use availabilityZone as the filter name. availability-zone-id - The ID of the Availability Zone for the subnet. You can also use availabilityZoneId as the filter name. available-ip-address-count - The number of IPv4 addresses in the subnet that are available. cidr-block - The IPv4 CIDR block of the subnet. The CIDR block you specify must exactly match the subnet's CIDR block for information to be returned for the subnet. You can also use cidr or cidrBlock as the filter names. customer-owned-ipv4-pool - The customer-owned IPv4 address pool associated with the subnet. default-for-az - Indicates whether this is the default subnet for the Availability Zone (true | false). You can also use defaultForAz as the filter name. enable-dns64 - Indicates whether DNS queries made to the Amazon-provided DNS Resolver in this subnet should return synthetic IPv6 addresses for IPv4-only destinations. enable-lni-at-device-index - Indicates the device position for local network interfaces in this subnet. For example, 1 indicates local network interfaces in this subnet are the secondary network interface (eth1). ipv6-cidr-block-association.ipv6-cidr-block - An IPv6 CIDR block associated with the subnet. ipv6-cidr-block-association.association-id - An association ID for an IPv6 CIDR block associated with the subnet. ipv6-cidr-block-association.state - The state of an IPv6 CIDR block associated with the subnet. ipv6-native - Indicates whether this is an IPv6 only subnet (true | false). map-customer-owned-ip-on-launch - Indicates whether a network interface created in this subnet (including a network interface created by RunInstances) receives a customer-owned IPv4 address. map-public-ip-on-launch - Indicates whether instances launched in this subnet receive a public IPv4 address. outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The ID of the Amazon Web Services account that owns the subnet. private-dns-name-options-on-launch.hostname-type - The type of hostname to assign to instances in the subnet at launch. For IPv4-only and dual-stack (IPv4 and IPv6) subnets, an instance DNS name can be based on the instance IPv4 address (ip-name) or the instance ID (resource-name). For IPv6 only subnets, an instance DNS name must be based on the instance ID (resource-name). private-dns-name-options-on-launch.enable-resource-name-dns-a-record - Indicates whether to respond to DNS queries for instance hostnames with DNS A records. private-dns-name-options-on-launch.enable-resource-name-dns-aaaa-record - Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records. state - The state of the subnet (pending | available). subnet-arn - The Amazon Resource Name (ARN) of the subnet. subnet-id - The ID of the subnet. tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value. vpc-id - The ID of the VPC for the subnet.
|
|
14776
15061
|
*/
|
|
14777
15062
|
Filters?: FilterList;
|
|
14778
15063
|
/**
|
|
@@ -17333,6 +17618,14 @@ declare namespace EC2 {
|
|
|
17333
17618
|
* The transit gateway attachment.
|
|
17334
17619
|
*/
|
|
17335
17620
|
TransitGatewayAttachment?: AnalysisComponent;
|
|
17621
|
+
/**
|
|
17622
|
+
* The Amazon Web Services account for the component.
|
|
17623
|
+
*/
|
|
17624
|
+
ComponentAccount?: ComponentAccount;
|
|
17625
|
+
/**
|
|
17626
|
+
* The Region for the component.
|
|
17627
|
+
*/
|
|
17628
|
+
ComponentRegion?: ComponentRegion;
|
|
17336
17629
|
}
|
|
17337
17630
|
export type ExplanationList = Explanation[];
|
|
17338
17631
|
export interface ExportClientVpnClientCertificateRevocationListRequest {
|
|
@@ -17863,7 +18156,7 @@ declare namespace EC2 {
|
|
|
17863
18156
|
}
|
|
17864
18157
|
export interface FleetLaunchTemplateOverrides {
|
|
17865
18158
|
/**
|
|
17866
|
-
* The instance type. If you specify
|
|
18159
|
+
* The instance type. If you specify InstanceType, you can't specify InstanceRequirements.
|
|
17867
18160
|
*/
|
|
17868
18161
|
InstanceType?: InstanceType;
|
|
17869
18162
|
/**
|
|
@@ -17891,15 +18184,19 @@ declare namespace EC2 {
|
|
|
17891
18184
|
*/
|
|
17892
18185
|
Placement?: PlacementResponse;
|
|
17893
18186
|
/**
|
|
17894
|
-
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify
|
|
18187
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify InstanceType.
|
|
17895
18188
|
*/
|
|
17896
18189
|
InstanceRequirements?: InstanceRequirements;
|
|
18190
|
+
/**
|
|
18191
|
+
* The ID of the AMI. An AMI is required to launch an instance. The AMI ID must be specified here or in the launch template.
|
|
18192
|
+
*/
|
|
18193
|
+
ImageId?: ImageId;
|
|
17897
18194
|
}
|
|
17898
18195
|
export type FleetLaunchTemplateOverridesList = FleetLaunchTemplateOverrides[];
|
|
17899
18196
|
export type FleetLaunchTemplateOverridesListRequest = FleetLaunchTemplateOverridesRequest[];
|
|
17900
18197
|
export interface FleetLaunchTemplateOverridesRequest {
|
|
17901
18198
|
/**
|
|
17902
|
-
* The instance type. If you specify
|
|
18199
|
+
* The instance type. If you specify InstanceType, you can't specify InstanceRequirements.
|
|
17903
18200
|
*/
|
|
17904
18201
|
InstanceType?: InstanceType;
|
|
17905
18202
|
/**
|
|
@@ -17927,9 +18224,13 @@ declare namespace EC2 {
|
|
|
17927
18224
|
*/
|
|
17928
18225
|
Placement?: Placement;
|
|
17929
18226
|
/**
|
|
17930
|
-
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify
|
|
18227
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify InstanceType.
|
|
17931
18228
|
*/
|
|
17932
18229
|
InstanceRequirements?: InstanceRequirementsRequest;
|
|
18230
|
+
/**
|
|
18231
|
+
* The ID of the AMI. An AMI is required to launch an instance. The AMI ID must be specified here or in the launch template.
|
|
18232
|
+
*/
|
|
18233
|
+
ImageId?: ImageId;
|
|
17933
18234
|
}
|
|
17934
18235
|
export interface FleetLaunchTemplateSpecification {
|
|
17935
18236
|
/**
|
|
@@ -18007,15 +18308,19 @@ declare namespace EC2 {
|
|
|
18007
18308
|
*/
|
|
18008
18309
|
DeliverLogsErrorMessage?: String;
|
|
18009
18310
|
/**
|
|
18010
|
-
* The ARN of the IAM role
|
|
18311
|
+
* The ARN of the IAM role allows the service to publish logs to CloudWatch Logs.
|
|
18011
18312
|
*/
|
|
18012
18313
|
DeliverLogsPermissionArn?: String;
|
|
18314
|
+
/**
|
|
18315
|
+
* The ARN of the IAM role that allows the service to publish flow logs across accounts.
|
|
18316
|
+
*/
|
|
18317
|
+
DeliverCrossAccountRole?: String;
|
|
18013
18318
|
/**
|
|
18014
18319
|
* The status of the logs delivery (SUCCESS | FAILED).
|
|
18015
18320
|
*/
|
|
18016
18321
|
DeliverLogsStatus?: String;
|
|
18017
18322
|
/**
|
|
18018
|
-
* The flow log
|
|
18323
|
+
* The ID of the flow log.
|
|
18019
18324
|
*/
|
|
18020
18325
|
FlowLogId?: String;
|
|
18021
18326
|
/**
|
|
@@ -18027,7 +18332,7 @@ declare namespace EC2 {
|
|
|
18027
18332
|
*/
|
|
18028
18333
|
LogGroupName?: String;
|
|
18029
18334
|
/**
|
|
18030
|
-
* The ID of the resource
|
|
18335
|
+
* The ID of the resource being monitored.
|
|
18031
18336
|
*/
|
|
18032
18337
|
ResourceId?: String;
|
|
18033
18338
|
/**
|
|
@@ -18035,11 +18340,11 @@ declare namespace EC2 {
|
|
|
18035
18340
|
*/
|
|
18036
18341
|
TrafficType?: TrafficType;
|
|
18037
18342
|
/**
|
|
18038
|
-
* The type of destination
|
|
18343
|
+
* The type of destination for the flow log data.
|
|
18039
18344
|
*/
|
|
18040
18345
|
LogDestinationType?: LogDestinationType;
|
|
18041
18346
|
/**
|
|
18042
|
-
* The
|
|
18347
|
+
* The Amazon Resource Name (ARN) of the destination for the flow log data.
|
|
18043
18348
|
*/
|
|
18044
18349
|
LogDestination?: String;
|
|
18045
18350
|
/**
|
|
@@ -19985,7 +20290,7 @@ declare namespace EC2 {
|
|
|
19985
20290
|
*/
|
|
19986
20291
|
KmsKeyId?: KmsKeyId;
|
|
19987
20292
|
/**
|
|
19988
|
-
* The license type to be used for the Amazon Machine Image (AMI) after importing.
|
|
20293
|
+
* The license type to be used for the Amazon Machine Image (AMI) after importing. Specify AWS to replace the source-system license with an Amazon Web Services license or BYOL to retain the source-system license. Leaving this parameter undefined is the same as choosing AWS when importing a Windows Server operating system, and the same as choosing BYOL when importing a Windows client operating system (such as Windows 10) or a Linux operating system. To use BYOL, you must have existing licenses with rights to use these licenses in a third party cloud, such as Amazon Web Services. For more information, see Prerequisites in the VM Import/Export User Guide.
|
|
19989
20294
|
*/
|
|
19990
20295
|
LicenseType?: String;
|
|
19991
20296
|
/**
|
|
@@ -21051,7 +21356,7 @@ declare namespace EC2 {
|
|
|
21051
21356
|
export type InstanceMetadataEndpointState = "disabled"|"enabled"|string;
|
|
21052
21357
|
export interface InstanceMetadataOptionsRequest {
|
|
21053
21358
|
/**
|
|
21054
|
-
* The state of token usage for your instance metadata requests. If the state is optional, you can choose to retrieve instance metadata with or without a
|
|
21359
|
+
* The state of token usage for your instance metadata requests. If the state is optional, you can choose to retrieve instance metadata with or without a session token on your request. If you retrieve the IAM role credentials without a token, the version 1.0 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the version 2.0 role credentials are returned. If the state is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns the version 2.0 credentials; the version 1.0 credentials are not available. Default: optional
|
|
21055
21360
|
*/
|
|
21056
21361
|
HttpTokens?: HttpTokensState;
|
|
21057
21362
|
/**
|
|
@@ -21077,7 +21382,7 @@ declare namespace EC2 {
|
|
|
21077
21382
|
*/
|
|
21078
21383
|
State?: InstanceMetadataOptionsState;
|
|
21079
21384
|
/**
|
|
21080
|
-
* The state of token usage for your instance metadata requests. If the state is optional, you can choose to retrieve instance metadata with or without a
|
|
21385
|
+
* The state of token usage for your instance metadata requests. If the state is optional, you can choose to retrieve instance metadata with or without a session token on your request. If you retrieve the IAM role credentials without a token, the version 1.0 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the version 2.0 role credentials are returned. If the state is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns the version 2.0 credentials; the version 1.0 credentials are not available. Default: optional
|
|
21081
21386
|
*/
|
|
21082
21387
|
HttpTokens?: HttpTokensState;
|
|
21083
21388
|
/**
|
|
@@ -21125,11 +21430,11 @@ declare namespace EC2 {
|
|
|
21125
21430
|
*/
|
|
21126
21431
|
Description?: String;
|
|
21127
21432
|
/**
|
|
21128
|
-
*
|
|
21433
|
+
* The security groups.
|
|
21129
21434
|
*/
|
|
21130
21435
|
Groups?: GroupIdentifierList;
|
|
21131
21436
|
/**
|
|
21132
|
-
*
|
|
21437
|
+
* The IPv6 addresses associated with the network interface.
|
|
21133
21438
|
*/
|
|
21134
21439
|
Ipv6Addresses?: InstanceIpv6AddressList;
|
|
21135
21440
|
/**
|
|
@@ -21153,7 +21458,7 @@ declare namespace EC2 {
|
|
|
21153
21458
|
*/
|
|
21154
21459
|
PrivateIpAddress?: String;
|
|
21155
21460
|
/**
|
|
21156
|
-
*
|
|
21461
|
+
* The private IPv4 addresses associated with the network interface.
|
|
21157
21462
|
*/
|
|
21158
21463
|
PrivateIpAddresses?: InstancePrivateIpAddressList;
|
|
21159
21464
|
/**
|
|
@@ -21260,7 +21565,7 @@ declare namespace EC2 {
|
|
|
21260
21565
|
*/
|
|
21261
21566
|
Ipv6AddressCount?: Integer;
|
|
21262
21567
|
/**
|
|
21263
|
-
*
|
|
21568
|
+
* The IPv6 addresses to assign to the network interface. You cannot specify this option and the option to assign a number of IPv6 addresses in the same request. You cannot specify this option if you've specified a minimum number of instances to launch.
|
|
21264
21569
|
*/
|
|
21265
21570
|
Ipv6Addresses?: InstanceIpv6AddressList;
|
|
21266
21571
|
/**
|
|
@@ -21272,7 +21577,7 @@ declare namespace EC2 {
|
|
|
21272
21577
|
*/
|
|
21273
21578
|
PrivateIpAddress?: String;
|
|
21274
21579
|
/**
|
|
21275
|
-
*
|
|
21580
|
+
* The private IPv4 addresses to assign to the network interface. Only one private IPv4 address can be designated as primary. You cannot specify this option if you're launching more than one instance in a RunInstances request.
|
|
21276
21581
|
*/
|
|
21277
21582
|
PrivateIpAddresses?: PrivateIpAddressSpecificationList;
|
|
21278
21583
|
/**
|
|
@@ -21296,7 +21601,7 @@ declare namespace EC2 {
|
|
|
21296
21601
|
*/
|
|
21297
21602
|
NetworkCardIndex?: Integer;
|
|
21298
21603
|
/**
|
|
21299
|
-
*
|
|
21604
|
+
* The IPv4 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.
|
|
21300
21605
|
*/
|
|
21301
21606
|
Ipv4Prefixes?: Ipv4PrefixList;
|
|
21302
21607
|
/**
|
|
@@ -21304,7 +21609,7 @@ declare namespace EC2 {
|
|
|
21304
21609
|
*/
|
|
21305
21610
|
Ipv4PrefixCount?: Integer;
|
|
21306
21611
|
/**
|
|
21307
|
-
*
|
|
21612
|
+
* The IPv6 delegated prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.
|
|
21308
21613
|
*/
|
|
21309
21614
|
Ipv6Prefixes?: Ipv6PrefixList;
|
|
21310
21615
|
/**
|
|
@@ -21410,7 +21715,7 @@ declare namespace EC2 {
|
|
|
21410
21715
|
*/
|
|
21411
21716
|
AcceleratorManufacturers?: AcceleratorManufacturerSet;
|
|
21412
21717
|
/**
|
|
21413
|
-
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA V100 GPUs, specify v100. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with Xilinx VU9P FPGAs, specify vu9p. Default: Any accelerator
|
|
21718
|
+
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA V100 GPUs, specify v100. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with Xilinx VU9P FPGAs, specify vu9p. For instance types with Amazon Web Services Inferentia chips, specify inferentia. For instance types with NVIDIA GRID K520 GPUs, specify k520. Default: Any accelerator
|
|
21414
21719
|
*/
|
|
21415
21720
|
AcceleratorNames?: AcceleratorNameSet;
|
|
21416
21721
|
/**
|
|
@@ -21496,7 +21801,7 @@ declare namespace EC2 {
|
|
|
21496
21801
|
*/
|
|
21497
21802
|
AcceleratorManufacturers?: AcceleratorManufacturerSet;
|
|
21498
21803
|
/**
|
|
21499
|
-
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA V100 GPUs, specify v100. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with Xilinx VU9P FPGAs, specify vu9p. Default: Any accelerator
|
|
21804
|
+
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA V100 GPUs, specify v100. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with Xilinx VU9P FPGAs, specify vu9p. For instance types with Amazon Web Services Inferentia chips, specify inferentia. For instance types with NVIDIA GRID K520 GPUs, specify k520. Default: Any accelerator
|
|
21500
21805
|
*/
|
|
21501
21806
|
AcceleratorNames?: AcceleratorNameSet;
|
|
21502
21807
|
/**
|
|
@@ -21527,6 +21832,9 @@ declare namespace EC2 {
|
|
|
21527
21832
|
* Excludes the root volume from being snapshotted.
|
|
21528
21833
|
*/
|
|
21529
21834
|
ExcludeBootVolume?: Boolean;
|
|
21835
|
+
/**
|
|
21836
|
+
* The IDs of the data (non-root) volumes to exclude from the multi-volume snapshot set. If you specify the ID of the root volume, the request fails. To exclude the root volume, use ExcludeBootVolume. You can specify up to 40 volume IDs per request.
|
|
21837
|
+
*/
|
|
21530
21838
|
ExcludeDataVolumeIds?: VolumeIdStringList;
|
|
21531
21839
|
}
|
|
21532
21840
|
export interface InstanceState {
|
|
@@ -22312,7 +22620,7 @@ declare namespace EC2 {
|
|
|
22312
22620
|
}
|
|
22313
22621
|
export interface Ipv4PrefixSpecificationResponse {
|
|
22314
22622
|
/**
|
|
22315
|
-
*
|
|
22623
|
+
* The IPv4 delegated prefixes assigned to the network interface.
|
|
22316
22624
|
*/
|
|
22317
22625
|
Ipv4Prefix?: String;
|
|
22318
22626
|
}
|
|
@@ -22376,7 +22684,7 @@ declare namespace EC2 {
|
|
|
22376
22684
|
}
|
|
22377
22685
|
export interface Ipv6PrefixSpecificationResponse {
|
|
22378
22686
|
/**
|
|
22379
|
-
*
|
|
22687
|
+
* The IPv6 delegated prefixes assigned to the network interface.
|
|
22380
22688
|
*/
|
|
22381
22689
|
Ipv6Prefix?: String;
|
|
22382
22690
|
}
|
|
@@ -23106,7 +23414,7 @@ declare namespace EC2 {
|
|
|
23106
23414
|
*/
|
|
23107
23415
|
Priority?: Double;
|
|
23108
23416
|
/**
|
|
23109
|
-
* The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types. If you specify InstanceRequirements, you can't specify
|
|
23417
|
+
* The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types. If you specify InstanceRequirements, you can't specify InstanceType.
|
|
23110
23418
|
*/
|
|
23111
23419
|
InstanceRequirements?: InstanceRequirements;
|
|
23112
23420
|
}
|
|
@@ -23505,6 +23813,18 @@ declare namespace EC2 {
|
|
|
23505
23813
|
* The ID of the Amazon Web Services account that owns the local gateway route.
|
|
23506
23814
|
*/
|
|
23507
23815
|
OwnerId?: String;
|
|
23816
|
+
/**
|
|
23817
|
+
* The ID of the subnet.
|
|
23818
|
+
*/
|
|
23819
|
+
SubnetId?: SubnetId;
|
|
23820
|
+
/**
|
|
23821
|
+
* The ID of the customer-owned address pool.
|
|
23822
|
+
*/
|
|
23823
|
+
CoipPoolId?: CoipPoolId;
|
|
23824
|
+
/**
|
|
23825
|
+
* The ID of the network interface.
|
|
23826
|
+
*/
|
|
23827
|
+
NetworkInterfaceId?: NetworkInterfaceId;
|
|
23508
23828
|
}
|
|
23509
23829
|
export type LocalGatewayRouteList = LocalGatewayRoute[];
|
|
23510
23830
|
export type LocalGatewayRouteState = "pending"|"active"|"blackhole"|"deleting"|"deleted"|string;
|
|
@@ -23537,8 +23857,14 @@ declare namespace EC2 {
|
|
|
23537
23857
|
* The tags assigned to the local gateway route table.
|
|
23538
23858
|
*/
|
|
23539
23859
|
Tags?: TagList;
|
|
23860
|
+
/**
|
|
23861
|
+
* The mode of the local gateway route table.
|
|
23862
|
+
*/
|
|
23863
|
+
Mode?: LocalGatewayRouteTableMode;
|
|
23864
|
+
StateReason?: StateReason;
|
|
23540
23865
|
}
|
|
23541
23866
|
export type LocalGatewayRouteTableIdSet = LocalGatewayRoutetableId[];
|
|
23867
|
+
export type LocalGatewayRouteTableMode = "direct-vpc-routing"|"coip"|string;
|
|
23542
23868
|
export type LocalGatewayRouteTableSet = LocalGatewayRouteTable[];
|
|
23543
23869
|
export interface LocalGatewayRouteTableVirtualInterfaceGroupAssociation {
|
|
23544
23870
|
/**
|
|
@@ -23688,7 +24014,7 @@ declare namespace EC2 {
|
|
|
23688
24014
|
export type LocalStorageTypeSet = LocalStorageType[];
|
|
23689
24015
|
export type Location = string;
|
|
23690
24016
|
export type LocationType = "region"|"availability-zone"|"availability-zone-id"|string;
|
|
23691
|
-
export type LogDestinationType = "cloud-watch-logs"|"s3"|string;
|
|
24017
|
+
export type LogDestinationType = "cloud-watch-logs"|"s3"|"kinesis-data-firehose"|string;
|
|
23692
24018
|
export type Long = number;
|
|
23693
24019
|
export interface ManagedPrefixList {
|
|
23694
24020
|
/**
|
|
@@ -24189,7 +24515,7 @@ declare namespace EC2 {
|
|
|
24189
24515
|
*/
|
|
24190
24516
|
SourceDestCheck?: AttributeBooleanValue;
|
|
24191
24517
|
/**
|
|
24192
|
-
* The name of the attribute.
|
|
24518
|
+
* The name of the attribute to modify. You can modify the following attributes only: disableApiTermination | instanceType | kernel | ramdisk | instanceInitiatedShutdownBehavior | blockDeviceMapping | userData | sourceDestCheck | groupSet | ebsOptimized | sriovNetSupport | enaSupport | nvmeSupport | disableApiStop | enclaveOptions
|
|
24193
24519
|
*/
|
|
24194
24520
|
Attribute?: InstanceAttributeName;
|
|
24195
24521
|
/**
|
|
@@ -24376,7 +24702,7 @@ declare namespace EC2 {
|
|
|
24376
24702
|
*/
|
|
24377
24703
|
InstanceId: InstanceId;
|
|
24378
24704
|
/**
|
|
24379
|
-
* The state of token usage for your instance metadata requests. If the parameter is not specified in the request, the default state is optional. If the state is optional, you can choose to retrieve instance metadata with or without a
|
|
24705
|
+
* The state of token usage for your instance metadata requests. If the parameter is not specified in the request, the default state is optional. If the state is optional, you can choose to retrieve instance metadata with or without a session token on your request. If you retrieve the IAM role credentials without a token, the version 1.0 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the version 2.0 role credentials are returned. If the state is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns the version 2.0 credentials; the version 1.0 credentials are not available.
|
|
24380
24706
|
*/
|
|
24381
24707
|
HttpTokens?: HttpTokensState;
|
|
24382
24708
|
/**
|
|
@@ -24603,6 +24929,31 @@ declare namespace EC2 {
|
|
|
24603
24929
|
*/
|
|
24604
24930
|
LaunchTemplate?: LaunchTemplate;
|
|
24605
24931
|
}
|
|
24932
|
+
export interface ModifyLocalGatewayRouteRequest {
|
|
24933
|
+
/**
|
|
24934
|
+
* The CIDR block used for destination matches. The value that you provide must match the CIDR of an existing route in the table.
|
|
24935
|
+
*/
|
|
24936
|
+
DestinationCidrBlock: String;
|
|
24937
|
+
/**
|
|
24938
|
+
* The ID of the local gateway route table.
|
|
24939
|
+
*/
|
|
24940
|
+
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
|
24941
|
+
/**
|
|
24942
|
+
* The ID of the virtual interface group.
|
|
24943
|
+
*/
|
|
24944
|
+
LocalGatewayVirtualInterfaceGroupId?: LocalGatewayVirtualInterfaceGroupId;
|
|
24945
|
+
/**
|
|
24946
|
+
* The ID of the network interface.
|
|
24947
|
+
*/
|
|
24948
|
+
NetworkInterfaceId?: NetworkInterfaceId;
|
|
24949
|
+
/**
|
|
24950
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
24951
|
+
*/
|
|
24952
|
+
DryRun?: Boolean;
|
|
24953
|
+
}
|
|
24954
|
+
export interface ModifyLocalGatewayRouteResult {
|
|
24955
|
+
Route?: LocalGatewayRoute;
|
|
24956
|
+
}
|
|
24606
24957
|
export interface ModifyManagedPrefixListRequest {
|
|
24607
24958
|
/**
|
|
24608
24959
|
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
@@ -25027,7 +25378,7 @@ declare namespace EC2 {
|
|
|
25027
25378
|
*/
|
|
25028
25379
|
PropagationDefaultRouteTableId?: TransitGatewayRouteTableId;
|
|
25029
25380
|
/**
|
|
25030
|
-
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs.
|
|
25381
|
+
* A private Autonomous System Number (ASN) for the Amazon side of a BGP session. The range is 64512 to 65534 for 16-bit ASNs and 4200000000 to 4294967294 for 32-bit ASNs. The modify ASN operation is not allowed on a transit gateway with active BGP sessions. You must first delete all transit gateway attachments that have BGP configured prior to modifying the ASN on the transit gateway.
|
|
25031
25382
|
*/
|
|
25032
25383
|
AmazonSideAsn?: Long;
|
|
25033
25384
|
}
|
|
@@ -25361,6 +25712,10 @@ declare namespace EC2 {
|
|
|
25361
25712
|
RemoveAllowedPrincipals?: ValueStringList;
|
|
25362
25713
|
}
|
|
25363
25714
|
export interface ModifyVpcEndpointServicePermissionsResult {
|
|
25715
|
+
/**
|
|
25716
|
+
* Information about the added principals.
|
|
25717
|
+
*/
|
|
25718
|
+
AddedPrincipals?: AddedPrincipalSet;
|
|
25364
25719
|
/**
|
|
25365
25720
|
* Returns true if the request succeeds; otherwise, it returns an error.
|
|
25366
25721
|
*/
|
|
@@ -26547,6 +26902,14 @@ declare namespace EC2 {
|
|
|
26547
26902
|
* The route in a transit gateway route table.
|
|
26548
26903
|
*/
|
|
26549
26904
|
TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
|
|
26905
|
+
/**
|
|
26906
|
+
* The explanation codes.
|
|
26907
|
+
*/
|
|
26908
|
+
Explanations?: ExplanationList;
|
|
26909
|
+
/**
|
|
26910
|
+
* The load balancer listener.
|
|
26911
|
+
*/
|
|
26912
|
+
ElasticLoadBalancerListener?: AnalysisComponent;
|
|
26550
26913
|
}
|
|
26551
26914
|
export type PathComponentList = PathComponent[];
|
|
26552
26915
|
export interface PathStatement {
|
|
@@ -27025,7 +27388,7 @@ declare namespace EC2 {
|
|
|
27025
27388
|
*/
|
|
27026
27389
|
Primary?: Boolean;
|
|
27027
27390
|
/**
|
|
27028
|
-
* The private IPv4
|
|
27391
|
+
* The private IPv4 address.
|
|
27029
27392
|
*/
|
|
27030
27393
|
PrivateIpAddress?: String;
|
|
27031
27394
|
}
|
|
@@ -28057,7 +28420,7 @@ declare namespace EC2 {
|
|
|
28057
28420
|
*/
|
|
28058
28421
|
ImageId?: ImageId;
|
|
28059
28422
|
/**
|
|
28060
|
-
* The instance type. For more information, see Instance types in the Amazon Elastic Compute Cloud User Guide. If you specify
|
|
28423
|
+
* The instance type. For more information, see Instance types in the Amazon Elastic Compute Cloud User Guide. If you specify InstanceType, you can't specify InstanceRequirements.
|
|
28061
28424
|
*/
|
|
28062
28425
|
InstanceType?: InstanceType;
|
|
28063
28426
|
/**
|
|
@@ -28141,7 +28504,7 @@ declare namespace EC2 {
|
|
|
28141
28504
|
*/
|
|
28142
28505
|
EnclaveOptions?: LaunchTemplateEnclaveOptionsRequest;
|
|
28143
28506
|
/**
|
|
28144
|
-
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes. If you specify InstanceRequirements, you can't specify
|
|
28507
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes. If you specify InstanceRequirements, you can't specify InstanceType.
|
|
28145
28508
|
*/
|
|
28146
28509
|
InstanceRequirements?: InstanceRequirementsRequest;
|
|
28147
28510
|
/**
|
|
@@ -28794,7 +29157,7 @@ declare namespace EC2 {
|
|
|
28794
29157
|
*/
|
|
28795
29158
|
ResourceTypes?: ValueStringList;
|
|
28796
29159
|
}
|
|
28797
|
-
export type ResourceType = "capacity-reservation"|"client-vpn-endpoint"|"customer-gateway"|"carrier-gateway"|"dedicated-host"|"dhcp-options"|"egress-only-internet-gateway"|"elastic-ip"|"elastic-gpu"|"export-image-task"|"export-instance-task"|"fleet"|"fpga-image"|"host-reservation"|"image"|"import-image-task"|"import-snapshot-task"|"instance"|"instance-event-window"|"internet-gateway"|"ipam"|"ipam-pool"|"ipam-scope"|"ipv4pool-ec2"|"ipv6pool-ec2"|"key-pair"|"launch-template"|"local-gateway"|"local-gateway-route-table"|"local-gateway-virtual-interface"|"local-gateway-virtual-interface-group"|"local-gateway-route-table-vpc-association"|"local-gateway-route-table-virtual-interface-group-association"|"natgateway"|"network-acl"|"network-interface"|"network-insights-analysis"|"network-insights-path"|"network-insights-access-scope"|"network-insights-access-scope-analysis"|"placement-group"|"prefix-list"|"replace-root-volume-task"|"reserved-instances"|"route-table"|"security-group"|"security-group-rule"|"snapshot"|"spot-fleet-request"|"spot-instances-request"|"subnet"|"subnet-cidr-reservation"|"traffic-mirror-filter"|"traffic-mirror-session"|"traffic-mirror-target"|"transit-gateway"|"transit-gateway-attachment"|"transit-gateway-connect-peer"|"transit-gateway-multicast-domain"|"transit-gateway-policy-table"|"transit-gateway-route-table"|"transit-gateway-route-table-announcement"|"volume"|"vpc"|"vpc-endpoint"|"vpc-endpoint-service"|"vpc-peering-connection"|"vpn-connection"|"vpn-gateway"|"vpc-flow-log"|"capacity-reservation-fleet"|"traffic-mirror-filter-rule"|"vpc-endpoint-connection-device-type"|string;
|
|
29160
|
+
export type ResourceType = "capacity-reservation"|"client-vpn-endpoint"|"customer-gateway"|"carrier-gateway"|"coip-pool"|"dedicated-host"|"dhcp-options"|"egress-only-internet-gateway"|"elastic-ip"|"elastic-gpu"|"export-image-task"|"export-instance-task"|"fleet"|"fpga-image"|"host-reservation"|"image"|"import-image-task"|"import-snapshot-task"|"instance"|"instance-event-window"|"internet-gateway"|"ipam"|"ipam-pool"|"ipam-scope"|"ipv4pool-ec2"|"ipv6pool-ec2"|"key-pair"|"launch-template"|"local-gateway"|"local-gateway-route-table"|"local-gateway-virtual-interface"|"local-gateway-virtual-interface-group"|"local-gateway-route-table-vpc-association"|"local-gateway-route-table-virtual-interface-group-association"|"natgateway"|"network-acl"|"network-interface"|"network-insights-analysis"|"network-insights-path"|"network-insights-access-scope"|"network-insights-access-scope-analysis"|"placement-group"|"prefix-list"|"replace-root-volume-task"|"reserved-instances"|"route-table"|"security-group"|"security-group-rule"|"snapshot"|"spot-fleet-request"|"spot-instances-request"|"subnet"|"subnet-cidr-reservation"|"traffic-mirror-filter"|"traffic-mirror-session"|"traffic-mirror-target"|"transit-gateway"|"transit-gateway-attachment"|"transit-gateway-connect-peer"|"transit-gateway-multicast-domain"|"transit-gateway-policy-table"|"transit-gateway-route-table"|"transit-gateway-route-table-announcement"|"volume"|"vpc"|"vpc-endpoint"|"vpc-endpoint-connection"|"vpc-endpoint-service"|"vpc-endpoint-service-permission"|"vpc-peering-connection"|"vpn-connection"|"vpn-gateway"|"vpc-flow-log"|"capacity-reservation-fleet"|"traffic-mirror-filter-rule"|"vpc-endpoint-connection-device-type"|"vpn-connection-device-type"|string;
|
|
28798
29161
|
export interface ResponseError {
|
|
28799
29162
|
/**
|
|
28800
29163
|
* The error code.
|
|
@@ -29178,7 +29541,7 @@ declare namespace EC2 {
|
|
|
29178
29541
|
*/
|
|
29179
29542
|
GroupId?: SecurityGroupId;
|
|
29180
29543
|
/**
|
|
29181
|
-
* [EC2-Classic, default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request.
|
|
29544
|
+
* [EC2-Classic, default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.
|
|
29182
29545
|
*/
|
|
29183
29546
|
GroupName?: SecurityGroupName;
|
|
29184
29547
|
/**
|
|
@@ -30332,7 +30695,7 @@ declare namespace EC2 {
|
|
|
30332
30695
|
*/
|
|
30333
30696
|
PrivateDnsName?: String;
|
|
30334
30697
|
/**
|
|
30335
|
-
* The private DNS names assigned to the VPC endpoint service.
|
|
30698
|
+
* The private DNS names assigned to the VPC endpoint service.
|
|
30336
30699
|
*/
|
|
30337
30700
|
PrivateDnsNames?: PrivateDnsDetailsSet;
|
|
30338
30701
|
/**
|
|
@@ -30804,7 +31167,7 @@ declare namespace EC2 {
|
|
|
30804
31167
|
*/
|
|
30805
31168
|
TagSpecifications?: SpotFleetTagSpecificationList;
|
|
30806
31169
|
/**
|
|
30807
|
-
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify
|
|
31170
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify InstanceType.
|
|
30808
31171
|
*/
|
|
30809
31172
|
InstanceRequirements?: InstanceRequirements;
|
|
30810
31173
|
}
|
|
@@ -30842,7 +31205,7 @@ declare namespace EC2 {
|
|
|
30842
31205
|
}
|
|
30843
31206
|
export interface SpotFleetRequestConfigData {
|
|
30844
31207
|
/**
|
|
30845
|
-
*
|
|
31208
|
+
* The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the Spot Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide for Linux Instances. lowestPrice - Spot Fleet launches instances from the lowest-price Spot Instance pool that has available capacity. If the cheapest pool doesn't have available capacity, the Spot Instances come from the next cheapest pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, Spot Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. diversified - Spot Fleet launches instances from all of the Spot Instance pools that you specify. capacityOptimized (recommended) - Spot Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching. To give certain instance types a higher chance of launching first, use capacityOptimizedPrioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacityOptimizedPrioritized is supported only if your Spot Fleet uses a launch template. Note that if the OnDemandAllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity. Default: lowestPrice
|
|
30846
31209
|
*/
|
|
30847
31210
|
AllocationStrategy?: AllocationStrategy;
|
|
30848
31211
|
/**
|
|
@@ -31098,7 +31461,7 @@ declare namespace EC2 {
|
|
|
31098
31461
|
}
|
|
31099
31462
|
export interface SpotOptions {
|
|
31100
31463
|
/**
|
|
31101
|
-
* The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet. lowest-price - EC2 Fleet launches instances from the Spot Instance
|
|
31464
|
+
* The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide. lowest-price - EC2 Fleet launches instances from the lowest-price Spot Instance pool that has available capacity. If the cheapest pool doesn't have available capacity, the Spot Instances come from the next cheapest pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, EC2 Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. diversified - EC2 Fleet launches instances from all of the Spot Instance pools that you specify. capacity-optimized (recommended) - EC2 Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching. To give certain instance types a higher chance of launching first, use capacity-optimized-prioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacity-optimized-prioritized is supported only if your fleet uses a launch template. Note that if the On-Demand AllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity. Default: lowest-price
|
|
31102
31465
|
*/
|
|
31103
31466
|
AllocationStrategy?: SpotAllocationStrategy;
|
|
31104
31467
|
/**
|
|
@@ -31132,7 +31495,7 @@ declare namespace EC2 {
|
|
|
31132
31495
|
}
|
|
31133
31496
|
export interface SpotOptionsRequest {
|
|
31134
31497
|
/**
|
|
31135
|
-
* The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet. lowest-price - EC2 Fleet launches instances from the Spot Instance
|
|
31498
|
+
* The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide. lowest-price - EC2 Fleet launches instances from the lowest-price Spot Instance pool that has available capacity. If the cheapest pool doesn't have available capacity, the Spot Instances come from the next cheapest pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, EC2 Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. diversified - EC2 Fleet launches instances from all of the Spot Instance pools that you specify. capacity-optimized (recommended) - EC2 Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching. To give certain instance types a higher chance of launching first, use capacity-optimized-prioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacity-optimized-prioritized is supported only if your fleet uses a launch template. Note that if the On-Demand AllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity. Default: lowest-price
|
|
31136
31499
|
*/
|
|
31137
31500
|
AllocationStrategy?: SpotAllocationStrategy;
|
|
31138
31501
|
/**
|
|
@@ -33206,7 +33569,7 @@ declare namespace EC2 {
|
|
|
33206
33569
|
*/
|
|
33207
33570
|
Ipv6Addresses?: Ipv6AddressList;
|
|
33208
33571
|
/**
|
|
33209
|
-
*
|
|
33572
|
+
* The IPv6 prefixes to unassign from the network interface.
|
|
33210
33573
|
*/
|
|
33211
33574
|
Ipv6Prefixes?: IpPrefixList;
|
|
33212
33575
|
/**
|
|
@@ -33341,7 +33704,7 @@ declare namespace EC2 {
|
|
|
33341
33704
|
*/
|
|
33342
33705
|
GroupId?: SecurityGroupId;
|
|
33343
33706
|
/**
|
|
33344
|
-
* [EC2-Classic, default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request.
|
|
33707
|
+
* [EC2-Classic, default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.
|
|
33345
33708
|
*/
|
|
33346
33709
|
GroupName?: SecurityGroupName;
|
|
33347
33710
|
/**
|
|
@@ -34010,6 +34373,14 @@ declare namespace EC2 {
|
|
|
34010
34373
|
* The IP address type for the endpoint.
|
|
34011
34374
|
*/
|
|
34012
34375
|
IpAddressType?: IpAddressType;
|
|
34376
|
+
/**
|
|
34377
|
+
* The ID of the VPC endpoint connection.
|
|
34378
|
+
*/
|
|
34379
|
+
VpcEndpointConnectionId?: String;
|
|
34380
|
+
/**
|
|
34381
|
+
* The tags.
|
|
34382
|
+
*/
|
|
34383
|
+
Tags?: TagList;
|
|
34013
34384
|
}
|
|
34014
34385
|
export type VpcEndpointConnectionSet = VpcEndpointConnection[];
|
|
34015
34386
|
export type VpcEndpointId = string;
|