@btc-embedded/cdk-extensions 0.20.6 → 0.20.8
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 +5802 -478
- package/API.md +1670 -459
- package/CHANGELOG.md +14 -0
- package/assets/constructs/api-keys/lambdas/api-client-authorization.lambda/index.js +6625 -0
- package/assets/constructs/api-keys/lambdas/api-key-creation.lambda/index.js +2177 -0
- package/assets/constructs/api-keys/lambdas/api-key-update.lambda/index.js +2196 -0
- package/assets/constructs/api-keys/lambdas/pre-token.lambda/index.js +6276 -0
- package/assets/test/constructs/api-keys/integration/api-key-client-authorization-runner.lambda/index.js +7556 -0
- package/assets/test/constructs/api-keys/integration/api-key-management-runner-unauthorized.lambda/index.js +7520 -0
- package/assets/test/constructs/api-keys/integration/api-key-management-runner.lambda/index.js +7840 -0
- package/assets/test/constructs/api-keys/integration/api-key-pre-token-handler-runner.lambda/index.js +7578 -0
- package/integ.config.json +5 -0
- package/lib/constructs/EventPipe.js +1 -1
- package/lib/constructs/ExportedService.js +1 -1
- package/lib/constructs/S3Bucket.js +1 -1
- package/lib/constructs/SecureRestApi.js +1 -1
- package/lib/constructs/SecureRestApiV2.js +1 -1
- package/lib/constructs/api-keys/ApiKeyClientAuthorization.d.ts +57 -0
- package/lib/constructs/api-keys/ApiKeyClientAuthorization.js +56 -0
- package/lib/constructs/api-keys/ApiKeyManagement.d.ts +55 -0
- package/lib/constructs/api-keys/ApiKeyManagement.js +214 -0
- package/lib/constructs/api-keys/ApiKeyPreTokenHandler.d.ts +28 -0
- package/lib/constructs/api-keys/ApiKeyPreTokenHandler.js +65 -0
- package/lib/constructs/api-keys/ApiKeyStore.d.ts +61 -0
- package/lib/constructs/api-keys/ApiKeyStore.js +46 -0
- package/lib/constructs/api-keys/index.d.ts +4 -0
- package/lib/constructs/api-keys/index.js +21 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization.lambda.d.ts +2 -0
- package/lib/constructs/api-keys/lambdas/api-client-authorization.lambda.js +86 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation.lambda.d.ts +2 -0
- package/lib/constructs/api-keys/lambdas/api-key-creation.lambda.js +53 -0
- package/lib/constructs/api-keys/lambdas/api-key-update-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/api-key-update-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/api-key-update.lambda.d.ts +2 -0
- package/lib/constructs/api-keys/lambdas/api-key-update.lambda.js +80 -0
- package/lib/constructs/api-keys/lambdas/pre-token-function.d.ts +18 -0
- package/lib/constructs/api-keys/lambdas/pre-token-function.js +24 -0
- package/lib/constructs/api-keys/lambdas/pre-token.lambda.d.ts +8 -0
- package/lib/constructs/api-keys/lambdas/pre-token.lambda.js +111 -0
- package/lib/constructs/index.d.ts +1 -0
- package/lib/constructs/index.js +2 -1
- package/lib/extensions/ApiGatewayExtension.js +1 -1
- package/lib/extensions/ApplicationLoadBalancerExtension.js +1 -1
- package/lib/extensions/ApplicationLoadBalancerExtensionV2.js +1 -1
- package/lib/extensions/CloudMapExtension.js +1 -1
- package/lib/extensions/DeactivatableServiceExtension.js +1 -1
- package/lib/extensions/DeploymentConfigExtension.d.ts +19 -0
- package/lib/extensions/DeploymentConfigExtension.js +24 -6
- package/lib/extensions/DocumentDbAccessExtension.js +1 -1
- package/lib/extensions/DomainEventMessagingExtension.js +1 -1
- package/lib/extensions/EfsMountExtension.js +1 -1
- package/lib/extensions/ExtraContainerExtension.js +1 -1
- package/lib/extensions/HTTPApiExtension.js +1 -1
- package/lib/extensions/LogExtension.js +1 -1
- package/lib/extensions/ModifyContainerDefinitionExtension.js +1 -1
- package/lib/extensions/ModifyTaskDefinitionExtension.js +1 -1
- package/lib/extensions/OpenIdExtension.js +1 -1
- package/lib/extensions/OpenTelemetryExtension.js +1 -1
- package/lib/extensions/PostgresDbAccessExtension.js +1 -1
- package/lib/extensions/SharedVolumeExtension.js +1 -1
- package/lib/extensions/TcpKeepAliveExtension.js +1 -1
- package/lib/platform/ApiGateway.js +1 -1
- package/lib/platform/ApiGatewayVpcLink.js +2 -2
- package/lib/platform/ApplicationLoadBalancer.js +1 -1
- package/lib/platform/ApplicationLoadBalancerV2.js +2 -2
- package/lib/platform/BTCLogGroup.js +1 -1
- package/lib/platform/CognitoUserPool.js +2 -2
- package/lib/platform/DefaultUserPoolClients.js +1 -1
- package/lib/platform/DocumentDB.js +2 -2
- package/lib/platform/EcsCluster.js +1 -1
- package/lib/platform/EfsFileSystem.js +1 -1
- package/lib/platform/PrivateDnsNamespace.js +1 -1
- package/lib/platform/ResourceServer.js +1 -1
- package/lib/platform/Vpc.js +1 -1
- package/lib/platform/VpcV2.js +1 -1
- package/lib/platform/index.d.ts +1 -1
- package/lib/platform/index.js +2 -2
- package/lib/utils/StackParameter.js +1 -1
- package/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +50 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +118 -0
- package/node_modules/@aws-crypto/sha256-browser/LICENSE +202 -0
- package/node_modules/@aws-crypto/sha256-browser/README.md +31 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +43 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +30 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +11 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +56 -0
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +40 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +8 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +27 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +3 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +7 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +10 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +53 -0
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +4 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +66 -0
- package/node_modules/@aws-crypto/sha256-browser/package.json +33 -0
- package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +41 -0
- package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +30 -0
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +2 -0
- package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +9 -0
- package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +71 -0
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +10 -0
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +7 -0
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +106 -0
- package/node_modules/@aws-crypto/sha256-js/LICENSE +201 -0
- package/node_modules/@aws-crypto/sha256-js/README.md +29 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +17 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +124 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +20 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +98 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +12 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +85 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +322 -0
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +17 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +121 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +20 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +95 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js +2 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +12 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +82 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +5 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +319 -0
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +1 -0
- package/node_modules/@aws-crypto/sha256-js/package.json +32 -0
- package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +164 -0
- package/node_modules/@aws-crypto/sha256-js/src/constants.ts +98 -0
- package/node_modules/@aws-crypto/sha256-js/src/index.ts +1 -0
- package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +94 -0
- package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +401 -0
- package/node_modules/@aws-crypto/sha256-js/tsconfig.json +10 -0
- package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +7 -0
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +66 -0
- package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +202 -0
- package/node_modules/@aws-crypto/supports-web-crypto/README.md +32 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +5 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +4 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +69 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +2 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +4 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +62 -0
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +28 -0
- package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +1 -0
- package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +76 -0
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +10 -0
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +7 -0
- package/node_modules/@aws-crypto/util/CHANGELOG.md +71 -0
- package/node_modules/@aws-crypto/util/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/README.md +16 -0
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +24 -0
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/build/main/index.js +14 -0
- package/node_modules/@aws-crypto/util/build/main/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +13 -0
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js +15 -0
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +20 -0
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +20 -0
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/build/module/index.js +7 -0
- package/node_modules/@aws-crypto/util/build/module/index.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +2 -0
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +9 -0
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js +11 -0
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +1 -0
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +1 -0
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +16 -0
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +32 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +60 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +47 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +61 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +4 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +65 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +66 -0
- package/node_modules/@aws-crypto/util/package.json +32 -0
- package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +30 -0
- package/node_modules/@aws-crypto/util/src/index.ts +7 -0
- package/node_modules/@aws-crypto/util/src/isEmptyData.ts +12 -0
- package/node_modules/@aws-crypto/util/src/numToUint8.ts +11 -0
- package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +16 -0
- package/node_modules/@aws-crypto/util/tsconfig.json +9 -0
- package/node_modules/@aws-crypto/util/tsconfig.module.json +7 -0
- package/node_modules/@aws-lambda-powertools/commons/README.md +142 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.js +224 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts +76 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.js +104 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.js +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.js +11 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/deepMerge.js +130 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.js +287 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/fromBase64.js +35 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.js +39 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/cleanupMiddlewares.js +74 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.js +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts +197 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.js +337 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/GenericLogger.d.ts +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/GenericLogger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/GenericLogger.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LRUCache.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts +29 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.js +64 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.js +5 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts +109 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.js +221 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts +76 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.js +100 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.js +104 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.js +5 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/deepMerge.js +127 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.js +276 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/fromBase64.js +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.js +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/cleanupMiddlewares.js +71 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts +32 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.js +31 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts +197 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.js +324 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/GenericLogger.d.ts +17 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/GenericLogger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/GenericLogger.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LRUCache.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts +29 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts +8 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.js +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.js +60 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.js +2 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/commons/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-lambda-powertools/commons/package.json +106 -0
- package/node_modules/@aws-lambda-powertools/logger/README.md +266 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/LogAttributesStore.js +134 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts +551 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.js +1219 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/constants.d.ts +48 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/constants.js +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/correlationId.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/correlationId.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/correlationId.js +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts +116 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.js +144 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.d.ts +56 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.js +77 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.js +78 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/index.js +12 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.d.ts +61 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.js +126 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.js +118 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts +238 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts +248 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.js +2 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/LogAttributesStore.js +131 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts +551 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.js +1216 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/constants.d.ts +48 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/constants.js +53 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/correlationId.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/correlationId.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/correlationId.js +56 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts +116 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.js +141 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.d.ts +56 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.js +74 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.js +75 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/index.js +4 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.d.ts +61 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.js +120 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.d.ts +60 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.js +115 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts +238 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts +18 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts +248 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.js +1 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/LICENSE +175 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/README.md +198 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +119 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +117 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.benchmark.d.ts +1 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +49 -0
- package/node_modules/@aws-lambda-powertools/logger/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-lambda-powertools/logger/package.json +89 -0
- package/node_modules/@aws-lambda-powertools/parameters/README.md +256 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.d.ts +239 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/AppConfigProvider.js +298 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/getAppConfig.js +157 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/appconfig/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/BaseProvider.js +162 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/DefaultProviders.js +20 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/ExpirableValue.js +32 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.d.ts +13 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetMultipleOptions.js +19 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/GetOptions.js +27 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/index.js +11 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.d.ts +28 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/base/transformValue.js +66 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/constants.js +31 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.d.ts +302 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/DynamoDBProvider.js +357 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/dynamodb/index.js +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/errors.js +38 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/index.js +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.d.ts +179 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/SecretsProvider.js +199 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.d.ts +96 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/getSecret.js +104 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/secrets/index.js +7 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.d.ts +468 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/SSMProvider.js +738 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.d.ts +123 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameter.js +131 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.d.ts +122 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParameters.js +130 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/getParametersByName.js +149 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/index.js +13 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/ssm/setParameter.js +78 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/AppConfigProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.d.ts +92 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/BaseProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.d.ts +139 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/DynamoDBProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.d.ts +201 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SSMProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/cjs/types/SecretsProvider.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.d.ts +239 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/AppConfigProvider.js +295 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/getAppConfig.js +154 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/appconfig/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/BaseProvider.js +159 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.d.ts +10 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/DefaultProviders.js +16 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/ExpirableValue.js +29 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.d.ts +13 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetMultipleOptions.js +16 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/GetOptions.js +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.d.ts +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/index.js +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.d.ts +28 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/base/transformValue.js +63 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/constants.js +23 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.d.ts +302 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/DynamoDBProvider.js +354 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.d.ts +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/dynamodb/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.d.ts +24 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/errors.js +33 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/index.js +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.d.ts +179 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/SecretsProvider.js +196 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.d.ts +96 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/getSecret.js +101 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.d.ts +3 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/secrets/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.d.ts +468 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/SSMProvider.js +735 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.d.ts +123 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameter.js +128 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.d.ts +122 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParameters.js +127 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.d.ts +141 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/getParametersByName.js +146 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.d.ts +6 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/index.js +5 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/ssm/setParameter.js +75 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/AppConfigProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.d.ts +92 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/BaseProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.d.ts +139 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/DynamoDBProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.d.ts +201 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SSMProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.d.ts +70 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/lib/esm/types/SecretsProvider.js +1 -0
- package/node_modules/@aws-lambda-powertools/parameters/package.json +168 -0
- package/node_modules/@aws-lambda-powertools/parser/README.md +361 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gateway.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gateway.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gatewayv2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/api-gatewayv2.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/cloudwatch.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/cloudwatch.js +89 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/dynamodb.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/dynamodb.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/envelope.d.ts +7 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/envelope.js +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/eventbridge.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/eventbridge.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/index.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/index.js +31 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kafka.d.ts +21 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kafka.js +96 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis-firehose.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis-firehose.js +91 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/kinesis.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/lambda.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/lambda.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns-sqs.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns-sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns-sqs.js +134 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns.d.ts +22 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sns.js +77 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sqs.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/sqs.js +102 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-lattice.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-lattice.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-latticev2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/envelopes/vpc-latticev2.js +46 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/errors.d.ts +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/errors.js +17 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/dynamodb.d.ts +64 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/dynamodb.js +84 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/index.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/helpers/index.js +118 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/index.js +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/middleware/index.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/middleware/index.js +40 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parser.d.ts +37 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parser.js +40 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parserDecorator.d.ts +68 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parserDecorator.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/parserDecorator.js +79 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/alb.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/alb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/alb.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway-websocket.d.ts +100 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway-websocket.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway-websocket.js +98 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway.d.ts +383 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gateway.js +252 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gatewayv2.d.ts +379 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/api-gatewayv2.js +243 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/apigw-proxy.d.ts +36 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/apigw-proxy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/apigw-proxy.js +41 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-events.d.ts +261 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-events.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-events.js +165 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-shared.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-shared.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync-shared.js +31 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync.d.ts +281 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/appsync.js +232 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudformation-custom-resource.d.ts +104 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudformation-custom-resource.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudformation-custom-resource.js +99 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudwatch.d.ts +82 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cloudwatch.js +85 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cognito.d.ts +733 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cognito.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/cognito.js +622 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/dynamodb.d.ts +373 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/dynamodb.js +256 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/eventbridge.d.ts +42 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/eventbridge.js +44 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/index.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/index.js +96 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kafka.d.ts +133 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kafka.js +131 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis-firehose.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis-firehose.js +122 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis.d.ts +149 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/kinesis.js +90 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/lambda.d.ts +132 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/lambda.js +65 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/s3.d.ts +350 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/s3.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/s3.js +294 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/ses.d.ts +291 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/ses.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/ses.js +174 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sns.d.ts +161 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sns.js +119 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sqs.d.ts +136 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/sqs.js +107 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/transfer-family.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/transfer-family.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/transfer-family.js +29 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-lattice.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-lattice.js +38 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-latticev2.d.ts +78 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/schemas/vpc-latticev2.js +74 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/envelope.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/envelope.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/index.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/parser.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/parser.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/schema.d.ts +52 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/schema.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/cjs/types/schema.js +2 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gateway.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gateway.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gatewayv2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/api-gatewayv2.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/cloudwatch.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/cloudwatch.js +86 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/dynamodb.d.ts +20 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/dynamodb.js +92 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/envelope.d.ts +7 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/envelope.js +6 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/eventbridge.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/eventbridge.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/index.d.ts +15 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/index.js +14 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kafka.d.ts +21 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kafka.js +93 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis-firehose.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis-firehose.js +88 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/kinesis.js +92 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/lambda.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/lambda.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns-sqs.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns-sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns-sqs.js +131 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns.d.ts +22 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sns.js +74 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sqs.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/sqs.js +99 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-lattice.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-lattice.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-latticev2.d.ts +16 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/envelopes/vpc-latticev2.js +43 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/errors.d.ts +9 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/errors.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/errors.js +14 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/dynamodb.d.ts +64 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/dynamodb.js +81 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/index.d.ts +77 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/helpers/index.js +114 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/index.js +3 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/middleware/index.d.ts +33 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/middleware/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/middleware/index.js +37 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/package.json +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parser.d.ts +37 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parser.js +38 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parserDecorator.d.ts +68 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parserDecorator.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/parserDecorator.js +75 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/alb.d.ts +101 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/alb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/alb.js +91 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway-websocket.d.ts +100 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway-websocket.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway-websocket.js +95 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway.d.ts +383 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gateway.js +246 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gatewayv2.d.ts +379 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gatewayv2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/api-gatewayv2.js +237 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/apigw-proxy.d.ts +36 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/apigw-proxy.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/apigw-proxy.js +35 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-events.d.ts +261 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-events.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-events.js +154 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-shared.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-shared.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync-shared.js +26 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync.d.ts +281 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/appsync.js +224 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudformation-custom-resource.d.ts +104 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudformation-custom-resource.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudformation-custom-resource.js +94 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudwatch.d.ts +82 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudwatch.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cloudwatch.js +80 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cognito.d.ts +733 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cognito.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/cognito.js +603 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/dynamodb.d.ts +373 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/dynamodb.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/dynamodb.js +247 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/eventbridge.d.ts +42 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/eventbridge.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/eventbridge.js +41 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/index.d.ts +23 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/index.js +22 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kafka.d.ts +133 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kafka.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kafka.js +126 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis-firehose.d.ts +186 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis-firehose.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis-firehose.js +116 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis.d.ts +149 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/kinesis.js +84 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/lambda.d.ts +132 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/lambda.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/lambda.js +62 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/s3.d.ts +350 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/s3.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/s3.js +288 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/ses.d.ts +291 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/ses.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/ses.js +170 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sns.d.ts +161 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sns.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sns.js +113 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sqs.d.ts +136 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sqs.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/sqs.js +100 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/transfer-family.d.ts +27 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/transfer-family.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/transfer-family.js +26 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-lattice.d.ts +44 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-lattice.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-lattice.js +35 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-latticev2.d.ts +78 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-latticev2.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/schemas/vpc-latticev2.js +71 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/envelope.d.ts +25 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/envelope.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/envelope.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/index.d.ts +4 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/index.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/index.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/parser.d.ts +51 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/parser.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/parser.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/schema.d.ts +52 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/schema.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/parser/lib/esm/types/schema.js +1 -0
- package/node_modules/@aws-lambda-powertools/parser/package.json +198 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/README.md +1064 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/auth/httpAuthSchemeProvider.js +243 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/index.js +6554 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-cjs/runtimeConfig.shared.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/CognitoIdentityProvider.js +245 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/CognitoIdentityProviderClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/auth/httpAuthSchemeProvider.js +237 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AddCustomAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminAddUserToGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminConfirmSignUpCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminCreateUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDeleteUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDeleteUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDisableProviderForUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminDisableUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminEnableUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminForgetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminGetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminGetUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminInitiateAuthCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminLinkProviderForUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminListDevicesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminListGroupsForUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminListUserAuthEventsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminRemoveUserFromGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminResetUserPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminRespondToAuthChallengeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminSetUserMFAPreferenceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminSetUserPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminSetUserSettingsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUpdateAuthEventFeedbackCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUpdateDeviceStatusCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUpdateUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AdminUserGlobalSignOutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/AssociateSoftwareTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ChangePasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CompleteWebAuthnRegistrationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ConfirmDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ConfirmForgotPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ConfirmSignUpCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/CreateUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DeleteWebAuthnCredentialCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeManagedLoginBrandingByClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeRiskConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/DescribeUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ForgetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ForgotPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetCSVHeaderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetDeviceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetIdentityProviderByIdentifierCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetLogDeliveryConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetSigningCertificateCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetTokensFromRefreshTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUICustomizationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserAttributeVerificationCodeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserAuthFactorsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GetUserPoolMfaConfigCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/GlobalSignOutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/InitiateAuthCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListDevicesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListGroupsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListIdentityProvidersCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListResourceServersCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUserImportJobsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUserPoolClientsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUserPoolsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUsersCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListUsersInGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ListWebAuthnCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/ResendConfirmationCodeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/RespondToAuthChallengeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/RevokeTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetLogDeliveryConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetRiskConfigurationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUICustomizationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUserMFAPreferenceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUserPoolMfaConfigCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SetUserSettingsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/SignUpCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/StartUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/StartWebAuthnRegistrationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/StopUserImportJobCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/TagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UntagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateAuthEventFeedbackCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateDeviceStatusCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateGroupCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateIdentityProviderCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateManagedLoginBrandingCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateResourceServerCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateTermsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserAttributesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserPoolClientCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserPoolCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/UpdateUserPoolDomainCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/VerifySoftwareTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/VerifyUserAttributeCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/commands/index.js +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/CognitoIdentityProviderServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/enums.js +281 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/errors.js +663 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/models/models_1.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/AdminListGroupsForUserPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/AdminListUserAuthEventsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListGroupsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListIdentityProvidersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListResourceServersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUserPoolClientsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUserPoolsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUsersInGroupPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/ListUsersPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/pagination/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeConfig.shared.js +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-es/schemas/schemas_0.js +3226 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/CognitoIdentityProvider.d.ts +875 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/CognitoIdentityProviderClient.d.ts +336 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AddCustomAttributesCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminAddUserToGroupCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminConfirmSignUpCommand.d.ts +142 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminCreateUserCommand.d.ts +283 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDeleteUserAttributesCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDeleteUserCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDisableProviderForUserCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminDisableUserCommand.d.ts +116 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminEnableUserCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminForgetDeviceCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminGetDeviceCommand.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminGetUserCommand.d.ts +139 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminInitiateAuthCommand.d.ts +220 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminLinkProviderForUserCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminListDevicesCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminListGroupsForUserCommand.d.ts +131 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminListUserAuthEventsCommand.d.ts +153 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminRemoveUserFromGroupCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminResetUserPasswordCommand.d.ts +170 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminRespondToAuthChallengeCommand.d.ts +240 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminSetUserMFAPreferenceCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminSetUserPasswordCommand.d.ts +148 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminSetUserSettingsCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUpdateAuthEventFeedbackCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUpdateDeviceStatusCommand.d.ts +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUpdateUserAttributesCommand.d.ts +179 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AdminUserGlobalSignOutCommand.d.ts +140 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/AssociateSoftwareTokenCommand.d.ts +113 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ChangePasswordCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CompleteWebAuthnRegistrationCommand.d.ts +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ConfirmDeviceCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ConfirmForgotPasswordCommand.d.ts +154 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ConfirmSignUpCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateGroupCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateIdentityProviderCommand.d.ts +148 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateManagedLoginBrandingCommand.d.ts +165 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateResourceServerCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateTermsCommand.d.ts +153 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserImportJobCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserPoolClientCommand.d.ts +367 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserPoolCommand.d.ts +889 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/CreateUserPoolDomainCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteGroupCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteIdentityProviderCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteManagedLoginBrandingCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteResourceServerCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteTermsCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserAttributesCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserPoolClientCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserPoolCommand.d.ts +102 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteUserPoolDomainCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DeleteWebAuthnCredentialCommand.d.ts +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeIdentityProviderCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeManagedLoginBrandingByClientCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeManagedLoginBrandingCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeResourceServerCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeRiskConfigurationCommand.d.ts +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeTermsCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserImportJobCommand.d.ts +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserPoolClientCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserPoolCommand.d.ts +261 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/DescribeUserPoolDomainCommand.d.ts +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ForgetDeviceCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ForgotPasswordCommand.d.ts +180 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetCSVHeaderCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetDeviceCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetGroupCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetIdentityProviderByIdentifierCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetLogDeliveryConfigurationCommand.d.ts +130 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetSigningCertificateCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetTokensFromRefreshTokenCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUICustomizationCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserAttributeVerificationCodeCommand.d.ts +171 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserAuthFactorsCommand.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GetUserPoolMfaConfigCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/GlobalSignOutCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/InitiateAuthCommand.d.ts +233 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListDevicesCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListGroupsCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListIdentityProvidersCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListResourceServersCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListTagsForResourceCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListTermsCommand.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUserImportJobsCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUserPoolClientsCommand.d.ts +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUserPoolsCommand.d.ts +143 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUsersCommand.d.ts +215 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListUsersInGroupCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ListWebAuthnCredentialsCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/ResendConfirmationCodeCommand.d.ts +175 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/RespondToAuthChallengeCommand.d.ts +221 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/RevokeTokenCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetLogDeliveryConfigurationCommand.d.ts +131 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetRiskConfigurationCommand.d.ts +235 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUICustomizationCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUserMFAPreferenceCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUserPoolMfaConfigCommand.d.ts +167 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SetUserSettingsCommand.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/SignUpCommand.d.ts +197 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/StartUserImportJobCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/StartWebAuthnRegistrationCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/StopUserImportJobCommand.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/TagResourceCommand.d.ts +106 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateAuthEventFeedbackCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateDeviceStatusCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateGroupCommand.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateIdentityProviderCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateManagedLoginBrandingCommand.d.ts +152 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateResourceServerCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateTermsCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserAttributesCommand.d.ts +190 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserPoolClientCommand.d.ts +243 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserPoolCommand.d.ts +272 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/UpdateUserPoolDomainCommand.d.ts +142 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/VerifySoftwareTokenCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/VerifyUserAttributeCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/commands/index.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/index.d.ts +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/CognitoIdentityProviderServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/enums.d.ts +681 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/errors.d.ts +710 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/models_0.d.ts +11626 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/models/models_1.d.ts +147 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/AdminListGroupsForUserPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/AdminListUserAuthEventsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListGroupsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListIdentityProvidersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListResourceServersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUserPoolClientsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUserPoolsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUsersInGroupPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/ListUsersPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/pagination/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.browser.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/schemas/schemas_0.d.ts +483 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/CognitoIdentityProvider.d.ts +2038 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/CognitoIdentityProviderClient.d.ts +836 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AddCustomAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminAddUserToGroupCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminConfirmSignUpCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminCreateUserCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDeleteUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDeleteUserCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDisableProviderForUserCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminDisableUserCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminEnableUserCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminForgetDeviceCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminGetDeviceCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminGetUserCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminInitiateAuthCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminLinkProviderForUserCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminListDevicesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminListGroupsForUserCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminListUserAuthEventsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminRemoveUserFromGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminResetUserPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminRespondToAuthChallengeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminSetUserMFAPreferenceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminSetUserPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminSetUserSettingsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUpdateAuthEventFeedbackCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUpdateDeviceStatusCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUpdateUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AdminUserGlobalSignOutCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/AssociateSoftwareTokenCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ChangePasswordCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CompleteWebAuthnRegistrationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ConfirmDeviceCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ConfirmForgotPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ConfirmSignUpCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateIdentityProviderCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateManagedLoginBrandingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateResourceServerCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateTermsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserPoolClientCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserPoolCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/CreateUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteIdentityProviderCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteManagedLoginBrandingCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteResourceServerCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteTermsCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserPoolClientCommand.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserPoolCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DeleteWebAuthnCredentialCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeIdentityProviderCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeManagedLoginBrandingByClientCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeManagedLoginBrandingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeResourceServerCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeRiskConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeTermsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserPoolClientCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserPoolCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/DescribeUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ForgetDeviceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ForgotPasswordCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetCSVHeaderCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetDeviceCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetIdentityProviderByIdentifierCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetLogDeliveryConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetSigningCertificateCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetTokensFromRefreshTokenCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUICustomizationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserAttributeVerificationCodeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserAuthFactorsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GetUserPoolMfaConfigCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/GlobalSignOutCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/InitiateAuthCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListIdentityProvidersCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListResourceServersCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListTermsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUserImportJobsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUserPoolClientsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUserPoolsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUsersCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListUsersInGroupCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ListWebAuthnCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/ResendConfirmationCodeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/RespondToAuthChallengeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/RevokeTokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetLogDeliveryConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetRiskConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUICustomizationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUserMFAPreferenceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUserPoolMfaConfigCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SetUserSettingsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/SignUpCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/StartUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/StartWebAuthnRegistrationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/StopUserImportJobCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateAuthEventFeedbackCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateDeviceStatusCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateIdentityProviderCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateManagedLoginBrandingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateResourceServerCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateTermsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserAttributesCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserPoolClientCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserPoolCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/UpdateUserPoolDomainCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/VerifySoftwareTokenCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/VerifyUserAttributeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/commands/index.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/CognitoIdentityProviderServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/enums.d.ts +372 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/errors.d.ts +440 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/models_0.d.ts +1571 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/models/models_1.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/AdminListGroupsForUserPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/AdminListUserAuthEventsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListIdentityProvidersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListResourceServersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUserPoolClientsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUserPoolsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUsersInGroupPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/pagination/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.browser.d.ts +127 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.d.ts +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.native.d.ts +131 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeConfig.shared.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/dist-types/ts3.4/schemas/schemas_0.d.ts +487 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/README.md +244 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +420 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +152 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +200 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +189 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +138 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/client-sso/package.json +99 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/README.md +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/client.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/index.js +2201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +307 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1848 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +139 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +76 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +138 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +160 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +182 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/structIterator.js +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +296 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/structIterator.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/structIterator.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/package.json +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-http/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +224 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +80 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-ini/package.json +74 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +150 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-node/package.json +72 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +79 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +192 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +83 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +90 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-host-header/package.json +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-recursion-detection/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/middleware-user-agent/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/README.md +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +344 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +499 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +480 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +186 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +189 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +220 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +192 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +85 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +588 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +123 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +125 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +121 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +129 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/package.json +127 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sso-oidc.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sts.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/nested-clients/sts.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/region-config-resolver/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/README.md +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +157 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +81 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/token-providers/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/function.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/types/package.json +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/README.md +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@aws-sdk/xml-builder/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-cjs/index.js +186 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/config-resolver/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/README.md +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/cbor.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/cbor.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/index.js +349 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1076 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +251 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +839 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +626 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +697 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +195 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +96 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +426 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +221 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +86 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +246 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +266 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +122 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +94 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +91 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/deref.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schema-middleware-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +258 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js +190 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +230 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +136 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/event-streams.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/package.json +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/protocols.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/schema.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/schema.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/serde.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/core/serde.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +372 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +134 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-es/index.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/hash-node/package.json +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/invalid-dependency/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-content-length/package.json +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +248 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointRequiredConfig.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-endpoint/package.json +75 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-cjs/index.js +358 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +94 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/configurations.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-retry/package.json +79 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-cjs/index.js +103 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-serde/package.json +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-cjs/index.js +285 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/middleware-stack/package.json +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-cjs/index.js +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-config-provider/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-cjs/index.js +117 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/ProviderError.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/property-provider/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/querystring-parser/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-cjs/index.js +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-es/constants.js +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/service-error-classification/package.json +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/shared-ini-file-loader/package.json +73 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/README.md +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-cjs/index.js +556 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +126 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +135 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +79 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/index.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/signature-v4/package.json +70 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-cjs/index.js +595 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/client.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/command.js +124 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/exceptions.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/index.js +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/smithy-client/package.json +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/schema.d.ts +236 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +97 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +116 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-cjs/index.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/url-parser/package.json +62 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +74 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-defaults-mode-node/package.json +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-cjs/index.js +472 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +29 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-endpoints/package.json +69 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/README.md +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-cjs/index.js +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-middleware/package.json +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/README.md +78 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-cjs/index.js +278 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +109 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +67 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-retry/package.json +71 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@aws-sdk/client-cognito-identity-provider/package.json +100 -0
- package/node_modules/@aws-sdk/client-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-dynamodb/README.md +678 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/endpointResolver.js +27 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/index.js +4508 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.browser.js +42 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.js +59 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-cjs/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDB.js +121 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/DynamoDBClient.js +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchExecuteStatementCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchGetItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/BatchWriteItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateGlobalTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/CreateTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteResourcePolicyCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DeleteTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContinuousBackupsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeContributorInsightsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeEndpointsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeExportCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeGlobalTableSettingsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeImportCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeLimitsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DescribeTimeToLiveCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteStatementCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ExportTableToPointInTimeCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/GetResourcePolicyCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ImportTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListBackupsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListContributorInsightsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListExportsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListGlobalTablesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListImportsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTablesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ListTagsOfResourceCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/PutResourcePolicyCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/QueryCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableFromBackupCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/RestoreTableToPointInTimeCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/ScanCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TagResourceCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactGetItemsCommand.js +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/TransactWriteItemsCommand.js +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UntagResourceCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContinuousBackupsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateContributorInsightsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateGlobalTableSettingsCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateItemCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/UpdateTimeToLiveCommand.js +19 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/commands/index.js +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/endpointResolver.js +23 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/DynamoDBServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/enums.js +240 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/errors.js +440 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListExportsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListImportsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/QueryPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/ScanPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/pagination/index.js +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.browser.js +37 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.js +54 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeConfig.shared.js +39 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/schemas/schemas_0.js +2585 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/index.js +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableExists.js +34 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-es/waiters/waitForTableNotExists.js +25 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDB.d.ts +433 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/DynamoDBClient.d.ts +281 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +234 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchGetItemCommand.d.ts +366 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/BatchWriteItemCommand.d.ts +414 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateBackupCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateGlobalTableCommand.d.ts +210 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/CreateTableCommand.d.ts +390 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteBackupCommand.d.ts +197 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteItemCommand.d.ts +296 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteResourcePolicyCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DeleteTableCommand.d.ts +336 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeBackupCommand.d.ts +175 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeContributorInsightsCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeEndpointsCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeExportCommand.d.ts +124 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableCommand.d.ts +132 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +178 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeImportCommand.d.ts +165 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeLimitsCommand.d.ts +165 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableCommand.d.ts +267 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +164 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DescribeTimeToLiveCommand.d.ts +86 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +128 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +130 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +251 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +535 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +152 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetItemCommand.d.ts +264 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/GetResourcePolicyCommand.d.ts +124 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ImportTableCommand.d.ts +275 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListBackupsCommand.d.ts +109 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListContributorInsightsCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListExportsCommand.d.ts +104 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListGlobalTablesCommand.d.ts +95 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListImportsCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTablesCommand.d.ts +103 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ListTagsOfResourceCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutItemCommand.d.ts +310 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/QueryCommand.d.ts +338 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableFromBackupCommand.d.ts +371 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +405 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/ScanCommand.d.ts +337 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TagResourceCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactGetItemsCommand.d.ts +497 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/TransactWriteItemsCommand.d.ts +660 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UntagResourceCommand.d.ts +140 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateContributorInsightsCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableCommand.d.ts +178 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +286 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateItemCommand.d.ts +323 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +127 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableCommand.d.ts +455 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +246 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/UpdateTimeToLiveCommand.d.ts +149 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/commands/index.d.ts +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/EndpointParameters.d.ts +64 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/index.d.ts +33 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/DynamoDBServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/enums.d.ts +576 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/errors.d.ts +804 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/models/models_0.d.ts +9936 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/QueryPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/ScanPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/pagination/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.browser.d.ts +56 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.native.d.ts +55 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/schemas/schemas_0.d.ts +397 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDB.d.ts +1000 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/DynamoDBClient.d.ts +476 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetItemCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ImportTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListExportsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListImportsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutItemCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/commands/index.d.ts +57 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +65 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/enums.d.ts +306 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/errors.d.ts +286 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/models/models_0.d.ts +1543 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.browser.d.ts +110 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.d.ts +107 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.native.d.ts +114 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/schemas/schemas_0.d.ts +403 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableExists.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
- package/node_modules/@aws-sdk/client-dynamodb/package.json +105 -0
- package/node_modules/@aws-sdk/client-secrets-manager/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/README.md +387 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/index.js +1412 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-cjs/runtimeConfig.shared.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManager.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/SecretsManagerClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/BatchGetSecretValueCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CancelRotateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/CreateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DeleteSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/DescribeSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetRandomPasswordCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/GetSecretValueCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretVersionIdsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ListSecretsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/PutSecretValueCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RemoveRegionsFromReplicationCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ReplicateSecretToRegionsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RestoreSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/RotateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/StopReplicationToReplicaCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/TagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UntagResourceCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/UpdateSecretVersionStageCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/ValidateResourcePolicyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/commands/index.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/index.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/SecretsManagerServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/enums.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/errors.js +169 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/BatchGetSecretValuePaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretVersionIdsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/ListSecretsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/pagination/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeConfig.shared.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-es/schemas/schemas_0.js +655 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManager.d.ts +199 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/SecretsManagerClient.d.ts +235 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/BatchGetSecretValueCommand.d.ts +210 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CancelRotateSecretCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/CreateSecretCommand.d.ts +218 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteResourcePolicyCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DeleteSecretCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/DescribeSecretCommand.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetRandomPasswordCommand.d.ts +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetResourcePolicyCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/GetSecretValueCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretVersionIdsCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ListSecretsCommand.d.ts +208 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/PutSecretValueCommand.d.ts +183 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +122 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RestoreSecretCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/RotateSecretCommand.d.ts +180 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/StopReplicationToReplicaCommand.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/TagResourceCommand.d.ts +145 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UntagResourceCommand.d.ts +134 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretCommand.d.ts +221 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +187 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/ValidateResourcePolicyCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/commands/index.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/index.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/SecretsManagerServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/enums.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/errors.d.ts +175 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/models/models_0.d.ts +1957 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/BatchGetSecretValuePaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretVersionIdsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/ListSecretsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.native.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/schemas/schemas_0.d.ts +92 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManager.d.ts +401 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/SecretsManagerClient.d.ts +258 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/BatchGetSecretValueCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/commands/index.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/enums.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/errors.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/models/models_0.d.ts +333 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/BatchGetSecretValuePaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/dist-types/ts3.4/schemas/schemas_0.d.ts +96 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/README.md +244 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +420 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +152 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +200 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +189 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +138 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/client-sso/package.json +99 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/README.md +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/client.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/index.js +2236 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +307 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1883 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +139 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +76 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +156 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +177 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +182 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/structIterator.js +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +155 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +296 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +117 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/structIterator.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/structIterator.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/package.json +121 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-http/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +224 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +80 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-ini/package.json +74 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +150 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-node/package.json +72 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +79 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +192 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +83 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +90 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-host-header/package.json +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-recursion-detection/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/middleware-user-agent/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/README.md +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +349 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +500 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +483 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +134 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +107 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +189 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +189 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +220 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +192 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +85 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +588 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +123 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +125 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +121 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +128 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +129 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/package.json +127 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sso-oidc.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sts.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/nested-clients/sts.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/region-config-resolver/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/README.md +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +157 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +81 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/token-providers/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/function.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/types/package.json +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/README.md +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@aws-sdk/xml-builder/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-cjs/index.js +186 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/config-resolver/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/README.md +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/cbor.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/cbor.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/index.js +349 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1093 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +251 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +845 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +626 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +697 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +212 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +96 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +426 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +221 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +86 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +246 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +269 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +125 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +94 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +91 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/deref.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schema-middleware-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +258 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js +190 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/index.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +230 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +136 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/event-streams.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/package.json +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/protocols.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/schema.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/schema.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/serde.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/core/serde.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +372 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +134 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-es/index.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/hash-node/package.json +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/invalid-dependency/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-content-length/package.json +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +248 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointRequiredConfig.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-endpoint/package.json +75 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-cjs/index.js +358 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +94 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/configurations.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-retry/package.json +79 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-cjs/index.js +103 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-serde/package.json +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-cjs/index.js +285 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/middleware-stack/package.json +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-cjs/index.js +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-config-provider/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-cjs/index.js +117 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/ProviderError.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/property-provider/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/querystring-parser/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-cjs/index.js +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-es/constants.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-es/index.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/service-error-classification/package.json +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +39 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/shared-ini-file-loader/package.json +73 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/README.md +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-cjs/index.js +556 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +126 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +135 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +79 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/index.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/signature-v4/package.json +70 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-cjs/index.js +595 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/client.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/command.js +124 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/exceptions.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/index.js +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +87 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +119 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/smithy-client/package.json +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/schema.d.ts +236 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-cjs/index.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/url-parser/package.json +62 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +30 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +74 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-defaults-mode-node/package.json +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-cjs/index.js +472 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +50 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +29 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +42 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-endpoints/package.json +69 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/README.md +12 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-cjs/index.js +15 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-middleware/package.json +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/README.md +78 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-cjs/index.js +278 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +27 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +109 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +67 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/node_modules/@aws-sdk/client-secrets-manager/node_modules/@smithy/util-retry/package.json +71 -0
- package/node_modules/@aws-sdk/client-secrets-manager/package.json +100 -0
- package/node_modules/@aws-sdk/client-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/client-sso/README.md +252 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +68 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +402 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +42 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +15 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +50 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +16 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/SSOServiceException.js +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/errors.js +49 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +38 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-es/schemas/schemas_0.js +153 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +209 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +98 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +100 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +189 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +58 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +58 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +57 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/schemas/schemas_0.d.ts +26 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +73 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +142 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +45 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +120 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/schemas/schemas_0.d.ts +32 -0
- package/node_modules/@aws-sdk/client-sso/package.json +99 -0
- package/node_modules/@aws-sdk/core/README.md +39 -0
- package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +7 -0
- package/node_modules/@aws-sdk/core/account-id-endpoint.js +6 -0
- package/node_modules/@aws-sdk/core/client.d.ts +7 -0
- package/node_modules/@aws-sdk/core/client.js +5 -0
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +2100 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +55 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +51 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +299 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1755 -0
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +15 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConstants.js +5 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +24 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +4 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setCredentialFeature.js +7 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +11 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setTokenFeature.js +7 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +72 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.js +22 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +5 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +25 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.js +131 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.js +8 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/isClockSkewed.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ConfigurableSerdeContext.js +6 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +122 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +49 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/coercing-serializers.js +53 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +18 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +76 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +82 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +127 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +153 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +10 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +127 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +46 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReviver.js +18 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +54 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +17 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +136 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QuerySerializerSettings.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +157 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/structIterator.js +40 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +82 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlCodec.js +20 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +143 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +280 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +46 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/simpleFormatXml.js +27 -0
- package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +22 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setCredentialFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setTokenFeature.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +43 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/index.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +38 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +117 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +61 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +23 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/coercing-serializers.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/common.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +34 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +19 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +28 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/awsExpectUnion.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReplacer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/jsonReviver.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/structIterator.d.ts +27 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +29 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +20 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/simpleFormatXml.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/AccountIdEndpointModeConstants.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/emitWarningIfUnsupportedVersion.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setCredentialFeature.d.ts +11 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/setTokenFeature.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +39 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +65 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getArrayForCommaSeparatedString.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getBearerTokenEnvKey.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getDateHeader.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getSkewCorrectedDate.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/getUpdatedSystemClockOffset.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/isClockSkewed.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ConfigurableSerdeContext.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +47 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +33 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/coercing-serializers.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/common.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +18 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +46 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonCodec.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +22 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/awsExpectUnion.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReplacer.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/jsonReviver.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +57 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +16 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/structIterator.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +42 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlCodec.d.ts +17 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeDeserializer.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/XmlShapeSerializer.d.ts +21 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/parseXmlBody.d.ts +13 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/simpleFormatXml.d.ts +1 -0
- package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +7 -0
- package/node_modules/@aws-sdk/core/httpAuthSchemes.js +5 -0
- package/node_modules/@aws-sdk/core/package.json +121 -0
- package/node_modules/@aws-sdk/core/protocols.d.ts +7 -0
- package/node_modules/@aws-sdk/core/protocols.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-env/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-env/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +36 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/fromEnv.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-env/package.json +63 -0
- package/node_modules/@aws-sdk/credential-provider-http/README.md +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +46 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +31 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +70 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +53 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +42 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +65 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttpTypes.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +49 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttpTypes.d.ts +69 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/retry-wrapper.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/checkUrl.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttp.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/fromHttpTypes.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/retry-wrapper.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-http/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@aws-sdk/credential-provider-http/package.json +70 -0
- package/node_modules/@aws-sdk/credential-provider-ini/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-ini/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +226 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +16 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +79 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +32 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +23 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +56 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +48 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +26 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +28 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveCredentialSource.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProcessCredentials.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +10 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveStaticCredentials.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +74 -0
- package/node_modules/@aws-sdk/credential-provider-login/README.md +7 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +286 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +262 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +21 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/LoginCredentialsFetcher.d.ts +42 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/fromLoginCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/LoginCredentialsFetcher.d.ts +24 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/fromLoginCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +39 -0
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +59 -0
- package/node_modules/@aws-sdk/credential-provider-login/package.json +68 -0
- package/node_modules/@aws-sdk/credential-provider-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-node/README.md +104 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +150 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +73 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +17 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +54 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +59 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/remoteProvider.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/defaultProvider.d.ts +26 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/remoteProvider.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/runtime/memoize-chain.d.ts +19 -0
- package/node_modules/@aws-sdk/credential-provider-node/package.json +72 -0
- package/node_modules/@aws-sdk/credential-provider-process/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-process/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +79 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/ProcessCredentials.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +36 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ProcessCredentials.d.ts +12 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +5 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/ProcessCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/getValidatedProcessCredentials.d.ts +7 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/resolveProcessCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-process/package.json +64 -0
- package/node_modules/@aws-sdk/credential-provider-sso/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-sso/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +190 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-CVy8iqsZ.js +14 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +81 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +90 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/types.js +1 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +9 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +68 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +16 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/isSsoProfile.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/types.d.ts +14 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +22 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +6 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +66 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/LICENSE +201 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/README.md +11 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +34 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +62 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +19 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +30 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js +25 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +17 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromWebToken.d.ts +145 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +18 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromWebToken.d.ts +39 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +73 -0
- package/node_modules/@aws-sdk/dynamodb-codec/LICENSE +201 -0
- package/node_modules/@aws-sdk/dynamodb-codec/README.md +4 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-cjs/index.js +91 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-es/codec/DynamoDBJsonCodec.js +86 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/codec/DynamoDBJsonCodec.d.ts +18 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/ts3.4/codec/DynamoDBJsonCodec.d.ts +10 -0
- package/node_modules/@aws-sdk/dynamodb-codec/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/dynamodb-codec/package.json +61 -0
- package/node_modules/@aws-sdk/endpoint-cache/LICENSE +201 -0
- package/node_modules/@aws-sdk/endpoint-cache/README.md +17 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-cjs/index.js +140 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/Endpoint.js +1 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/EndpointCache.js +54 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/Endpoint.d.ts +13 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/EndpointCache.d.ts +56 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/Endpoint.d.ts +4 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/EndpointCache.d.ts +14 -0
- package/node_modules/@aws-sdk/endpoint-cache/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/endpoint-cache/package.json +55 -0
- package/node_modules/@aws-sdk/lib-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/lib-dynamodb/README.md +464 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-cjs/index.js +845 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/DynamoDBDocument.js +214 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/DynamoDBDocumentClient.js +20 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/baseCommand/DynamoDBDocumentClientCommand.js +32 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/BatchExecuteStatementCommand.js +39 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/BatchGetCommand.js +45 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/BatchWriteCommand.js +57 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/DeleteCommand.js +38 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/ExecuteStatementCommand.js +31 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/ExecuteTransactionCommand.js +36 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/GetCommand.js +28 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/PutCommand.js +38 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/QueryCommand.js +42 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/ScanCommand.js +37 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/TransactGetCommand.js +38 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/TransactWriteCommand.js +53 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/UpdateCommand.js +43 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/index.js +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/commands/utils.js +80 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/index.js +5 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/Interfaces.js +1 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/QueryPaginator.js +4 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/ScanPaginator.js +4 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-es/pagination/index.js +3 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/DynamoDBDocument.d.ts +195 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/DynamoDBDocumentClient.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/baseCommand/DynamoDBDocumentClientCommand.d.ts +17 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/BatchExecuteStatementCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/BatchGetCommand.d.ts +70 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/BatchWriteCommand.d.ts +94 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/DeleteCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/ExecuteStatementCommand.d.ts +52 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/ExecuteTransactionCommand.d.ts +60 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/GetCommand.d.ts +48 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/PutCommand.d.ts +66 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/QueryCommand.d.ts +70 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/ScanCommand.d.ts +62 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/TransactGetCommand.d.ts +64 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/TransactWriteCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/UpdateCommand.d.ts +74 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/index.d.ts +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/commands/utils.d.ts +33 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/Interfaces.d.ts +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/QueryPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/ScanPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocument.d.ts +221 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/DynamoDBDocumentClient.d.ts +105 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/baseCommand/DynamoDBDocumentClientCommand.d.ts +30 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchGetCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/BatchWriteCommand.d.ts +142 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/DeleteCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/GetCommand.d.ts +57 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/PutCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/QueryCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/ScanCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactGetCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/TransactWriteCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/UpdateCommand.d.ts +113 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/commands/utils.d.ts +17 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/Interfaces.d.ts +8 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/QueryPaginator.d.ts +12 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/ScanPaginator.d.ts +9 -0
- package/node_modules/@aws-sdk/lib-dynamodb/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/node_modules/@aws-sdk/lib-dynamodb/package.json +68 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-cjs/index.js +188 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/configurations.js +27 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/endpointDiscoveryMiddleware.js +45 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getCacheKey.js +13 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/getEndpointDiscoveryPlugin.js +22 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/resolveEndpointDiscoveryConfig.js +12 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-es/updateDiscoveredEndpointInCache.js +57 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/configurations.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/endpointDiscoveryMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getCacheKey.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/getEndpointDiscoveryPlugin.d.ts +29 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/resolveEndpointDiscoveryConfig.d.ts +60 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/endpointDiscoveryMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getCacheKey.d.ts +10 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/getEndpointDiscoveryPlugin.d.ts +41 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/resolveEndpointDiscoveryConfig.d.ts +28 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/ts3.4/updateDiscoveredEndpointInCache.d.ts +15 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/dist-types/updateDiscoveredEndpointInCache.d.ts +8 -0
- package/node_modules/@aws-sdk/middleware-endpoint-discovery/package.json +61 -0
- package/node_modules/@aws-sdk/middleware-host-header/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-host-header/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +33 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +35 -0
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/ts3.4/index.d.ts +29 -0
- package/node_modules/@aws-sdk/middleware-host-header/package.json +59 -0
- package/node_modules/@aws-sdk/middleware-logger/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-logger/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +48 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-es/loggerMiddleware.js +42 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/loggerMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-logger/package.json +59 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +25 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +33 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +7 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/getRecursionDetectionPlugin.js +7 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.browser.js +1 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +29 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.native.js +1 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.browser.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.native.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/configuration.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/recursionDetectionMiddleware.native.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +63 -0
- package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +201 -0
- package/node_modules/@aws-sdk/middleware-user-agent/README.md +4 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +194 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +49 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/configurations.js +28 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/encode-features.js +18 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +44 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/encode-features.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/configurations.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/constants.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/encode-features.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/user-agent-middleware.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +18 -0
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +62 -0
- package/node_modules/@aws-sdk/nested-clients/README.md +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +333 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +477 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +19 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +460 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +67 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/errors.js +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +114 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/enums.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/errors.js +181 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +48 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +126 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +55 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/index.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +106 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/EndpointParameters.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +4 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +85 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +186 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/index.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/Signin.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +198 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +157 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +34 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +102 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/models_0.d.ts +142 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/schemas/schemas_0.d.ts +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +55 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +229 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +176 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/enums.d.ts +25 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/errors.d.ts +279 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/models_0.d.ts +109 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +27 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +201 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +85 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +270 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +290 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +107 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +588 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +60 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +26 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/Signin.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +127 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +35 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/models_0.d.ts +26 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +121 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +114 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/schemas/schemas_0.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/errors.d.ts +105 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +111 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +120 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +132 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +59 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +107 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +127 -0
- package/node_modules/@aws-sdk/nested-clients/signin.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/signin.js +5 -0
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.js +5 -0
- package/node_modules/@aws-sdk/nested-clients/sts.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/sts.js +5 -0
- package/node_modules/@aws-sdk/region-config-resolver/LICENSE +201 -0
- package/node_modules/@aws-sdk/region-config-resolver/README.md +12 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +49 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +20 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +6 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/extensions/index.js +15 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.browser.js +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +16 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.native.js +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/extensions/index.d.ts +16 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.native.d.ts +4 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/extensions/index.d.ts +14 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +11 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.native.d.ts +1 -0
- package/node_modules/@aws-sdk/region-config-resolver/package.json +62 -0
- package/node_modules/@aws-sdk/token-providers/LICENSE +201 -0
- package/node_modules/@aws-sdk/token-providers/README.md +62 -0
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +164 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/constants.js +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +16 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +88 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +11 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +10 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/constants.d.ts +8 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromEnvSigningName.d.ts +18 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +12 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +7 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +6 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +18 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/constants.d.ts +3 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromEnvSigningName.d.ts +11 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +14 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromStatic.d.ts +12 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +9 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/nodeProvider.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenExpiry.d.ts +2 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/validateTokenKey.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenKey.d.ts +4 -0
- package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +5 -0
- package/node_modules/@aws-sdk/token-providers/package.json +70 -0
- package/node_modules/@aws-sdk/types/LICENSE +201 -0
- package/node_modules/@aws-sdk/types/README.md +4 -0
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/types/dist-es/abort.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/auth.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/blob/blob-types.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/checksum.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/client.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/command.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/connection.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/credentials.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/crypto.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/dns.js +5 -0
- package/node_modules/@aws-sdk/types/dist-es/encode.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/eventStream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/extensions/index.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/function.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/http.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/AnonymousIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/AwsCredentialIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/Identity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/LoginIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/TokenIdentity.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/identity/index.js +5 -0
- package/node_modules/@aws-sdk/types/dist-es/index.js +34 -0
- package/node_modules/@aws-sdk/types/dist-es/logger.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/middleware.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/pagination.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/profile.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/request.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/response.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/retry.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/serde.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/shapes.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/signature.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/stream.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/token.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/uri.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/util.js +1 -0
- package/node_modules/@aws-sdk/types/dist-es/waiter.js +1 -0
- package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +52 -0
- package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/dns.d.ts +85 -0
- package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +8 -0
- package/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +67 -0
- package/node_modules/@aws-sdk/types/dist-types/function.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +33 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +61 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +18 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +11 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +34 -0
- package/node_modules/@aws-sdk/types/dist-types/logger.d.ts +22 -0
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +13 -0
- package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/request.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/response.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +24 -0
- package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/token.d.ts +17 -0
- package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/abort.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/blob/blob-types.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/checksum.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/client.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/command.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/connection.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/crypto.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/dns.d.ts +19 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/encode.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +9 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/eventStream.d.ts +24 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/extensions/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +60 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/function.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/http.d.ts +17 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AnonymousIdentity.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +31 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/Identity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/LoginIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +5 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +34 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/logger.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/middleware.d.ts +47 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/pagination.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/profile.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/request.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/response.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/retry.d.ts +12 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/serde.d.ts +16 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/shapes.d.ts +6 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/signature.d.ts +15 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/stream.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/token.d.ts +4 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +7 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/util.d.ts +14 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -0
- package/node_modules/@aws-sdk/types/package.json +57 -0
- package/node_modules/@aws-sdk/util-dynamodb/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-dynamodb/README.md +50 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-cjs/index.js +309 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/NumberValue.js +37 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/convertToAttr.js +175 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/convertToNative.js +61 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/marshall.js +21 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/models.js +1 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-es/unmarshall.js +7 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/NumberValue.d.ts +55 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/convertToAttr.d.ts +10 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/convertToNative.d.ts +10 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/marshall.d.ts +81 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/models.d.ts +38 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/NumberValue.d.ts +30 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToAttr.d.ts +7 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/convertToNative.d.ts +7 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/marshall.d.ts +112 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/models.d.ts +46 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/ts3.4/unmarshall.d.ts +13 -0
- package/node_modules/@aws-sdk/util-dynamodb/dist-types/unmarshall.d.ts +31 -0
- package/node_modules/@aws-sdk/util-dynamodb/package.json +58 -0
- package/node_modules/@aws-sdk/util-endpoints/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-endpoints/README.md +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +415 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +10 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/parseArn.js +18 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +267 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/isVirtualHostableS3Bucket.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +7 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +38 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +3 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/isVirtualHostableS3Bucket.d.ts +4 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/parseArn.d.ts +2 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/partition.d.ts +28 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveDefaultAwsRegionalEndpointsConfig.d.ts +35 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/package.json +60 -0
- package/node_modules/@aws-sdk/util-locate-window/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-locate-window/README.md +4 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +10 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +6 -0
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/util-locate-window/package.json +54 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +29 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +2 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +57 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +22 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/configurations.js +1 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/createUserAgentStringParsingProvider.js +20 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.js +53 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-es/index.native.js +18 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/configurations.d.ts +7 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.d.ts +27 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +18 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/configurations.d.ts +4 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.d.ts +22 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/index.native.d.ts +17 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +55 -0
- package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +201 -0
- package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +58 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/crt-availability.js +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +29 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/is-crt-available.js +7 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +8 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +28 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +5 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +13 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/crt-availability.d.ts +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/defaultUserAgent.d.ts +21 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/is-crt-available.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +66 -0
- package/node_modules/@aws-sdk/xml-builder/LICENSE +201 -0
- package/node_modules/@aws-sdk/xml-builder/README.md +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +124 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +18 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlNode.js +88 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/XmlText.js +10 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +12 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/stringable.js +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +57 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +15 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +49 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +11 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-attribute.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/escape-element.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +12 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/stringable.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlNode.d.ts +29 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/XmlText.d.ts +6 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-attribute.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/escape-element.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/stringable.d.ts +3 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.browser.d.ts +9 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +4 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +63 -0
- package/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@smithy/config-resolver/LICENSE +201 -0
- package/node_modules/@smithy/config-resolver/README.md +10 -0
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +186 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +9 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +9 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +4 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/utils/getEndpointFromRegion.js +15 -0
- package/node_modules/@smithy/config-resolver/dist-es/index.js +3 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/getRealRegion.js +6 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +2 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/isFipsRegion.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +24 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariant.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/EndpointVariantTag.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/PartitionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/RegionHash.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getHostnameFromVariants.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getRegionInfo.js +29 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedHostname.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedPartition.js +1 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/getResolvedSigningRegion.js +12 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +3 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +8 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +16 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +37 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/checkRegion.d.ts +9 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +8 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +4 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +34 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +11 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +10 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +15 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +19 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +13 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +14 -0
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +12 -0
- package/node_modules/@smithy/config-resolver/package.json +66 -0
- package/node_modules/@smithy/core/LICENSE +201 -0
- package/node_modules/@smithy/core/README.md +45 -0
- package/node_modules/@smithy/core/cbor.d.ts +7 -0
- package/node_modules/@smithy/core/cbor.js +6 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +349 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1057 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +251 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +839 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +620 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +697 -0
- package/node_modules/@smithy/core/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@smithy/core/dist-es/index.js +8 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +17 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +18 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/resolveAuthOptions.js +20 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/getHttpSigningMiddleware.js +15 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@smithy/core/dist-es/pagination/createPaginator.js +41 -0
- package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +1 -0
- package/node_modules/@smithy/core/dist-es/setFeature.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +175 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +96 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +37 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +426 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +221 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-types.js +25 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +86 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +246 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +266 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +122 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +94 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/extended-encode-uri-component.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +69 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +66 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +42 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +33 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +91 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/deref.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/getSchemaSerdePlugin.js +23 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schema-middleware-types.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +252 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/operation.js +7 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/sentinels.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/date-utils.js +190 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/lazy-json.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +230 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/quote-header.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/schema-serde-lib/schema-date-utils.js +101 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/split-every.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/split-header.js +37 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/value/NumericValue.js +25 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +13 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/noAuth.js +5 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +55 -0
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +62 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schema-middleware-types.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +127 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/request-builder/requestBuilder.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +65 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/EventStreamSerde.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/event-streams/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +76 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/SerdeContext.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +21 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +64 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +37 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +130 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/operation.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/translateTraits.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +73 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/generateIdempotencyToken.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +45 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +270 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +47 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +30 -0
- package/node_modules/@smithy/core/event-streams.d.ts +7 -0
- package/node_modules/@smithy/core/event-streams.js +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/core/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@smithy/core/package.json +135 -0
- package/node_modules/@smithy/core/protocols.d.ts +7 -0
- package/node_modules/@smithy/core/protocols.js +6 -0
- package/node_modules/@smithy/core/schema.d.ts +7 -0
- package/node_modules/@smithy/core/schema.js +6 -0
- package/node_modules/@smithy/core/serde.d.ts +7 -0
- package/node_modules/@smithy/core/serde.js +6 -0
- package/node_modules/@smithy/credential-provider-imds/LICENSE +201 -0
- package/node_modules/@smithy/credential-provider-imds/README.md +11 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +372 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +77 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +134 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js +3 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +36 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/types.js +1 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js +17 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js +25 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +28 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +13 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +12 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +28 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +19 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +40 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +8 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +10 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +7 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +6 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +21 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +16 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +70 -0
- package/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@smithy/hash-node/LICENSE +201 -0
- package/node_modules/@smithy/hash-node/README.md +10 -0
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +42 -0
- package/node_modules/@smithy/hash-node/dist-es/index.js +37 -0
- package/node_modules/@smithy/hash-node/dist-types/index.d.ts +13 -0
- package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@smithy/hash-node/package.json +65 -0
- package/node_modules/@smithy/invalid-dependency/LICENSE +201 -0
- package/node_modules/@smithy/invalid-dependency/README.md +10 -0
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +10 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/index.js +2 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/invalidFunction.js +3 -0
- package/node_modules/@smithy/invalid-dependency/dist-es/invalidProvider.js +1 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +4 -0
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +5 -0
- package/node_modules/@smithy/invalid-dependency/package.json +61 -0
- package/node_modules/@smithy/is-array-buffer/LICENSE +201 -0
- package/node_modules/@smithy/is-array-buffer/README.md +10 -0
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +6 -0
- package/node_modules/@smithy/is-array-buffer/dist-es/index.js +2 -0
- package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/is-array-buffer/package.json +61 -0
- package/node_modules/@smithy/middleware-content-length/LICENSE +201 -0
- package/node_modules/@smithy/middleware-content-length/README.md +4 -0
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +46 -0
- package/node_modules/@smithy/middleware-content-length/dist-es/index.js +39 -0
- package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +6 -0
- package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@smithy/middleware-content-length/package.json +64 -0
- package/node_modules/@smithy/middleware-endpoint/LICENSE +201 -0
- package/node_modules/@smithy/middleware-endpoint/README.md +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +7 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +35 -0
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +240 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +42 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.browser.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +55 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +36 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +6 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +24 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointRequiredConfig.js +9 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/s3.js +37 -0
- package/node_modules/@smithy/middleware-endpoint/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +13 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +8 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +13 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +28 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +8 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +18 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +109 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +32 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +26 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +41 -0
- package/node_modules/@smithy/middleware-endpoint/dist-types/types.d.ts +41 -0
- package/node_modules/@smithy/middleware-endpoint/package.json +75 -0
- package/node_modules/@smithy/middleware-retry/LICENSE +201 -0
- package/node_modules/@smithy/middleware-retry/README.md +11 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +358 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +5 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +21 -0
- package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +94 -0
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +51 -0
- package/node_modules/@smithy/middleware-retry/dist-es/defaultRetryQuota.js +27 -0
- package/node_modules/@smithy/middleware-retry/dist-es/delayDecider.js +2 -0
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.browser.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retryDecider.js +7 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +112 -0
- package/node_modules/@smithy/middleware-retry/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/util.js +9 -0
- package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +66 -0
- package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +66 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +24 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +13 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +18 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +65 -0
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +65 -0
- package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +2 -0
- package/node_modules/@smithy/middleware-retry/package.json +79 -0
- package/node_modules/@smithy/middleware-serde/LICENSE +201 -0
- package/node_modules/@smithy/middleware-serde/README.md +4 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +103 -0
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +58 -0
- package/node_modules/@smithy/middleware-serde/dist-es/index.js +3 -0
- package/node_modules/@smithy/middleware-serde/dist-es/serdePlugin.js +22 -0
- package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +14 -0
- package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +24 -0
- package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +24 -0
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +6 -0
- package/node_modules/@smithy/middleware-serde/package.json +65 -0
- package/node_modules/@smithy/middleware-stack/LICENSE +201 -0
- package/node_modules/@smithy/middleware-stack/README.md +78 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +285 -0
- package/node_modules/@smithy/middleware-stack/dist-es/MiddlewareStack.js +281 -0
- package/node_modules/@smithy/middleware-stack/dist-es/index.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-es/types.js +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +5 -0
- package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +5 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +22 -0
- package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +22 -0
- package/node_modules/@smithy/middleware-stack/package.json +64 -0
- package/node_modules/@smithy/node-config-provider/LICENSE +201 -0
- package/node_modules/@smithy/node-config-provider/README.md +10 -0
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +62 -0
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +9 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +14 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +23 -0
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +3 -0
- package/node_modules/@smithy/node-config-provider/dist-es/getSelectorName.js +12 -0
- package/node_modules/@smithy/node-config-provider/dist-es/index.js +1 -0
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +31 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +20 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/getSelectorName.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +31 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +20 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +9 -0
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/node-config-provider/package.json +66 -0
- package/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@smithy/property-provider/LICENSE +201 -0
- package/node_modules/@smithy/property-provider/README.md +10 -0
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +117 -0
- package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +8 -0
- package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +23 -0
- package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +8 -0
- package/node_modules/@smithy/property-provider/dist-es/chain.js +21 -0
- package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +1 -0
- package/node_modules/@smithy/property-provider/dist-es/index.js +6 -0
- package/node_modules/@smithy/property-provider/dist-es/memoize.js +45 -0
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +39 -0
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +13 -0
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +5 -0
- package/node_modules/@smithy/property-provider/dist-types/index.d.ts +24 -0
- package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +40 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +39 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +31 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +13 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +5 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +40 -0
- package/node_modules/@smithy/property-provider/package.json +61 -0
- package/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@smithy/querystring-parser/LICENSE +201 -0
- package/node_modules/@smithy/querystring-parser/README.md +10 -0
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +27 -0
- package/node_modules/@smithy/querystring-parser/dist-es/index.js +23 -0
- package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/querystring-parser/package.json +61 -0
- package/node_modules/@smithy/service-error-classification/LICENSE +201 -0
- package/node_modules/@smithy/service-error-classification/README.md +4 -0
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +77 -0
- package/node_modules/@smithy/service-error-classification/dist-es/constants.js +28 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +39 -0
- package/node_modules/@smithy/service-error-classification/dist-types/constants.d.ts +30 -0
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +24 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +30 -0
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +24 -0
- package/node_modules/@smithy/service-error-classification/package.json +60 -0
- package/node_modules/@smithy/shared-ini-file-loader/LICENSE +201 -0
- package/node_modules/@smithy/shared-ini-file-loader/README.md +105 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +26 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +194 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/constants.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/externalDataInterceptor.js +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigData.js +18 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +22 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getProfileName.js +3 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +11 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSsoSessionData.js +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +39 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/mergeConfigFiles.js +14 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +52 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseKnownFiles.js +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/types.js +1 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/constants.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getProfileName.d.ts +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/readFile.d.ts +21 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/externalDataInterceptor.d.ts +9 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +15 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +5 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +52 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +10 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +33 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +17 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +7 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +2 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/readFile.d.ts +21 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/types.d.ts +16 -0
- package/node_modules/@smithy/shared-ini-file-loader/package.json +73 -0
- package/node_modules/@smithy/signature-v4/LICENSE +201 -0
- package/node_modules/@smithy/signature-v4/README.md +11 -0
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +556 -0
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +126 -0
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +135 -0
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +79 -0
- package/node_modules/@smithy/signature-v4/dist-es/constants.js +43 -0
- package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +33 -0
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalHeaders.js +20 -0
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +29 -0
- package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +20 -0
- package/node_modules/@smithy/signature-v4/dist-es/headerUtil.js +26 -0
- package/node_modules/@smithy/signature-v4/dist-es/index.js +11 -0
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +17 -0
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +11 -0
- package/node_modules/@smithy/signature-v4/dist-es/signature-v4a-container.js +3 -0
- package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +399 -0
- package/node_modules/@smithy/signature-v4/dist-es/utilDate.js +15 -0
- package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +21 -0
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +69 -0
- package/node_modules/@smithy/signature-v4/dist-types/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +30 -0
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +11 -0
- package/node_modules/@smithy/signature-v4/dist-types/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@smithy/signature-v4/dist-types/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +14 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +21 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +69 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +43 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +30 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +4 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +11 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +10 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +5 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +24 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +14 -0
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/dist-types/utilDate.d.ts +2 -0
- package/node_modules/@smithy/signature-v4/package.json +70 -0
- package/node_modules/@smithy/smithy-client/LICENSE +201 -0
- package/node_modules/@smithy/smithy-client/README.md +10 -0
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +589 -0
- package/node_modules/@smithy/smithy-client/dist-es/NoOpLogger.js +7 -0
- package/node_modules/@smithy/smithy-client/dist-es/client.js +45 -0
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/command.js +124 -0
- package/node_modules/@smithy/smithy-client/dist-es/constants.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +21 -0
- package/node_modules/@smithy/smithy-client/dist-es/default-error-handler.js +22 -0
- package/node_modules/@smithy/smithy-client/dist-es/defaults-mode.js +26 -0
- package/node_modules/@smithy/smithy-client/dist-es/emitWarningIfUnsupportedVersion.js +6 -0
- package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +50 -0
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +30 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/retry.js +15 -0
- package/node_modules/@smithy/smithy-client/dist-es/get-array-if-single-item.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +12 -0
- package/node_modules/@smithy/smithy-client/dist-es/index.js +20 -0
- package/node_modules/@smithy/smithy-client/dist-es/is-serializable-header-value.js +3 -0
- package/node_modules/@smithy/smithy-client/dist-es/object-mapping.js +92 -0
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +1 -0
- package/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@smithy/smithy-client/dist-es/ser-utils.js +14 -0
- package/node_modules/@smithy/smithy-client/dist-es/serde-json.js +19 -0
- package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +61 -0
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +119 -0
- package/node_modules/@smithy/smithy-client/dist-types/constants.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +42 -0
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +24 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +21 -0
- package/node_modules/@smithy/smithy-client/dist-types/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +162 -0
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +61 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +119 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +4 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +28 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +42 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +24 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +21 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +178 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +30 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/index.js +84 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +26 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +15 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +11 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +12 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +6 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +14 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +16 -0
- package/node_modules/@smithy/smithy-client/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@smithy/smithy-client/package.json +68 -0
- package/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +136 -0
- package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +230 -0
- package/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +142 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +245 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +101 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@smithy/url-parser/LICENSE +201 -0
- package/node_modules/@smithy/url-parser/README.md +10 -0
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +23 -0
- package/node_modules/@smithy/url-parser/dist-es/index.js +18 -0
- package/node_modules/@smithy/url-parser/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/url-parser/package.json +62 -0
- package/node_modules/@smithy/util-base64/LICENSE +201 -0
- package/node_modules/@smithy/util-base64/README.md +4 -0
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +12 -0
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +40 -0
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +16 -0
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +19 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +38 -0
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +19 -0
- package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +9 -0
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +36 -0
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +12 -0
- package/node_modules/@smithy/util-base64/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +35 -0
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +15 -0
- package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +5 -0
- package/node_modules/@smithy/util-base64/dist-types/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-base64/dist-types/toBase64.browser.d.ts +9 -0
- package/node_modules/@smithy/util-base64/dist-types/toBase64.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +5 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +8 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +7 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +9 -0
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +8 -0
- package/node_modules/@smithy/util-base64/package.json +74 -0
- package/node_modules/@smithy/util-body-length-browser/LICENSE +201 -0
- package/node_modules/@smithy/util-body-length-browser/README.md +12 -0
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +30 -0
- package/node_modules/@smithy/util-body-length-browser/dist-es/calculateBodyLength.js +26 -0
- package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-browser/package.json +61 -0
- package/node_modules/@smithy/util-body-length-node/LICENSE +201 -0
- package/node_modules/@smithy/util-body-length-node/README.md +12 -0
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +27 -0
- package/node_modules/@smithy/util-body-length-node/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-body-length-node/package.json +62 -0
- package/node_modules/@smithy/util-buffer-from/LICENSE +201 -0
- package/node_modules/@smithy/util-buffer-from/README.md +10 -0
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +20 -0
- package/node_modules/@smithy/util-buffer-from/dist-es/index.js +14 -0
- package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +13 -0
- package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +13 -0
- package/node_modules/@smithy/util-buffer-from/package.json +62 -0
- package/node_modules/@smithy/util-config-provider/LICENSE +201 -0
- package/node_modules/@smithy/util-config-provider/README.md +4 -0
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +30 -0
- package/node_modules/@smithy/util-config-provider/dist-es/booleanSelector.js +9 -0
- package/node_modules/@smithy/util-config-provider/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-config-provider/dist-es/numberSelector.js +9 -0
- package/node_modules/@smithy/util-config-provider/dist-es/types.js +5 -0
- package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +10 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +9 -0
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +4 -0
- package/node_modules/@smithy/util-config-provider/dist-types/types.d.ts +4 -0
- package/node_modules/@smithy/util-config-provider/package.json +63 -0
- package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +201 -0
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +34 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +23 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +30 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +12 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +66 -0
- package/node_modules/@smithy/util-defaults-mode-node/LICENSE +201 -0
- package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +74 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/defaultsModeConfig.js +11 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +52 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +24 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +24 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +4 -0
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/util-defaults-mode-node/package.json +67 -0
- package/node_modules/@smithy/util-endpoints/LICENSE +201 -0
- package/node_modules/@smithy/util-endpoints/README.md +10 -0
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +472 -0
- package/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +50 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/debugId.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/debug/toDebugString.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/getEndpointUrlConfig.js +21 -0
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +6 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/booleanEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +11 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttrPathList.js +25 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +9 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isIpAddress.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isSet.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/isValidHostLabel.js +13 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/not.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/parseURL.js +51 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/stringEquals.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +9 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/uriEncode.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +27 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointError.js +6 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/RuleSetObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/index.js +7 -0
- package/node_modules/@smithy/util-endpoints/dist-es/types/shared.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/customEndpointFunctions.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +14 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +22 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +27 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +14 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +29 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +42 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +36 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointUrl.js +15 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +7 -0
- package/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/not.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +9 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +25 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointError.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +5 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +25 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/package.json +69 -0
- package/node_modules/@smithy/util-hex-encoding/LICENSE +201 -0
- package/node_modules/@smithy/util-hex-encoding/README.md +4 -0
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +38 -0
- package/node_modules/@smithy/util-hex-encoding/dist-es/index.js +33 -0
- package/node_modules/@smithy/util-hex-encoding/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/util-hex-encoding/package.json +61 -0
- package/node_modules/@smithy/util-middleware/LICENSE +201 -0
- package/node_modules/@smithy/util-middleware/README.md +12 -0
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +15 -0
- package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +2 -0
- package/node_modules/@smithy/util-middleware/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-middleware/dist-es/normalizeProvider.js +6 -0
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +7 -0
- package/node_modules/@smithy/util-middleware/package.json +67 -0
- package/node_modules/@smithy/util-retry/LICENSE +201 -0
- package/node_modules/@smithy/util-retry/README.md +78 -0
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +278 -0
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +27 -0
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +19 -0
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +109 -0
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +67 -0
- package/node_modules/@smithy/util-retry/dist-es/config.js +7 -0
- package/node_modules/@smithy/util-retry/dist-es/constants.js +9 -0
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +11 -0
- package/node_modules/@smithy/util-retry/dist-es/index.js +7 -0
- package/node_modules/@smithy/util-retry/dist-es/types.js +1 -0
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@smithy/util-retry/dist-types/config.d.ts +20 -0
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +59 -0
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +9 -0
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +7 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +32 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +49 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +26 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +20 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +59 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +9 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +7 -0
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +19 -0
- package/node_modules/@smithy/util-retry/dist-types/types.d.ts +19 -0
- package/node_modules/@smithy/util-retry/package.json +71 -0
- package/node_modules/@smithy/util-stream/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/README.md +6 -0
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +36 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +7 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +53 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +39 -0
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +12 -0
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +60 -0
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +103 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +31 -0
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +41 -0
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +34 -0
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +42 -0
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +86 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +68 -0
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +54 -0
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +10 -0
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +16 -0
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +10 -0
- package/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +32 -0
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.browser.js +3 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +49 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadableStream.js +95 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.browser.js +27 -0
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +38 -0
- package/node_modules/@smithy/util-stream/dist-es/headStream.browser.js +31 -0
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +38 -0
- package/node_modules/@smithy/util-stream/dist-es/index.js +9 -0
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/util-stream/dist-es/splitStream.browser.js +7 -0
- package/node_modules/@smithy/util-stream/dist-es/splitStream.js +13 -0
- package/node_modules/@smithy/util-stream/dist-es/stream-type-check.js +5 -0
- package/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +15 -0
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +50 -0
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +9 -0
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +12 -0
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/util-stream/dist-types/splitStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +11 -0
- package/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +17 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +22 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +37 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +60 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +15 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +54 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +5 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +9 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +12 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +7 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +8 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +17 -0
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +17 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/README.md +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-es/AbortController.js +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/index.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/abort-controller/package.json +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/README.md +11 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +216 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/create-request.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +141 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/request-timeout.js +11 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +53 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +42 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/fetch-http-handler/package.json +69 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/README.md +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-cjs/index.js +732 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/constants.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +224 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +87 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +170 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +88 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +36 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-request-timeout.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-socket-keep-alive.js +22 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/set-socket-timeout.js +23 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/timing.js +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +56 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/constants.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +24 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-request-timeout.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +2 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +12 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/node-http-handler/package.json +68 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/README.md +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-cjs/index.js +169 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/Field.js +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/Fields.js +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/extensions/httpExtensionConfiguration.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/httpHandler.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +64 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +18 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/index.js +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/isValidHostname.js +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-es/types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +44 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +44 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +56 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +29 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/dist-types/types.d.ts +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/protocol-http/package.json +62 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/README.md +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-cjs/index.js +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-es/index.js +21 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/querystring-builder/package.json +61 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/LICENSE +201 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/README.md +115 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-cjs/index.js +91 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/abort-handler.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/abort.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpApiKeyAuth.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpAuthScheme.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpAuthSchemeProvider.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/HttpSigner.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/IdentityProviderConfig.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/auth.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/auth/index.js +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/blob/blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/checksum.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/client.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/command.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/config.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/index.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/manager.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/connection/pool.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/crypto.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/downlevel-ts3.4/transform/type-transform.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/encode.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoint.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/EndpointRuleObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/ErrorRuleObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/RuleSetObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/TreeRuleObject.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/index.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/endpoints/shared.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/eventStream.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/checksum.js +38 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/defaultClientConfiguration.js +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/defaultExtensionConfiguration.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/index.js +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/extensions/retry.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/externals-check/browser-externals-check.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/feature-ids.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/http/httpHandlerInitialization.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/http.js +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/apiKeyIdentity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/awsCredentialIdentity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/identity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/index.js +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/identity/tokenIdentity.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/index.js +43 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/logger.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/middleware.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/pagination.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/profile.js +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/response.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/retry.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/schema.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/sentinels.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/schema/traits.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/serde.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/shapes.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/signature.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/stream.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-common-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-input-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/streaming-payload/streaming-blob-payload-output-types.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transfer.js +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/client-method-transforms.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/client-payload-blob-type-narrow.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/exact.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/mutable.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/no-undefined.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/transform/type-transform.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/uri.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/util.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-es/waiter.js +1 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/abort.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/auth/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/checksum.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/client.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/command.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/config.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/crypto.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +25 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/encode.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoint.d.ts +77 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/eventStream.d.ts +137 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/http.d.ts +112 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/index.d.ts +43 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/logger.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/middleware.d.ts +534 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/pagination.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/profile.d.ts +30 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/response.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/retry.d.ts +133 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/schema.d.ts +236 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/serde.d.ts +114 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/shapes.d.ts +82 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/signature.d.ts +155 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/stream.d.ts +22 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transfer.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +77 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/exact.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +68 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +34 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +50 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +7 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +49 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +20 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +63 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +57 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +3 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +34 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +77 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +27 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +10 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +28 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +5 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +55 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +137 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +58 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +9 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +18 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +16 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +128 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +112 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +31 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +15 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +4 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +43 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +13 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +534 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +33 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +30 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +40 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +133 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/schema-deprecated.d.ts +149 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +251 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +65 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/static-schemas.d.ts +118 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +46 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +114 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +82 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +155 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +22 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +32 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +60 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +51 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +26 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +81 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +14 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +6 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +88 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +41 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +17 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +192 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/uri.d.ts +17 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/util.d.ts +176 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/dist-types/waiter.d.ts +35 -0
- package/node_modules/@smithy/util-stream/node_modules/@smithy/types/package.json +61 -0
- package/node_modules/@smithy/util-stream/package.json +99 -0
- package/node_modules/@smithy/util-uri-escape/LICENSE +201 -0
- package/node_modules/@smithy/util-uri-escape/README.md +10 -0
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +9 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri-path.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/escape-uri.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +8 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +4 -0
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +8 -0
- package/node_modules/@smithy/util-uri-escape/package.json +60 -0
- package/node_modules/@smithy/util-utf8/LICENSE +201 -0
- package/node_modules/@smithy/util-utf8/README.md +4 -0
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +32 -0
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +1 -0
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +5 -0
- package/node_modules/@smithy/util-utf8/dist-es/index.js +3 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +10 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +9 -0
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +10 -0
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +1 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +7 -0
- package/node_modules/@smithy/util-utf8/package.json +67 -0
- package/node_modules/@smithy/util-waiter/LICENSE +201 -0
- package/node_modules/@smithy/util-waiter/README.md +10 -0
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +179 -0
- package/node_modules/@smithy/util-waiter/dist-es/circularReplacer.js +12 -0
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +48 -0
- package/node_modules/@smithy/util-waiter/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +60 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +2 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/sleep.js +3 -0
- package/node_modules/@smithy/util-waiter/dist-es/utils/validate.js +17 -0
- package/node_modules/@smithy/util-waiter/dist-es/waiter.js +35 -0
- package/node_modules/@smithy/util-waiter/dist-types/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +10 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +10 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/index.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +49 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/sleep.d.ts +4 -0
- package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +49 -0
- package/node_modules/@smithy/util-waiter/package.json +63 -0
- package/node_modules/@smithy/uuid/LICENSE +201 -0
- package/node_modules/@smithy/uuid/README.md +10 -0
- package/node_modules/@smithy/uuid/dist-cjs/index.js +36 -0
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +6 -0
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +4 -0
- package/node_modules/@smithy/uuid/dist-es/index.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.js +2 -0
- package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +1 -0
- package/node_modules/@smithy/uuid/dist-es/v4.js +31 -0
- package/node_modules/@smithy/uuid/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +2 -0
- package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +2 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +1 -0
- package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +19 -0
- package/node_modules/@smithy/uuid/dist-types/v4.d.ts +19 -0
- package/node_modules/@smithy/uuid/package.json +66 -0
- package/node_modules/@standard-schema/spec/LICENSE +21 -0
- package/node_modules/@standard-schema/spec/README.md +198 -0
- package/node_modules/@standard-schema/spec/dist/index.cjs +18 -0
- package/node_modules/@standard-schema/spec/dist/index.d.cts +119 -0
- package/node_modules/@standard-schema/spec/dist/index.d.ts +119 -0
- package/node_modules/@standard-schema/spec/dist/index.js +0 -0
- package/node_modules/@standard-schema/spec/package.json +52 -0
- package/node_modules/@types/aws-lambda/LICENSE +21 -0
- package/node_modules/@types/aws-lambda/README.md +15 -0
- package/node_modules/@types/aws-lambda/common/api-gateway.d.ts +85 -0
- package/node_modules/@types/aws-lambda/common/cloudfront.d.ts +245 -0
- package/node_modules/@types/aws-lambda/handler.d.ts +268 -0
- package/node_modules/@types/aws-lambda/index.d.ts +54 -0
- package/node_modules/@types/aws-lambda/package.json +226 -0
- package/node_modules/@types/aws-lambda/trigger/alb.d.ts +48 -0
- package/node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts +38 -0
- package/node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts +246 -0
- package/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts +336 -0
- package/node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts +121 -0
- package/node_modules/@types/aws-lambda/trigger/autoscaling.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts +158 -0
- package/node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts +236 -0
- package/node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts +23 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-alarm.d.ts +69 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts +8 -0
- package/node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts +37 -0
- package/node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts +104 -0
- package/node_modules/@types/aws-lambda/trigger/codecommit.d.ts +35 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts +31 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts +32 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts +23 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts +11 -0
- package/node_modules/@types/aws-lambda/trigger/codepipeline.d.ts +55 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts +81 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts +52 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts +51 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts +21 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts +130 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts +15 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts +26 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts +16 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts +31 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v2.d.ts +73 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation-v3.d.ts +50 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts +53 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts +40 -0
- package/node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts +22 -0
- package/node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts +64 -0
- package/node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts +63 -0
- package/node_modules/@types/aws-lambda/trigger/eventbridge.d.ts +19 -0
- package/node_modules/@types/aws-lambda/trigger/guard-duty-event-notification.d.ts +36 -0
- package/node_modules/@types/aws-lambda/trigger/iot-authorizer.d.ts +48 -0
- package/node_modules/@types/aws-lambda/trigger/iot.d.ts +28 -0
- package/node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts +51 -0
- package/node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts +56 -0
- package/node_modules/@types/aws-lambda/trigger/lambda-function-url.d.ts +45 -0
- package/node_modules/@types/aws-lambda/trigger/lex-v2.d.ts +164 -0
- package/node_modules/@types/aws-lambda/trigger/lex.d.ts +120 -0
- package/node_modules/@types/aws-lambda/trigger/msk.d.ts +28 -0
- package/node_modules/@types/aws-lambda/trigger/s3-batch.d.ts +41 -0
- package/node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts +290 -0
- package/node_modules/@types/aws-lambda/trigger/s3.d.ts +60 -0
- package/node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts +15 -0
- package/node_modules/@types/aws-lambda/trigger/self-managed-kafka.d.ts +27 -0
- package/node_modules/@types/aws-lambda/trigger/ses.d.ts +109 -0
- package/node_modules/@types/aws-lambda/trigger/sns.d.ts +39 -0
- package/node_modules/@types/aws-lambda/trigger/sqs.d.ts +58 -0
- package/node_modules/@types/aws-lambda/trigger/transfer-family-authorizer.d.ts +110 -0
- package/node_modules/bowser/CHANGELOG.md +218 -0
- package/node_modules/bowser/LICENSE +39 -0
- package/node_modules/bowser/README.md +177 -0
- package/node_modules/bowser/bundled.js +1 -0
- package/node_modules/bowser/es5.js +1 -0
- package/node_modules/bowser/index.d.ts +315 -0
- package/node_modules/bowser/package.json +88 -0
- package/node_modules/bowser/src/bowser.js +77 -0
- package/node_modules/bowser/src/constants.js +169 -0
- package/node_modules/bowser/src/parser-browsers.js +1094 -0
- package/node_modules/bowser/src/parser-engines.js +120 -0
- package/node_modules/bowser/src/parser-os.js +211 -0
- package/node_modules/bowser/src/parser-platforms.js +524 -0
- package/node_modules/bowser/src/parser.js +511 -0
- package/node_modules/bowser/src/utils.js +327 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +671 -0
- package/node_modules/fast-xml-parser/LICENSE +21 -0
- package/node_modules/fast-xml-parser/README.md +223 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.d.cts +458 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +1 -0
- package/node_modules/fast-xml-parser/package.json +90 -0
- package/node_modules/fast-xml-parser/src/cli/cli.js +97 -0
- package/node_modules/fast-xml-parser/src/cli/man.js +17 -0
- package/node_modules/fast-xml-parser/src/cli/read.js +43 -0
- package/node_modules/fast-xml-parser/src/fxp.d.ts +445 -0
- package/node_modules/fast-xml-parser/src/fxp.js +14 -0
- package/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
- package/node_modules/fast-xml-parser/src/util.js +68 -0
- package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
- package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +104 -0
- package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +61 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +69 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +103 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +100 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +154 -0
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +94 -0
- package/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/node_modules/fast-xml-parser/src/v6/TagPath.js +81 -0
- package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +13 -0
- package/node_modules/fast-xml-parser/src/v6/XMLParser.js +83 -0
- package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +235 -0
- package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +210 -0
- package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +111 -0
- package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +116 -0
- package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +121 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +105 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +22 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +19 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +38 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +13 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +14 -0
- package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +6 -0
- package/node_modules/fast-xml-parser/src/validator.js +425 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +285 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +134 -0
- package/node_modules/fast-xml-parser/src/xmlbuilder/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +369 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +46 -0
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +606 -0
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +71 -0
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +119 -0
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +40 -0
- package/node_modules/mnemonist/LICENSE.txt +21 -0
- package/node_modules/mnemonist/README.md +112 -0
- package/node_modules/mnemonist/bi-map.d.ts +46 -0
- package/node_modules/mnemonist/bi-map.js +195 -0
- package/node_modules/mnemonist/bit-set.d.ts +29 -0
- package/node_modules/mnemonist/bit-set.js +379 -0
- package/node_modules/mnemonist/bit-vector.d.ts +42 -0
- package/node_modules/mnemonist/bit-vector.js +550 -0
- package/node_modules/mnemonist/bk-tree.d.ts +24 -0
- package/node_modules/mnemonist/bk-tree.js +180 -0
- package/node_modules/mnemonist/bloom-filter.d.ts +29 -0
- package/node_modules/mnemonist/bloom-filter.js +186 -0
- package/node_modules/mnemonist/circular-buffer.d.ts +34 -0
- package/node_modules/mnemonist/circular-buffer.js +131 -0
- package/node_modules/mnemonist/critbit-tree-map.js +515 -0
- package/node_modules/mnemonist/default-map.d.ts +29 -0
- package/node_modules/mnemonist/default-map.js +162 -0
- package/node_modules/mnemonist/default-weak-map.d.ts +18 -0
- package/node_modules/mnemonist/default-weak-map.js +108 -0
- package/node_modules/mnemonist/fibonacci-heap.d.ts +65 -0
- package/node_modules/mnemonist/fibonacci-heap.js +320 -0
- package/node_modules/mnemonist/fixed-critbit-tree-map.js +427 -0
- package/node_modules/mnemonist/fixed-deque.d.ts +34 -0
- package/node_modules/mnemonist/fixed-deque.js +351 -0
- package/node_modules/mnemonist/fixed-reverse-heap.d.ts +25 -0
- package/node_modules/mnemonist/fixed-reverse-heap.js +209 -0
- package/node_modules/mnemonist/fixed-stack.d.ts +36 -0
- package/node_modules/mnemonist/fixed-stack.js +242 -0
- package/node_modules/mnemonist/fuzzy-map.d.ts +33 -0
- package/node_modules/mnemonist/fuzzy-map.js +185 -0
- package/node_modules/mnemonist/fuzzy-multi-map.d.ts +36 -0
- package/node_modules/mnemonist/fuzzy-multi-map.js +196 -0
- package/node_modules/mnemonist/hashed-array-tree.d.ts +32 -0
- package/node_modules/mnemonist/hashed-array-tree.js +209 -0
- package/node_modules/mnemonist/heap.d.ts +84 -0
- package/node_modules/mnemonist/heap.js +576 -0
- package/node_modules/mnemonist/index.d.ts +46 -0
- package/node_modules/mnemonist/index.js +56 -0
- package/node_modules/mnemonist/inverted-index.d.ts +33 -0
- package/node_modules/mnemonist/inverted-index.js +249 -0
- package/node_modules/mnemonist/kd-tree.d.ts +25 -0
- package/node_modules/mnemonist/kd-tree.js +447 -0
- package/node_modules/mnemonist/linked-list.d.ts +29 -0
- package/node_modules/mnemonist/linked-list.js +261 -0
- package/node_modules/mnemonist/lru-cache.d.ts +43 -0
- package/node_modules/mnemonist/lru-cache.js +433 -0
- package/node_modules/mnemonist/lru-map.d.ts +43 -0
- package/node_modules/mnemonist/lru-map.js +258 -0
- package/node_modules/mnemonist/multi-array.js +447 -0
- package/node_modules/mnemonist/multi-map.d.ts +47 -0
- package/node_modules/mnemonist/multi-map.js +408 -0
- package/node_modules/mnemonist/multi-set.d.ts +37 -0
- package/node_modules/mnemonist/multi-set.js +440 -0
- package/node_modules/mnemonist/package.json +119 -0
- package/node_modules/mnemonist/passjoin-index.d.ts +54 -0
- package/node_modules/mnemonist/passjoin-index.js +518 -0
- package/node_modules/mnemonist/queue.d.ts +27 -0
- package/node_modules/mnemonist/queue.js +215 -0
- package/node_modules/mnemonist/semi-dynamic-trie.js +251 -0
- package/node_modules/mnemonist/set.d.ts +18 -0
- package/node_modules/mnemonist/set.js +356 -0
- package/node_modules/mnemonist/sort/insertion.d.ts +4 -0
- package/node_modules/mnemonist/sort/insertion.js +50 -0
- package/node_modules/mnemonist/sort/quick.d.ts +4 -0
- package/node_modules/mnemonist/sort/quick.js +116 -0
- package/node_modules/mnemonist/sparse-map.d.ts +26 -0
- package/node_modules/mnemonist/sparse-map.js +243 -0
- package/node_modules/mnemonist/sparse-queue-set.d.ts +24 -0
- package/node_modules/mnemonist/sparse-queue-set.js +218 -0
- package/node_modules/mnemonist/sparse-set.d.ts +23 -0
- package/node_modules/mnemonist/sparse-set.js +168 -0
- package/node_modules/mnemonist/stack.d.ts +27 -0
- package/node_modules/mnemonist/stack.js +210 -0
- package/node_modules/mnemonist/static-disjoint-set.d.ts +23 -0
- package/node_modules/mnemonist/static-disjoint-set.js +195 -0
- package/node_modules/mnemonist/static-interval-tree.d.ts +24 -0
- package/node_modules/mnemonist/static-interval-tree.js +387 -0
- package/node_modules/mnemonist/suffix-array.d.ts +37 -0
- package/node_modules/mnemonist/suffix-array.js +352 -0
- package/node_modules/mnemonist/symspell.d.ts +33 -0
- package/node_modules/mnemonist/symspell.js +547 -0
- package/node_modules/mnemonist/trie-map.d.ts +30 -0
- package/node_modules/mnemonist/trie-map.js +477 -0
- package/node_modules/mnemonist/trie.d.ts +26 -0
- package/node_modules/mnemonist/trie.js +167 -0
- package/node_modules/mnemonist/utils/binary-search.js +216 -0
- package/node_modules/mnemonist/utils/bitwise.js +109 -0
- package/node_modules/mnemonist/utils/comparators.js +79 -0
- package/node_modules/mnemonist/utils/hash-tables.js +107 -0
- package/node_modules/mnemonist/utils/iterables.js +93 -0
- package/node_modules/mnemonist/utils/merge.js +563 -0
- package/node_modules/mnemonist/utils/murmurhash3.js +87 -0
- package/node_modules/mnemonist/utils/typed-arrays.js +187 -0
- package/node_modules/mnemonist/utils/types.d.ts +16 -0
- package/node_modules/mnemonist/vector.d.ts +81 -0
- package/node_modules/mnemonist/vector.js +373 -0
- package/node_modules/mnemonist/vp-tree.d.ts +27 -0
- package/node_modules/mnemonist/vp-tree.js +367 -0
- package/node_modules/obliterator/LICENSE.txt +21 -0
- package/node_modules/obliterator/README.md +321 -0
- package/node_modules/obliterator/chain.d.ts +3 -0
- package/node_modules/obliterator/chain.js +39 -0
- package/node_modules/obliterator/combinations.d.ts +3 -0
- package/node_modules/obliterator/combinations.js +76 -0
- package/node_modules/obliterator/consume.d.ts +1 -0
- package/node_modules/obliterator/consume.js +32 -0
- package/node_modules/obliterator/filter.d.ts +5 -0
- package/node_modules/obliterator/filter.js +28 -0
- package/node_modules/obliterator/foreach.d.ts +1 -0
- package/node_modules/obliterator/foreach.js +156 -0
- package/node_modules/obliterator/index.d.ts +14 -0
- package/node_modules/obliterator/index.js +22 -0
- package/node_modules/obliterator/iterator.d.ts +19 -0
- package/node_modules/obliterator/iterator.js +104 -0
- package/node_modules/obliterator/map.d.ts +5 -0
- package/node_modules/obliterator/map.js +27 -0
- package/node_modules/obliterator/match.d.ts +3 -0
- package/node_modules/obliterator/match.js +42 -0
- package/node_modules/obliterator/package.json +45 -0
- package/node_modules/obliterator/permutations.d.ts +3 -0
- package/node_modules/obliterator/permutations.js +96 -0
- package/node_modules/obliterator/power-set.d.ts +3 -0
- package/node_modules/obliterator/power-set.js +28 -0
- package/node_modules/obliterator/range.d.ts +5 -0
- package/node_modules/obliterator/range.js +45 -0
- package/node_modules/obliterator/split.d.ts +3 -0
- package/node_modules/obliterator/split.js +68 -0
- package/node_modules/obliterator/take-into.d.ts +5 -0
- package/node_modules/obliterator/take-into.js +40 -0
- package/node_modules/obliterator/take.d.ts +3 -0
- package/node_modules/obliterator/take.js +40 -0
- package/node_modules/strnum/.github/SECURITY.md +5 -0
- package/node_modules/strnum/.vscode/launch.json +25 -0
- package/node_modules/strnum/CHANGELOG.md +33 -0
- package/node_modules/strnum/LICENSE +21 -0
- package/node_modules/strnum/README.md +103 -0
- package/node_modules/strnum/algo.stflow +84 -0
- package/node_modules/strnum/package.json +31 -0
- package/node_modules/strnum/strnum.js +129 -0
- package/node_modules/strnum/strnum.test.js +173 -0
- package/node_modules/strnum/test.js +9 -0
- package/node_modules/tslib/CopyrightNotice.txt +15 -0
- package/node_modules/tslib/LICENSE.txt +12 -0
- package/node_modules/tslib/README.md +164 -0
- package/node_modules/tslib/SECURITY.md +41 -0
- package/node_modules/tslib/modules/index.d.ts +38 -0
- package/node_modules/tslib/modules/index.js +70 -0
- package/node_modules/tslib/modules/package.json +3 -0
- package/node_modules/tslib/package.json +47 -0
- package/node_modules/tslib/tslib.d.ts +460 -0
- package/node_modules/tslib/tslib.es6.html +1 -0
- package/node_modules/tslib/tslib.es6.js +402 -0
- package/node_modules/tslib/tslib.es6.mjs +401 -0
- package/node_modules/tslib/tslib.html +1 -0
- package/node_modules/tslib/tslib.js +484 -0
- package/node_modules/zod/LICENSE +21 -0
- package/node_modules/zod/README.md +208 -0
- package/node_modules/zod/index.cjs +33 -0
- package/node_modules/zod/index.d.cts +4 -0
- package/node_modules/zod/index.d.ts +4 -0
- package/node_modules/zod/index.js +4 -0
- package/node_modules/zod/package.json +118 -0
- package/node_modules/zod/src/index.ts +4 -0
- package/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/node_modules/zod/src/v3/errors.ts +13 -0
- package/node_modules/zod/src/v3/external.ts +6 -0
- package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/node_modules/zod/src/v3/index.ts +4 -0
- package/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/node_modules/zod/src/v3/types.ts +5136 -0
- package/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/node_modules/zod/src/v4/core/config.ts +15 -0
- package/node_modules/zod/src/v4/core/core.ts +134 -0
- package/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/node_modules/zod/src/v4/core/function.ts +176 -0
- package/node_modules/zod/src/v4/core/index.ts +15 -0
- package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/node_modules/zod/src/v4/core/util.ts +775 -0
- package/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/node_modules/zod/src/v4/index.ts +4 -0
- package/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/node_modules/zod/v3/ZodError.cjs +138 -0
- package/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/zod/v3/ZodError.js +133 -0
- package/node_modules/zod/v3/errors.cjs +17 -0
- package/node_modules/zod/v3/errors.d.cts +5 -0
- package/node_modules/zod/v3/errors.d.ts +5 -0
- package/node_modules/zod/v3/errors.js +9 -0
- package/node_modules/zod/v3/external.cjs +22 -0
- package/node_modules/zod/v3/external.d.cts +6 -0
- package/node_modules/zod/v3/external.d.ts +6 -0
- package/node_modules/zod/v3/external.js +6 -0
- package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/node_modules/zod/v3/helpers/util.js +133 -0
- package/node_modules/zod/v3/index.cjs +33 -0
- package/node_modules/zod/v3/index.d.cts +4 -0
- package/node_modules/zod/v3/index.d.ts +4 -0
- package/node_modules/zod/v3/index.js +4 -0
- package/node_modules/zod/v3/locales/en.cjs +111 -0
- package/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/node_modules/zod/v3/locales/en.js +109 -0
- package/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/node_modules/zod/v3/standard-schema.js +1 -0
- package/node_modules/zod/v3/types.cjs +3775 -0
- package/node_modules/zod/v3/types.d.cts +1031 -0
- package/node_modules/zod/v3/types.d.ts +1031 -0
- package/node_modules/zod/v3/types.js +3693 -0
- package/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/node_modules/zod/v4/classic/coerce.js +17 -0
- package/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/node_modules/zod/v4/classic/compat.js +27 -0
- package/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/node_modules/zod/v4/classic/errors.js +41 -0
- package/node_modules/zod/v4/classic/external.cjs +70 -0
- package/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/node_modules/zod/v4/classic/external.js +18 -0
- package/node_modules/zod/v4/classic/index.cjs +33 -0
- package/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/node_modules/zod/v4/classic/index.js +4 -0
- package/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/node_modules/zod/v4/classic/iso.js +30 -0
- package/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/node_modules/zod/v4/classic/parse.js +6 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/node_modules/zod/v4/core/api.cjs +1039 -0
- package/node_modules/zod/v4/core/api.d.cts +284 -0
- package/node_modules/zod/v4/core/api.d.ts +284 -0
- package/node_modules/zod/v4/core/api.js +906 -0
- package/node_modules/zod/v4/core/checks.cjs +591 -0
- package/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/node_modules/zod/v4/core/checks.js +565 -0
- package/node_modules/zod/v4/core/core.cjs +67 -0
- package/node_modules/zod/v4/core/core.d.cts +49 -0
- package/node_modules/zod/v4/core/core.d.ts +49 -0
- package/node_modules/zod/v4/core/core.js +61 -0
- package/node_modules/zod/v4/core/doc.cjs +39 -0
- package/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/node_modules/zod/v4/core/doc.js +35 -0
- package/node_modules/zod/v4/core/errors.cjs +226 -0
- package/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/node_modules/zod/v4/core/errors.js +195 -0
- package/node_modules/zod/v4/core/function.cjs +102 -0
- package/node_modules/zod/v4/core/function.d.cts +52 -0
- package/node_modules/zod/v4/core/function.d.ts +52 -0
- package/node_modules/zod/v4/core/function.js +75 -0
- package/node_modules/zod/v4/core/index.cjs +44 -0
- package/node_modules/zod/v4/core/index.d.cts +15 -0
- package/node_modules/zod/v4/core/index.d.ts +15 -0
- package/node_modules/zod/v4/core/index.js +15 -0
- package/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/node_modules/zod/v4/core/json-schema.js +1 -0
- package/node_modules/zod/v4/core/parse.cjs +87 -0
- package/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/node_modules/zod/v4/core/parse.js +57 -0
- package/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/node_modules/zod/v4/core/regexes.js +95 -0
- package/node_modules/zod/v4/core/registries.cjs +56 -0
- package/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/node_modules/zod/v4/core/registries.js +51 -0
- package/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/node_modules/zod/v4/core/schemas.js +1717 -0
- package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/node_modules/zod/v4/core/util.cjs +539 -0
- package/node_modules/zod/v4/core/util.d.cts +183 -0
- package/node_modules/zod/v4/core/util.d.ts +183 -0
- package/node_modules/zod/v4/core/util.js +493 -0
- package/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/zod/v4/index.cjs +22 -0
- package/node_modules/zod/v4/index.d.cts +3 -0
- package/node_modules/zod/v4/index.d.ts +3 -0
- package/node_modules/zod/v4/index.js +3 -0
- package/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/node_modules/zod/v4/locales/ar.js +116 -0
- package/node_modules/zod/v4/locales/az.cjs +141 -0
- package/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/node_modules/zod/v4/locales/az.js +115 -0
- package/node_modules/zod/v4/locales/be.cjs +190 -0
- package/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/node_modules/zod/v4/locales/be.js +164 -0
- package/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/node_modules/zod/v4/locales/ca.js +118 -0
- package/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/node_modules/zod/v4/locales/cs.js +135 -0
- package/node_modules/zod/v4/locales/de.cjs +142 -0
- package/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/node_modules/zod/v4/locales/de.js +116 -0
- package/node_modules/zod/v4/locales/en.cjs +145 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/node_modules/zod/v4/locales/en.js +117 -0
- package/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/node_modules/zod/v4/locales/eo.js +116 -0
- package/node_modules/zod/v4/locales/es.cjs +143 -0
- package/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/node_modules/zod/v4/locales/es.js +117 -0
- package/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/node_modules/zod/v4/locales/fa.js +122 -0
- package/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/node_modules/zod/v4/locales/fi.js +122 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/node_modules/zod/v4/locales/fr.js +116 -0
- package/node_modules/zod/v4/locales/he.cjs +143 -0
- package/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/node_modules/zod/v4/locales/he.js +117 -0
- package/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/node_modules/zod/v4/locales/hu.js +117 -0
- package/node_modules/zod/v4/locales/id.cjs +142 -0
- package/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/node_modules/zod/v4/locales/id.js +116 -0
- package/node_modules/zod/v4/locales/index.cjs +84 -0
- package/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/node_modules/zod/v4/locales/index.js +39 -0
- package/node_modules/zod/v4/locales/it.cjs +143 -0
- package/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/node_modules/zod/v4/locales/it.js +117 -0
- package/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/node_modules/zod/v4/locales/ja.js +115 -0
- package/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/node_modules/zod/v4/locales/kh.js +117 -0
- package/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/node_modules/zod/v4/locales/ko.js +121 -0
- package/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/node_modules/zod/v4/locales/mk.js +118 -0
- package/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/node_modules/zod/v4/locales/ms.js +116 -0
- package/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/node_modules/zod/v4/locales/nl.js +117 -0
- package/node_modules/zod/v4/locales/no.cjs +142 -0
- package/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/node_modules/zod/v4/locales/no.js +116 -0
- package/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/node_modules/zod/v4/locales/ota.js +117 -0
- package/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/node_modules/zod/v4/locales/pl.js +117 -0
- package/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/node_modules/zod/v4/locales/ps.js +122 -0
- package/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt.js +116 -0
- package/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/node_modules/zod/v4/locales/ru.js +164 -0
- package/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/node_modules/zod/v4/locales/sl.js +117 -0
- package/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/node_modules/zod/v4/locales/sv.js +118 -0
- package/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/node_modules/zod/v4/locales/ta.js +117 -0
- package/node_modules/zod/v4/locales/th.cjs +143 -0
- package/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/node_modules/zod/v4/locales/th.js +117 -0
- package/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/node_modules/zod/v4/locales/tr.js +115 -0
- package/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/node_modules/zod/v4/locales/ua.js +117 -0
- package/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/node_modules/zod/v4/locales/ur.js +117 -0
- package/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/node_modules/zod/v4/locales/vi.js +116 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/node_modules/zod/v4/mini/checks.js +1 -0
- package/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/node_modules/zod/v4/mini/coerce.js +17 -0
- package/node_modules/zod/v4/mini/external.cjs +62 -0
- package/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/node_modules/zod/v4/mini/external.js +13 -0
- package/node_modules/zod/v4/mini/index.cjs +32 -0
- package/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/node_modules/zod/v4/mini/index.js +3 -0
- package/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/node_modules/zod/v4/mini/iso.js +30 -0
- package/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/node_modules/zod/v4/mini/parse.js +1 -0
- package/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/node_modules/zod/v4/mini/schemas.js +732 -0
- package/node_modules/zod/v4-mini/index.cjs +17 -0
- package/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/node_modules/zod/v4-mini/index.js +1 -0
- package/package.json +51 -7
- package/renovate.json5 +3 -0
package/API.md
CHANGED
|
@@ -490,39 +490,49 @@ public readonly vpcLink: IVpcLink;
|
|
|
490
490
|
---
|
|
491
491
|
|
|
492
492
|
|
|
493
|
-
###
|
|
493
|
+
### ApiKeyClientAuthorization <a name="ApiKeyClientAuthorization" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization"></a>
|
|
494
494
|
|
|
495
|
-
|
|
495
|
+
Construct that provides a custom OAuth URL for authorizing an API client by only passing a valid client id.
|
|
496
|
+
|
|
497
|
+
It will add a new endpoint to an existing HttpApi as `/authorize/{id}`.
|
|
498
|
+
|
|
499
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.Initializer"></a>
|
|
496
500
|
|
|
497
501
|
```typescript
|
|
498
|
-
import {
|
|
502
|
+
import { ApiKeyClientAuthorization } from '@btc-embedded/cdk-extensions'
|
|
499
503
|
|
|
500
|
-
new
|
|
504
|
+
new ApiKeyClientAuthorization(scope: Construct, id: string, props: ApiKeyClientAuthorizationProps)
|
|
501
505
|
```
|
|
502
506
|
|
|
503
507
|
| **Name** | **Type** | **Description** |
|
|
504
508
|
| --- | --- | --- |
|
|
505
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
506
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
507
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
509
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | The scope to be used. |
|
|
510
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.Initializer.parameter.id">id</a></code> | <code>string</code> | The ID used for the component instance. |
|
|
511
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps">ApiKeyClientAuthorizationProps</a></code> | The {@link ApiKeyClientAuthorizationProps} required for creating the instance. |
|
|
508
512
|
|
|
509
513
|
---
|
|
510
514
|
|
|
511
|
-
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.
|
|
515
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.Initializer.parameter.scope"></a>
|
|
512
516
|
|
|
513
517
|
- *Type:* constructs.Construct
|
|
514
518
|
|
|
519
|
+
The scope to be used.
|
|
520
|
+
|
|
515
521
|
---
|
|
516
522
|
|
|
517
|
-
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.
|
|
523
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.Initializer.parameter.id"></a>
|
|
518
524
|
|
|
519
525
|
- *Type:* string
|
|
520
526
|
|
|
527
|
+
The ID used for the component instance.
|
|
528
|
+
|
|
521
529
|
---
|
|
522
530
|
|
|
523
|
-
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.
|
|
531
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.Initializer.parameter.props"></a>
|
|
524
532
|
|
|
525
|
-
- *Type:* <a href="#@btc-embedded/cdk-extensions.
|
|
533
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps">ApiKeyClientAuthorizationProps</a>
|
|
534
|
+
|
|
535
|
+
The {@link ApiKeyClientAuthorizationProps} required for creating the instance.
|
|
526
536
|
|
|
527
537
|
---
|
|
528
538
|
|
|
@@ -530,11 +540,11 @@ new ApplicationLoadBalancer(scope: Construct, id: string, props: ApplicationLoad
|
|
|
530
540
|
|
|
531
541
|
| **Name** | **Description** |
|
|
532
542
|
| --- | --- |
|
|
533
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
543
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
534
544
|
|
|
535
545
|
---
|
|
536
546
|
|
|
537
|
-
#####
|
|
547
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.toString"></a>
|
|
538
548
|
|
|
539
549
|
```typescript
|
|
540
550
|
public toString(): string
|
|
@@ -546,16 +556,16 @@ Returns a string representation of this construct.
|
|
|
546
556
|
|
|
547
557
|
| **Name** | **Description** |
|
|
548
558
|
| --- | --- |
|
|
549
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
559
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
550
560
|
|
|
551
561
|
---
|
|
552
562
|
|
|
553
|
-
#####
|
|
563
|
+
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.isConstruct"></a>
|
|
554
564
|
|
|
555
565
|
```typescript
|
|
556
|
-
import {
|
|
566
|
+
import { ApiKeyClientAuthorization } from '@btc-embedded/cdk-extensions'
|
|
557
567
|
|
|
558
|
-
|
|
568
|
+
ApiKeyClientAuthorization.isConstruct(x: any)
|
|
559
569
|
```
|
|
560
570
|
|
|
561
571
|
Checks if `x` is a construct.
|
|
@@ -574,7 +584,7 @@ library can be accidentally installed, and `instanceof` will behave
|
|
|
574
584
|
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
575
585
|
this type-testing method instead.
|
|
576
586
|
|
|
577
|
-
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.
|
|
587
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.isConstruct.parameter.x"></a>
|
|
578
588
|
|
|
579
589
|
- *Type:* any
|
|
580
590
|
|
|
@@ -586,16 +596,12 @@ Any object.
|
|
|
586
596
|
|
|
587
597
|
| **Name** | **Type** | **Description** |
|
|
588
598
|
| --- | --- | --- |
|
|
589
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
590
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
591
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadbalancer">loadbalancer</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.ApplicationLoadBalancer</code> | *No description.* |
|
|
592
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadBalancer">loadBalancer</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancer</code> | *No description.* |
|
|
599
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
600
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.property.tokenUrl">tokenUrl</a></code> | <code>string</code> | Get the authorization URL to be used to retrieve the token. |
|
|
593
601
|
|
|
594
602
|
---
|
|
595
603
|
|
|
596
|
-
#####
|
|
597
|
-
|
|
598
|
-
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
604
|
+
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.property.node"></a>
|
|
599
605
|
|
|
600
606
|
```typescript
|
|
601
607
|
public readonly node: Node;
|
|
@@ -607,84 +613,60 @@ The tree node.
|
|
|
607
613
|
|
|
608
614
|
---
|
|
609
615
|
|
|
610
|
-
#####
|
|
611
|
-
|
|
612
|
-
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
613
|
-
|
|
614
|
-
```typescript
|
|
615
|
-
public readonly listener: IApplicationListener;
|
|
616
|
-
```
|
|
617
|
-
|
|
618
|
-
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationListener
|
|
619
|
-
|
|
620
|
-
---
|
|
621
|
-
|
|
622
|
-
##### ~~`loadbalancer`~~<sup>Required</sup> <a name="loadbalancer" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadbalancer"></a>
|
|
623
|
-
|
|
624
|
-
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
616
|
+
##### `tokenUrl`<sup>Required</sup> <a name="tokenUrl" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorization.property.tokenUrl"></a>
|
|
625
617
|
|
|
626
618
|
```typescript
|
|
627
|
-
public readonly
|
|
619
|
+
public readonly tokenUrl: string;
|
|
628
620
|
```
|
|
629
621
|
|
|
630
|
-
- *Type:*
|
|
631
|
-
|
|
632
|
-
---
|
|
633
|
-
|
|
634
|
-
##### ~~`loadBalancer`~~<sup>Required</sup> <a name="loadBalancer" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadBalancer"></a>
|
|
635
|
-
|
|
636
|
-
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
637
|
-
|
|
638
|
-
```typescript
|
|
639
|
-
public readonly loadBalancer: IApplicationLoadBalancer;
|
|
640
|
-
```
|
|
622
|
+
- *Type:* string
|
|
641
623
|
|
|
642
|
-
|
|
624
|
+
Get the authorization URL to be used to retrieve the token.
|
|
643
625
|
|
|
644
626
|
---
|
|
645
627
|
|
|
646
628
|
|
|
647
|
-
###
|
|
648
|
-
|
|
649
|
-
A construct that creates an Application Load Balancer (ALB) with Cognito authentication.
|
|
629
|
+
### ApiKeyManagement <a name="ApiKeyManagement" id="@btc-embedded/cdk-extensions.ApiKeyManagement"></a>
|
|
650
630
|
|
|
651
|
-
|
|
652
|
-
- Creates an ALB with an HTTPS listener and a Cognito authentication action.
|
|
653
|
-
- Configures a target group with health checks.
|
|
654
|
-
- Adds a Route 53 DNS record for the ALB.
|
|
655
|
-
- Exports key ALB properties (listener ARN, target group ARN, security group ID) as CloudFormation outputs.
|
|
631
|
+
Component that provides a REST API to manage (create, modify, delete) API keys.
|
|
656
632
|
|
|
657
|
-
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.
|
|
633
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.ApiKeyManagement.Initializer"></a>
|
|
658
634
|
|
|
659
635
|
```typescript
|
|
660
|
-
import {
|
|
636
|
+
import { ApiKeyManagement } from '@btc-embedded/cdk-extensions'
|
|
661
637
|
|
|
662
|
-
new
|
|
638
|
+
new ApiKeyManagement(scope: Construct, id: string, props: ApiKeyManagementProps)
|
|
663
639
|
```
|
|
664
640
|
|
|
665
641
|
| **Name** | **Type** | **Description** |
|
|
666
642
|
| --- | --- | --- |
|
|
667
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
668
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
669
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
643
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | The scope to be used. |
|
|
644
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.Initializer.parameter.id">id</a></code> | <code>string</code> | The ID used for the component instance. |
|
|
645
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagementProps">ApiKeyManagementProps</a></code> | The {@link ApiKeyManagementProps} required for creating the instance. |
|
|
670
646
|
|
|
671
647
|
---
|
|
672
648
|
|
|
673
|
-
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.
|
|
649
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApiKeyManagement.Initializer.parameter.scope"></a>
|
|
674
650
|
|
|
675
651
|
- *Type:* constructs.Construct
|
|
676
652
|
|
|
653
|
+
The scope to be used.
|
|
654
|
+
|
|
677
655
|
---
|
|
678
656
|
|
|
679
|
-
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.
|
|
657
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApiKeyManagement.Initializer.parameter.id"></a>
|
|
680
658
|
|
|
681
659
|
- *Type:* string
|
|
682
660
|
|
|
661
|
+
The ID used for the component instance.
|
|
662
|
+
|
|
683
663
|
---
|
|
684
664
|
|
|
685
|
-
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.
|
|
665
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.ApiKeyManagement.Initializer.parameter.props"></a>
|
|
686
666
|
|
|
687
|
-
- *Type:* <a href="#@btc-embedded/cdk-extensions.
|
|
667
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyManagementProps">ApiKeyManagementProps</a>
|
|
668
|
+
|
|
669
|
+
The {@link ApiKeyManagementProps} required for creating the instance.
|
|
688
670
|
|
|
689
671
|
---
|
|
690
672
|
|
|
@@ -692,12 +674,12 @@ new ApplicationLoadBalancerV2(scope: Construct, id: string, props: ApplicationLo
|
|
|
692
674
|
|
|
693
675
|
| **Name** | **Description** |
|
|
694
676
|
| --- | --- |
|
|
695
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
696
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
677
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
678
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.allowConnection">allowConnection</a></code> | Grant connection privileges to the passed role. |
|
|
697
679
|
|
|
698
680
|
---
|
|
699
681
|
|
|
700
|
-
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.
|
|
682
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.ApiKeyManagement.toString"></a>
|
|
701
683
|
|
|
702
684
|
```typescript
|
|
703
685
|
public toString(): string
|
|
@@ -705,15 +687,19 @@ public toString(): string
|
|
|
705
687
|
|
|
706
688
|
Returns a string representation of this construct.
|
|
707
689
|
|
|
708
|
-
##### `
|
|
690
|
+
##### `allowConnection` <a name="allowConnection" id="@btc-embedded/cdk-extensions.ApiKeyManagement.allowConnection"></a>
|
|
709
691
|
|
|
710
692
|
```typescript
|
|
711
|
-
public
|
|
693
|
+
public allowConnection(role: IRole): void
|
|
712
694
|
```
|
|
713
695
|
|
|
714
|
-
|
|
696
|
+
Grant connection privileges to the passed role.
|
|
715
697
|
|
|
716
|
-
|
|
698
|
+
###### `role`<sup>Required</sup> <a name="role" id="@btc-embedded/cdk-extensions.ApiKeyManagement.allowConnection.parameter.role"></a>
|
|
699
|
+
|
|
700
|
+
- *Type:* aws-cdk-lib.aws_iam.IRole
|
|
701
|
+
|
|
702
|
+
The role to allow access to the API.
|
|
717
703
|
|
|
718
704
|
---
|
|
719
705
|
|
|
@@ -721,17 +707,16 @@ public addTarget(target: IApplicationLoadBalancerTarget): void
|
|
|
721
707
|
|
|
722
708
|
| **Name** | **Description** |
|
|
723
709
|
| --- | --- |
|
|
724
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
725
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform">fromBasePlatform</a></code> | *No description.* |
|
|
710
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
726
711
|
|
|
727
712
|
---
|
|
728
713
|
|
|
729
|
-
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.
|
|
714
|
+
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.ApiKeyManagement.isConstruct"></a>
|
|
730
715
|
|
|
731
716
|
```typescript
|
|
732
|
-
import {
|
|
717
|
+
import { ApiKeyManagement } from '@btc-embedded/cdk-extensions'
|
|
733
718
|
|
|
734
|
-
|
|
719
|
+
ApiKeyManagement.isConstruct(x: any)
|
|
735
720
|
```
|
|
736
721
|
|
|
737
722
|
Checks if `x` is a construct.
|
|
@@ -750,7 +735,7 @@ library can be accidentally installed, and `instanceof` will behave
|
|
|
750
735
|
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
751
736
|
this type-testing method instead.
|
|
752
737
|
|
|
753
|
-
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.
|
|
738
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.ApiKeyManagement.isConstruct.parameter.x"></a>
|
|
754
739
|
|
|
755
740
|
- *Type:* any
|
|
756
741
|
|
|
@@ -758,43 +743,18 @@ Any object.
|
|
|
758
743
|
|
|
759
744
|
---
|
|
760
745
|
|
|
761
|
-
##### `fromBasePlatform` <a name="fromBasePlatform" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform"></a>
|
|
762
|
-
|
|
763
|
-
```typescript
|
|
764
|
-
import { ApplicationLoadBalancerV2 } from '@btc-embedded/cdk-extensions'
|
|
765
|
-
|
|
766
|
-
ApplicationLoadBalancerV2.fromBasePlatform(scope: Construct, id: string, __2: ApplicationLoadBalancerV2LookupOptions)
|
|
767
|
-
```
|
|
768
|
-
|
|
769
|
-
###### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform.parameter.scope"></a>
|
|
770
|
-
|
|
771
|
-
- *Type:* constructs.Construct
|
|
772
|
-
|
|
773
|
-
---
|
|
774
|
-
|
|
775
|
-
###### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform.parameter.id"></a>
|
|
776
|
-
|
|
777
|
-
- *Type:* string
|
|
778
|
-
|
|
779
|
-
---
|
|
780
|
-
|
|
781
|
-
###### `__2`<sup>Required</sup> <a name="__2" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform.parameter.__2"></a>
|
|
782
|
-
|
|
783
|
-
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2LookupOptions">ApplicationLoadBalancerV2LookupOptions</a>
|
|
784
|
-
|
|
785
|
-
---
|
|
786
|
-
|
|
787
746
|
#### Properties <a name="Properties" id="Properties"></a>
|
|
788
747
|
|
|
789
748
|
| **Name** | **Type** | **Description** |
|
|
790
749
|
| --- | --- | --- |
|
|
791
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
792
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
793
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
750
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
751
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.property.baseUrl">baseUrl</a></code> | <code>string</code> | Get the base URL to manage the keys. |
|
|
752
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.property.keyManagementPath">keyManagementPath</a></code> | <code>string</code> | Get the path relative to the base url to manage a single key. |
|
|
753
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagement.property.keysManagementPath">keysManagementPath</a></code> | <code>string</code> | Get the path relative to the base url to manage all keys. |
|
|
794
754
|
|
|
795
755
|
---
|
|
796
756
|
|
|
797
|
-
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.
|
|
757
|
+
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.ApiKeyManagement.property.node"></a>
|
|
798
758
|
|
|
799
759
|
```typescript
|
|
800
760
|
public readonly node: Node;
|
|
@@ -806,63 +766,87 @@ The tree node.
|
|
|
806
766
|
|
|
807
767
|
---
|
|
808
768
|
|
|
809
|
-
##### `
|
|
769
|
+
##### `baseUrl`<sup>Required</sup> <a name="baseUrl" id="@btc-embedded/cdk-extensions.ApiKeyManagement.property.baseUrl"></a>
|
|
810
770
|
|
|
811
771
|
```typescript
|
|
812
|
-
public readonly
|
|
772
|
+
public readonly baseUrl: string;
|
|
813
773
|
```
|
|
814
774
|
|
|
815
775
|
- *Type:* string
|
|
816
776
|
|
|
777
|
+
Get the base URL to manage the keys.
|
|
778
|
+
|
|
817
779
|
---
|
|
818
780
|
|
|
819
|
-
##### `
|
|
781
|
+
##### `keyManagementPath`<sup>Required</sup> <a name="keyManagementPath" id="@btc-embedded/cdk-extensions.ApiKeyManagement.property.keyManagementPath"></a>
|
|
820
782
|
|
|
821
783
|
```typescript
|
|
822
|
-
public readonly
|
|
784
|
+
public readonly keyManagementPath: string;
|
|
823
785
|
```
|
|
824
786
|
|
|
825
|
-
- *Type:*
|
|
787
|
+
- *Type:* string
|
|
788
|
+
|
|
789
|
+
Get the path relative to the base url to manage a single key.
|
|
790
|
+
|
|
791
|
+
Contains
|
|
792
|
+
a placeholder {id} that has to replaced by the ID of the element to be managed.
|
|
826
793
|
|
|
827
794
|
---
|
|
828
795
|
|
|
796
|
+
##### `keysManagementPath`<sup>Required</sup> <a name="keysManagementPath" id="@btc-embedded/cdk-extensions.ApiKeyManagement.property.keysManagementPath"></a>
|
|
829
797
|
|
|
830
|
-
|
|
798
|
+
```typescript
|
|
799
|
+
public readonly keysManagementPath: string;
|
|
800
|
+
```
|
|
831
801
|
|
|
832
|
-
- *
|
|
802
|
+
- *Type:* string
|
|
803
|
+
|
|
804
|
+
Get the path relative to the base url to manage all keys.
|
|
805
|
+
|
|
806
|
+
---
|
|
833
807
|
|
|
834
|
-
|
|
808
|
+
|
|
809
|
+
### ApiKeyPreTokenHandler <a name="ApiKeyPreTokenHandler" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler"></a>
|
|
810
|
+
|
|
811
|
+
Component that provides pre-token lambda that enhances the Cognito access token.
|
|
812
|
+
|
|
813
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.Initializer"></a>
|
|
835
814
|
|
|
836
815
|
```typescript
|
|
837
|
-
import {
|
|
816
|
+
import { ApiKeyPreTokenHandler } from '@btc-embedded/cdk-extensions'
|
|
838
817
|
|
|
839
|
-
new
|
|
818
|
+
new ApiKeyPreTokenHandler(scope: Construct, id: string, props: ApiKeyPreTokenHandlerProps)
|
|
840
819
|
```
|
|
841
820
|
|
|
842
821
|
| **Name** | **Type** | **Description** |
|
|
843
822
|
| --- | --- | --- |
|
|
844
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
845
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
823
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | The scope to be used. |
|
|
824
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.Initializer.parameter.id">id</a></code> | <code>string</code> | The ID used for the component instance. |
|
|
825
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps">ApiKeyPreTokenHandlerProps</a></code> | The {@link ApiKeyPreTokenHandlerProps} required for creating the instance. |
|
|
846
826
|
|
|
847
827
|
---
|
|
848
828
|
|
|
849
|
-
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.
|
|
829
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.Initializer.parameter.scope"></a>
|
|
850
830
|
|
|
851
831
|
- *Type:* constructs.Construct
|
|
852
832
|
|
|
853
|
-
The scope
|
|
833
|
+
The scope to be used.
|
|
854
834
|
|
|
855
835
|
---
|
|
856
836
|
|
|
857
|
-
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.
|
|
837
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.Initializer.parameter.id"></a>
|
|
858
838
|
|
|
859
839
|
- *Type:* string
|
|
860
840
|
|
|
861
|
-
The
|
|
841
|
+
The ID used for the component instance.
|
|
862
842
|
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
843
|
+
---
|
|
844
|
+
|
|
845
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.Initializer.parameter.props"></a>
|
|
846
|
+
|
|
847
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps">ApiKeyPreTokenHandlerProps</a>
|
|
848
|
+
|
|
849
|
+
The {@link ApiKeyPreTokenHandlerProps} required for creating the instance.
|
|
866
850
|
|
|
867
851
|
---
|
|
868
852
|
|
|
@@ -870,12 +854,11 @@ dash `--`.
|
|
|
870
854
|
|
|
871
855
|
| **Name** | **Description** |
|
|
872
856
|
| --- | --- |
|
|
873
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
874
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.addTarget">addTarget</a></code> | *No description.* |
|
|
857
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
875
858
|
|
|
876
859
|
---
|
|
877
860
|
|
|
878
|
-
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.
|
|
861
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.toString"></a>
|
|
879
862
|
|
|
880
863
|
```typescript
|
|
881
864
|
public toString(): string
|
|
@@ -883,32 +866,20 @@ public toString(): string
|
|
|
883
866
|
|
|
884
867
|
Returns a string representation of this construct.
|
|
885
868
|
|
|
886
|
-
##### `addTarget` <a name="addTarget" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.addTarget"></a>
|
|
887
|
-
|
|
888
|
-
```typescript
|
|
889
|
-
public addTarget(target: IApplicationLoadBalancerTarget): void
|
|
890
|
-
```
|
|
891
|
-
|
|
892
|
-
###### `target`<sup>Required</sup> <a name="target" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.addTarget.parameter.target"></a>
|
|
893
|
-
|
|
894
|
-
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancerTarget
|
|
895
|
-
|
|
896
|
-
---
|
|
897
|
-
|
|
898
869
|
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
899
870
|
|
|
900
871
|
| **Name** | **Description** |
|
|
901
872
|
| --- | --- |
|
|
902
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
873
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
903
874
|
|
|
904
875
|
---
|
|
905
876
|
|
|
906
|
-
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.
|
|
877
|
+
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.isConstruct"></a>
|
|
907
878
|
|
|
908
879
|
```typescript
|
|
909
|
-
import {
|
|
880
|
+
import { ApiKeyPreTokenHandler } from '@btc-embedded/cdk-extensions'
|
|
910
881
|
|
|
911
|
-
|
|
882
|
+
ApiKeyPreTokenHandler.isConstruct(x: any)
|
|
912
883
|
```
|
|
913
884
|
|
|
914
885
|
Checks if `x` is a construct.
|
|
@@ -927,7 +898,7 @@ library can be accidentally installed, and `instanceof` will behave
|
|
|
927
898
|
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
928
899
|
this type-testing method instead.
|
|
929
900
|
|
|
930
|
-
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.
|
|
901
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.isConstruct.parameter.x"></a>
|
|
931
902
|
|
|
932
903
|
- *Type:* any
|
|
933
904
|
|
|
@@ -939,13 +910,11 @@ Any object.
|
|
|
939
910
|
|
|
940
911
|
| **Name** | **Type** | **Description** |
|
|
941
912
|
| --- | --- | --- |
|
|
942
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
943
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.domainName">domainName</a></code> | <code>string</code> | *No description.* |
|
|
944
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.targetGroup">targetGroup</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationTargetGroup</code> | *No description.* |
|
|
913
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
945
914
|
|
|
946
915
|
---
|
|
947
916
|
|
|
948
|
-
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.
|
|
917
|
+
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandler.property.node"></a>
|
|
949
918
|
|
|
950
919
|
```typescript
|
|
951
920
|
public readonly node: Node;
|
|
@@ -957,62 +926,48 @@ The tree node.
|
|
|
957
926
|
|
|
958
927
|
---
|
|
959
928
|
|
|
960
|
-
##### `domainName`<sup>Required</sup> <a name="domainName" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.domainName"></a>
|
|
961
|
-
|
|
962
|
-
```typescript
|
|
963
|
-
public readonly domainName: string;
|
|
964
|
-
```
|
|
965
|
-
|
|
966
|
-
- *Type:* string
|
|
967
|
-
|
|
968
|
-
---
|
|
969
|
-
|
|
970
|
-
##### `targetGroup`<sup>Required</sup> <a name="targetGroup" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.targetGroup"></a>
|
|
971
|
-
|
|
972
|
-
```typescript
|
|
973
|
-
public readonly targetGroup: IApplicationTargetGroup;
|
|
974
|
-
```
|
|
975
|
-
|
|
976
|
-
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationTargetGroup
|
|
977
|
-
|
|
978
|
-
---
|
|
979
|
-
|
|
980
929
|
|
|
981
|
-
###
|
|
930
|
+
### ApiKeyStore <a name="ApiKeyStore" id="@btc-embedded/cdk-extensions.ApiKeyStore"></a>
|
|
982
931
|
|
|
983
|
-
|
|
932
|
+
Component that provides the base constructs required for API Key management, namely the required DynamoDB table.
|
|
984
933
|
|
|
985
|
-
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.
|
|
934
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.ApiKeyStore.Initializer"></a>
|
|
986
935
|
|
|
987
936
|
```typescript
|
|
988
|
-
import {
|
|
937
|
+
import { ApiKeyStore } from '@btc-embedded/cdk-extensions'
|
|
989
938
|
|
|
990
|
-
new
|
|
939
|
+
new ApiKeyStore(scope: Construct, id: string, props: ApiKeyStoreProps)
|
|
991
940
|
```
|
|
992
941
|
|
|
993
942
|
| **Name** | **Type** | **Description** |
|
|
994
943
|
| --- | --- | --- |
|
|
995
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
996
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
997
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
944
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | The scope to be used. |
|
|
945
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.Initializer.parameter.id">id</a></code> | <code>string</code> | The ID used for the component instance. |
|
|
946
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStoreProps">ApiKeyStoreProps</a></code> | The {@link ApiKeyStoreProps} required for creating the instance. |
|
|
998
947
|
|
|
999
948
|
---
|
|
1000
949
|
|
|
1001
|
-
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.
|
|
950
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApiKeyStore.Initializer.parameter.scope"></a>
|
|
1002
951
|
|
|
1003
952
|
- *Type:* constructs.Construct
|
|
1004
953
|
|
|
954
|
+
The scope to be used.
|
|
955
|
+
|
|
1005
956
|
---
|
|
1006
957
|
|
|
1007
|
-
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.
|
|
958
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApiKeyStore.Initializer.parameter.id"></a>
|
|
1008
959
|
|
|
1009
960
|
- *Type:* string
|
|
1010
961
|
|
|
962
|
+
The ID used for the component instance.
|
|
963
|
+
|
|
1011
964
|
---
|
|
1012
965
|
|
|
1013
|
-
##### `
|
|
966
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.ApiKeyStore.Initializer.parameter.props"></a>
|
|
1014
967
|
|
|
1015
|
-
- *Type:* <a href="#@btc-embedded/cdk-extensions.
|
|
968
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyStoreProps">ApiKeyStoreProps</a>
|
|
969
|
+
|
|
970
|
+
The {@link ApiKeyStoreProps} required for creating the instance.
|
|
1016
971
|
|
|
1017
972
|
---
|
|
1018
973
|
|
|
@@ -1020,24 +975,11 @@ new BTCLogGroup(scope: Construct, id: string, options: BTCUniqueLogGroupOptions
|
|
|
1020
975
|
|
|
1021
976
|
| **Name** | **Description** |
|
|
1022
977
|
| --- | --- |
|
|
1023
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
1024
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.applyRemovalPolicy">applyRemovalPolicy</a></code> | Apply the given removal policy to this resource. |
|
|
1025
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addMetricFilter">addMetricFilter</a></code> | Create a new Metric Filter on this Log Group. |
|
|
1026
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addStream">addStream</a></code> | Create a new Log Stream for this Log Group. |
|
|
1027
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addSubscriptionFilter">addSubscriptionFilter</a></code> | Create a new Subscription Filter on this Log Group. |
|
|
1028
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addToResourcePolicy">addToResourcePolicy</a></code> | Adds a statement to the resource policy associated with this log group. |
|
|
1029
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.extractMetric">extractMetric</a></code> | Extract a metric from structured log events in the LogGroup. |
|
|
1030
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.grant">grant</a></code> | Give the indicated permissions on this log group and all streams. |
|
|
1031
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.grantRead">grantRead</a></code> | Give permissions to read and filter events from this log group. |
|
|
1032
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.grantWrite">grantWrite</a></code> | Give permissions to create and write to streams in this log group. |
|
|
1033
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.logGroupPhysicalName">logGroupPhysicalName</a></code> | Public method to get the physical name of this log group. |
|
|
1034
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.metric">metric</a></code> | Creates a CloudWatch metric for this log group. |
|
|
1035
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.metricIncomingBytes">metricIncomingBytes</a></code> | Creates a CloudWatch metric for the volume of incoming log data in bytes to this log group. |
|
|
1036
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.metricIncomingLogEvents">metricIncomingLogEvents</a></code> | Creates a CloudWatch metric for the number of incoming log events to this log group. |
|
|
978
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
1037
979
|
|
|
1038
980
|
---
|
|
1039
981
|
|
|
1040
|
-
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.
|
|
982
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.ApiKeyStore.toString"></a>
|
|
1041
983
|
|
|
1042
984
|
```typescript
|
|
1043
985
|
public toString(): string
|
|
@@ -1045,25 +987,668 @@ public toString(): string
|
|
|
1045
987
|
|
|
1046
988
|
Returns a string representation of this construct.
|
|
1047
989
|
|
|
1048
|
-
|
|
990
|
+
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
1049
991
|
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
992
|
+
| **Name** | **Description** |
|
|
993
|
+
| --- | --- |
|
|
994
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
1053
995
|
|
|
1054
|
-
|
|
996
|
+
---
|
|
1055
997
|
|
|
1056
|
-
|
|
1057
|
-
being managed by CloudFormation, either because you've removed it from the
|
|
1058
|
-
CDK application or because you've made a change that requires the resource
|
|
1059
|
-
to be replaced.
|
|
998
|
+
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.ApiKeyStore.isConstruct"></a>
|
|
1060
999
|
|
|
1061
|
-
|
|
1062
|
-
|
|
1000
|
+
```typescript
|
|
1001
|
+
import { ApiKeyStore } from '@btc-embedded/cdk-extensions'
|
|
1063
1002
|
|
|
1064
|
-
|
|
1003
|
+
ApiKeyStore.isConstruct(x: any)
|
|
1004
|
+
```
|
|
1065
1005
|
|
|
1066
|
-
|
|
1006
|
+
Checks if `x` is a construct.
|
|
1007
|
+
|
|
1008
|
+
Use this method instead of `instanceof` to properly detect `Construct`
|
|
1009
|
+
instances, even when the construct library is symlinked.
|
|
1010
|
+
|
|
1011
|
+
Explanation: in JavaScript, multiple copies of the `constructs` library on
|
|
1012
|
+
disk are seen as independent, completely different libraries. As a
|
|
1013
|
+
consequence, the class `Construct` in each copy of the `constructs` library
|
|
1014
|
+
is seen as a different class, and an instance of one class will not test as
|
|
1015
|
+
`instanceof` the other class. `npm install` will not create installations
|
|
1016
|
+
like this, but users may manually symlink construct libraries together or
|
|
1017
|
+
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
|
1018
|
+
library can be accidentally installed, and `instanceof` will behave
|
|
1019
|
+
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
1020
|
+
this type-testing method instead.
|
|
1021
|
+
|
|
1022
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.ApiKeyStore.isConstruct.parameter.x"></a>
|
|
1023
|
+
|
|
1024
|
+
- *Type:* any
|
|
1025
|
+
|
|
1026
|
+
Any object.
|
|
1027
|
+
|
|
1028
|
+
---
|
|
1029
|
+
|
|
1030
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
1031
|
+
|
|
1032
|
+
| **Name** | **Type** | **Description** |
|
|
1033
|
+
| --- | --- | --- |
|
|
1034
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
1035
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.property.apiKeyTable">apiKeyTable</a></code> | <code>aws-cdk-lib.aws_dynamodb.ITable</code> | Get the table that is used to manage the API Keys. |
|
|
1036
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore.property.attributes">attributes</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute">ApiKeyAttribute</a>[]</code> | Get the field configuration of the component. |
|
|
1037
|
+
|
|
1038
|
+
---
|
|
1039
|
+
|
|
1040
|
+
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.ApiKeyStore.property.node"></a>
|
|
1041
|
+
|
|
1042
|
+
```typescript
|
|
1043
|
+
public readonly node: Node;
|
|
1044
|
+
```
|
|
1045
|
+
|
|
1046
|
+
- *Type:* constructs.Node
|
|
1047
|
+
|
|
1048
|
+
The tree node.
|
|
1049
|
+
|
|
1050
|
+
---
|
|
1051
|
+
|
|
1052
|
+
##### `apiKeyTable`<sup>Required</sup> <a name="apiKeyTable" id="@btc-embedded/cdk-extensions.ApiKeyStore.property.apiKeyTable"></a>
|
|
1053
|
+
|
|
1054
|
+
```typescript
|
|
1055
|
+
public readonly apiKeyTable: ITable;
|
|
1056
|
+
```
|
|
1057
|
+
|
|
1058
|
+
- *Type:* aws-cdk-lib.aws_dynamodb.ITable
|
|
1059
|
+
|
|
1060
|
+
Get the table that is used to manage the API Keys.
|
|
1061
|
+
|
|
1062
|
+
---
|
|
1063
|
+
|
|
1064
|
+
##### `attributes`<sup>Required</sup> <a name="attributes" id="@btc-embedded/cdk-extensions.ApiKeyStore.property.attributes"></a>
|
|
1065
|
+
|
|
1066
|
+
```typescript
|
|
1067
|
+
public readonly attributes: ApiKeyAttribute[];
|
|
1068
|
+
```
|
|
1069
|
+
|
|
1070
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute">ApiKeyAttribute</a>[]
|
|
1071
|
+
|
|
1072
|
+
Get the field configuration of the component.
|
|
1073
|
+
|
|
1074
|
+
---
|
|
1075
|
+
|
|
1076
|
+
|
|
1077
|
+
### ApplicationLoadBalancer <a name="ApplicationLoadBalancer" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer"></a>
|
|
1078
|
+
|
|
1079
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.Initializer"></a>
|
|
1080
|
+
|
|
1081
|
+
```typescript
|
|
1082
|
+
import { ApplicationLoadBalancer } from '@btc-embedded/cdk-extensions'
|
|
1083
|
+
|
|
1084
|
+
new ApplicationLoadBalancer(scope: Construct, id: string, props: ApplicationLoadBalancerProps)
|
|
1085
|
+
```
|
|
1086
|
+
|
|
1087
|
+
| **Name** | **Type** | **Description** |
|
|
1088
|
+
| --- | --- | --- |
|
|
1089
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | *No description.* |
|
|
1090
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.Initializer.parameter.id">id</a></code> | <code>string</code> | *No description.* |
|
|
1091
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerProps">ApplicationLoadBalancerProps</a></code> | *No description.* |
|
|
1092
|
+
|
|
1093
|
+
---
|
|
1094
|
+
|
|
1095
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.Initializer.parameter.scope"></a>
|
|
1096
|
+
|
|
1097
|
+
- *Type:* constructs.Construct
|
|
1098
|
+
|
|
1099
|
+
---
|
|
1100
|
+
|
|
1101
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.Initializer.parameter.id"></a>
|
|
1102
|
+
|
|
1103
|
+
- *Type:* string
|
|
1104
|
+
|
|
1105
|
+
---
|
|
1106
|
+
|
|
1107
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.Initializer.parameter.props"></a>
|
|
1108
|
+
|
|
1109
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerProps">ApplicationLoadBalancerProps</a>
|
|
1110
|
+
|
|
1111
|
+
---
|
|
1112
|
+
|
|
1113
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
|
1114
|
+
|
|
1115
|
+
| **Name** | **Description** |
|
|
1116
|
+
| --- | --- |
|
|
1117
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
1118
|
+
|
|
1119
|
+
---
|
|
1120
|
+
|
|
1121
|
+
##### ~~`toString`~~ <a name="toString" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.toString"></a>
|
|
1122
|
+
|
|
1123
|
+
```typescript
|
|
1124
|
+
public toString(): string
|
|
1125
|
+
```
|
|
1126
|
+
|
|
1127
|
+
Returns a string representation of this construct.
|
|
1128
|
+
|
|
1129
|
+
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
1130
|
+
|
|
1131
|
+
| **Name** | **Description** |
|
|
1132
|
+
| --- | --- |
|
|
1133
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
1134
|
+
|
|
1135
|
+
---
|
|
1136
|
+
|
|
1137
|
+
##### ~~`isConstruct`~~ <a name="isConstruct" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.isConstruct"></a>
|
|
1138
|
+
|
|
1139
|
+
```typescript
|
|
1140
|
+
import { ApplicationLoadBalancer } from '@btc-embedded/cdk-extensions'
|
|
1141
|
+
|
|
1142
|
+
ApplicationLoadBalancer.isConstruct(x: any)
|
|
1143
|
+
```
|
|
1144
|
+
|
|
1145
|
+
Checks if `x` is a construct.
|
|
1146
|
+
|
|
1147
|
+
Use this method instead of `instanceof` to properly detect `Construct`
|
|
1148
|
+
instances, even when the construct library is symlinked.
|
|
1149
|
+
|
|
1150
|
+
Explanation: in JavaScript, multiple copies of the `constructs` library on
|
|
1151
|
+
disk are seen as independent, completely different libraries. As a
|
|
1152
|
+
consequence, the class `Construct` in each copy of the `constructs` library
|
|
1153
|
+
is seen as a different class, and an instance of one class will not test as
|
|
1154
|
+
`instanceof` the other class. `npm install` will not create installations
|
|
1155
|
+
like this, but users may manually symlink construct libraries together or
|
|
1156
|
+
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
|
1157
|
+
library can be accidentally installed, and `instanceof` will behave
|
|
1158
|
+
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
1159
|
+
this type-testing method instead.
|
|
1160
|
+
|
|
1161
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.isConstruct.parameter.x"></a>
|
|
1162
|
+
|
|
1163
|
+
- *Type:* any
|
|
1164
|
+
|
|
1165
|
+
Any object.
|
|
1166
|
+
|
|
1167
|
+
---
|
|
1168
|
+
|
|
1169
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
1170
|
+
|
|
1171
|
+
| **Name** | **Type** | **Description** |
|
|
1172
|
+
| --- | --- | --- |
|
|
1173
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
1174
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.listener">listener</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationListener</code> | *No description.* |
|
|
1175
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadbalancer">loadbalancer</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.ApplicationLoadBalancer</code> | *No description.* |
|
|
1176
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadBalancer">loadBalancer</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancer</code> | *No description.* |
|
|
1177
|
+
|
|
1178
|
+
---
|
|
1179
|
+
|
|
1180
|
+
##### ~~`node`~~<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.node"></a>
|
|
1181
|
+
|
|
1182
|
+
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
1183
|
+
|
|
1184
|
+
```typescript
|
|
1185
|
+
public readonly node: Node;
|
|
1186
|
+
```
|
|
1187
|
+
|
|
1188
|
+
- *Type:* constructs.Node
|
|
1189
|
+
|
|
1190
|
+
The tree node.
|
|
1191
|
+
|
|
1192
|
+
---
|
|
1193
|
+
|
|
1194
|
+
##### ~~`listener`~~<sup>Required</sup> <a name="listener" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.listener"></a>
|
|
1195
|
+
|
|
1196
|
+
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
1197
|
+
|
|
1198
|
+
```typescript
|
|
1199
|
+
public readonly listener: IApplicationListener;
|
|
1200
|
+
```
|
|
1201
|
+
|
|
1202
|
+
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationListener
|
|
1203
|
+
|
|
1204
|
+
---
|
|
1205
|
+
|
|
1206
|
+
##### ~~`loadbalancer`~~<sup>Required</sup> <a name="loadbalancer" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadbalancer"></a>
|
|
1207
|
+
|
|
1208
|
+
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
1209
|
+
|
|
1210
|
+
```typescript
|
|
1211
|
+
public readonly loadbalancer: ApplicationLoadBalancer;
|
|
1212
|
+
```
|
|
1213
|
+
|
|
1214
|
+
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.ApplicationLoadBalancer
|
|
1215
|
+
|
|
1216
|
+
---
|
|
1217
|
+
|
|
1218
|
+
##### ~~`loadBalancer`~~<sup>Required</sup> <a name="loadBalancer" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancer.property.loadBalancer"></a>
|
|
1219
|
+
|
|
1220
|
+
- *Deprecated:* Use {@link ApplicationLoadBalancerV2 } instead
|
|
1221
|
+
|
|
1222
|
+
```typescript
|
|
1223
|
+
public readonly loadBalancer: IApplicationLoadBalancer;
|
|
1224
|
+
```
|
|
1225
|
+
|
|
1226
|
+
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancer
|
|
1227
|
+
|
|
1228
|
+
---
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
### ApplicationLoadBalancerV2 <a name="ApplicationLoadBalancerV2" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2"></a>
|
|
1232
|
+
|
|
1233
|
+
A construct that creates an Application Load Balancer (ALB) with Cognito authentication.
|
|
1234
|
+
|
|
1235
|
+
This construct:
|
|
1236
|
+
- Creates an ALB with an HTTPS listener and a Cognito authentication action.
|
|
1237
|
+
- Configures a target group with health checks.
|
|
1238
|
+
- Adds a Route 53 DNS record for the ALB.
|
|
1239
|
+
- Exports key ALB properties (listener ARN, target group ARN, security group ID) as CloudFormation outputs.
|
|
1240
|
+
|
|
1241
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.Initializer"></a>
|
|
1242
|
+
|
|
1243
|
+
```typescript
|
|
1244
|
+
import { ApplicationLoadBalancerV2 } from '@btc-embedded/cdk-extensions'
|
|
1245
|
+
|
|
1246
|
+
new ApplicationLoadBalancerV2(scope: Construct, id: string, props: ApplicationLoadBalancerPropsV2)
|
|
1247
|
+
```
|
|
1248
|
+
|
|
1249
|
+
| **Name** | **Type** | **Description** |
|
|
1250
|
+
| --- | --- | --- |
|
|
1251
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | *No description.* |
|
|
1252
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.Initializer.parameter.id">id</a></code> | <code>string</code> | *No description.* |
|
|
1253
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerPropsV2">ApplicationLoadBalancerPropsV2</a></code> | *No description.* |
|
|
1254
|
+
|
|
1255
|
+
---
|
|
1256
|
+
|
|
1257
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.Initializer.parameter.scope"></a>
|
|
1258
|
+
|
|
1259
|
+
- *Type:* constructs.Construct
|
|
1260
|
+
|
|
1261
|
+
---
|
|
1262
|
+
|
|
1263
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.Initializer.parameter.id"></a>
|
|
1264
|
+
|
|
1265
|
+
- *Type:* string
|
|
1266
|
+
|
|
1267
|
+
---
|
|
1268
|
+
|
|
1269
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.Initializer.parameter.props"></a>
|
|
1270
|
+
|
|
1271
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerPropsV2">ApplicationLoadBalancerPropsV2</a>
|
|
1272
|
+
|
|
1273
|
+
---
|
|
1274
|
+
|
|
1275
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
|
1276
|
+
|
|
1277
|
+
| **Name** | **Description** |
|
|
1278
|
+
| --- | --- |
|
|
1279
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
1280
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.addTarget">addTarget</a></code> | *No description.* |
|
|
1281
|
+
|
|
1282
|
+
---
|
|
1283
|
+
|
|
1284
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.toString"></a>
|
|
1285
|
+
|
|
1286
|
+
```typescript
|
|
1287
|
+
public toString(): string
|
|
1288
|
+
```
|
|
1289
|
+
|
|
1290
|
+
Returns a string representation of this construct.
|
|
1291
|
+
|
|
1292
|
+
##### `addTarget` <a name="addTarget" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.addTarget"></a>
|
|
1293
|
+
|
|
1294
|
+
```typescript
|
|
1295
|
+
public addTarget(target: IApplicationLoadBalancerTarget): void
|
|
1296
|
+
```
|
|
1297
|
+
|
|
1298
|
+
###### `target`<sup>Required</sup> <a name="target" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.addTarget.parameter.target"></a>
|
|
1299
|
+
|
|
1300
|
+
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancerTarget
|
|
1301
|
+
|
|
1302
|
+
---
|
|
1303
|
+
|
|
1304
|
+
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
1305
|
+
|
|
1306
|
+
| **Name** | **Description** |
|
|
1307
|
+
| --- | --- |
|
|
1308
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
1309
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform">fromBasePlatform</a></code> | *No description.* |
|
|
1310
|
+
|
|
1311
|
+
---
|
|
1312
|
+
|
|
1313
|
+
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.isConstruct"></a>
|
|
1314
|
+
|
|
1315
|
+
```typescript
|
|
1316
|
+
import { ApplicationLoadBalancerV2 } from '@btc-embedded/cdk-extensions'
|
|
1317
|
+
|
|
1318
|
+
ApplicationLoadBalancerV2.isConstruct(x: any)
|
|
1319
|
+
```
|
|
1320
|
+
|
|
1321
|
+
Checks if `x` is a construct.
|
|
1322
|
+
|
|
1323
|
+
Use this method instead of `instanceof` to properly detect `Construct`
|
|
1324
|
+
instances, even when the construct library is symlinked.
|
|
1325
|
+
|
|
1326
|
+
Explanation: in JavaScript, multiple copies of the `constructs` library on
|
|
1327
|
+
disk are seen as independent, completely different libraries. As a
|
|
1328
|
+
consequence, the class `Construct` in each copy of the `constructs` library
|
|
1329
|
+
is seen as a different class, and an instance of one class will not test as
|
|
1330
|
+
`instanceof` the other class. `npm install` will not create installations
|
|
1331
|
+
like this, but users may manually symlink construct libraries together or
|
|
1332
|
+
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
|
1333
|
+
library can be accidentally installed, and `instanceof` will behave
|
|
1334
|
+
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
1335
|
+
this type-testing method instead.
|
|
1336
|
+
|
|
1337
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.isConstruct.parameter.x"></a>
|
|
1338
|
+
|
|
1339
|
+
- *Type:* any
|
|
1340
|
+
|
|
1341
|
+
Any object.
|
|
1342
|
+
|
|
1343
|
+
---
|
|
1344
|
+
|
|
1345
|
+
##### `fromBasePlatform` <a name="fromBasePlatform" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform"></a>
|
|
1346
|
+
|
|
1347
|
+
```typescript
|
|
1348
|
+
import { ApplicationLoadBalancerV2 } from '@btc-embedded/cdk-extensions'
|
|
1349
|
+
|
|
1350
|
+
ApplicationLoadBalancerV2.fromBasePlatform(scope: Construct, id: string, __2: ApplicationLoadBalancerV2LookupOptions)
|
|
1351
|
+
```
|
|
1352
|
+
|
|
1353
|
+
###### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform.parameter.scope"></a>
|
|
1354
|
+
|
|
1355
|
+
- *Type:* constructs.Construct
|
|
1356
|
+
|
|
1357
|
+
---
|
|
1358
|
+
|
|
1359
|
+
###### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform.parameter.id"></a>
|
|
1360
|
+
|
|
1361
|
+
- *Type:* string
|
|
1362
|
+
|
|
1363
|
+
---
|
|
1364
|
+
|
|
1365
|
+
###### `__2`<sup>Required</sup> <a name="__2" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.fromBasePlatform.parameter.__2"></a>
|
|
1366
|
+
|
|
1367
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2LookupOptions">ApplicationLoadBalancerV2LookupOptions</a>
|
|
1368
|
+
|
|
1369
|
+
---
|
|
1370
|
+
|
|
1371
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
1372
|
+
|
|
1373
|
+
| **Name** | **Type** | **Description** |
|
|
1374
|
+
| --- | --- | --- |
|
|
1375
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
1376
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.property.domainName">domainName</a></code> | <code>string</code> | *No description.* |
|
|
1377
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.property.targetGroup">targetGroup</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationTargetGroup</code> | *No description.* |
|
|
1378
|
+
|
|
1379
|
+
---
|
|
1380
|
+
|
|
1381
|
+
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.property.node"></a>
|
|
1382
|
+
|
|
1383
|
+
```typescript
|
|
1384
|
+
public readonly node: Node;
|
|
1385
|
+
```
|
|
1386
|
+
|
|
1387
|
+
- *Type:* constructs.Node
|
|
1388
|
+
|
|
1389
|
+
The tree node.
|
|
1390
|
+
|
|
1391
|
+
---
|
|
1392
|
+
|
|
1393
|
+
##### `domainName`<sup>Required</sup> <a name="domainName" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.property.domainName"></a>
|
|
1394
|
+
|
|
1395
|
+
```typescript
|
|
1396
|
+
public readonly domainName: string;
|
|
1397
|
+
```
|
|
1398
|
+
|
|
1399
|
+
- *Type:* string
|
|
1400
|
+
|
|
1401
|
+
---
|
|
1402
|
+
|
|
1403
|
+
##### `targetGroup`<sup>Required</sup> <a name="targetGroup" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2.property.targetGroup"></a>
|
|
1404
|
+
|
|
1405
|
+
```typescript
|
|
1406
|
+
public readonly targetGroup: IApplicationTargetGroup;
|
|
1407
|
+
```
|
|
1408
|
+
|
|
1409
|
+
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationTargetGroup
|
|
1410
|
+
|
|
1411
|
+
---
|
|
1412
|
+
|
|
1413
|
+
|
|
1414
|
+
### ApplicationLoadBalancerV2Base <a name="ApplicationLoadBalancerV2Base" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base"></a>
|
|
1415
|
+
|
|
1416
|
+
- *Implements:* <a href="#@btc-embedded/cdk-extensions.IApplicationLoadBalancerV2">IApplicationLoadBalancerV2</a>
|
|
1417
|
+
|
|
1418
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.Initializer"></a>
|
|
1419
|
+
|
|
1420
|
+
```typescript
|
|
1421
|
+
import { ApplicationLoadBalancerV2Base } from '@btc-embedded/cdk-extensions'
|
|
1422
|
+
|
|
1423
|
+
new ApplicationLoadBalancerV2Base(scope: Construct, id: string)
|
|
1424
|
+
```
|
|
1425
|
+
|
|
1426
|
+
| **Name** | **Type** | **Description** |
|
|
1427
|
+
| --- | --- | --- |
|
|
1428
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | The scope in which to define this construct. |
|
|
1429
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.Initializer.parameter.id">id</a></code> | <code>string</code> | The scoped construct ID. |
|
|
1430
|
+
|
|
1431
|
+
---
|
|
1432
|
+
|
|
1433
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.Initializer.parameter.scope"></a>
|
|
1434
|
+
|
|
1435
|
+
- *Type:* constructs.Construct
|
|
1436
|
+
|
|
1437
|
+
The scope in which to define this construct.
|
|
1438
|
+
|
|
1439
|
+
---
|
|
1440
|
+
|
|
1441
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.Initializer.parameter.id"></a>
|
|
1442
|
+
|
|
1443
|
+
- *Type:* string
|
|
1444
|
+
|
|
1445
|
+
The scoped construct ID.
|
|
1446
|
+
|
|
1447
|
+
Must be unique amongst siblings. If
|
|
1448
|
+
the ID includes a path separator (`/`), then it will be replaced by double
|
|
1449
|
+
dash `--`.
|
|
1450
|
+
|
|
1451
|
+
---
|
|
1452
|
+
|
|
1453
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
|
1454
|
+
|
|
1455
|
+
| **Name** | **Description** |
|
|
1456
|
+
| --- | --- |
|
|
1457
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
1458
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.addTarget">addTarget</a></code> | *No description.* |
|
|
1459
|
+
|
|
1460
|
+
---
|
|
1461
|
+
|
|
1462
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.toString"></a>
|
|
1463
|
+
|
|
1464
|
+
```typescript
|
|
1465
|
+
public toString(): string
|
|
1466
|
+
```
|
|
1467
|
+
|
|
1468
|
+
Returns a string representation of this construct.
|
|
1469
|
+
|
|
1470
|
+
##### `addTarget` <a name="addTarget" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.addTarget"></a>
|
|
1471
|
+
|
|
1472
|
+
```typescript
|
|
1473
|
+
public addTarget(target: IApplicationLoadBalancerTarget): void
|
|
1474
|
+
```
|
|
1475
|
+
|
|
1476
|
+
###### `target`<sup>Required</sup> <a name="target" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.addTarget.parameter.target"></a>
|
|
1477
|
+
|
|
1478
|
+
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationLoadBalancerTarget
|
|
1479
|
+
|
|
1480
|
+
---
|
|
1481
|
+
|
|
1482
|
+
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
1483
|
+
|
|
1484
|
+
| **Name** | **Description** |
|
|
1485
|
+
| --- | --- |
|
|
1486
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
1487
|
+
|
|
1488
|
+
---
|
|
1489
|
+
|
|
1490
|
+
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.isConstruct"></a>
|
|
1491
|
+
|
|
1492
|
+
```typescript
|
|
1493
|
+
import { ApplicationLoadBalancerV2Base } from '@btc-embedded/cdk-extensions'
|
|
1494
|
+
|
|
1495
|
+
ApplicationLoadBalancerV2Base.isConstruct(x: any)
|
|
1496
|
+
```
|
|
1497
|
+
|
|
1498
|
+
Checks if `x` is a construct.
|
|
1499
|
+
|
|
1500
|
+
Use this method instead of `instanceof` to properly detect `Construct`
|
|
1501
|
+
instances, even when the construct library is symlinked.
|
|
1502
|
+
|
|
1503
|
+
Explanation: in JavaScript, multiple copies of the `constructs` library on
|
|
1504
|
+
disk are seen as independent, completely different libraries. As a
|
|
1505
|
+
consequence, the class `Construct` in each copy of the `constructs` library
|
|
1506
|
+
is seen as a different class, and an instance of one class will not test as
|
|
1507
|
+
`instanceof` the other class. `npm install` will not create installations
|
|
1508
|
+
like this, but users may manually symlink construct libraries together or
|
|
1509
|
+
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
|
1510
|
+
library can be accidentally installed, and `instanceof` will behave
|
|
1511
|
+
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
1512
|
+
this type-testing method instead.
|
|
1513
|
+
|
|
1514
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.isConstruct.parameter.x"></a>
|
|
1515
|
+
|
|
1516
|
+
- *Type:* any
|
|
1517
|
+
|
|
1518
|
+
Any object.
|
|
1519
|
+
|
|
1520
|
+
---
|
|
1521
|
+
|
|
1522
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
1523
|
+
|
|
1524
|
+
| **Name** | **Type** | **Description** |
|
|
1525
|
+
| --- | --- | --- |
|
|
1526
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
1527
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.domainName">domainName</a></code> | <code>string</code> | *No description.* |
|
|
1528
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.targetGroup">targetGroup</a></code> | <code>aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationTargetGroup</code> | *No description.* |
|
|
1529
|
+
|
|
1530
|
+
---
|
|
1531
|
+
|
|
1532
|
+
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.node"></a>
|
|
1533
|
+
|
|
1534
|
+
```typescript
|
|
1535
|
+
public readonly node: Node;
|
|
1536
|
+
```
|
|
1537
|
+
|
|
1538
|
+
- *Type:* constructs.Node
|
|
1539
|
+
|
|
1540
|
+
The tree node.
|
|
1541
|
+
|
|
1542
|
+
---
|
|
1543
|
+
|
|
1544
|
+
##### `domainName`<sup>Required</sup> <a name="domainName" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.domainName"></a>
|
|
1545
|
+
|
|
1546
|
+
```typescript
|
|
1547
|
+
public readonly domainName: string;
|
|
1548
|
+
```
|
|
1549
|
+
|
|
1550
|
+
- *Type:* string
|
|
1551
|
+
|
|
1552
|
+
---
|
|
1553
|
+
|
|
1554
|
+
##### `targetGroup`<sup>Required</sup> <a name="targetGroup" id="@btc-embedded/cdk-extensions.ApplicationLoadBalancerV2Base.property.targetGroup"></a>
|
|
1555
|
+
|
|
1556
|
+
```typescript
|
|
1557
|
+
public readonly targetGroup: IApplicationTargetGroup;
|
|
1558
|
+
```
|
|
1559
|
+
|
|
1560
|
+
- *Type:* aws-cdk-lib.aws_elasticloadbalancingv2.IApplicationTargetGroup
|
|
1561
|
+
|
|
1562
|
+
---
|
|
1563
|
+
|
|
1564
|
+
|
|
1565
|
+
### BTCLogGroup <a name="BTCLogGroup" id="@btc-embedded/cdk-extensions.BTCLogGroup"></a>
|
|
1566
|
+
|
|
1567
|
+
A log group with sensible defaults.
|
|
1568
|
+
|
|
1569
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.BTCLogGroup.Initializer"></a>
|
|
1570
|
+
|
|
1571
|
+
```typescript
|
|
1572
|
+
import { BTCLogGroup } from '@btc-embedded/cdk-extensions'
|
|
1573
|
+
|
|
1574
|
+
new BTCLogGroup(scope: Construct, id: string, options: BTCUniqueLogGroupOptions | BTCLogGroupOptions)
|
|
1575
|
+
```
|
|
1576
|
+
|
|
1577
|
+
| **Name** | **Type** | **Description** |
|
|
1578
|
+
| --- | --- | --- |
|
|
1579
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | *No description.* |
|
|
1580
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.Initializer.parameter.id">id</a></code> | <code>string</code> | *No description.* |
|
|
1581
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.Initializer.parameter.options">options</a></code> | <code><a href="#@btc-embedded/cdk-extensions.BTCUniqueLogGroupOptions">BTCUniqueLogGroupOptions</a> \| <a href="#@btc-embedded/cdk-extensions.BTCLogGroupOptions">BTCLogGroupOptions</a></code> | *No description.* |
|
|
1582
|
+
|
|
1583
|
+
---
|
|
1584
|
+
|
|
1585
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.BTCLogGroup.Initializer.parameter.scope"></a>
|
|
1586
|
+
|
|
1587
|
+
- *Type:* constructs.Construct
|
|
1588
|
+
|
|
1589
|
+
---
|
|
1590
|
+
|
|
1591
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.BTCLogGroup.Initializer.parameter.id"></a>
|
|
1592
|
+
|
|
1593
|
+
- *Type:* string
|
|
1594
|
+
|
|
1595
|
+
---
|
|
1596
|
+
|
|
1597
|
+
##### `options`<sup>Required</sup> <a name="options" id="@btc-embedded/cdk-extensions.BTCLogGroup.Initializer.parameter.options"></a>
|
|
1598
|
+
|
|
1599
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.BTCUniqueLogGroupOptions">BTCUniqueLogGroupOptions</a> | <a href="#@btc-embedded/cdk-extensions.BTCLogGroupOptions">BTCLogGroupOptions</a>
|
|
1600
|
+
|
|
1601
|
+
---
|
|
1602
|
+
|
|
1603
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
|
1604
|
+
|
|
1605
|
+
| **Name** | **Description** |
|
|
1606
|
+
| --- | --- |
|
|
1607
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
1608
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.applyRemovalPolicy">applyRemovalPolicy</a></code> | Apply the given removal policy to this resource. |
|
|
1609
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addMetricFilter">addMetricFilter</a></code> | Create a new Metric Filter on this Log Group. |
|
|
1610
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addStream">addStream</a></code> | Create a new Log Stream for this Log Group. |
|
|
1611
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addSubscriptionFilter">addSubscriptionFilter</a></code> | Create a new Subscription Filter on this Log Group. |
|
|
1612
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addToResourcePolicy">addToResourcePolicy</a></code> | Adds a statement to the resource policy associated with this log group. |
|
|
1613
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.addTransformer">addTransformer</a></code> | Create a new Transformer on this Log Group. |
|
|
1614
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.extractMetric">extractMetric</a></code> | Extract a metric from structured log events in the LogGroup. |
|
|
1615
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.grant">grant</a></code> | Give the indicated permissions on this log group and all streams. |
|
|
1616
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.grantRead">grantRead</a></code> | Give permissions to read and filter events from this log group. |
|
|
1617
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.grantWrite">grantWrite</a></code> | Give permissions to create and write to streams in this log group. |
|
|
1618
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.logGroupPhysicalName">logGroupPhysicalName</a></code> | Public method to get the physical name of this log group. |
|
|
1619
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.metric">metric</a></code> | Creates a CloudWatch metric for this log group. |
|
|
1620
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.metricIncomingBytes">metricIncomingBytes</a></code> | Creates a CloudWatch metric for the volume of incoming log data in bytes to this log group. |
|
|
1621
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.metricIncomingLogEvents">metricIncomingLogEvents</a></code> | Creates a CloudWatch metric for the number of incoming log events to this log group. |
|
|
1622
|
+
|
|
1623
|
+
---
|
|
1624
|
+
|
|
1625
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.BTCLogGroup.toString"></a>
|
|
1626
|
+
|
|
1627
|
+
```typescript
|
|
1628
|
+
public toString(): string
|
|
1629
|
+
```
|
|
1630
|
+
|
|
1631
|
+
Returns a string representation of this construct.
|
|
1632
|
+
|
|
1633
|
+
##### `applyRemovalPolicy` <a name="applyRemovalPolicy" id="@btc-embedded/cdk-extensions.BTCLogGroup.applyRemovalPolicy"></a>
|
|
1634
|
+
|
|
1635
|
+
```typescript
|
|
1636
|
+
public applyRemovalPolicy(policy: RemovalPolicy): void
|
|
1637
|
+
```
|
|
1638
|
+
|
|
1639
|
+
Apply the given removal policy to this resource.
|
|
1640
|
+
|
|
1641
|
+
The Removal Policy controls what happens to this resource when it stops
|
|
1642
|
+
being managed by CloudFormation, either because you've removed it from the
|
|
1643
|
+
CDK application or because you've made a change that requires the resource
|
|
1644
|
+
to be replaced.
|
|
1645
|
+
|
|
1646
|
+
The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS
|
|
1647
|
+
account for data recovery and cleanup later (`RemovalPolicy.RETAIN`).
|
|
1648
|
+
|
|
1649
|
+
###### `policy`<sup>Required</sup> <a name="policy" id="@btc-embedded/cdk-extensions.BTCLogGroup.applyRemovalPolicy.parameter.policy"></a>
|
|
1650
|
+
|
|
1651
|
+
- *Type:* aws-cdk-lib.RemovalPolicy
|
|
1067
1652
|
|
|
1068
1653
|
---
|
|
1069
1654
|
|
|
@@ -1160,6 +1745,30 @@ The policy statement to add.
|
|
|
1160
1745
|
|
|
1161
1746
|
---
|
|
1162
1747
|
|
|
1748
|
+
##### `addTransformer` <a name="addTransformer" id="@btc-embedded/cdk-extensions.BTCLogGroup.addTransformer"></a>
|
|
1749
|
+
|
|
1750
|
+
```typescript
|
|
1751
|
+
public addTransformer(id: string, props: TransformerOptions): Transformer
|
|
1752
|
+
```
|
|
1753
|
+
|
|
1754
|
+
Create a new Transformer on this Log Group.
|
|
1755
|
+
|
|
1756
|
+
###### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.BTCLogGroup.addTransformer.parameter.id"></a>
|
|
1757
|
+
|
|
1758
|
+
- *Type:* string
|
|
1759
|
+
|
|
1760
|
+
Unique identifier for the construct in its parent.
|
|
1761
|
+
|
|
1762
|
+
---
|
|
1763
|
+
|
|
1764
|
+
###### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.BTCLogGroup.addTransformer.parameter.props"></a>
|
|
1765
|
+
|
|
1766
|
+
- *Type:* aws-cdk-lib.aws_logs.TransformerOptions
|
|
1767
|
+
|
|
1768
|
+
Properties for creating the Transformer.
|
|
1769
|
+
|
|
1770
|
+
---
|
|
1771
|
+
|
|
1163
1772
|
##### `extractMetric` <a name="extractMetric" id="@btc-embedded/cdk-extensions.BTCLogGroup.extractMetric"></a>
|
|
1164
1773
|
|
|
1165
1774
|
```typescript
|
|
@@ -1480,10 +2089,12 @@ BTCLogGroup.fromBasePlatform(scope: Construct, id: string, __2: BTCLogGroupLooku
|
|
|
1480
2089
|
| **Name** | **Type** | **Description** |
|
|
1481
2090
|
| --- | --- | --- |
|
|
1482
2091
|
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
1483
|
-
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.env">env</a></code> | <code>aws-cdk-lib.ResourceEnvironment</code> | The environment this resource belongs to. |
|
|
2092
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.env">env</a></code> | <code>aws-cdk-lib.interfaces.ResourceEnvironment</code> | The environment this resource belongs to. |
|
|
1484
2093
|
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.stack">stack</a></code> | <code>aws-cdk-lib.Stack</code> | The stack in which this resource is defined. |
|
|
2094
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.grants">grants</a></code> | <code>aws-cdk-lib.aws_logs.LogGroupGrants</code> | Collection of grant methods for a LogGroup. |
|
|
1485
2095
|
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.logGroupArn">logGroupArn</a></code> | <code>string</code> | The ARN of this log group. |
|
|
1486
2096
|
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.logGroupName">logGroupName</a></code> | <code>string</code> | The name of this log group. |
|
|
2097
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.logGroupRef">logGroupRef</a></code> | <code>aws-cdk-lib.interfaces.aws_logs.LogGroupReference</code> | A reference to a LogGroup resource. |
|
|
1487
2098
|
|
|
1488
2099
|
---
|
|
1489
2100
|
|
|
@@ -1505,16 +2116,17 @@ The tree node.
|
|
|
1505
2116
|
public readonly env: ResourceEnvironment;
|
|
1506
2117
|
```
|
|
1507
2118
|
|
|
1508
|
-
- *Type:* aws-cdk-lib.ResourceEnvironment
|
|
2119
|
+
- *Type:* aws-cdk-lib.interfaces.ResourceEnvironment
|
|
1509
2120
|
|
|
1510
2121
|
The environment this resource belongs to.
|
|
1511
2122
|
|
|
1512
|
-
For resources that are created and managed
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
(those obtained from
|
|
1517
|
-
|
|
2123
|
+
For resources that are created and managed in a Stack (those created by
|
|
2124
|
+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
|
|
2125
|
+
is always the same as the environment of the stack they belong to.
|
|
2126
|
+
|
|
2127
|
+
For referenced resources (those obtained from referencing methods like
|
|
2128
|
+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
|
|
2129
|
+
different than the stack they were imported into.
|
|
1518
2130
|
|
|
1519
2131
|
---
|
|
1520
2132
|
|
|
@@ -1530,6 +2142,18 @@ The stack in which this resource is defined.
|
|
|
1530
2142
|
|
|
1531
2143
|
---
|
|
1532
2144
|
|
|
2145
|
+
##### `grants`<sup>Required</sup> <a name="grants" id="@btc-embedded/cdk-extensions.BTCLogGroup.property.grants"></a>
|
|
2146
|
+
|
|
2147
|
+
```typescript
|
|
2148
|
+
public readonly grants: LogGroupGrants;
|
|
2149
|
+
```
|
|
2150
|
+
|
|
2151
|
+
- *Type:* aws-cdk-lib.aws_logs.LogGroupGrants
|
|
2152
|
+
|
|
2153
|
+
Collection of grant methods for a LogGroup.
|
|
2154
|
+
|
|
2155
|
+
---
|
|
2156
|
+
|
|
1533
2157
|
##### `logGroupArn`<sup>Required</sup> <a name="logGroupArn" id="@btc-embedded/cdk-extensions.BTCLogGroup.property.logGroupArn"></a>
|
|
1534
2158
|
|
|
1535
2159
|
```typescript
|
|
@@ -1554,6 +2178,37 @@ The name of this log group.
|
|
|
1554
2178
|
|
|
1555
2179
|
---
|
|
1556
2180
|
|
|
2181
|
+
##### `logGroupRef`<sup>Required</sup> <a name="logGroupRef" id="@btc-embedded/cdk-extensions.BTCLogGroup.property.logGroupRef"></a>
|
|
2182
|
+
|
|
2183
|
+
```typescript
|
|
2184
|
+
public readonly logGroupRef: LogGroupReference;
|
|
2185
|
+
```
|
|
2186
|
+
|
|
2187
|
+
- *Type:* aws-cdk-lib.interfaces.aws_logs.LogGroupReference
|
|
2188
|
+
|
|
2189
|
+
A reference to a LogGroup resource.
|
|
2190
|
+
|
|
2191
|
+
---
|
|
2192
|
+
|
|
2193
|
+
#### Constants <a name="Constants" id="Constants"></a>
|
|
2194
|
+
|
|
2195
|
+
| **Name** | **Type** | **Description** |
|
|
2196
|
+
| --- | --- | --- |
|
|
2197
|
+
| <code><a href="#@btc-embedded/cdk-extensions.BTCLogGroup.property.PROPERTY_INJECTION_ID">PROPERTY_INJECTION_ID</a></code> | <code>string</code> | Uniquely identifies this class. |
|
|
2198
|
+
|
|
2199
|
+
---
|
|
2200
|
+
|
|
2201
|
+
##### `PROPERTY_INJECTION_ID`<sup>Required</sup> <a name="PROPERTY_INJECTION_ID" id="@btc-embedded/cdk-extensions.BTCLogGroup.property.PROPERTY_INJECTION_ID"></a>
|
|
2202
|
+
|
|
2203
|
+
```typescript
|
|
2204
|
+
public readonly PROPERTY_INJECTION_ID: string;
|
|
2205
|
+
```
|
|
2206
|
+
|
|
2207
|
+
- *Type:* string
|
|
2208
|
+
|
|
2209
|
+
Uniquely identifies this class.
|
|
2210
|
+
|
|
2211
|
+
---
|
|
1557
2212
|
|
|
1558
2213
|
### CognitoUserPool <a name="CognitoUserPool" id="@btc-embedded/cdk-extensions.CognitoUserPool"></a>
|
|
1559
2214
|
|
|
@@ -3485,15 +4140,18 @@ new S3Bucket(scope: Construct, id: string, props?: BucketProps)
|
|
|
3485
4140
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.addEventNotification">addEventNotification</a></code> | Adds a bucket notification event destination. |
|
|
3486
4141
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.addObjectCreatedNotification">addObjectCreatedNotification</a></code> | Subscribes a destination to receive notifications when an object is created in the bucket. |
|
|
3487
4142
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.addObjectRemovedNotification">addObjectRemovedNotification</a></code> | Subscribes a destination to receive notifications when an object is removed from the bucket. |
|
|
4143
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.addReplicationPolicy">addReplicationPolicy</a></code> | Function to add required permissions to the destination bucket for cross account replication. |
|
|
3488
4144
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.addToResourcePolicy">addToResourcePolicy</a></code> | Adds a statement to the resource policy for a principal (i.e. account/role/service) to perform actions on this bucket and/or its contents. Use `bucketArn` and `arnForObjects(keys)` to obtain ARNs for this bucket or objects. |
|
|
3489
4145
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.arnForObjects">arnForObjects</a></code> | Returns an ARN that represents all objects within the bucket that match the key pattern specified. |
|
|
3490
4146
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.enableEventBridgeNotification">enableEventBridgeNotification</a></code> | Enables event bridge notification, causing all events below to be sent to EventBridge:. |
|
|
3491
4147
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantDelete">grantDelete</a></code> | Grants s3:DeleteObject* permission to an IAM principal for objects in this bucket. |
|
|
4148
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantOnKey">grantOnKey</a></code> | Gives permissions to a grantable entity to perform actions on the encryption key. |
|
|
3492
4149
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantPublicAccess">grantPublicAccess</a></code> | Allows unrestricted access to objects from this bucket. |
|
|
3493
4150
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantPut">grantPut</a></code> | Grants s3:PutObject* and s3:Abort* permissions for this bucket to an IAM principal. |
|
|
3494
4151
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantPutAcl">grantPutAcl</a></code> | Grant the given IAM identity permissions to modify the ACLs of objects in the given Bucket. |
|
|
3495
4152
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantRead">grantRead</a></code> | Grant read permissions for this bucket and it's contents to an IAM principal (Role/Group/User). |
|
|
3496
4153
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantReadWrite">grantReadWrite</a></code> | Grants read/write permissions for this bucket and it's contents to an IAM principal (Role/Group/User). |
|
|
4154
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantReplicationPermission">grantReplicationPermission</a></code> | Grant replication permission to a principal. This method allows the principal to perform replication operations on this bucket. |
|
|
3497
4155
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.grantWrite">grantWrite</a></code> | Grant write permissions to this bucket to an IAM principal. |
|
|
3498
4156
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.onCloudTrailEvent">onCloudTrailEvent</a></code> | Define a CloudWatch event that triggers when something happens to this repository. |
|
|
3499
4157
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.onCloudTrailPutObject">onCloudTrailPutObject</a></code> | Defines an AWS CloudWatch event that triggers when an object is uploaded to the specified paths (keys) in this bucket using the PutObject API call. |
|
|
@@ -3640,6 +4298,36 @@ Filters (see onEvent).
|
|
|
3640
4298
|
|
|
3641
4299
|
---
|
|
3642
4300
|
|
|
4301
|
+
##### `addReplicationPolicy` <a name="addReplicationPolicy" id="@btc-embedded/cdk-extensions.S3Bucket.addReplicationPolicy"></a>
|
|
4302
|
+
|
|
4303
|
+
```typescript
|
|
4304
|
+
public addReplicationPolicy(roleArn: string, accessControlTransition?: boolean, account?: string): void
|
|
4305
|
+
```
|
|
4306
|
+
|
|
4307
|
+
Function to add required permissions to the destination bucket for cross account replication.
|
|
4308
|
+
|
|
4309
|
+
These permissions will be added as a resource based policy on the bucket
|
|
4310
|
+
|
|
4311
|
+
> [https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accesscontroltranslation.html](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-accesscontroltranslation.html)
|
|
4312
|
+
|
|
4313
|
+
###### `roleArn`<sup>Required</sup> <a name="roleArn" id="@btc-embedded/cdk-extensions.S3Bucket.addReplicationPolicy.parameter.roleArn"></a>
|
|
4314
|
+
|
|
4315
|
+
- *Type:* string
|
|
4316
|
+
|
|
4317
|
+
---
|
|
4318
|
+
|
|
4319
|
+
###### `accessControlTransition`<sup>Optional</sup> <a name="accessControlTransition" id="@btc-embedded/cdk-extensions.S3Bucket.addReplicationPolicy.parameter.accessControlTransition"></a>
|
|
4320
|
+
|
|
4321
|
+
- *Type:* boolean
|
|
4322
|
+
|
|
4323
|
+
---
|
|
4324
|
+
|
|
4325
|
+
###### `account`<sup>Optional</sup> <a name="account" id="@btc-embedded/cdk-extensions.S3Bucket.addReplicationPolicy.parameter.account"></a>
|
|
4326
|
+
|
|
4327
|
+
- *Type:* string
|
|
4328
|
+
|
|
4329
|
+
---
|
|
4330
|
+
|
|
3643
4331
|
##### `addToResourcePolicy` <a name="addToResourcePolicy" id="@btc-embedded/cdk-extensions.S3Bucket.addToResourcePolicy"></a>
|
|
3644
4332
|
|
|
3645
4333
|
```typescript
|
|
@@ -3727,6 +4415,26 @@ Parameter type is `any` but `string` should be passed in.
|
|
|
3727
4415
|
|
|
3728
4416
|
---
|
|
3729
4417
|
|
|
4418
|
+
##### `grantOnKey` <a name="grantOnKey" id="@btc-embedded/cdk-extensions.S3Bucket.grantOnKey"></a>
|
|
4419
|
+
|
|
4420
|
+
```typescript
|
|
4421
|
+
public grantOnKey(grantee: IGrantable, actions: ...string[]): GrantOnKeyResult
|
|
4422
|
+
```
|
|
4423
|
+
|
|
4424
|
+
Gives permissions to a grantable entity to perform actions on the encryption key.
|
|
4425
|
+
|
|
4426
|
+
###### `grantee`<sup>Required</sup> <a name="grantee" id="@btc-embedded/cdk-extensions.S3Bucket.grantOnKey.parameter.grantee"></a>
|
|
4427
|
+
|
|
4428
|
+
- *Type:* aws-cdk-lib.aws_iam.IGrantable
|
|
4429
|
+
|
|
4430
|
+
---
|
|
4431
|
+
|
|
4432
|
+
###### `actions`<sup>Required</sup> <a name="actions" id="@btc-embedded/cdk-extensions.S3Bucket.grantOnKey.parameter.actions"></a>
|
|
4433
|
+
|
|
4434
|
+
- *Type:* ...string[]
|
|
4435
|
+
|
|
4436
|
+
---
|
|
4437
|
+
|
|
3730
4438
|
##### `grantPublicAccess` <a name="grantPublicAccess" id="@btc-embedded/cdk-extensions.S3Bucket.grantPublicAccess"></a>
|
|
3731
4439
|
|
|
3732
4440
|
```typescript
|
|
@@ -3885,6 +4593,33 @@ use the `grantPutAcl` method.
|
|
|
3885
4593
|
|
|
3886
4594
|
---
|
|
3887
4595
|
|
|
4596
|
+
##### `grantReplicationPermission` <a name="grantReplicationPermission" id="@btc-embedded/cdk-extensions.S3Bucket.grantReplicationPermission"></a>
|
|
4597
|
+
|
|
4598
|
+
```typescript
|
|
4599
|
+
public grantReplicationPermission(identity: IGrantable, props: GrantReplicationPermissionProps): Grant
|
|
4600
|
+
```
|
|
4601
|
+
|
|
4602
|
+
Grant replication permission to a principal. This method allows the principal to perform replication operations on this bucket.
|
|
4603
|
+
|
|
4604
|
+
Note that when calling this function for source or destination buckets that support KMS encryption,
|
|
4605
|
+
you need to specify the KMS key for encryption and the KMS key for decryption, respectively.
|
|
4606
|
+
|
|
4607
|
+
###### `identity`<sup>Required</sup> <a name="identity" id="@btc-embedded/cdk-extensions.S3Bucket.grantReplicationPermission.parameter.identity"></a>
|
|
4608
|
+
|
|
4609
|
+
- *Type:* aws-cdk-lib.aws_iam.IGrantable
|
|
4610
|
+
|
|
4611
|
+
The principal to grant replication permission to.
|
|
4612
|
+
|
|
4613
|
+
---
|
|
4614
|
+
|
|
4615
|
+
###### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.S3Bucket.grantReplicationPermission.parameter.props"></a>
|
|
4616
|
+
|
|
4617
|
+
- *Type:* aws-cdk-lib.aws_s3.GrantReplicationPermissionProps
|
|
4618
|
+
|
|
4619
|
+
The properties of the replication source and destination buckets.
|
|
4620
|
+
|
|
4621
|
+
---
|
|
4622
|
+
|
|
3888
4623
|
##### `grantWrite` <a name="grantWrite" id="@btc-embedded/cdk-extensions.S3Bucket.grantWrite"></a>
|
|
3889
4624
|
|
|
3890
4625
|
```typescript
|
|
@@ -4403,18 +5138,22 @@ allow legacy bucket naming style, default is false.
|
|
|
4403
5138
|
| **Name** | **Type** | **Description** |
|
|
4404
5139
|
| --- | --- | --- |
|
|
4405
5140
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
4406
|
-
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.env">env</a></code> | <code>aws-cdk-lib.ResourceEnvironment</code> | The environment this resource belongs to. |
|
|
5141
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.env">env</a></code> | <code>aws-cdk-lib.interfaces.ResourceEnvironment</code> | The environment this resource belongs to. |
|
|
4407
5142
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.stack">stack</a></code> | <code>aws-cdk-lib.Stack</code> | The stack in which this resource is defined. |
|
|
4408
5143
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketArn">bucketArn</a></code> | <code>string</code> | The ARN of the bucket. |
|
|
4409
5144
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketDomainName">bucketDomainName</a></code> | <code>string</code> | The IPv4 DNS name of the specified bucket. |
|
|
4410
5145
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketDualStackDomainName">bucketDualStackDomainName</a></code> | <code>string</code> | The IPv6 DNS name of the specified bucket. |
|
|
4411
5146
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketName">bucketName</a></code> | <code>string</code> | The name of the bucket. |
|
|
5147
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketRef">bucketRef</a></code> | <code>aws-cdk-lib.interfaces.aws_s3.BucketReference</code> | A reference to a Bucket resource. |
|
|
4412
5148
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketRegionalDomainName">bucketRegionalDomainName</a></code> | <code>string</code> | The regional domain name of the specified bucket. |
|
|
4413
5149
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketWebsiteDomainName">bucketWebsiteDomainName</a></code> | <code>string</code> | The Domain name of the static website. |
|
|
4414
5150
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.bucketWebsiteUrl">bucketWebsiteUrl</a></code> | <code>string</code> | The URL of the static website. |
|
|
4415
5151
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.encryptionKey">encryptionKey</a></code> | <code>aws-cdk-lib.aws_kms.IKey</code> | Optional KMS encryption key associated with this bucket. |
|
|
4416
5152
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.isWebsite">isWebsite</a></code> | <code>boolean</code> | If this bucket has been configured for static website hosting. |
|
|
5153
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.grants">grants</a></code> | <code>aws-cdk-lib.aws_s3.BucketGrants</code> | Collection of grant methods for a Bucket. |
|
|
5154
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.disallowPublicAccess">disallowPublicAccess</a></code> | <code>boolean</code> | Whether to disallow public access. |
|
|
4417
5155
|
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.policy">policy</a></code> | <code>aws-cdk-lib.aws_s3.BucketPolicy</code> | The resource policy associated with this bucket. |
|
|
5156
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.replicationRoleArn">replicationRoleArn</a></code> | <code>string</code> | Role used to set up permissions on this bucket for replication. |
|
|
4418
5157
|
|
|
4419
5158
|
---
|
|
4420
5159
|
|
|
@@ -4436,16 +5175,17 @@ The tree node.
|
|
|
4436
5175
|
public readonly env: ResourceEnvironment;
|
|
4437
5176
|
```
|
|
4438
5177
|
|
|
4439
|
-
- *Type:* aws-cdk-lib.ResourceEnvironment
|
|
5178
|
+
- *Type:* aws-cdk-lib.interfaces.ResourceEnvironment
|
|
4440
5179
|
|
|
4441
5180
|
The environment this resource belongs to.
|
|
4442
5181
|
|
|
4443
|
-
For resources that are created and managed
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
(those obtained from
|
|
4448
|
-
|
|
5182
|
+
For resources that are created and managed in a Stack (those created by
|
|
5183
|
+
creating new class instances like `new Role()`, `new Bucket()`, etc.), this
|
|
5184
|
+
is always the same as the environment of the stack they belong to.
|
|
5185
|
+
|
|
5186
|
+
For referenced resources (those obtained from referencing methods like
|
|
5187
|
+
`Role.fromRoleArn()`, `Bucket.fromBucketName()`, etc.), they might be
|
|
5188
|
+
different than the stack they were imported into.
|
|
4449
5189
|
|
|
4450
5190
|
---
|
|
4451
5191
|
|
|
@@ -4509,6 +5249,18 @@ The name of the bucket.
|
|
|
4509
5249
|
|
|
4510
5250
|
---
|
|
4511
5251
|
|
|
5252
|
+
##### `bucketRef`<sup>Required</sup> <a name="bucketRef" id="@btc-embedded/cdk-extensions.S3Bucket.property.bucketRef"></a>
|
|
5253
|
+
|
|
5254
|
+
```typescript
|
|
5255
|
+
public readonly bucketRef: BucketReference;
|
|
5256
|
+
```
|
|
5257
|
+
|
|
5258
|
+
- *Type:* aws-cdk-lib.interfaces.aws_s3.BucketReference
|
|
5259
|
+
|
|
5260
|
+
A reference to a Bucket resource.
|
|
5261
|
+
|
|
5262
|
+
---
|
|
5263
|
+
|
|
4512
5264
|
##### `bucketRegionalDomainName`<sup>Required</sup> <a name="bucketRegionalDomainName" id="@btc-embedded/cdk-extensions.S3Bucket.property.bucketRegionalDomainName"></a>
|
|
4513
5265
|
|
|
4514
5266
|
```typescript
|
|
@@ -4569,6 +5321,30 @@ If this bucket has been configured for static website hosting.
|
|
|
4569
5321
|
|
|
4570
5322
|
---
|
|
4571
5323
|
|
|
5324
|
+
##### `grants`<sup>Required</sup> <a name="grants" id="@btc-embedded/cdk-extensions.S3Bucket.property.grants"></a>
|
|
5325
|
+
|
|
5326
|
+
```typescript
|
|
5327
|
+
public readonly grants: BucketGrants;
|
|
5328
|
+
```
|
|
5329
|
+
|
|
5330
|
+
- *Type:* aws-cdk-lib.aws_s3.BucketGrants
|
|
5331
|
+
|
|
5332
|
+
Collection of grant methods for a Bucket.
|
|
5333
|
+
|
|
5334
|
+
---
|
|
5335
|
+
|
|
5336
|
+
##### `disallowPublicAccess`<sup>Optional</sup> <a name="disallowPublicAccess" id="@btc-embedded/cdk-extensions.S3Bucket.property.disallowPublicAccess"></a>
|
|
5337
|
+
|
|
5338
|
+
```typescript
|
|
5339
|
+
public readonly disallowPublicAccess: boolean;
|
|
5340
|
+
```
|
|
5341
|
+
|
|
5342
|
+
- *Type:* boolean
|
|
5343
|
+
|
|
5344
|
+
Whether to disallow public access.
|
|
5345
|
+
|
|
5346
|
+
---
|
|
5347
|
+
|
|
4572
5348
|
##### `policy`<sup>Optional</sup> <a name="policy" id="@btc-embedded/cdk-extensions.S3Bucket.property.policy"></a>
|
|
4573
5349
|
|
|
4574
5350
|
```typescript
|
|
@@ -4584,6 +5360,37 @@ first call to addToResourcePolicy(s).
|
|
|
4584
5360
|
|
|
4585
5361
|
---
|
|
4586
5362
|
|
|
5363
|
+
##### `replicationRoleArn`<sup>Optional</sup> <a name="replicationRoleArn" id="@btc-embedded/cdk-extensions.S3Bucket.property.replicationRoleArn"></a>
|
|
5364
|
+
|
|
5365
|
+
```typescript
|
|
5366
|
+
public readonly replicationRoleArn: string;
|
|
5367
|
+
```
|
|
5368
|
+
|
|
5369
|
+
- *Type:* string
|
|
5370
|
+
|
|
5371
|
+
Role used to set up permissions on this bucket for replication.
|
|
5372
|
+
|
|
5373
|
+
---
|
|
5374
|
+
|
|
5375
|
+
#### Constants <a name="Constants" id="Constants"></a>
|
|
5376
|
+
|
|
5377
|
+
| **Name** | **Type** | **Description** |
|
|
5378
|
+
| --- | --- | --- |
|
|
5379
|
+
| <code><a href="#@btc-embedded/cdk-extensions.S3Bucket.property.PROPERTY_INJECTION_ID">PROPERTY_INJECTION_ID</a></code> | <code>string</code> | Uniquely identifies this class. |
|
|
5380
|
+
|
|
5381
|
+
---
|
|
5382
|
+
|
|
5383
|
+
##### `PROPERTY_INJECTION_ID`<sup>Required</sup> <a name="PROPERTY_INJECTION_ID" id="@btc-embedded/cdk-extensions.S3Bucket.property.PROPERTY_INJECTION_ID"></a>
|
|
5384
|
+
|
|
5385
|
+
```typescript
|
|
5386
|
+
public readonly PROPERTY_INJECTION_ID: string;
|
|
5387
|
+
```
|
|
5388
|
+
|
|
5389
|
+
- *Type:* string
|
|
5390
|
+
|
|
5391
|
+
Uniquely identifies this class.
|
|
5392
|
+
|
|
5393
|
+
---
|
|
4587
5394
|
|
|
4588
5395
|
### SecureRestApi <a name="SecureRestApi" id="@btc-embedded/cdk-extensions.SecureRestApi"></a>
|
|
4589
5396
|
|
|
@@ -4884,43 +5691,243 @@ The tree node.
|
|
|
4884
5691
|
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.Vpc.Initializer"></a>
|
|
4885
5692
|
|
|
4886
5693
|
```typescript
|
|
4887
|
-
import { Vpc } from '@btc-embedded/cdk-extensions'
|
|
5694
|
+
import { Vpc } from '@btc-embedded/cdk-extensions'
|
|
5695
|
+
|
|
5696
|
+
new Vpc(scope: Construct, id: string, props: VpcProps)
|
|
5697
|
+
```
|
|
5698
|
+
|
|
5699
|
+
| **Name** | **Type** | **Description** |
|
|
5700
|
+
| --- | --- | --- |
|
|
5701
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | The parent construct this is part of. |
|
|
5702
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.Initializer.parameter.id">id</a></code> | <code>string</code> | Id of this construct for Cloudformation. |
|
|
5703
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.VpcProps">VpcProps</a></code> | Properties allowing to set a predefined VPCName, IPAdressBlog, maxNumber of AZs and decision wether to create a KMSKey for usage with the Exec extension. |
|
|
5704
|
+
|
|
5705
|
+
---
|
|
5706
|
+
|
|
5707
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.Vpc.Initializer.parameter.scope"></a>
|
|
5708
|
+
|
|
5709
|
+
- *Type:* constructs.Construct
|
|
5710
|
+
|
|
5711
|
+
The parent construct this is part of.
|
|
5712
|
+
|
|
5713
|
+
---
|
|
5714
|
+
|
|
5715
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.Vpc.Initializer.parameter.id"></a>
|
|
5716
|
+
|
|
5717
|
+
- *Type:* string
|
|
5718
|
+
|
|
5719
|
+
Id of this construct for Cloudformation.
|
|
5720
|
+
|
|
5721
|
+
---
|
|
5722
|
+
|
|
5723
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.Vpc.Initializer.parameter.props"></a>
|
|
5724
|
+
|
|
5725
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.VpcProps">VpcProps</a>
|
|
5726
|
+
|
|
5727
|
+
Properties allowing to set a predefined VPCName, IPAdressBlog, maxNumber of AZs and decision wether to create a KMSKey for usage with the Exec extension.
|
|
5728
|
+
|
|
5729
|
+
Defaults to an empty object creating a
|
|
5730
|
+
dedicated VPC, with max 2 AZS and NO Key for Exec
|
|
5731
|
+
|
|
5732
|
+
---
|
|
5733
|
+
|
|
5734
|
+
#### Methods <a name="Methods" id="Methods"></a>
|
|
5735
|
+
|
|
5736
|
+
| **Name** | **Description** |
|
|
5737
|
+
| --- | --- |
|
|
5738
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
5739
|
+
|
|
5740
|
+
---
|
|
5741
|
+
|
|
5742
|
+
##### ~~`toString`~~ <a name="toString" id="@btc-embedded/cdk-extensions.Vpc.toString"></a>
|
|
5743
|
+
|
|
5744
|
+
```typescript
|
|
5745
|
+
public toString(): string
|
|
5746
|
+
```
|
|
5747
|
+
|
|
5748
|
+
Returns a string representation of this construct.
|
|
5749
|
+
|
|
5750
|
+
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
5751
|
+
|
|
5752
|
+
| **Name** | **Description** |
|
|
5753
|
+
| --- | --- |
|
|
5754
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
5755
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.fromBasePlatform">fromBasePlatform</a></code> | *No description.* |
|
|
5756
|
+
|
|
5757
|
+
---
|
|
5758
|
+
|
|
5759
|
+
##### ~~`isConstruct`~~ <a name="isConstruct" id="@btc-embedded/cdk-extensions.Vpc.isConstruct"></a>
|
|
5760
|
+
|
|
5761
|
+
```typescript
|
|
5762
|
+
import { Vpc } from '@btc-embedded/cdk-extensions'
|
|
5763
|
+
|
|
5764
|
+
Vpc.isConstruct(x: any)
|
|
5765
|
+
```
|
|
5766
|
+
|
|
5767
|
+
Checks if `x` is a construct.
|
|
5768
|
+
|
|
5769
|
+
Use this method instead of `instanceof` to properly detect `Construct`
|
|
5770
|
+
instances, even when the construct library is symlinked.
|
|
5771
|
+
|
|
5772
|
+
Explanation: in JavaScript, multiple copies of the `constructs` library on
|
|
5773
|
+
disk are seen as independent, completely different libraries. As a
|
|
5774
|
+
consequence, the class `Construct` in each copy of the `constructs` library
|
|
5775
|
+
is seen as a different class, and an instance of one class will not test as
|
|
5776
|
+
`instanceof` the other class. `npm install` will not create installations
|
|
5777
|
+
like this, but users may manually symlink construct libraries together or
|
|
5778
|
+
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
|
5779
|
+
library can be accidentally installed, and `instanceof` will behave
|
|
5780
|
+
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
5781
|
+
this type-testing method instead.
|
|
5782
|
+
|
|
5783
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.Vpc.isConstruct.parameter.x"></a>
|
|
5784
|
+
|
|
5785
|
+
- *Type:* any
|
|
5786
|
+
|
|
5787
|
+
Any object.
|
|
5788
|
+
|
|
5789
|
+
---
|
|
5790
|
+
|
|
5791
|
+
##### ~~`fromBasePlatform`~~ <a name="fromBasePlatform" id="@btc-embedded/cdk-extensions.Vpc.fromBasePlatform"></a>
|
|
5792
|
+
|
|
5793
|
+
```typescript
|
|
5794
|
+
import { Vpc } from '@btc-embedded/cdk-extensions'
|
|
5795
|
+
|
|
5796
|
+
Vpc.fromBasePlatform(scope: Construct, id: string, stackName: string)
|
|
5797
|
+
```
|
|
5798
|
+
|
|
5799
|
+
###### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.Vpc.fromBasePlatform.parameter.scope"></a>
|
|
5800
|
+
|
|
5801
|
+
- *Type:* constructs.Construct
|
|
5802
|
+
|
|
5803
|
+
---
|
|
5804
|
+
|
|
5805
|
+
###### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.Vpc.fromBasePlatform.parameter.id"></a>
|
|
5806
|
+
|
|
5807
|
+
- *Type:* string
|
|
5808
|
+
|
|
5809
|
+
---
|
|
5810
|
+
|
|
5811
|
+
###### `stackName`<sup>Required</sup> <a name="stackName" id="@btc-embedded/cdk-extensions.Vpc.fromBasePlatform.parameter.stackName"></a>
|
|
5812
|
+
|
|
5813
|
+
- *Type:* string
|
|
5814
|
+
|
|
5815
|
+
---
|
|
5816
|
+
|
|
5817
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
5818
|
+
|
|
5819
|
+
| **Name** | **Type** | **Description** |
|
|
5820
|
+
| --- | --- | --- |
|
|
5821
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
5822
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.clusterName">clusterName</a></code> | <code>string</code> | *No description.* |
|
|
5823
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.fqdn">fqdn</a></code> | <code>string</code> | *No description.* |
|
|
5824
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.cluster">cluster</a></code> | <code>aws-cdk-lib.aws_ecs.Cluster</code> | *No description.* |
|
|
5825
|
+
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.vpcInstance">vpcInstance</a></code> | <code>aws-cdk-lib.aws_ec2.IVpc</code> | *No description.* |
|
|
5826
|
+
|
|
5827
|
+
---
|
|
5828
|
+
|
|
5829
|
+
##### ~~`node`~~<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.Vpc.property.node"></a>
|
|
5830
|
+
|
|
5831
|
+
- *Deprecated:* This class is deprecated. Use {@link VpcV2 } and {@link EcsCluster } classes instead.
|
|
5832
|
+
|
|
5833
|
+
```typescript
|
|
5834
|
+
public readonly node: Node;
|
|
5835
|
+
```
|
|
5836
|
+
|
|
5837
|
+
- *Type:* constructs.Node
|
|
5838
|
+
|
|
5839
|
+
The tree node.
|
|
5840
|
+
|
|
5841
|
+
---
|
|
5842
|
+
|
|
5843
|
+
##### ~~`clusterName`~~<sup>Required</sup> <a name="clusterName" id="@btc-embedded/cdk-extensions.Vpc.property.clusterName"></a>
|
|
5844
|
+
|
|
5845
|
+
- *Deprecated:* This class is deprecated. Use {@link VpcV2 } and {@link EcsCluster } classes instead.
|
|
5846
|
+
|
|
5847
|
+
```typescript
|
|
5848
|
+
public readonly clusterName: string;
|
|
5849
|
+
```
|
|
5850
|
+
|
|
5851
|
+
- *Type:* string
|
|
5852
|
+
|
|
5853
|
+
---
|
|
5854
|
+
|
|
5855
|
+
##### ~~`fqdn`~~<sup>Required</sup> <a name="fqdn" id="@btc-embedded/cdk-extensions.Vpc.property.fqdn"></a>
|
|
5856
|
+
|
|
5857
|
+
- *Deprecated:* This class is deprecated. Use {@link VpcV2 } and {@link EcsCluster } classes instead.
|
|
5858
|
+
|
|
5859
|
+
```typescript
|
|
5860
|
+
public readonly fqdn: string;
|
|
5861
|
+
```
|
|
5862
|
+
|
|
5863
|
+
- *Type:* string
|
|
5864
|
+
|
|
5865
|
+
---
|
|
5866
|
+
|
|
5867
|
+
##### ~~`cluster`~~<sup>Required</sup> <a name="cluster" id="@btc-embedded/cdk-extensions.Vpc.property.cluster"></a>
|
|
5868
|
+
|
|
5869
|
+
- *Deprecated:* This class is deprecated. Use {@link VpcV2 } and {@link EcsCluster } classes instead.
|
|
5870
|
+
|
|
5871
|
+
```typescript
|
|
5872
|
+
public readonly cluster: Cluster;
|
|
5873
|
+
```
|
|
5874
|
+
|
|
5875
|
+
- *Type:* aws-cdk-lib.aws_ecs.Cluster
|
|
5876
|
+
|
|
5877
|
+
---
|
|
5878
|
+
|
|
5879
|
+
##### ~~`vpcInstance`~~<sup>Required</sup> <a name="vpcInstance" id="@btc-embedded/cdk-extensions.Vpc.property.vpcInstance"></a>
|
|
5880
|
+
|
|
5881
|
+
- *Deprecated:* This class is deprecated. Use {@link VpcV2 } and {@link EcsCluster } classes instead.
|
|
5882
|
+
|
|
5883
|
+
```typescript
|
|
5884
|
+
public readonly vpcInstance: IVpc;
|
|
5885
|
+
```
|
|
5886
|
+
|
|
5887
|
+
- *Type:* aws-cdk-lib.aws_ec2.IVpc
|
|
5888
|
+
|
|
5889
|
+
---
|
|
5890
|
+
|
|
5891
|
+
|
|
5892
|
+
### VpcV2 <a name="VpcV2" id="@btc-embedded/cdk-extensions.VpcV2"></a>
|
|
5893
|
+
|
|
5894
|
+
- *Implements:* <a href="#@btc-embedded/cdk-extensions.IVpcV2">IVpcV2</a>
|
|
5895
|
+
|
|
5896
|
+
A construct that creates or imports an existing VPC.
|
|
5897
|
+
|
|
5898
|
+
Supports importing by VPC ID, VPC name, or creating a new VPC with a specified CIDR block.
|
|
5899
|
+
|
|
5900
|
+
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.VpcV2.Initializer"></a>
|
|
5901
|
+
|
|
5902
|
+
```typescript
|
|
5903
|
+
import { VpcV2 } from '@btc-embedded/cdk-extensions'
|
|
4888
5904
|
|
|
4889
|
-
new
|
|
5905
|
+
new VpcV2(scope: Construct, id: string, props: VpcV2Props)
|
|
4890
5906
|
```
|
|
4891
5907
|
|
|
4892
5908
|
| **Name** | **Type** | **Description** |
|
|
4893
5909
|
| --- | --- | --- |
|
|
4894
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
4895
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
4896
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5910
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.scope">scope</a></code> | <code>constructs.Construct</code> | *No description.* |
|
|
5911
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.id">id</a></code> | <code>string</code> | *No description.* |
|
|
5912
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.VpcV2Props">VpcV2Props</a></code> | *No description.* |
|
|
4897
5913
|
|
|
4898
5914
|
---
|
|
4899
5915
|
|
|
4900
|
-
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.
|
|
5916
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.scope"></a>
|
|
4901
5917
|
|
|
4902
5918
|
- *Type:* constructs.Construct
|
|
4903
5919
|
|
|
4904
|
-
The parent construct this is part of.
|
|
4905
|
-
|
|
4906
5920
|
---
|
|
4907
5921
|
|
|
4908
|
-
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.
|
|
5922
|
+
##### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.id"></a>
|
|
4909
5923
|
|
|
4910
5924
|
- *Type:* string
|
|
4911
5925
|
|
|
4912
|
-
Id of this construct for Cloudformation.
|
|
4913
|
-
|
|
4914
5926
|
---
|
|
4915
5927
|
|
|
4916
|
-
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.
|
|
4917
|
-
|
|
4918
|
-
- *Type:* <a href="#@btc-embedded/cdk-extensions.VpcProps">VpcProps</a>
|
|
4919
|
-
|
|
4920
|
-
Properties allowing to set a predefined VPCName, IPAdressBlog, maxNumber of AZs and decision wether to create a KMSKey for usage with the Exec extension.
|
|
5928
|
+
##### `props`<sup>Required</sup> <a name="props" id="@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.props"></a>
|
|
4921
5929
|
|
|
4922
|
-
|
|
4923
|
-
dedicated VPC, with max 2 AZS and NO Key for Exec
|
|
5930
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.VpcV2Props">VpcV2Props</a>
|
|
4924
5931
|
|
|
4925
5932
|
---
|
|
4926
5933
|
|
|
@@ -4928,11 +5935,11 @@ dedicated VPC, with max 2 AZS and NO Key for Exec
|
|
|
4928
5935
|
|
|
4929
5936
|
| **Name** | **Description** |
|
|
4930
5937
|
| --- | --- |
|
|
4931
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5938
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.toString">toString</a></code> | Returns a string representation of this construct. |
|
|
4932
5939
|
|
|
4933
5940
|
---
|
|
4934
5941
|
|
|
4935
|
-
#####
|
|
5942
|
+
##### `toString` <a name="toString" id="@btc-embedded/cdk-extensions.VpcV2.toString"></a>
|
|
4936
5943
|
|
|
4937
5944
|
```typescript
|
|
4938
5945
|
public toString(): string
|
|
@@ -4944,17 +5951,17 @@ Returns a string representation of this construct.
|
|
|
4944
5951
|
|
|
4945
5952
|
| **Name** | **Description** |
|
|
4946
5953
|
| --- | --- |
|
|
4947
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
4948
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5954
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
5955
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.fromBasePlatform">fromBasePlatform</a></code> | *No description.* |
|
|
4949
5956
|
|
|
4950
5957
|
---
|
|
4951
5958
|
|
|
4952
|
-
#####
|
|
5959
|
+
##### `isConstruct` <a name="isConstruct" id="@btc-embedded/cdk-extensions.VpcV2.isConstruct"></a>
|
|
4953
5960
|
|
|
4954
5961
|
```typescript
|
|
4955
|
-
import {
|
|
5962
|
+
import { VpcV2 } from '@btc-embedded/cdk-extensions'
|
|
4956
5963
|
|
|
4957
|
-
|
|
5964
|
+
VpcV2.isConstruct(x: any)
|
|
4958
5965
|
```
|
|
4959
5966
|
|
|
4960
5967
|
Checks if `x` is a construct.
|
|
@@ -4973,7 +5980,7 @@ library can be accidentally installed, and `instanceof` will behave
|
|
|
4973
5980
|
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
4974
5981
|
this type-testing method instead.
|
|
4975
5982
|
|
|
4976
|
-
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.
|
|
5983
|
+
###### `x`<sup>Required</sup> <a name="x" id="@btc-embedded/cdk-extensions.VpcV2.isConstruct.parameter.x"></a>
|
|
4977
5984
|
|
|
4978
5985
|
- *Type:* any
|
|
4979
5986
|
|
|
@@ -4981,27 +5988,27 @@ Any object.
|
|
|
4981
5988
|
|
|
4982
5989
|
---
|
|
4983
5990
|
|
|
4984
|
-
#####
|
|
5991
|
+
##### `fromBasePlatform` <a name="fromBasePlatform" id="@btc-embedded/cdk-extensions.VpcV2.fromBasePlatform"></a>
|
|
4985
5992
|
|
|
4986
5993
|
```typescript
|
|
4987
|
-
import {
|
|
5994
|
+
import { VpcV2 } from '@btc-embedded/cdk-extensions'
|
|
4988
5995
|
|
|
4989
|
-
|
|
5996
|
+
VpcV2.fromBasePlatform(scope: Construct, id: string, stackName: string)
|
|
4990
5997
|
```
|
|
4991
5998
|
|
|
4992
|
-
###### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.
|
|
5999
|
+
###### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.VpcV2.fromBasePlatform.parameter.scope"></a>
|
|
4993
6000
|
|
|
4994
6001
|
- *Type:* constructs.Construct
|
|
4995
6002
|
|
|
4996
6003
|
---
|
|
4997
6004
|
|
|
4998
|
-
###### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.
|
|
6005
|
+
###### `id`<sup>Required</sup> <a name="id" id="@btc-embedded/cdk-extensions.VpcV2.fromBasePlatform.parameter.id"></a>
|
|
4999
6006
|
|
|
5000
6007
|
- *Type:* string
|
|
5001
6008
|
|
|
5002
6009
|
---
|
|
5003
6010
|
|
|
5004
|
-
###### `stackName`<sup>Required</sup> <a name="stackName" id="@btc-embedded/cdk-extensions.
|
|
6011
|
+
###### `stackName`<sup>Required</sup> <a name="stackName" id="@btc-embedded/cdk-extensions.VpcV2.fromBasePlatform.parameter.stackName"></a>
|
|
5005
6012
|
|
|
5006
6013
|
- *Type:* string
|
|
5007
6014
|
|
|
@@ -5011,17 +6018,12 @@ Vpc.fromBasePlatform(scope: Construct, id: string, stackName: string)
|
|
|
5011
6018
|
|
|
5012
6019
|
| **Name** | **Type** | **Description** |
|
|
5013
6020
|
| --- | --- | --- |
|
|
5014
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5015
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5016
|
-
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.fqdn">fqdn</a></code> | <code>string</code> | *No description.* |
|
|
5017
|
-
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.cluster">cluster</a></code> | <code>aws-cdk-lib.aws_ecs.Cluster</code> | *No description.* |
|
|
5018
|
-
| <code><a href="#@btc-embedded/cdk-extensions.Vpc.property.vpcInstance">vpcInstance</a></code> | <code>aws-cdk-lib.aws_ec2.IVpc</code> | *No description.* |
|
|
6021
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
|
|
6022
|
+
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.property.vpcInstance">vpcInstance</a></code> | <code>aws-cdk-lib.aws_ec2.IVpc</code> | *No description.* |
|
|
5019
6023
|
|
|
5020
6024
|
---
|
|
5021
6025
|
|
|
5022
|
-
#####
|
|
5023
|
-
|
|
5024
|
-
- *Deprecated:* This class is deprecated. Use {@link VpcV2 } and {@link EcsCluster } classes instead.
|
|
6026
|
+
##### `node`<sup>Required</sup> <a name="node" id="@btc-embedded/cdk-extensions.VpcV2.property.node"></a>
|
|
5025
6027
|
|
|
5026
6028
|
```typescript
|
|
5027
6029
|
public readonly node: Node;
|
|
@@ -5033,470 +6035,604 @@ The tree node.
|
|
|
5033
6035
|
|
|
5034
6036
|
---
|
|
5035
6037
|
|
|
5036
|
-
#####
|
|
6038
|
+
##### `vpcInstance`<sup>Required</sup> <a name="vpcInstance" id="@btc-embedded/cdk-extensions.VpcV2.property.vpcInstance"></a>
|
|
5037
6039
|
|
|
5038
|
-
|
|
6040
|
+
```typescript
|
|
6041
|
+
public readonly vpcInstance: IVpc;
|
|
6042
|
+
```
|
|
6043
|
+
|
|
6044
|
+
- *Type:* aws-cdk-lib.aws_ec2.IVpc
|
|
6045
|
+
|
|
6046
|
+
---
|
|
6047
|
+
|
|
6048
|
+
|
|
6049
|
+
## Structs <a name="Structs" id="Structs"></a>
|
|
6050
|
+
|
|
6051
|
+
### AnythingButFilterRule <a name="AnythingButFilterRule" id="@btc-embedded/cdk-extensions.AnythingButFilterRule"></a>
|
|
6052
|
+
|
|
6053
|
+
Rule that allows all values except the given ones.
|
|
6054
|
+
|
|
6055
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.AnythingButFilterRule.Initializer"></a>
|
|
5039
6056
|
|
|
5040
6057
|
```typescript
|
|
5041
|
-
|
|
6058
|
+
import { AnythingButFilterRule } from '@btc-embedded/cdk-extensions'
|
|
6059
|
+
|
|
6060
|
+
const anythingButFilterRule: AnythingButFilterRule = { ... }
|
|
6061
|
+
```
|
|
6062
|
+
|
|
6063
|
+
|
|
6064
|
+
### ApiGatewayExtensionProps <a name="ApiGatewayExtensionProps" id="@btc-embedded/cdk-extensions.ApiGatewayExtensionProps"></a>
|
|
6065
|
+
|
|
6066
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiGatewayExtensionProps.Initializer"></a>
|
|
6067
|
+
|
|
6068
|
+
```typescript
|
|
6069
|
+
import { ApiGatewayExtensionProps } from '@btc-embedded/cdk-extensions'
|
|
6070
|
+
|
|
6071
|
+
const apiGatewayExtensionProps: ApiGatewayExtensionProps = { ... }
|
|
6072
|
+
```
|
|
6073
|
+
|
|
6074
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
6075
|
+
|
|
6076
|
+
| **Name** | **Type** | **Description** |
|
|
6077
|
+
| --- | --- | --- |
|
|
6078
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayExtensionProps.property.platformStackName">platformStackName</a></code> | <code>string</code> | The name of the base platform stack. |
|
|
6079
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayExtensionProps.property.prefix">prefix</a></code> | <code>string</code> | The prefix for the API Gateway endpoint. |
|
|
6080
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayExtensionProps.property.securityGroupId">securityGroupId</a></code> | <code>string</code> | The security group ID of the API Gateway which should be allowed to connect to the service. |
|
|
6081
|
+
|
|
6082
|
+
---
|
|
6083
|
+
|
|
6084
|
+
##### `platformStackName`<sup>Required</sup> <a name="platformStackName" id="@btc-embedded/cdk-extensions.ApiGatewayExtensionProps.property.platformStackName"></a>
|
|
6085
|
+
|
|
6086
|
+
```typescript
|
|
6087
|
+
public readonly platformStackName: string;
|
|
5042
6088
|
```
|
|
5043
6089
|
|
|
5044
6090
|
- *Type:* string
|
|
5045
6091
|
|
|
6092
|
+
The name of the base platform stack.
|
|
6093
|
+
|
|
5046
6094
|
---
|
|
5047
6095
|
|
|
5048
|
-
#####
|
|
6096
|
+
##### `prefix`<sup>Required</sup> <a name="prefix" id="@btc-embedded/cdk-extensions.ApiGatewayExtensionProps.property.prefix"></a>
|
|
5049
6097
|
|
|
5050
|
-
|
|
6098
|
+
```typescript
|
|
6099
|
+
public readonly prefix: string;
|
|
6100
|
+
```
|
|
6101
|
+
|
|
6102
|
+
- *Type:* string
|
|
6103
|
+
|
|
6104
|
+
The prefix for the API Gateway endpoint.
|
|
6105
|
+
|
|
6106
|
+
---
|
|
6107
|
+
|
|
6108
|
+
##### `securityGroupId`<sup>Required</sup> <a name="securityGroupId" id="@btc-embedded/cdk-extensions.ApiGatewayExtensionProps.property.securityGroupId"></a>
|
|
5051
6109
|
|
|
5052
6110
|
```typescript
|
|
5053
|
-
public readonly
|
|
6111
|
+
public readonly securityGroupId: string;
|
|
5054
6112
|
```
|
|
5055
6113
|
|
|
5056
6114
|
- *Type:* string
|
|
5057
6115
|
|
|
6116
|
+
The security group ID of the API Gateway which should be allowed to connect to the service.
|
|
6117
|
+
|
|
5058
6118
|
---
|
|
5059
6119
|
|
|
5060
|
-
|
|
6120
|
+
### ApiGatewayProps <a name="ApiGatewayProps" id="@btc-embedded/cdk-extensions.ApiGatewayProps"></a>
|
|
5061
6121
|
|
|
5062
|
-
|
|
6122
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiGatewayProps.Initializer"></a>
|
|
5063
6123
|
|
|
5064
6124
|
```typescript
|
|
5065
|
-
|
|
6125
|
+
import { ApiGatewayProps } from '@btc-embedded/cdk-extensions'
|
|
6126
|
+
|
|
6127
|
+
const apiGatewayProps: ApiGatewayProps = { ... }
|
|
5066
6128
|
```
|
|
5067
6129
|
|
|
5068
|
-
|
|
6130
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
6131
|
+
|
|
6132
|
+
| **Name** | **Type** | **Description** |
|
|
6133
|
+
| --- | --- | --- |
|
|
6134
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.domainPrefix">domainPrefix</a></code> | <code>string</code> | Domain prefix for the API Gateway endpoint. |
|
|
6135
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.hostedZone">hostedZone</a></code> | <code>aws-cdk-lib.aws_route53.IHostedZone</code> | Hosted Zone to create the gateway domain A record. |
|
|
6136
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.stackName">stackName</a></code> | <code>string</code> | The name of the stack, used for prefixing the output parameter names. |
|
|
6137
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.userPool">userPool</a></code> | <code>aws-cdk-lib.aws_cognito.IUserPool</code> | Specify the Cognito User Pool to be used for authorizing requests on the API Gateway. |
|
|
6138
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.userPoolClients">userPoolClients</a></code> | <code>aws-cdk-lib.aws_cognito.IUserPoolClient[]</code> | List of User Pool Clients that are allowed to access the API Gateway. |
|
|
6139
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.vpc">vpc</a></code> | <code>aws-cdk-lib.aws_ec2.IVpc</code> | VPC where the API GW Security group and VPC Link will be created. |
|
|
6140
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.logGroup">logGroup</a></code> | <code>aws-cdk-lib.aws_logs.ILogGroup</code> | If provided then enable the access logs for the API Gateway. |
|
|
5069
6141
|
|
|
5070
6142
|
---
|
|
5071
6143
|
|
|
5072
|
-
#####
|
|
6144
|
+
##### `domainPrefix`<sup>Required</sup> <a name="domainPrefix" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.domainPrefix"></a>
|
|
5073
6145
|
|
|
5074
|
-
|
|
6146
|
+
```typescript
|
|
6147
|
+
public readonly domainPrefix: string;
|
|
6148
|
+
```
|
|
6149
|
+
|
|
6150
|
+
- *Type:* string
|
|
6151
|
+
|
|
6152
|
+
Domain prefix for the API Gateway endpoint.
|
|
6153
|
+
|
|
6154
|
+
---
|
|
6155
|
+
|
|
6156
|
+
##### `hostedZone`<sup>Required</sup> <a name="hostedZone" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.hostedZone"></a>
|
|
5075
6157
|
|
|
5076
6158
|
```typescript
|
|
5077
|
-
public readonly
|
|
6159
|
+
public readonly hostedZone: IHostedZone;
|
|
5078
6160
|
```
|
|
5079
6161
|
|
|
5080
|
-
- *Type:* aws-cdk-lib.
|
|
6162
|
+
- *Type:* aws-cdk-lib.aws_route53.IHostedZone
|
|
6163
|
+
|
|
6164
|
+
Hosted Zone to create the gateway domain A record.
|
|
5081
6165
|
|
|
5082
6166
|
---
|
|
5083
6167
|
|
|
6168
|
+
##### `stackName`<sup>Required</sup> <a name="stackName" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.stackName"></a>
|
|
5084
6169
|
|
|
5085
|
-
|
|
6170
|
+
```typescript
|
|
6171
|
+
public readonly stackName: string;
|
|
6172
|
+
```
|
|
5086
6173
|
|
|
5087
|
-
- *
|
|
6174
|
+
- *Type:* string
|
|
5088
6175
|
|
|
5089
|
-
|
|
6176
|
+
The name of the stack, used for prefixing the output parameter names.
|
|
5090
6177
|
|
|
5091
|
-
|
|
6178
|
+
---
|
|
5092
6179
|
|
|
5093
|
-
|
|
6180
|
+
##### `userPool`<sup>Required</sup> <a name="userPool" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.userPool"></a>
|
|
5094
6181
|
|
|
5095
6182
|
```typescript
|
|
5096
|
-
|
|
6183
|
+
public readonly userPool: IUserPool;
|
|
6184
|
+
```
|
|
5097
6185
|
|
|
5098
|
-
|
|
6186
|
+
- *Type:* aws-cdk-lib.aws_cognito.IUserPool
|
|
6187
|
+
|
|
6188
|
+
Specify the Cognito User Pool to be used for authorizing requests on the API Gateway.
|
|
6189
|
+
|
|
6190
|
+
---
|
|
6191
|
+
|
|
6192
|
+
##### `userPoolClients`<sup>Required</sup> <a name="userPoolClients" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.userPoolClients"></a>
|
|
6193
|
+
|
|
6194
|
+
```typescript
|
|
6195
|
+
public readonly userPoolClients: IUserPoolClient[];
|
|
5099
6196
|
```
|
|
5100
6197
|
|
|
5101
|
-
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.id">id</a></code> | <code>string</code> | *No description.* |
|
|
5105
|
-
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.Initializer.parameter.props">props</a></code> | <code><a href="#@btc-embedded/cdk-extensions.VpcV2Props">VpcV2Props</a></code> | *No description.* |
|
|
6198
|
+
- *Type:* aws-cdk-lib.aws_cognito.IUserPoolClient[]
|
|
6199
|
+
|
|
6200
|
+
List of User Pool Clients that are allowed to access the API Gateway.
|
|
5106
6201
|
|
|
5107
6202
|
---
|
|
5108
6203
|
|
|
5109
|
-
##### `
|
|
6204
|
+
##### `vpc`<sup>Required</sup> <a name="vpc" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.vpc"></a>
|
|
5110
6205
|
|
|
5111
|
-
|
|
6206
|
+
```typescript
|
|
6207
|
+
public readonly vpc: IVpc;
|
|
6208
|
+
```
|
|
6209
|
+
|
|
6210
|
+
- *Type:* aws-cdk-lib.aws_ec2.IVpc
|
|
6211
|
+
|
|
6212
|
+
VPC where the API GW Security group and VPC Link will be created.
|
|
5112
6213
|
|
|
5113
6214
|
---
|
|
5114
6215
|
|
|
5115
|
-
##### `
|
|
6216
|
+
##### `logGroup`<sup>Optional</sup> <a name="logGroup" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.logGroup"></a>
|
|
5116
6217
|
|
|
5117
|
-
|
|
6218
|
+
```typescript
|
|
6219
|
+
public readonly logGroup: ILogGroup;
|
|
6220
|
+
```
|
|
6221
|
+
|
|
6222
|
+
- *Type:* aws-cdk-lib.aws_logs.ILogGroup
|
|
6223
|
+
|
|
6224
|
+
If provided then enable the access logs for the API Gateway.
|
|
5118
6225
|
|
|
5119
6226
|
---
|
|
5120
6227
|
|
|
5121
|
-
|
|
6228
|
+
### ApiGatewayVpcLinkLookupOptions <a name="ApiGatewayVpcLinkLookupOptions" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkLookupOptions"></a>
|
|
5122
6229
|
|
|
5123
|
-
|
|
6230
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkLookupOptions.Initializer"></a>
|
|
6231
|
+
|
|
6232
|
+
```typescript
|
|
6233
|
+
import { ApiGatewayVpcLinkLookupOptions } from '@btc-embedded/cdk-extensions'
|
|
6234
|
+
|
|
6235
|
+
const apiGatewayVpcLinkLookupOptions: ApiGatewayVpcLinkLookupOptions = { ... }
|
|
6236
|
+
```
|
|
6237
|
+
|
|
6238
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
6239
|
+
|
|
6240
|
+
| **Name** | **Type** | **Description** |
|
|
6241
|
+
| --- | --- | --- |
|
|
6242
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayVpcLinkLookupOptions.property.basePlatform">basePlatform</a></code> | <code>string</code> | *No description.* |
|
|
6243
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayVpcLinkLookupOptions.property.vpc">vpc</a></code> | <code>aws-cdk-lib.aws_ec2.IVpc</code> | *No description.* |
|
|
5124
6244
|
|
|
5125
6245
|
---
|
|
5126
6246
|
|
|
5127
|
-
|
|
6247
|
+
##### `basePlatform`<sup>Required</sup> <a name="basePlatform" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkLookupOptions.property.basePlatform"></a>
|
|
5128
6248
|
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
6249
|
+
```typescript
|
|
6250
|
+
public readonly basePlatform: string;
|
|
6251
|
+
```
|
|
6252
|
+
|
|
6253
|
+
- *Type:* string
|
|
5132
6254
|
|
|
5133
6255
|
---
|
|
5134
6256
|
|
|
5135
|
-
##### `
|
|
6257
|
+
##### `vpc`<sup>Required</sup> <a name="vpc" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkLookupOptions.property.vpc"></a>
|
|
5136
6258
|
|
|
5137
6259
|
```typescript
|
|
5138
|
-
public
|
|
6260
|
+
public readonly vpc: IVpc;
|
|
5139
6261
|
```
|
|
5140
6262
|
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
#### Static Functions <a name="Static Functions" id="Static Functions"></a>
|
|
5144
|
-
|
|
5145
|
-
| **Name** | **Description** |
|
|
5146
|
-
| --- | --- |
|
|
5147
|
-
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.isConstruct">isConstruct</a></code> | Checks if `x` is a construct. |
|
|
5148
|
-
| <code><a href="#@btc-embedded/cdk-extensions.VpcV2.fromBasePlatform">fromBasePlatform</a></code> | *No description.* |
|
|
6263
|
+
- *Type:* aws-cdk-lib.aws_ec2.IVpc
|
|
5149
6264
|
|
|
5150
6265
|
---
|
|
5151
6266
|
|
|
5152
|
-
|
|
6267
|
+
### ApiGatewayVpcLinkProps <a name="ApiGatewayVpcLinkProps" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkProps"></a>
|
|
6268
|
+
|
|
6269
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkProps.Initializer"></a>
|
|
5153
6270
|
|
|
5154
6271
|
```typescript
|
|
5155
|
-
import {
|
|
6272
|
+
import { ApiGatewayVpcLinkProps } from '@btc-embedded/cdk-extensions'
|
|
5156
6273
|
|
|
5157
|
-
|
|
6274
|
+
const apiGatewayVpcLinkProps: ApiGatewayVpcLinkProps = { ... }
|
|
5158
6275
|
```
|
|
5159
6276
|
|
|
5160
|
-
|
|
6277
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
5161
6278
|
|
|
5162
|
-
|
|
5163
|
-
|
|
6279
|
+
| **Name** | **Type** | **Description** |
|
|
6280
|
+
| --- | --- | --- |
|
|
6281
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayVpcLinkProps.property.vpc">vpc</a></code> | <code>aws-cdk-lib.aws_ec2.IVpc</code> | VPC where the API GW Security group and VPC Link will be created. |
|
|
6282
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayVpcLinkProps.property.vpcLinkName">vpcLinkName</a></code> | <code>string</code> | Optional name for the VPC Link. |
|
|
5164
6283
|
|
|
5165
|
-
|
|
5166
|
-
disk are seen as independent, completely different libraries. As a
|
|
5167
|
-
consequence, the class `Construct` in each copy of the `constructs` library
|
|
5168
|
-
is seen as a different class, and an instance of one class will not test as
|
|
5169
|
-
`instanceof` the other class. `npm install` will not create installations
|
|
5170
|
-
like this, but users may manually symlink construct libraries together or
|
|
5171
|
-
use a monorepo tool: in those cases, multiple copies of the `constructs`
|
|
5172
|
-
library can be accidentally installed, and `instanceof` will behave
|
|
5173
|
-
unpredictably. It is safest to avoid using `instanceof`, and using
|
|
5174
|
-
this type-testing method instead.
|
|
6284
|
+
---
|
|
5175
6285
|
|
|
5176
|
-
|
|
6286
|
+
##### `vpc`<sup>Required</sup> <a name="vpc" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkProps.property.vpc"></a>
|
|
5177
6287
|
|
|
5178
|
-
|
|
6288
|
+
```typescript
|
|
6289
|
+
public readonly vpc: IVpc;
|
|
6290
|
+
```
|
|
5179
6291
|
|
|
5180
|
-
|
|
6292
|
+
- *Type:* aws-cdk-lib.aws_ec2.IVpc
|
|
6293
|
+
|
|
6294
|
+
VPC where the API GW Security group and VPC Link will be created.
|
|
5181
6295
|
|
|
5182
6296
|
---
|
|
5183
6297
|
|
|
5184
|
-
##### `
|
|
6298
|
+
##### `vpcLinkName`<sup>Optional</sup> <a name="vpcLinkName" id="@btc-embedded/cdk-extensions.ApiGatewayVpcLinkProps.property.vpcLinkName"></a>
|
|
5185
6299
|
|
|
5186
6300
|
```typescript
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
VpcV2.fromBasePlatform(scope: Construct, id: string, stackName: string)
|
|
6301
|
+
public readonly vpcLinkName: string;
|
|
5190
6302
|
```
|
|
5191
6303
|
|
|
5192
|
-
|
|
6304
|
+
- *Type:* string
|
|
5193
6305
|
|
|
5194
|
-
|
|
6306
|
+
Optional name for the VPC Link.
|
|
5195
6307
|
|
|
5196
6308
|
---
|
|
5197
6309
|
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
- *Type:* string
|
|
6310
|
+
### ApiKeyAttribute <a name="ApiKeyAttribute" id="@btc-embedded/cdk-extensions.ApiKeyAttribute"></a>
|
|
5201
6311
|
|
|
5202
|
-
|
|
6312
|
+
Representation of an attribute of an API key.
|
|
5203
6313
|
|
|
5204
|
-
|
|
6314
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiKeyAttribute.Initializer"></a>
|
|
5205
6315
|
|
|
5206
|
-
|
|
6316
|
+
```typescript
|
|
6317
|
+
import { ApiKeyAttribute } from '@btc-embedded/cdk-extensions'
|
|
5207
6318
|
|
|
5208
|
-
|
|
6319
|
+
const apiKeyAttribute: ApiKeyAttribute = { ... }
|
|
6320
|
+
```
|
|
5209
6321
|
|
|
5210
6322
|
#### Properties <a name="Properties" id="Properties"></a>
|
|
5211
6323
|
|
|
5212
6324
|
| **Name** | **Type** | **Description** |
|
|
5213
6325
|
| --- | --- | --- |
|
|
5214
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5215
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
6326
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute.property.apiName">apiName</a></code> | <code>string</code> | The internal name of the attribute for the API, i.e. the name used for the DynamoDB table that holds the attribute values. |
|
|
6327
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute.property.cognitoName">cognitoName</a></code> | <code>string</code> | The internal name of the attribute for Cognito. |
|
|
6328
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute.property.name">name</a></code> | <code>string</code> | The name of the attribute. |
|
|
6329
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute.property.defaultValue">defaultValue</a></code> | <code>string</code> | The default value for the attribute, if no value is provided. |
|
|
5216
6330
|
|
|
5217
6331
|
---
|
|
5218
6332
|
|
|
5219
|
-
##### `
|
|
6333
|
+
##### `apiName`<sup>Required</sup> <a name="apiName" id="@btc-embedded/cdk-extensions.ApiKeyAttribute.property.apiName"></a>
|
|
5220
6334
|
|
|
5221
6335
|
```typescript
|
|
5222
|
-
public readonly
|
|
6336
|
+
public readonly apiName: string;
|
|
5223
6337
|
```
|
|
5224
6338
|
|
|
5225
|
-
- *Type:*
|
|
6339
|
+
- *Type:* string
|
|
5226
6340
|
|
|
5227
|
-
The
|
|
6341
|
+
The internal name of the attribute for the API, i.e. the name used for the DynamoDB table that holds the attribute values.
|
|
5228
6342
|
|
|
5229
6343
|
---
|
|
5230
6344
|
|
|
5231
|
-
##### `
|
|
6345
|
+
##### `cognitoName`<sup>Required</sup> <a name="cognitoName" id="@btc-embedded/cdk-extensions.ApiKeyAttribute.property.cognitoName"></a>
|
|
5232
6346
|
|
|
5233
6347
|
```typescript
|
|
5234
|
-
public readonly
|
|
6348
|
+
public readonly cognitoName: string;
|
|
5235
6349
|
```
|
|
5236
6350
|
|
|
5237
|
-
- *Type:*
|
|
6351
|
+
- *Type:* string
|
|
6352
|
+
|
|
6353
|
+
The internal name of the attribute for Cognito.
|
|
6354
|
+
|
|
6355
|
+
If a custom attribute is used, it
|
|
6356
|
+
already has to exist in the user pool.
|
|
5238
6357
|
|
|
5239
6358
|
---
|
|
5240
6359
|
|
|
6360
|
+
##### `name`<sup>Required</sup> <a name="name" id="@btc-embedded/cdk-extensions.ApiKeyAttribute.property.name"></a>
|
|
5241
6361
|
|
|
5242
|
-
|
|
6362
|
+
```typescript
|
|
6363
|
+
public readonly name: string;
|
|
6364
|
+
```
|
|
5243
6365
|
|
|
5244
|
-
|
|
6366
|
+
- *Type:* string
|
|
5245
6367
|
|
|
5246
|
-
|
|
6368
|
+
The name of the attribute.
|
|
5247
6369
|
|
|
5248
|
-
|
|
6370
|
+
---
|
|
5249
6371
|
|
|
5250
|
-
|
|
5251
|
-
import { AnythingButFilterRule } from '@btc-embedded/cdk-extensions'
|
|
6372
|
+
##### `defaultValue`<sup>Optional</sup> <a name="defaultValue" id="@btc-embedded/cdk-extensions.ApiKeyAttribute.property.defaultValue"></a>
|
|
5252
6373
|
|
|
5253
|
-
|
|
6374
|
+
```typescript
|
|
6375
|
+
public readonly defaultValue: string;
|
|
5254
6376
|
```
|
|
5255
6377
|
|
|
6378
|
+
- *Type:* string
|
|
5256
6379
|
|
|
5257
|
-
|
|
6380
|
+
The default value for the attribute, if no value is provided.
|
|
5258
6381
|
|
|
5259
|
-
|
|
6382
|
+
---
|
|
6383
|
+
|
|
6384
|
+
### ApiKeyClientAuthorizationProps <a name="ApiKeyClientAuthorizationProps" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps"></a>
|
|
6385
|
+
|
|
6386
|
+
Properties to instantiate the {@link ApiKeyClientAuthorization} component.
|
|
6387
|
+
|
|
6388
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.Initializer"></a>
|
|
5260
6389
|
|
|
5261
6390
|
```typescript
|
|
5262
|
-
import {
|
|
6391
|
+
import { ApiKeyClientAuthorizationProps } from '@btc-embedded/cdk-extensions'
|
|
5263
6392
|
|
|
5264
|
-
const
|
|
6393
|
+
const apiKeyClientAuthorizationProps: ApiKeyClientAuthorizationProps = { ... }
|
|
5265
6394
|
```
|
|
5266
6395
|
|
|
5267
6396
|
#### Properties <a name="Properties" id="Properties"></a>
|
|
5268
6397
|
|
|
5269
6398
|
| **Name** | **Type** | **Description** |
|
|
5270
6399
|
| --- | --- | --- |
|
|
5271
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5272
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5273
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
6400
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.authorizationHttpApi">authorizationHttpApi</a></code> | <code>aws-cdk-lib.aws_apigatewayv2.IHttpApi</code> | An existing HttpApi to attach the endpoint to. |
|
|
6401
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.oidcIssuerUrl">oidcIssuerUrl</a></code> | <code>string</code> | The issuer URL for the user pool. |
|
|
6402
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.scope">scope</a></code> | <code>string</code> | The scope to be used for retrieving the token. |
|
|
6403
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.userPoolClientId">userPoolClientId</a></code> | <code>string</code> | The ID of the API client. |
|
|
6404
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.userPoolClientSecret">userPoolClientSecret</a></code> | <code>aws-cdk-lib.aws_secretsmanager.ISecret</code> | The secret containing the user pool client secret. |
|
|
6405
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.authorizationHttpApiUrl">authorizationHttpApiUrl</a></code> | <code>string</code> | An optional base URL for the {@link IHttpApi} in case it cannot be retrieved. |
|
|
6406
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.authorizationPath">authorizationPath</a></code> | <code>string</code> | Path (without preceding and trailing slash) to be used to retrieve the token. |
|
|
5274
6407
|
|
|
5275
6408
|
---
|
|
5276
6409
|
|
|
5277
|
-
##### `
|
|
6410
|
+
##### `authorizationHttpApi`<sup>Required</sup> <a name="authorizationHttpApi" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.authorizationHttpApi"></a>
|
|
5278
6411
|
|
|
5279
6412
|
```typescript
|
|
5280
|
-
public readonly
|
|
6413
|
+
public readonly authorizationHttpApi: IHttpApi;
|
|
5281
6414
|
```
|
|
5282
6415
|
|
|
5283
|
-
- *Type:*
|
|
6416
|
+
- *Type:* aws-cdk-lib.aws_apigatewayv2.IHttpApi
|
|
5284
6417
|
|
|
5285
|
-
|
|
6418
|
+
An existing HttpApi to attach the endpoint to.
|
|
6419
|
+
|
|
6420
|
+
The default authorizer will we ignored
|
|
6421
|
+
and no authorization will be required for the endpoint.
|
|
5286
6422
|
|
|
5287
6423
|
---
|
|
5288
6424
|
|
|
5289
|
-
##### `
|
|
6425
|
+
##### `oidcIssuerUrl`<sup>Required</sup> <a name="oidcIssuerUrl" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.oidcIssuerUrl"></a>
|
|
5290
6426
|
|
|
5291
6427
|
```typescript
|
|
5292
|
-
public readonly
|
|
6428
|
+
public readonly oidcIssuerUrl: string;
|
|
5293
6429
|
```
|
|
5294
6430
|
|
|
5295
6431
|
- *Type:* string
|
|
5296
6432
|
|
|
5297
|
-
The
|
|
6433
|
+
The issuer URL for the user pool.
|
|
6434
|
+
|
|
6435
|
+
Used to extract the OAuth URL.
|
|
5298
6436
|
|
|
5299
6437
|
---
|
|
5300
6438
|
|
|
5301
|
-
##### `
|
|
6439
|
+
##### `scope`<sup>Required</sup> <a name="scope" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.scope"></a>
|
|
5302
6440
|
|
|
5303
6441
|
```typescript
|
|
5304
|
-
public readonly
|
|
6442
|
+
public readonly scope: string;
|
|
5305
6443
|
```
|
|
5306
6444
|
|
|
5307
6445
|
- *Type:* string
|
|
5308
6446
|
|
|
5309
|
-
The
|
|
6447
|
+
The scope to be used for retrieving the token.
|
|
5310
6448
|
|
|
5311
6449
|
---
|
|
5312
6450
|
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiGatewayProps.Initializer"></a>
|
|
6451
|
+
##### `userPoolClientId`<sup>Required</sup> <a name="userPoolClientId" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.userPoolClientId"></a>
|
|
5316
6452
|
|
|
5317
6453
|
```typescript
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
const apiGatewayProps: ApiGatewayProps = { ... }
|
|
6454
|
+
public readonly userPoolClientId: string;
|
|
5321
6455
|
```
|
|
5322
6456
|
|
|
5323
|
-
|
|
6457
|
+
- *Type:* string
|
|
5324
6458
|
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.stackName">stackName</a></code> | <code>string</code> | The name of the stack, used for prefixing the output parameter names. |
|
|
5330
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.userPool">userPool</a></code> | <code>aws-cdk-lib.aws_cognito.IUserPool</code> | Specify the Cognito User Pool to be used for authorizing requests on the API Gateway. |
|
|
5331
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.userPoolClients">userPoolClients</a></code> | <code>aws-cdk-lib.aws_cognito.IUserPoolClient[]</code> | List of User Pool Clients that are allowed to access the API Gateway. |
|
|
5332
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.vpc">vpc</a></code> | <code>aws-cdk-lib.aws_ec2.IVpc</code> | VPC where the API GW Security group and VPC Link will be created. |
|
|
5333
|
-
| <code><a href="#@btc-embedded/cdk-extensions.ApiGatewayProps.property.logGroup">logGroup</a></code> | <code>aws-cdk-lib.aws_logs.ILogGroup</code> | If provided then enable the access logs for the API Gateway. |
|
|
6459
|
+
The ID of the API client.
|
|
6460
|
+
|
|
6461
|
+
Credentials required for authorization will be fetched for
|
|
6462
|
+
this client.
|
|
5334
6463
|
|
|
5335
6464
|
---
|
|
5336
6465
|
|
|
5337
|
-
##### `
|
|
6466
|
+
##### `userPoolClientSecret`<sup>Required</sup> <a name="userPoolClientSecret" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.userPoolClientSecret"></a>
|
|
5338
6467
|
|
|
5339
6468
|
```typescript
|
|
5340
|
-
public readonly
|
|
6469
|
+
public readonly userPoolClientSecret: ISecret;
|
|
5341
6470
|
```
|
|
5342
6471
|
|
|
5343
|
-
- *Type:*
|
|
6472
|
+
- *Type:* aws-cdk-lib.aws_secretsmanager.ISecret
|
|
5344
6473
|
|
|
5345
|
-
|
|
6474
|
+
The secret containing the user pool client secret.
|
|
5346
6475
|
|
|
5347
6476
|
---
|
|
5348
6477
|
|
|
5349
|
-
##### `
|
|
6478
|
+
##### `authorizationHttpApiUrl`<sup>Optional</sup> <a name="authorizationHttpApiUrl" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.authorizationHttpApiUrl"></a>
|
|
5350
6479
|
|
|
5351
6480
|
```typescript
|
|
5352
|
-
public readonly
|
|
6481
|
+
public readonly authorizationHttpApiUrl: string;
|
|
5353
6482
|
```
|
|
5354
6483
|
|
|
5355
|
-
- *Type:*
|
|
6484
|
+
- *Type:* string
|
|
5356
6485
|
|
|
5357
|
-
|
|
6486
|
+
An optional base URL for the {@link IHttpApi} in case it cannot be retrieved.
|
|
5358
6487
|
|
|
5359
6488
|
---
|
|
5360
6489
|
|
|
5361
|
-
##### `
|
|
6490
|
+
##### `authorizationPath`<sup>Optional</sup> <a name="authorizationPath" id="@btc-embedded/cdk-extensions.ApiKeyClientAuthorizationProps.property.authorizationPath"></a>
|
|
5362
6491
|
|
|
5363
6492
|
```typescript
|
|
5364
|
-
public readonly
|
|
6493
|
+
public readonly authorizationPath: string;
|
|
5365
6494
|
```
|
|
5366
6495
|
|
|
5367
6496
|
- *Type:* string
|
|
5368
6497
|
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
---
|
|
5372
|
-
|
|
5373
|
-
##### `userPool`<sup>Required</sup> <a name="userPool" id="@btc-embedded/cdk-extensions.ApiGatewayProps.property.userPool"></a>
|
|
6498
|
+
Path (without preceding and trailing slash) to be used to retrieve the token.
|
|
5374
6499
|
|
|
5375
|
-
|
|
5376
|
-
public readonly userPool: IUserPool;
|
|
5377
|
-
```
|
|
6500
|
+
Will default to `token` if not set.
|
|
5378
6501
|
|
|
5379
|
-
|
|
6502
|
+
---
|
|
5380
6503
|
|
|
5381
|
-
|
|
6504
|
+
### ApiKeyManagementProps <a name="ApiKeyManagementProps" id="@btc-embedded/cdk-extensions.ApiKeyManagementProps"></a>
|
|
5382
6505
|
|
|
5383
|
-
|
|
6506
|
+
Properties to instantiate the {@link ApiKeyManagement} component.
|
|
5384
6507
|
|
|
5385
|
-
|
|
6508
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiKeyManagementProps.Initializer"></a>
|
|
5386
6509
|
|
|
5387
6510
|
```typescript
|
|
5388
|
-
|
|
6511
|
+
import { ApiKeyManagementProps } from '@btc-embedded/cdk-extensions'
|
|
6512
|
+
|
|
6513
|
+
const apiKeyManagementProps: ApiKeyManagementProps = { ... }
|
|
5389
6514
|
```
|
|
5390
6515
|
|
|
5391
|
-
|
|
6516
|
+
#### Properties <a name="Properties" id="Properties"></a>
|
|
5392
6517
|
|
|
5393
|
-
|
|
6518
|
+
| **Name** | **Type** | **Description** |
|
|
6519
|
+
| --- | --- | --- |
|
|
6520
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagementProps.property.apiKeys">apiKeys</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore">ApiKeyStore</a></code> | The {@link ApiKeyStore} component. |
|
|
6521
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyManagementProps.property.userPool">userPool</a></code> | <code>aws-cdk-lib.aws_cognito.IUserPool</code> | The user pool to be used. |
|
|
5394
6522
|
|
|
5395
6523
|
---
|
|
5396
6524
|
|
|
5397
|
-
##### `
|
|
6525
|
+
##### `apiKeys`<sup>Required</sup> <a name="apiKeys" id="@btc-embedded/cdk-extensions.ApiKeyManagementProps.property.apiKeys"></a>
|
|
5398
6526
|
|
|
5399
6527
|
```typescript
|
|
5400
|
-
public readonly
|
|
6528
|
+
public readonly apiKeys: ApiKeyStore;
|
|
5401
6529
|
```
|
|
5402
6530
|
|
|
5403
|
-
- *Type:*
|
|
6531
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyStore">ApiKeyStore</a>
|
|
5404
6532
|
|
|
5405
|
-
|
|
6533
|
+
The {@link ApiKeyStore} component.
|
|
5406
6534
|
|
|
5407
6535
|
---
|
|
5408
6536
|
|
|
5409
|
-
##### `
|
|
6537
|
+
##### `userPool`<sup>Required</sup> <a name="userPool" id="@btc-embedded/cdk-extensions.ApiKeyManagementProps.property.userPool"></a>
|
|
5410
6538
|
|
|
5411
6539
|
```typescript
|
|
5412
|
-
public readonly
|
|
6540
|
+
public readonly userPool: IUserPool;
|
|
5413
6541
|
```
|
|
5414
6542
|
|
|
5415
|
-
- *Type:* aws-cdk-lib.
|
|
6543
|
+
- *Type:* aws-cdk-lib.aws_cognito.IUserPool
|
|
5416
6544
|
|
|
5417
|
-
|
|
6545
|
+
The user pool to be used.
|
|
5418
6546
|
|
|
5419
6547
|
---
|
|
5420
6548
|
|
|
5421
|
-
###
|
|
6549
|
+
### ApiKeyPreTokenHandlerProps <a name="ApiKeyPreTokenHandlerProps" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps"></a>
|
|
5422
6550
|
|
|
5423
|
-
|
|
6551
|
+
Properties to instantiate the {@link ApiKeyPreTokenHandler} component.
|
|
6552
|
+
|
|
6553
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps.Initializer"></a>
|
|
5424
6554
|
|
|
5425
6555
|
```typescript
|
|
5426
|
-
import {
|
|
6556
|
+
import { ApiKeyPreTokenHandlerProps } from '@btc-embedded/cdk-extensions'
|
|
5427
6557
|
|
|
5428
|
-
const
|
|
6558
|
+
const apiKeyPreTokenHandlerProps: ApiKeyPreTokenHandlerProps = { ... }
|
|
5429
6559
|
```
|
|
5430
6560
|
|
|
5431
6561
|
#### Properties <a name="Properties" id="Properties"></a>
|
|
5432
6562
|
|
|
5433
6563
|
| **Name** | **Type** | **Description** |
|
|
5434
6564
|
| --- | --- | --- |
|
|
5435
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5436
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
6565
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps.property.apiKeys">apiKeys</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStore">ApiKeyStore</a></code> | The {@link ApiKeyStore} component. |
|
|
6566
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps.property.userPool">userPool</a></code> | <code>aws-cdk-lib.aws_cognito.IUserPool</code> | The user pool to be used. |
|
|
5437
6567
|
|
|
5438
6568
|
---
|
|
5439
6569
|
|
|
5440
|
-
##### `
|
|
6570
|
+
##### `apiKeys`<sup>Required</sup> <a name="apiKeys" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps.property.apiKeys"></a>
|
|
5441
6571
|
|
|
5442
6572
|
```typescript
|
|
5443
|
-
public readonly
|
|
6573
|
+
public readonly apiKeys: ApiKeyStore;
|
|
5444
6574
|
```
|
|
5445
6575
|
|
|
5446
|
-
- *Type:*
|
|
6576
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyStore">ApiKeyStore</a>
|
|
6577
|
+
|
|
6578
|
+
The {@link ApiKeyStore} component.
|
|
5447
6579
|
|
|
5448
6580
|
---
|
|
5449
6581
|
|
|
5450
|
-
##### `
|
|
6582
|
+
##### `userPool`<sup>Required</sup> <a name="userPool" id="@btc-embedded/cdk-extensions.ApiKeyPreTokenHandlerProps.property.userPool"></a>
|
|
5451
6583
|
|
|
5452
6584
|
```typescript
|
|
5453
|
-
public readonly
|
|
6585
|
+
public readonly userPool: IUserPool;
|
|
5454
6586
|
```
|
|
5455
6587
|
|
|
5456
|
-
- *Type:* aws-cdk-lib.
|
|
6588
|
+
- *Type:* aws-cdk-lib.aws_cognito.IUserPool
|
|
6589
|
+
|
|
6590
|
+
The user pool to be used.
|
|
5457
6591
|
|
|
5458
6592
|
---
|
|
5459
6593
|
|
|
5460
|
-
###
|
|
6594
|
+
### ApiKeyStoreProps <a name="ApiKeyStoreProps" id="@btc-embedded/cdk-extensions.ApiKeyStoreProps"></a>
|
|
5461
6595
|
|
|
5462
|
-
|
|
6596
|
+
Properties to instantiate the {@link ApiKeyStore} component.
|
|
6597
|
+
|
|
6598
|
+
#### Initializer <a name="Initializer" id="@btc-embedded/cdk-extensions.ApiKeyStoreProps.Initializer"></a>
|
|
5463
6599
|
|
|
5464
6600
|
```typescript
|
|
5465
|
-
import {
|
|
6601
|
+
import { ApiKeyStoreProps } from '@btc-embedded/cdk-extensions'
|
|
5466
6602
|
|
|
5467
|
-
const
|
|
6603
|
+
const apiKeyStoreProps: ApiKeyStoreProps = { ... }
|
|
5468
6604
|
```
|
|
5469
6605
|
|
|
5470
6606
|
#### Properties <a name="Properties" id="Properties"></a>
|
|
5471
6607
|
|
|
5472
6608
|
| **Name** | **Type** | **Description** |
|
|
5473
6609
|
| --- | --- | --- |
|
|
5474
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
5475
|
-
| <code><a href="#@btc-embedded/cdk-extensions.
|
|
6610
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStoreProps.property.attributes">attributes</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute">ApiKeyAttribute</a>[]</code> | The attributes that are managed by the component. |
|
|
6611
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ApiKeyStoreProps.property.tableOptions">tableOptions</a></code> | <code>aws-cdk-lib.aws_dynamodb.TableOptions</code> | Additional table options to overwrite the defaults for the created table. |
|
|
5476
6612
|
|
|
5477
6613
|
---
|
|
5478
6614
|
|
|
5479
|
-
##### `
|
|
6615
|
+
##### `attributes`<sup>Required</sup> <a name="attributes" id="@btc-embedded/cdk-extensions.ApiKeyStoreProps.property.attributes"></a>
|
|
5480
6616
|
|
|
5481
6617
|
```typescript
|
|
5482
|
-
public readonly
|
|
6618
|
+
public readonly attributes: ApiKeyAttribute[];
|
|
5483
6619
|
```
|
|
5484
6620
|
|
|
5485
|
-
- *Type:*
|
|
6621
|
+
- *Type:* <a href="#@btc-embedded/cdk-extensions.ApiKeyAttribute">ApiKeyAttribute</a>[]
|
|
5486
6622
|
|
|
5487
|
-
|
|
6623
|
+
The attributes that are managed by the component.
|
|
5488
6624
|
|
|
5489
6625
|
---
|
|
5490
6626
|
|
|
5491
|
-
##### `
|
|
6627
|
+
##### `tableOptions`<sup>Optional</sup> <a name="tableOptions" id="@btc-embedded/cdk-extensions.ApiKeyStoreProps.property.tableOptions"></a>
|
|
5492
6628
|
|
|
5493
6629
|
```typescript
|
|
5494
|
-
public readonly
|
|
6630
|
+
public readonly tableOptions: TableOptions;
|
|
5495
6631
|
```
|
|
5496
6632
|
|
|
5497
|
-
- *Type:*
|
|
6633
|
+
- *Type:* aws-cdk-lib.aws_dynamodb.TableOptions
|
|
5498
6634
|
|
|
5499
|
-
|
|
6635
|
+
Additional table options to overwrite the defaults for the created table.
|
|
5500
6636
|
|
|
5501
6637
|
---
|
|
5502
6638
|
|
|
@@ -6301,6 +7437,7 @@ const containerDefinitionExtensionProps: ContainerDefinitionExtensionProps = { .
|
|
|
6301
7437
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerDefinitionExtensionProps.property.systemControls">systemControls</a></code> | <code>aws-cdk-lib.aws_ecs.SystemControl[]</code> | A list of namespaced kernel parameters to set in the container. |
|
|
6302
7438
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerDefinitionExtensionProps.property.ulimits">ulimits</a></code> | <code>aws-cdk-lib.aws_ecs.Ulimit[]</code> | An array of ulimits to set in the container. |
|
|
6303
7439
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerDefinitionExtensionProps.property.user">user</a></code> | <code>string</code> | The user to use inside the container. |
|
|
7440
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ContainerDefinitionExtensionProps.property.versionConsistency">versionConsistency</a></code> | <code>aws-cdk-lib.aws_ecs.VersionConsistency</code> | Specifies whether Amazon ECS will resolve the container image tag provided in the container definition to an image digest. |
|
|
6304
7441
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerDefinitionExtensionProps.property.workingDirectory">workingDirectory</a></code> | <code>string</code> | The working directory in which to run commands inside the container. |
|
|
6305
7442
|
|
|
6306
7443
|
---
|
|
@@ -6854,6 +7991,25 @@ This parameter maps to User in the Create a container section of the Docker Remo
|
|
|
6854
7991
|
|
|
6855
7992
|
---
|
|
6856
7993
|
|
|
7994
|
+
##### `versionConsistency`<sup>Optional</sup> <a name="versionConsistency" id="@btc-embedded/cdk-extensions.ContainerDefinitionExtensionProps.property.versionConsistency"></a>
|
|
7995
|
+
|
|
7996
|
+
```typescript
|
|
7997
|
+
public readonly versionConsistency: VersionConsistency;
|
|
7998
|
+
```
|
|
7999
|
+
|
|
8000
|
+
- *Type:* aws-cdk-lib.aws_ecs.VersionConsistency
|
|
8001
|
+
- *Default:* VersionConsistency.DISABLED if `image` is a CDK asset, VersionConsistency.ENABLED otherwise
|
|
8002
|
+
|
|
8003
|
+
Specifies whether Amazon ECS will resolve the container image tag provided in the container definition to an image digest.
|
|
8004
|
+
|
|
8005
|
+
If you set the value for a container as disabled, Amazon ECS will
|
|
8006
|
+
not resolve the provided container image tag to a digest and will use the
|
|
8007
|
+
original image URI specified in the container definition for deployment.
|
|
8008
|
+
|
|
8009
|
+
> [https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-containerdefinition.html#cfn-ecs-taskdefinition-containerdefinition-versionconsistency](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-containerdefinition.html#cfn-ecs-taskdefinition-containerdefinition-versionconsistency)
|
|
8010
|
+
|
|
8011
|
+
---
|
|
8012
|
+
|
|
6857
8013
|
##### `workingDirectory`<sup>Optional</sup> <a name="workingDirectory" id="@btc-embedded/cdk-extensions.ContainerDefinitionExtensionProps.property.workingDirectory"></a>
|
|
6858
8014
|
|
|
6859
8015
|
```typescript
|
|
@@ -6969,6 +8125,7 @@ const containerProps: ContainerProps = { ... }
|
|
|
6969
8125
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerProps.property.systemControls">systemControls</a></code> | <code>aws-cdk-lib.aws_ecs.SystemControl[]</code> | A list of namespaced kernel parameters to set in the container. |
|
|
6970
8126
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerProps.property.ulimits">ulimits</a></code> | <code>aws-cdk-lib.aws_ecs.Ulimit[]</code> | An array of ulimits to set in the container. |
|
|
6971
8127
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerProps.property.user">user</a></code> | <code>string</code> | The user to use inside the container. |
|
|
8128
|
+
| <code><a href="#@btc-embedded/cdk-extensions.ContainerProps.property.versionConsistency">versionConsistency</a></code> | <code>aws-cdk-lib.aws_ecs.VersionConsistency</code> | Specifies whether Amazon ECS will resolve the container image tag provided in the container definition to an image digest. |
|
|
6972
8129
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerProps.property.workingDirectory">workingDirectory</a></code> | <code>string</code> | The working directory in which to run commands inside the container. |
|
|
6973
8130
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerProps.property.containerDependencies">containerDependencies</a></code> | <code><a href="#@btc-embedded/cdk-extensions.ContainerDependency">ContainerDependency</a>[]</code> | Specify additional container dependencies which should be added after the container has been created in the task definition. |
|
|
6974
8131
|
| <code><a href="#@btc-embedded/cdk-extensions.ContainerProps.property.logGroup">logGroup</a></code> | <code>aws-cdk-lib.aws_logs.ILogGroup</code> | The log group into which application container logs should be routed. |
|
|
@@ -7524,6 +8681,25 @@ This parameter maps to User in the Create a container section of the Docker Remo
|
|
|
7524
8681
|
|
|
7525
8682
|
---
|
|
7526
8683
|
|
|
8684
|
+
##### `versionConsistency`<sup>Optional</sup> <a name="versionConsistency" id="@btc-embedded/cdk-extensions.ContainerProps.property.versionConsistency"></a>
|
|
8685
|
+
|
|
8686
|
+
```typescript
|
|
8687
|
+
public readonly versionConsistency: VersionConsistency;
|
|
8688
|
+
```
|
|
8689
|
+
|
|
8690
|
+
- *Type:* aws-cdk-lib.aws_ecs.VersionConsistency
|
|
8691
|
+
- *Default:* VersionConsistency.DISABLED if `image` is a CDK asset, VersionConsistency.ENABLED otherwise
|
|
8692
|
+
|
|
8693
|
+
Specifies whether Amazon ECS will resolve the container image tag provided in the container definition to an image digest.
|
|
8694
|
+
|
|
8695
|
+
If you set the value for a container as disabled, Amazon ECS will
|
|
8696
|
+
not resolve the provided container image tag to a digest and will use the
|
|
8697
|
+
original image URI specified in the container definition for deployment.
|
|
8698
|
+
|
|
8699
|
+
> [https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-containerdefinition.html#cfn-ecs-taskdefinition-containerdefinition-versionconsistency](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-containerdefinition.html#cfn-ecs-taskdefinition-containerdefinition-versionconsistency)
|
|
8700
|
+
|
|
8701
|
+
---
|
|
8702
|
+
|
|
7527
8703
|
##### `workingDirectory`<sup>Optional</sup> <a name="workingDirectory" id="@btc-embedded/cdk-extensions.ContainerProps.property.workingDirectory"></a>
|
|
7528
8704
|
|
|
7529
8705
|
```typescript
|
|
@@ -7704,6 +8880,8 @@ const deploymentConfigExtensionProps: DeploymentConfigExtensionProps = { ... }
|
|
|
7704
8880
|
| --- | --- | --- |
|
|
7705
8881
|
| <code><a href="#@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.capacityProviderBase">capacityProviderBase</a></code> | <code>number</code> | The base value for the FARGATE_SPOT capacity provider. |
|
|
7706
8882
|
| <code><a href="#@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.capacityProviderWeight">capacityProviderWeight</a></code> | <code>number</code> | The weight value for the FARGATE_SPOT capacity provider. |
|
|
8883
|
+
| <code><a href="#@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.circuitBreakerRollback">circuitBreakerRollback</a></code> | <code>boolean</code> | Whether the circuit breaker should automatically roll back failed deployments. |
|
|
8884
|
+
| <code><a href="#@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.enableCircuitBreaker">enableCircuitBreaker</a></code> | <code>boolean</code> | Whether to enable the ECS deployment circuit breaker. |
|
|
7707
8885
|
| <code><a href="#@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.maxHealthyPercent">maxHealthyPercent</a></code> | <code>number</code> | The maximum healthy percent for the service deployment. |
|
|
7708
8886
|
| <code><a href="#@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.minHealthyPercent">minHealthyPercent</a></code> | <code>number</code> | The minimum healthy percent for the service deployment. |
|
|
7709
8887
|
| <code><a href="#@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.useFargateSpotInstances">useFargateSpotInstances</a></code> | <code>boolean</code> | Whether to use the cluster's FARGATE_SPOT capacity provider strategy. |
|
|
@@ -7742,6 +8920,38 @@ Only used when useCapacityProvider is true.
|
|
|
7742
8920
|
|
|
7743
8921
|
---
|
|
7744
8922
|
|
|
8923
|
+
##### `circuitBreakerRollback`<sup>Optional</sup> <a name="circuitBreakerRollback" id="@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.circuitBreakerRollback"></a>
|
|
8924
|
+
|
|
8925
|
+
```typescript
|
|
8926
|
+
public readonly circuitBreakerRollback: boolean;
|
|
8927
|
+
```
|
|
8928
|
+
|
|
8929
|
+
- *Type:* boolean
|
|
8930
|
+
- *Default:* true (if circuit breaker is enabled)
|
|
8931
|
+
|
|
8932
|
+
Whether the circuit breaker should automatically roll back failed deployments.
|
|
8933
|
+
|
|
8934
|
+
When enabled, ECS will automatically roll back to the previous task definition
|
|
8935
|
+
if the new deployment fails. Only applies when enableCircuitBreaker is true.
|
|
8936
|
+
|
|
8937
|
+
---
|
|
8938
|
+
|
|
8939
|
+
##### `enableCircuitBreaker`<sup>Optional</sup> <a name="enableCircuitBreaker" id="@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.enableCircuitBreaker"></a>
|
|
8940
|
+
|
|
8941
|
+
```typescript
|
|
8942
|
+
public readonly enableCircuitBreaker: boolean;
|
|
8943
|
+
```
|
|
8944
|
+
|
|
8945
|
+
- *Type:* boolean
|
|
8946
|
+
- *Default:* true
|
|
8947
|
+
|
|
8948
|
+
Whether to enable the ECS deployment circuit breaker.
|
|
8949
|
+
|
|
8950
|
+
The circuit breaker monitors new deployments and automatically rolls back
|
|
8951
|
+
if tasks fail to start or become unhealthy.
|
|
8952
|
+
|
|
8953
|
+
---
|
|
8954
|
+
|
|
7745
8955
|
##### `maxHealthyPercent`<sup>Optional</sup> <a name="maxHealthyPercent" id="@btc-embedded/cdk-extensions.DeploymentConfigExtensionProps.property.maxHealthyPercent"></a>
|
|
7746
8956
|
|
|
7747
8957
|
```typescript
|
|
@@ -11092,6 +12302,7 @@ Extension that configures ECS service deployment options and capacity provider s
|
|
|
11092
12302
|
This extension allows you to:
|
|
11093
12303
|
1. Configure deployment parameters for faster or safer deployments
|
|
11094
12304
|
2. Enable the use of cluster's FARGATE_SPOT capacity provider strategy
|
|
12305
|
+
3. Enable ECS deployment circuit breaker with automatic rollback
|
|
11095
12306
|
|
|
11096
12307
|
#### Initializers <a name="Initializers" id="@btc-embedded/cdk-extensions.DeploymentConfigExtension.Initializer"></a>
|
|
11097
12308
|
|