@alliander-opensource/aws-jwt-sts 0.3.5 → 0.3.7
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 +5025 -78
- package/dist/index.d.ts +6 -0
- package/dist/index.js +12 -5
- package/dist/index.sign.d.ts +1 -1
- package/dist/index.sign.js +2 -2
- package/dist/test/index.keyrotate.test.js +140 -1
- package/dist/test/index.sign.test.d.ts +1 -1
- package/dist/test/index.sign.test.js +31 -1
- package/dist/test/index.test.js +43 -5
- package/dist/tsconfig.tsbuildinfo +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 +49 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +55 -0
- package/node_modules/@aws-lambda-powertools/commons/README.md +7 -15
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/LRUCache.js +3 -2
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.d.ts +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/Utility.js +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/awsSdkUtils.js +2 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts +2 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/constants.js +3 -1
- 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 +134 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts +14 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/envUtils.js +28 -12
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts +5 -5
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/index.js +27 -21
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/metadata.d.ts +12 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/metadata.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/metadata.js +38 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/middleware/constants.js +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts +46 -14
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/typeUtils.js +64 -20
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/LambdaInterface.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/awsSdk.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/envUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts +6 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/json.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts +5 -5
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/types/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/unmarshallDynamoDB.js +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/version.js +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/LRUCache.js +3 -2
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.d.ts +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/Utility.js +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/awsSdkUtils.js +2 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts +2 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/constants.js +2 -1
- 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 +131 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts +14 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/envUtils.js +28 -13
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts +5 -5
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/index.js +11 -7
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/metadata.d.ts +12 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/metadata.d.ts.map +1 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/metadata.js +34 -0
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/middleware/constants.js +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts +46 -14
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/typeUtils.js +62 -20
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/LambdaInterface.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/awsSdk.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/envUtils.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts +6 -6
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/index.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/json.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts +5 -5
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/types/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/unmarshallDynamoDB.js +3 -3
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/version.js +1 -1
- package/node_modules/@aws-lambda-powertools/commons/package.json +20 -1
- package/node_modules/@aws-lambda-powertools/logger/README.md +6 -3
- 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 +8 -27
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/Logger.js +113 -138
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts +1 -10
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogFormatter.js +11 -20
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/LogItem.js +2 -5
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/formatter/PowertoolsLogFormatter.js +2 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/logBuffer.js +6 -2
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/middleware/middy.js +7 -4
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/ConfigServiceInterface.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts +4 -3
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts +2 -12
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/formatters.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts +11 -5
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/types/logKeys.d.ts.map +1 -1
- 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 +8 -27
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/Logger.js +114 -136
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts +1 -10
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogFormatter.js +11 -20
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/LogItem.js +2 -2
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/formatter/PowertoolsLogFormatter.js +2 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/logBuffer.js +6 -2
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/middleware/middy.js +7 -4
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/ConfigServiceInterface.d.ts +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts +4 -3
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/Logger.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts +2 -12
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/formatters.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts +11 -5
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/types/logKeys.d.ts.map +1 -1
- package/node_modules/@aws-lambda-powertools/logger/package.json +5 -5
- package/node_modules/@aws-sdk/client-kms/README.md +33 -103
- package/node_modules/@aws-sdk/client-kms/dist-cjs/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/client-kms/dist-cjs/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-kms/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-cjs/index.js +1134 -4495
- package/node_modules/@aws-sdk/client-kms/dist-cjs/models/KMSServiceException.js +12 -0
- package/node_modules/@aws-sdk/client-kms/dist-cjs/models/errors.js +628 -0
- package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.js +9 -11
- package/node_modules/@aws-sdk/client-kms/dist-cjs/runtimeConfig.shared.js +12 -2
- package/node_modules/@aws-sdk/client-kms/dist-cjs/schemas/schemas_0.js +1423 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/KMS.js +33 -13
- package/node_modules/@aws-sdk/client-kms/dist-es/KMSClient.js +4 -2
- package/node_modules/@aws-sdk/client-kms/dist-es/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CancelKeyDeletionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ConnectCustomKeyStoreCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateAliasCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateCustomKeyStoreCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateGrantCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/CreateKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DecryptCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteAliasCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteCustomKeyStoreCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeleteImportedKeyMaterialCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DeriveSharedSecretCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DescribeCustomKeyStoresCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DescribeKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisableKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisableKeyRotationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/DisconnectCustomKeyStoreCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/EnableKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/EnableKeyRotationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/EncryptCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyPairCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateMacCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GenerateRandomCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetKeyLastUsageCommand.js +16 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetKeyPolicyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetKeyRotationStatusCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetParametersForImportCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/GetPublicKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ImportKeyMaterialCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListAliasesCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListGrantsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeyPoliciesCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeyRotationsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListKeysCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListResourceTagsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ListRetirableGrantsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/PutKeyPolicyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ReEncryptCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ReplicateKeyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/RetireGrantCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/RevokeGrantCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/RotateKeyOnDemandCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/ScheduleKeyDeletionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/SignCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/TagResourceCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UntagResourceCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateAliasCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateCustomKeyStoreCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdateKeyDescriptionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/UpdatePrimaryRegionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/VerifyCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/VerifyMacCommand.js +3 -10
- package/node_modules/@aws-sdk/client-kms/dist-es/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/endpoint/bdd.js +46 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-kms/dist-es/index.js +4 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/models/enums.js +228 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/models/errors.js +577 -0
- package/node_modules/@aws-sdk/client-kms/dist-es/models/models_0.js +1 -863
- package/node_modules/@aws-sdk/client-kms/dist-es/pagination/index.js +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.js +7 -9
- package/node_modules/@aws-sdk/client-kms/dist-es/runtimeConfig.shared.js +11 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/schemas/schemas_0.js +1416 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/KMS.d.ts +120 -55
- package/node_modules/@aws-sdk/client-kms/dist-types/KMSClient.d.ts +70 -68
- package/node_modules/@aws-sdk/client-kms/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CancelKeyDeletionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ConnectCustomKeyStoreCommand.d.ts +9 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateAliasCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateCustomKeyStoreCommand.d.ts +6 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateGrantCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/CreateKeyCommand.d.ts +16 -11
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DecryptCommand.d.ts +21 -14
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteAliasCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteCustomKeyStoreCommand.d.ts +9 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeleteImportedKeyMaterialCommand.d.ts +19 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DeriveSharedSecretCommand.d.ts +10 -8
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DescribeCustomKeyStoresCommand.d.ts +6 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DescribeKeyCommand.d.ts +10 -8
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisableKeyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisableKeyRotationCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/DisconnectCustomKeyStoreCommand.d.ts +9 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/EnableKeyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/EnableKeyRotationCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/EncryptCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyCommand.d.ts +11 -9
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyPairCommand.d.ts +14 -12
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyPairWithoutPlaintextCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateDataKeyWithoutPlaintextCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateMacCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GenerateRandomCommand.d.ts +14 -10
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetKeyLastUsageCommand.d.ts +188 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetKeyPolicyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetKeyRotationStatusCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetParametersForImportCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/GetPublicKeyCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ImportKeyMaterialCommand.d.ts +35 -15
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListAliasesCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListGrantsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeyPoliciesCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeyRotationsCommand.d.ts +6 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListKeysCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListResourceTagsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ListRetirableGrantsCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/PutKeyPolicyCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ReEncryptCommand.d.ts +13 -6
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ReplicateKeyCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/RetireGrantCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/RevokeGrantCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/RotateKeyOnDemandCommand.d.ts +14 -13
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/ScheduleKeyDeletionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/SignCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/TagResourceCommand.d.ts +8 -7
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UntagResourceCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateAliasCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateCustomKeyStoreCommand.d.ts +14 -7
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdateKeyDescriptionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/UpdatePrimaryRegionCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/VerifyCommand.d.ts +7 -5
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/VerifyMacCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/index.d.ts +7 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/models/KMSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/models/enums.d.ts +468 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/models/errors.d.ts +771 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/models/models_0.d.ts +301 -1369
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/DescribeCustomKeyStoresPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/Interfaces.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListAliasesPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListGrantsPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeyPoliciesPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeyRotationsPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListKeysPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListResourceTagsPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/ListRetirableGrantsPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/pagination/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.browser.d.ts +7 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.d.ts +8 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.native.d.ts +7 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeConfig.shared.d.ts +7 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/schemas/schemas_0.d.ts +219 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/KMS.d.ts +79 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/KMSClient.d.ts +8 -3
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/commands/DecryptCommand.d.ts +3 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/commands/GetKeyLastUsageCommand.d.ts +50 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/index.d.ts +4 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/KMSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/enums.d.ts +278 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/errors.d.ts +381 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/models_0.d.ts +54 -684
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/pagination/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.d.ts +10 -4
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -0
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/schemas/schemas_0.d.ts +218 -0
- package/node_modules/@aws-sdk/client-kms/package.json +49 -46
- package/node_modules/@aws-sdk/client-s3/README.md +75 -142
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +11 -12
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +757 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +3039 -11526
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +12 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +203 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +12 -16
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +13 -3
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +3273 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +43 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +4 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +9 -10
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +20 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +3 -11
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +4 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +3 -10
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +26 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +3 -10
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +3 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +3 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -9
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +28 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +3 -10
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/EndpointParameters.js +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +754 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/index.js +5 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +413 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +185 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/models_0.js +1 -595
- package/node_modules/@aws-sdk/client-s3/dist-es/models/models_1.js +1 -210
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +3 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +9 -13
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +11 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +3261 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +210 -100
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +127 -119
- package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +25 -25
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +69 -60
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +118 -119
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +96 -102
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +187 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +34 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +102 -125
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +53 -53
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +15 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +18 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +12 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +24 -21
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +50 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +31 -31
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +34 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +51 -18
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +13 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +28 -26
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +13 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +17 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +53 -26
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +15 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +51 -48
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +16 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +22 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +18 -22
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +16 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +12 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +29 -22
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +49 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +36 -40
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +27 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +11 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +151 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +33 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +52 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +15 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +17 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +33 -33
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +13 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +20 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +10 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +11 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +11 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +14 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +17 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +74 -74
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +80 -85
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +9 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +11 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +9 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +16 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +12 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +23 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +46 -38
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +64 -66
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +22 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +55 -22
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +57 -24
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +20 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +18 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +51 -61
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +16 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +18 -19
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +37 -35
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +36 -36
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +78 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +22 -21
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +62 -71
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +30 -27
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +32 -31
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +54 -52
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +19 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +72 -45
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +62 -66
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +38 -43
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +54 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +37 -38
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +13 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +33 -33
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +41 -43
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +13 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +31 -32
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +29 -27
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +28 -22
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +68 -66
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +98 -86
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +10 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +19 -15
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +13 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +27 -28
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +21 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +42 -43
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +87 -90
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +58 -62
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +118 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +259 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +86 -78
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +97 -99
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +43 -37
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/EndpointParameters.d.ts +16 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +6 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +997 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +208 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +6021 -3675
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +846 -2989
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/Interfaces.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListBucketsPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListDirectoryBucketsPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectsV2Paginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListPartsPaginator.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +21 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +23 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +21 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +9 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +464 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +232 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +52 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +45 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +6 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +5 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +539 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +92 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +562 -574
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +90 -495
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +26 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +31 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +26 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +464 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +6 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +7 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +6 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +7 -5
- package/node_modules/@aws-sdk/client-s3/package.json +72 -72
- package/node_modules/@aws-sdk/core/LICENSE +201 -0
- package/node_modules/@aws-sdk/core/account-id-endpoint.js +0 -1
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +2273 -6
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +48 -88
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +58 -65
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +281 -365
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +1851 -1662
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/longPollMiddleware.js +15 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -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/resolveAwsSdkSigV4Config.js +9 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +141 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +26 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +50 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_0Protocol.js +8 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJson1_1Protocol.js +8 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +41 -48
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +31 -64
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +83 -37
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +136 -61
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +136 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/jsonReplacer.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +17 -17
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsEc2QueryProtocol.js +4 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +36 -50
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +52 -14
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +46 -73
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +29 -30
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +40 -22
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +2 -13
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/AccountIdEndpointModeConfigResolver.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/longPollMiddleware.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +1 -1
- 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 +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4Config.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ConfigurableSerdeContext.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +74 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/UnionSerde.d.ts +24 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +25 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_0Protocol.d.ts +12 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJson1_1Protocol.d.ts +12 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +15 -4
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/AwsRestJsonProtocol.d.ts +20 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonCodec.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeDeserializer.d.ts +4 -4
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +19 -6
- 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/jsonReviver.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsEc2QueryProtocol.d.ts +8 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/AwsQueryProtocol.d.ts +13 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QuerySerializerSettings.d.ts +8 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/query/QueryShapeSerializer.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +13 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlCodec.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeDeserializer.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/xml/XmlShapeSerializer.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/longPollMiddleware.d.ts +15 -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/protocols/ProtocolLib.d.ts +53 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/UnionSerde.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.d.ts +36 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_0Protocol.d.ts +16 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJson1_1Protocol.d.ts +16 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsJsonRpcProtocol.d.ts +18 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/AwsRestJsonProtocol.d.ts +16 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeDeserializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +10 -3
- 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/query/AwsEc2QueryProtocol.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/AwsQueryProtocol.d.ts +6 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QuerySerializerSettings.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/query/QueryShapeSerializer.d.ts +6 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/xml/AwsRestXmlProtocol.d.ts +10 -2
- package/node_modules/@aws-sdk/core/package.json +27 -27
- package/node_modules/@aws-sdk/crc64-nvme/README.md +61 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +101 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/Crc64Nvme.js +92 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/Crc64Nvme.d.ts +24 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/crc64-nvme-crt-container.d.ts +13 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/Crc64Nvme.d.ts +9 -0
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/crc64-nvme/package.json +50 -0
- package/node_modules/@aws-sdk/credential-provider-env/README.md +12 -3
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +38 -73
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/fromEnv.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +15 -14
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +5 -3
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +5 -3
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/checkUrl.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.browser.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/fromHttp.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +20 -19
- package/node_modules/@aws-sdk/credential-provider-ini/README.md +12 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +207 -259
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +3 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +4 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +12 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +4 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +8 -8
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveAssumeRoleCredentials.d.ts +6 -5
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveCredentialSource.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveLoginCredentials.d.ts +11 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProcessCredentials.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveProfileData.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveSsoCredentials.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveStaticCredentials.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/resolveWebIdentityCredentials.d.ts +4 -3
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveAssumeRoleCredentials.d.ts +5 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveLoginCredentials.d.ts +9 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveProfileData.d.ts +3 -0
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveSsoCredentials.d.ts +3 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/resolveWebIdentityCredentials.d.ts +3 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +26 -24
- package/node_modules/@aws-sdk/credential-provider-login/README.md +16 -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-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/README.md +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +133 -124
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +55 -44
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +60 -0
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/defaultProvider.d.ts +3 -2
- 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 +3 -2
- 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 +26 -24
- package/node_modules/@aws-sdk/credential-provider-process/README.md +12 -3
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +71 -106
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +4 -3
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/getValidatedProcessCredentials.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/resolveProcessCredentials.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +16 -15
- package/node_modules/@aws-sdk/credential-provider-sso/README.md +12 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +179 -233
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +8 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +10 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +9 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +3 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/isSsoProfile.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/loadSso.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/resolveSSOCredentials.d.ts +3 -3
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +2 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/loadSso.d.ts +5 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/resolveSSOCredentials.d.ts +4 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/validateSsoProfile.d.ts +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +18 -17
- package/node_modules/@aws-sdk/credential-provider-web-identity/README.md +12 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +6 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +23 -24
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +6 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/fromTokenFile.d.ts +3 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/fromTokenFile.d.ts +5 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +17 -15
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +334 -450
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeDisableMultiregionAccessPointConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeUseArnRegionConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/bucketEndpointMiddleware.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/bucketHostname.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/bucketHostnameUtils.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/configurations.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +16 -15
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +42 -60
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-es/index.js +18 -6
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/index.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +15 -14
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.js +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +408 -482
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsInputMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +26 -10
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +10 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumAlgorithmForRequest.js +0 -5
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getChecksumAlgorithmListForResponse.js +10 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.js +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getFlexibleChecksumsPlugin.js +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/resolveFlexibleChecksumsConfig.js +2 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js +16 -13
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/configuration.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/flexibleChecksumsInputMiddleware.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/flexibleChecksumsMiddleware.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/flexibleChecksumsResponseMiddleware.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getChecksum.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getChecksumAlgorithmForRequest.d.ts +3 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getChecksumAlgorithmListForResponse.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getChecksumLocationName.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getFlexibleChecksumsPlugin.d.ts +5 -5
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/hasHeader.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/hasHeaderWithPrefix.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/resolveFlexibleChecksumsConfig.d.ts +16 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/selectChecksumAlgorithmFunction.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/stringHasher.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/configuration.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumAlgorithmForRequest.d.ts +3 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getChecksumLocationName.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/resolveFlexibleChecksumsConfig.d.ts +11 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/selectChecksumAlgorithmFunction.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/stringHasher.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/validateChecksumFromResponse.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +25 -23
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +35 -63
- package/node_modules/@aws-sdk/middleware-host-header/dist-types/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-host-header/package.json +15 -14
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +23 -57
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-es/index.js +4 -7
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/configuration.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-types/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +14 -13
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +44 -75
- package/node_modules/@aws-sdk/middleware-logger/dist-types/loggerMiddleware.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-logger/package.json +15 -14
- package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +10 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +24 -67
- 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 -37
- 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 -18
- 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 -18
- 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 +21 -15
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +523 -638
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +11 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/protocol/S3RestXmlProtocol.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/region-redirect-middleware.js +15 -10
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +2 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +9 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/bucket-endpoint-middleware.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/check-content-length-header.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/protocol/S3RestXmlProtocol.d.ts +20 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-endpoint-middleware.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/region-redirect-middleware.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-expires-middleware.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCache.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityCacheEntry.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/S3ExpressIdentityProviderImpl.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressMiddleware.d.ts +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/signS3Express.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/interfaces/S3ExpressIdentityProvider.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +18 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +2 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/protocol/S3RestXmlProtocol.d.ts +15 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +35 -27
- package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +65 -92
- package/node_modules/@aws-sdk/middleware-ssec/dist-types/index.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-ssec/package.json +14 -13
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +170 -203
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +10 -10
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/constants.js +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +1 -1
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/check-features.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/configurations.d.ts +1 -1
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/check-features.d.ts +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/user-agent-middleware.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +19 -17
- package/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/cognito-identity.js +5 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +60 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +100 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +174 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +121 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +110 -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/bdd.js +90 -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/index.js +170 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +64 -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 +54 -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 +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +160 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +56 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +15 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +90 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +166 -866
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +195 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +13 -4
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +140 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +89 -7
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +150 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +184 -933
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +96 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +16 -10
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +21 -4
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +195 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +54 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/index.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/EndpointParameters.js +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +97 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/errors.js +109 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +107 -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/bdd.js +87 -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/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +8 -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 +49 -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 +45 -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 +122 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthExtensionConfiguration.js +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/extensionConfiguration.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/errors.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/models_0.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +33 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +11 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +45 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +87 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDC.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/SSOOIDCClient.js +4 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +3 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +4 -1
- 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 -190
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +10 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +137 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STS.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +5 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +88 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +3 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +3 -10
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +23 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +147 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +86 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/models_0.js +1 -102
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +18 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +192 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +197 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +120 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +107 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +119 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/models_0.d.ts +136 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/schemas/schemas_0.d.ts +25 -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 +189 -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/bdd.d.ts +2 -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/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +17 -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 +63 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +63 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +38 -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 +19 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSO.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +197 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +97 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/EndpointParameters.d.ts +50 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +30 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +53 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/models_0.d.ts +61 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +62 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +61 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeExtensions.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/schemas/schemas_0.d.ts +17 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +14 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +5 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +13 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +6 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- 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 +1 -279
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +8 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +8 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +8 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +9 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/schemas/schemas_0.d.ts +23 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STS.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +14 -14
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +17 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +8 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +10 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultRoleAssumers.d.ts +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +13 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +5 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/extensionConfiguration.d.ts +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +4 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +108 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/models_0.d.ts +7 -131
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +18 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +12 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeExtensions.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentity.d.ts +38 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +126 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +41 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +68 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/models_0.d.ts +23 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +122 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +117 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +126 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +60 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeExtensions.d.ts +13 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/schemas/schemas_0.d.ts +24 -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 +122 -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/bdd.d.ts +2 -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/extensionConfiguration.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +11 -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 +125 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +118 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +129 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +58 -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/SSO.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +117 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +47 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/EndpointParameters.d.ts +51 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/endpointResolver.d.ts +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +10 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +9 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/models_0.d.ts +14 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +120 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +115 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +124 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +58 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/schemas/schemas_0.d.ts +16 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +2 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +1 -1
- 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 +0 -105
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +10 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +10 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +10 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +10 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/schemas/schemas_0.d.ts +22 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +2 -3
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +21 -10
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +55 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +0 -64
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +21 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +44 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +21 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +18 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/schemas/schemas_0.d.ts +26 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +75 -42
- 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.d.ts +7 -0
- package/node_modules/@aws-sdk/nested-clients/sso.js +5 -0
- package/node_modules/@aws-sdk/region-config-resolver/README.md +11 -4
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +34 -101
- 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/index.js +2 -1
- 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 +2 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +2 -1
- 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/index.d.ts +2 -1
- 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 +19 -16
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +108 -137
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +1 -1
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +15 -14
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +143 -220
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +5 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +2 -9
- package/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js +4 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/fromSso.d.ts +3 -3
- package/node_modules/@aws-sdk/token-providers/dist-types/fromStatic.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +5 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/getSsoOidcClient.d.ts +3 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/nodeProvider.d.ts +2 -2
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/fromSso.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getNewSsoOidcToken.d.ts +3 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/getSsoOidcClient.d.ts +3 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/validateTokenExpiry.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/writeSSOTokenToFile.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/package.json +18 -16
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +10 -291
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/credentials.d.ts +5 -3
- package/node_modules/@aws-sdk/types/dist-types/extensions/index.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/feature-ids.d.ts +9 -1
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +10 -0
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +2 -2
- package/node_modules/@aws-sdk/types/dist-types/token.d.ts +2 -2
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/credentials.d.ts +2 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/feature-ids.d.ts +7 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -0
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/TokenIdentity.d.ts +5 -0
- package/node_modules/@aws-sdk/types/package.json +11 -10
- package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +24 -61
- package/node_modules/@aws-sdk/util-arn-parser/dist-types/index.d.ts +9 -0
- package/node_modules/@aws-sdk/util-arn-parser/package.json +11 -10
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +390 -437
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +43 -37
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +43 -37
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/parseArn.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/partition.d.ts +1 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveDefaultAwsRegionalEndpointsConfig.d.ts +56 -0
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.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/package.json +14 -12
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +22 -3
- 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 +39 -8
- 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 +37 -6
- 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 +15 -5
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/index.native.d.ts +6 -5
- 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 +5 -0
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +11 -10
- package/node_modules/@aws-sdk/util-user-agent-node/README.md +10 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +173 -90
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +10 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +15 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getRuntimeUserAgentPair.js +10 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +14 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedTypeScriptVersion.js +9 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +75 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/crt-availability.d.ts +1 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/defaultUserAgent.d.ts +11 -6
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getNodeModulesParentDirs.d.ts +10 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getRuntimeUserAgentPair.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedTypeScriptVersion.d.ts +8 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getTypeScriptUserAgentPair.d.ts +6 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/is-crt-available.d.ts +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +1 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getRuntimeUserAgentPair.d.ts +2 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedTypeScriptVersion.d.ts +3 -0
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptUserAgentPair.d.ts +4 -0
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +19 -15
- package/node_modules/@aws-sdk/xml-builder/README.md +10 -3
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +114 -156
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +336 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +47 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-attribute.js +8 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/escape-element.js +13 -10
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-external/nodable_entities.js +332 -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 +44 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlNode.d.ts +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-types/XmlText.d.ts +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +4 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-external/nodable_entities.d.ts +66 -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-external/nodable_entities.d.ts +65 -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 +21 -11
- package/node_modules/@nodable/entities/README.md +41 -0
- package/node_modules/@nodable/entities/package.json +54 -0
- package/node_modules/@nodable/entities/src/EntityDecoder.js +543 -0
- package/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
- package/node_modules/@nodable/entities/src/entities.js +1177 -0
- package/node_modules/@nodable/entities/src/entityTries.js +49 -0
- package/node_modules/@nodable/entities/src/index.d.ts +264 -0
- package/node_modules/@nodable/entities/src/index.js +29 -0
- package/node_modules/@smithy/chunked-blob-reader/dist-cjs/index.js +9 -37
- package/node_modules/@smithy/chunked-blob-reader/package.json +10 -9
- package/node_modules/@smithy/chunked-blob-reader-native/dist-cjs/index.js +28 -55
- package/node_modules/@smithy/chunked-blob-reader-native/package.json +11 -10
- package/node_modules/@smithy/config-resolver/README.md +10 -3
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +184 -214
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +5 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +15 -0
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/resolveRegionConfig.js +5 -5
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +7 -1
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +7 -1
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveCustomEndpointsConfig.d.ts +2 -2
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/utils/getEndpointFromRegion.d.ts +1 -1
- 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 +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/EndpointVariant.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/PartitionHash.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/RegionHash.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getHostnameFromVariants.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getRegionInfo.d.ts +3 -3
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/getResolvedPartition.d.ts +1 -1
- package/node_modules/@smithy/config-resolver/package.json +16 -15
- package/node_modules/@smithy/core/README.md +12 -1
- package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +6 -1
- package/node_modules/@smithy/core/dist-cjs/index.js +306 -414
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +21 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +21 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +46 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +6 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +24 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +19 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +27 -1
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +5 -1
- package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +10 -1
- package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +44 -1
- package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +5 -0
- package/node_modules/@smithy/core/dist-cjs/setFeature.js +14 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +1050 -926
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +22 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +267 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +854 -802
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +668 -739
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +663 -717
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +18 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +38 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +15 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +6 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +9 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +6 -1
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +61 -1
- package/node_modules/@smithy/core/dist-es/index.js +1 -1
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +1 -2
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -1
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +0 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +138 -56
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +48 -22
- package/node_modules/@smithy/core/dist-es/submodules/cbor/byte-printer.js +35 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +38 -23
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +5 -5
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +15 -3
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +262 -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 +154 -41
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +74 -103
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +41 -17
- package/node_modules/@smithy/core/dist-es/submodules/protocols/SerdeContext.js +6 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +9 -7
- package/node_modules/@smithy/core/dist-es/submodules/protocols/resolve-path.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +23 -21
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +5 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeSerializer.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +16 -12
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/determineTimestampFormat.js +5 -6
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +53 -13
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +6 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +6 -3
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ErrorSchema.js +12 -14
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/ListSchema.js +11 -12
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/MapSchema.js +13 -13
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/NormalizedSchema.js +191 -182
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/OperationSchema.js +13 -13
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/Schema.js +17 -3
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/SimpleSchema.js +17 -12
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/StructureSchema.js +13 -19
- 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 +14 -14
- package/node_modules/@smithy/core/dist-es/submodules/schema/schemas/translateTraits.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/copyDocumentWithTransform.js +1 -53
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +6 -3
- 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/value/NumericValue.js +7 -21
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +3 -2
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/memoizeIdentityProvider.js +4 -2
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/resolveAuthOptions.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/getHttpSigningMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/httpSigningMiddleware.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/normalizeProvider.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/CborCodec.d.ts +18 -14
- package/node_modules/@smithy/core/dist-types/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +10 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/toEndpointV1.d.ts +6 -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 +20 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +61 -5
- package/node_modules/@smithy/core/dist-types/submodules/protocols/RpcProtocol.d.ts +8 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/SerdeContext.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +4 -5
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +7 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/ToStringShapeSerializer.d.ts +4 -5
- package/node_modules/@smithy/core/dist-types/submodules/protocols/serde/determineTimestampFormat.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +24 -8
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ErrorSchema.d.ts +11 -12
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/ListSchema.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/MapSchema.d.ts +6 -7
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/NormalizedSchema.d.ts +49 -28
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/OperationSchema.d.ts +6 -3
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/Schema.d.ts +7 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/SimpleSchema.d.ts +12 -4
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +6 -4
- 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 +4 -2
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/translateTraits.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/copyDocumentWithTransform.d.ts +2 -1
- 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 +2 -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/value/NumericValue.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +1 -1
- package/node_modules/@smithy/core/endpoints.d.ts +7 -0
- package/node_modules/@smithy/core/endpoints.js +6 -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/package.json +52 -30
- package/node_modules/@smithy/credential-provider-imds/README.md +12 -3
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +340 -413
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +2 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/config/EndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/ImdsCredentials.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/RemoteProviderInit.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getExtendedInstanceMetadataCredentials.d.ts +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/getInstanceMetadataEndpoint.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +2 -2
- package/node_modules/@smithy/credential-provider-imds/package.json +14 -14
- package/node_modules/@smithy/eventstream-codec/README.md +13 -0
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +385 -459
- package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +3 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +2 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +2 -1
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/MessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageDecoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-es/SmithyMessageEncoderStream.js +1 -0
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +2 -2
- package/node_modules/@smithy/eventstream-codec/dist-types/HeaderMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/Int64.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/Message.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageDecoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/MessageEncoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageDecoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/SmithyMessageEncoderStream.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +1 -1
- package/node_modules/@smithy/eventstream-codec/package.json +13 -13
- package/node_modules/@smithy/eventstream-serde-browser/README.md +10 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +51 -97
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +1 -0
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-browser/package.json +12 -12
- package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +10 -3
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +4 -33
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/EventStreamSerdeConfig.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +12 -12
- package/node_modules/@smithy/eventstream-serde-node/README.md +10 -3
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +44 -80
- package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +1 -0
- package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-node/package.json +12 -12
- package/node_modules/@smithy/eventstream-serde-universal/README.md +10 -3
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +120 -171
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +2 -0
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +2 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +1 -1
- package/node_modules/@smithy/eventstream-serde-universal/package.json +15 -13
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +205 -236
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +27 -8
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +1 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +4 -3
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +1 -1
- package/node_modules/@smithy/fetch-http-handler/package.json +19 -19
- package/node_modules/@smithy/hash-blob-browser/README.md +10 -3
- package/node_modules/@smithy/hash-blob-browser/dist-cjs/index.js +10 -36
- package/node_modules/@smithy/hash-blob-browser/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/hash-blob-browser/package.json +14 -14
- package/node_modules/@smithy/hash-node/README.md +10 -3
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +38 -63
- package/node_modules/@smithy/hash-node/dist-es/index.js +3 -0
- package/node_modules/@smithy/hash-node/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/hash-node/package.json +13 -13
- package/node_modules/@smithy/hash-stream-node/README.md +9 -4
- package/node_modules/@smithy/hash-stream-node/dist-cjs/index.js +58 -92
- package/node_modules/@smithy/hash-stream-node/dist-es/HashCalculator.js +1 -0
- package/node_modules/@smithy/hash-stream-node/dist-types/HashCalculator.d.ts +3 -2
- package/node_modules/@smithy/hash-stream-node/dist-types/fileStreamHasher.d.ts +2 -2
- package/node_modules/@smithy/hash-stream-node/dist-types/readableStreamHasher.d.ts +2 -2
- package/node_modules/@smithy/hash-stream-node/package.json +13 -13
- package/node_modules/@smithy/invalid-dependency/README.md +10 -3
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +7 -38
- package/node_modules/@smithy/invalid-dependency/dist-types/invalidProvider.d.ts +1 -1
- package/node_modules/@smithy/invalid-dependency/package.json +11 -11
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +4 -30
- package/node_modules/@smithy/is-array-buffer/package.json +10 -9
- package/node_modules/@smithy/md5-js/README.md +10 -3
- package/node_modules/@smithy/md5-js/dist-cjs/index.js +153 -186
- package/node_modules/@smithy/md5-js/dist-es/index.js +5 -0
- package/node_modules/@smithy/md5-js/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/md5-js/package.json +14 -14
- package/node_modules/@smithy/middleware-content-length/README.md +13 -0
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +39 -64
- package/node_modules/@smithy/middleware-content-length/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/middleware-content-length/package.json +14 -14
- package/node_modules/@smithy/middleware-endpoint/README.md +10 -3
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +242 -272
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/createConfigValueProvider.js +13 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +12 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +8 -1
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/createConfigValueProvider.d.ts +2 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +2 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +3 -3
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +8 -5
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointRequiredConfig.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/s3.d.ts +1 -1
- package/node_modules/@smithy/middleware-endpoint/package.json +18 -18
- package/node_modules/@smithy/middleware-retry/README.md +13 -0
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +364 -393
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +1 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +2 -2
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +9 -12
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +5 -4
- package/node_modules/@smithy/middleware-retry/dist-es/longPollMiddleware.js +15 -0
- package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +49 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +21 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +94 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/types.js +1 -0
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +14 -21
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +4 -2
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +5 -4
- package/node_modules/@smithy/middleware-retry/dist-types/longPollMiddleware.d.ts +15 -0
- package/node_modules/@smithy/middleware-retry/dist-types/omitRetryHeadersMiddleware.d.ts +3 -1
- package/node_modules/@smithy/middleware-retry/dist-types/parseRetryAfterHeader.d.ts +10 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +24 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +33 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +26 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/delayDecider.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/retryDecider.d.ts +6 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/types.d.ts +65 -0
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +2 -6
- package/node_modules/@smithy/middleware-retry/dist-types/util.d.ts +1 -1
- package/node_modules/@smithy/middleware-retry/package.json +24 -24
- package/node_modules/@smithy/middleware-serde/README.md +13 -0
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +93 -118
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +3 -0
- package/node_modules/@smithy/middleware-serde/dist-es/serializerMiddleware.js +3 -2
- package/node_modules/@smithy/middleware-serde/dist-types/deserializerMiddleware.d.ts +1 -1
- package/node_modules/@smithy/middleware-serde/dist-types/serdePlugin.d.ts +1 -1
- package/node_modules/@smithy/middleware-serde/dist-types/serializerMiddleware.d.ts +1 -1
- package/node_modules/@smithy/middleware-serde/package.json +16 -15
- package/node_modules/@smithy/middleware-stack/README.md +13 -0
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +274 -302
- package/node_modules/@smithy/middleware-stack/dist-types/MiddlewareStack.d.ts +1 -1
- package/node_modules/@smithy/middleware-stack/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/middleware-stack/package.json +12 -12
- package/node_modules/@smithy/node-config-provider/README.md +10 -3
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +51 -98
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +4 -4
- package/node_modules/@smithy/node-config-provider/dist-types/fromEnv.d.ts +1 -1
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +2 -2
- package/node_modules/@smithy/node-config-provider/dist-types/fromStatic.d.ts +1 -1
- package/node_modules/@smithy/node-config-provider/package.json +13 -13
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +838 -776
- package/node_modules/@smithy/node-http-handler/dist-es/build-abort-error.js +19 -0
- package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +50 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +65 -44
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +84 -41
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +33 -19
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +56 -53
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +4 -2
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +6 -6
- package/node_modules/@smithy/node-http-handler/dist-es/set-connection-timeout.js +1 -1
- 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-timeout.js +2 -3
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +2 -5
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +4 -2
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +14 -7
- package/node_modules/@smithy/node-http-handler/dist-types/build-abort-error.d.ts +10 -0
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +9 -8
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +32 -14
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +34 -10
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +17 -8
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +4 -4
- package/node_modules/@smithy/node-http-handler/dist-types/set-connection-timeout.d.ts +1 -1
- 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 +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/set-socket-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +5 -4
- package/node_modules/@smithy/node-http-handler/package.json +15 -15
- package/node_modules/@smithy/property-provider/README.md +10 -3
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +105 -158
- package/node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js +1 -1
- package/node_modules/@smithy/property-provider/dist-es/ProviderError.js +2 -1
- package/node_modules/@smithy/property-provider/dist-es/TokenProviderError.js +1 -1
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +2 -1
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +1 -1
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +2 -1
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +1 -1
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +1 -1
- package/node_modules/@smithy/property-provider/dist-types/memoize.d.ts +1 -1
- package/node_modules/@smithy/property-provider/package.json +11 -11
- package/node_modules/@smithy/protocol-http/README.md +13 -0
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +154 -247
- package/node_modules/@smithy/protocol-http/dist-es/Field.js +3 -0
- package/node_modules/@smithy/protocol-http/dist-es/Fields.js +2 -1
- package/node_modules/@smithy/protocol-http/dist-es/httpRequest.js +11 -0
- package/node_modules/@smithy/protocol-http/dist-es/httpResponse.js +4 -0
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +2 -1
- package/node_modules/@smithy/protocol-http/dist-types/Fields.d.ts +2 -2
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +1 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +2 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpResponse.d.ts +1 -1
- package/node_modules/@smithy/protocol-http/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/protocol-http/package.json +11 -11
- package/node_modules/@smithy/querystring-builder/README.md +10 -3
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +21 -47
- package/node_modules/@smithy/querystring-builder/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/querystring-builder/package.json +12 -12
- package/node_modules/@smithy/querystring-parser/README.md +10 -3
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +22 -48
- package/node_modules/@smithy/querystring-parser/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/querystring-parser/package.json +11 -11
- package/node_modules/@smithy/service-error-classification/README.md +13 -0
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +76 -103
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +8 -2
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +7 -1
- package/node_modules/@smithy/service-error-classification/package.json +11 -11
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +7 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +188 -198
- 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 +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +5 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +3 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +4 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSsoSessionData.js +2 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/parseIni.js +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/readFile.js +12 -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 +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +7 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +3 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSharedConfigFiles.d.ts +2 -5
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/loadSsoSessionData.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/mergeConfigFiles.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +2 -2
- 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/types.d.ts +1 -1
- package/node_modules/@smithy/shared-ini-file-loader/package.json +15 -15
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +544 -651
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +2 -1
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +12 -6
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +6 -0
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +5 -4
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4Base.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/credentialDerivation.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalHeaders.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/getCanonicalQuery.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/getPayloadHash.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/headerUtil.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +1 -1
- package/node_modules/@smithy/signature-v4/package.json +18 -18
- package/node_modules/@smithy/smithy-client/README.md +10 -3
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +609 -713
- package/node_modules/@smithy/smithy-client/dist-es/client.js +10 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +31 -21
- package/node_modules/@smithy/smithy-client/dist-es/create-aggregated-client.js +29 -3
- package/node_modules/@smithy/smithy-client/dist-es/exceptions.js +4 -0
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +20 -1
- package/node_modules/@smithy/smithy-client/dist-es/schemaLogFilter.js +34 -0
- package/node_modules/@smithy/smithy-client/dist-types/NoOpLogger.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +33 -7
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +3 -3
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +9 -2
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +9 -7
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
- package/node_modules/@smithy/smithy-client/dist-types/extensions/retry.d.ts +1 -1
- package/node_modules/@smithy/smithy-client/dist-types/schemaLogFilter.d.ts +9 -0
- package/node_modules/@smithy/smithy-client/package.json +19 -17
- package/node_modules/@smithy/types/dist-cjs/index.js +80 -133
- package/node_modules/@smithy/types/dist-es/index.js +3 -0
- package/node_modules/@smithy/types/dist-es/schema/schema-deprecated.js +1 -0
- package/node_modules/@smithy/types/dist-es/schema/static-schemas.js +1 -0
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthScheme.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/auth/HttpAuthSchemeProvider.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/auth/HttpSigner.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/auth/IdentityProviderConfig.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/client.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/command.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/connection/config.d.ts +5 -0
- package/node_modules/@smithy/types/dist-types/connection/manager.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/encode.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoint.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/endpoints/shared.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/extensions/checksum.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/extensions/retry.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +19 -12
- package/node_modules/@smithy/types/dist-types/http.d.ts +3 -2
- package/node_modules/@smithy/types/dist-types/identity/apiKeyIdentity.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/identity/tokenIdentity.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/index.d.ts +3 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +6 -0
- package/node_modules/@smithy/types/dist-types/retry.d.ts +5 -1
- package/node_modules/@smithy/types/dist-types/schema/schema-deprecated.d.ts +143 -0
- package/node_modules/@smithy/types/dist-types/schema/schema.d.ts +33 -58
- package/node_modules/@smithy/types/dist-types/schema/static-schemas.d.ts +99 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/signature.d.ts +22 -5
- package/node_modules/@smithy/types/dist-types/stream.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/uri.d.ts +1 -1
- package/node_modules/@smithy/types/dist-types/util.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/waiter.d.ts +1 -1
- package/node_modules/@smithy/types/package.json +11 -11
- package/node_modules/@smithy/url-parser/README.md +10 -3
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +20 -46
- package/node_modules/@smithy/url-parser/dist-types/index.d.ts +1 -1
- package/node_modules/@smithy/url-parser/package.json +12 -12
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +9 -32
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +23 -23
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +1 -2
- package/node_modules/@smithy/util-base64/dist-es/constants.browser.js +9 -28
- package/node_modules/@smithy/util-base64/dist-types/constants.browser.d.ts +5 -6
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +5 -6
- package/node_modules/@smithy/util-base64/package.json +12 -11
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +26 -53
- package/node_modules/@smithy/util-body-length-browser/package.json +10 -9
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +29 -50
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +8 -6
- package/node_modules/@smithy/util-body-length-node/package.json +10 -9
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +17 -44
- package/node_modules/@smithy/util-buffer-from/package.json +11 -10
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +26 -60
- package/node_modules/@smithy/util-config-provider/dist-types/booleanSelector.d.ts +1 -1
- package/node_modules/@smithy/util-config-provider/dist-types/numberSelector.d.ts +1 -1
- package/node_modules/@smithy/util-config-provider/package.json +10 -9
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +10 -3
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +13 -22
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +13 -12
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +2 -2
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +11 -8
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +13 -14
- package/node_modules/@smithy/util-defaults-mode-node/README.md +10 -3
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +65 -110
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +1 -1
- package/node_modules/@smithy/util-defaults-mode-node/package.json +16 -16
- package/node_modules/@smithy/util-endpoints/README.md +10 -3
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +560 -531
- package/node_modules/@smithy/util-endpoints/dist-es/bdd/BinaryDecisionDiagram.js +15 -0
- package/node_modules/@smithy/util-endpoints/dist-es/cache/EndpointCache.js +3 -2
- package/node_modules/@smithy/util-endpoints/dist-es/decideEndpoint.js +42 -0
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/coalesce.js +8 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +2 -1
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +3 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/ite.js +3 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/split.js +13 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +1 -1
- package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +8 -13
- package/node_modules/@smithy/util-endpoints/dist-es/utils/callFunction.js +1 -11
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +4 -1
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +9 -7
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +12 -8
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +14 -13
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +7 -4
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +32 -2
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +17 -2
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +3 -6
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTreeRule.js +1 -13
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +5 -5
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +28 -5
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperty.js +1 -21
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +1 -5
- package/node_modules/@smithy/util-endpoints/dist-types/bdd/BinaryDecisionDiagram.d.ts +22 -0
- package/node_modules/@smithy/util-endpoints/dist-types/debug/toDebugString.d.ts +3 -3
- package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/coalesce.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/ite.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/lib/split.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointFunctions.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/RuleSetObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/TreeRuleObject.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +3 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/callFunction.d.ts +1 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/customEndpointFunctions.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +2 -11
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +7 -4
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +4 -4
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateEndpointRule.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +7 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +7 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTemplate.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateTreeRule.d.ts +1 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +2 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +8 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperty.d.ts +1 -3
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +1 -1
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +4 -2
- package/node_modules/@smithy/util-endpoints/package.json +15 -15
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +29 -58
- package/node_modules/@smithy/util-hex-encoding/package.json +10 -9
- package/node_modules/@smithy/util-middleware/README.md +9 -4
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +11 -41
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +1 -1
- package/node_modules/@smithy/util-middleware/dist-types/normalizeProvider.d.ts +1 -1
- package/node_modules/@smithy/util-middleware/package.json +11 -11
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +335 -346
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +17 -5
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +3 -2
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +47 -36
- package/node_modules/@smithy/util-retry/dist-es/DefaultRetryBackoffStrategy.js +14 -0
- package/node_modules/@smithy/util-retry/dist-es/DefaultRetryToken.js +25 -0
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +59 -31
- package/node_modules/@smithy/util-retry/dist-es/index.js +1 -0
- package/node_modules/@smithy/util-retry/dist-es/retries-2026-config.js +18 -0
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +15 -10
- package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +2 -2
- package/node_modules/@smithy/util-retry/dist-types/DefaultRateLimiter.d.ts +79 -9
- package/node_modules/@smithy/util-retry/dist-types/DefaultRetryBackoffStrategy.d.ts +12 -0
- package/node_modules/@smithy/util-retry/dist-types/DefaultRetryToken.d.ts +15 -0
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +35 -5
- package/node_modules/@smithy/util-retry/dist-types/config.d.ts +4 -4
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +15 -14
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +11 -0
- package/node_modules/@smithy/util-retry/dist-types/types.d.ts +1 -1
- package/node_modules/@smithy/util-retry/package.json +15 -13
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +3 -2
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +20 -5
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +2 -3
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +1 -1
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +2 -3
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +20 -9
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +1 -2
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +4 -8
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +100 -95
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +1 -2
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +1 -2
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +3 -7
- package/node_modules/@smithy/util-stream/dist-es/ByteArrayCollector.js +3 -2
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +12 -7
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +18 -2
- package/node_modules/@smithy/util-stream/dist-es/getAwsChunkedEncodingStream.js +19 -7
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +3 -6
- package/node_modules/@smithy/util-stream/dist-es/index.js +1 -1
- package/node_modules/@smithy/util-stream/dist-types/ByteArrayCollector.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +1 -0
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.browser.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +11 -9
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +3 -4
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +7 -5
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +4 -1
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.browser.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +7 -3
- package/node_modules/@smithy/util-stream/dist-types/headStream.browser.d.ts +1 -2
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +3 -3
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +4 -1
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.browser.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +1 -1
- package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +3 -0
- package/node_modules/@smithy/util-stream/dist-types/stream-type-check.d.ts +2 -1
- package/node_modules/@smithy/util-stream/package.json +23 -23
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +6 -40
- package/node_modules/@smithy/util-uri-escape/package.json +10 -9
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +27 -60
- package/node_modules/@smithy/util-utf8/package.json +11 -10
- package/node_modules/@smithy/util-waiter/README.md +10 -3
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +196 -177
- package/node_modules/@smithy/util-waiter/dist-es/circularReplacer.js +12 -0
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +27 -8
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +63 -35
- package/node_modules/@smithy/util-waiter/dist-es/waiter.js +4 -3
- package/node_modules/@smithy/util-waiter/dist-types/circularReplacer.d.ts +6 -0
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +2 -2
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +4 -3
- package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +13 -13
- package/node_modules/@smithy/util-waiter/package.json +12 -12
- 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/bowser/README.md +74 -7
- package/node_modules/bowser/bundled.js +1 -1
- package/node_modules/bowser/es5.js +1 -1
- package/node_modules/bowser/index.d.ts +115 -12
- package/node_modules/bowser/package.json +17 -7
- package/node_modules/bowser/src/bowser.js +24 -8
- package/node_modules/bowser/src/constants.js +79 -18
- package/node_modules/bowser/src/parser-browsers.js +483 -0
- package/node_modules/bowser/src/parser-os.js +12 -0
- package/node_modules/bowser/src/parser-platforms.js +301 -1
- package/node_modules/bowser/src/parser.js +106 -10
- package/node_modules/bowser/src/utils.js +33 -15
- package/node_modules/fast-xml-builder/CHANGELOG.md +16 -0
- package/node_modules/fast-xml-builder/LICENSE +21 -0
- package/node_modules/fast-xml-builder/README.md +23 -0
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -0
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +180 -0
- package/node_modules/fast-xml-builder/lib/fxb.min.js +2 -0
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -0
- package/node_modules/fast-xml-builder/package.json +80 -0
- package/node_modules/fast-xml-builder/src/fxb.d.ts +180 -0
- package/node_modules/fast-xml-builder/src/fxb.js +533 -0
- package/node_modules/fast-xml-builder/src/ignoreAttributes.js +18 -0
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +306 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +226 -0
- package/node_modules/fast-xml-parser/README.md +51 -82
- 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 +769 -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 +44 -23
- package/node_modules/fast-xml-parser/src/cli/cli.js +16 -12
- package/node_modules/fast-xml-parser/src/cli/man.js +6 -1
- package/node_modules/fast-xml-parser/src/cli/read.js +30 -79
- package/node_modules/fast-xml-parser/src/fxp.d.ts +372 -36
- package/node_modules/fast-xml-parser/src/fxp.js +11 -8
- package/node_modules/fast-xml-parser/src/ignoreAttributes.js +18 -0
- package/node_modules/fast-xml-parser/src/util.js +28 -39
- package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +16 -0
- package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +106 -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/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 +38 -38
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +5 -280
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +390 -135
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +159 -44
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +553 -314
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +43 -30
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +100 -40
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +31 -16
- package/node_modules/jsrsasign/README.md +10 -18
- package/node_modules/jsrsasign/lib/footer.js +2 -0
- package/node_modules/jsrsasign/lib/jsrsasign-all-min.js +13 -13
- package/node_modules/jsrsasign/lib/jsrsasign-jwths-min.js +8 -8
- package/node_modules/jsrsasign/lib/jsrsasign-rsa-min.js +10 -10
- package/node_modules/jsrsasign/lib/jsrsasign.js +15 -13
- package/node_modules/jsrsasign/package.json +1 -12
- package/node_modules/jsrsasign/test/t_base64x.js +12 -0
- package/node_modules/jsrsasign/test/t_timeeq.js +15 -0
- package/node_modules/path-expression-matcher/LICENSE +21 -0
- package/node_modules/path-expression-matcher/README.md +872 -0
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -0
- package/node_modules/path-expression-matcher/lib/pem.d.cts +634 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js +2 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -0
- package/node_modules/path-expression-matcher/package.json +78 -0
- package/node_modules/path-expression-matcher/src/Expression.js +232 -0
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +209 -0
- package/node_modules/path-expression-matcher/src/Matcher.js +570 -0
- package/node_modules/path-expression-matcher/src/index.d.ts +523 -0
- package/node_modules/path-expression-matcher/src/index.js +29 -0
- package/node_modules/strnum/CHANGELOG.md +18 -0
- package/node_modules/strnum/README.md +7 -0
- package/node_modules/strnum/package.json +4 -3
- package/node_modules/strnum/strnum.js +114 -64
- package/package.json +32 -39
- package/node_modules/@aws-lambda-powertools/commons/LICENSE +0 -14
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/cjs/config/EnvironmentVariablesService.js +0 -96
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/commons/lib/esm/config/EnvironmentVariablesService.js +0 -93
- package/node_modules/@aws-lambda-powertools/logger/LICENSE +0 -14
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/cjs/config/EnvironmentVariablesService.js +0 -107
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.d.ts +0 -78
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.d.ts.map +0 -1
- package/node_modules/@aws-lambda-powertools/logger/lib/esm/config/EnvironmentVariablesService.js +0 -104
- package/node_modules/@aws-sdk/client-kms/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-kms/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-kms/dist-es/models/index.js +0 -1
- package/node_modules/@aws-sdk/client-kms/dist-es/protocols/Aws_json1_1.js +0 -2008
- package/node_modules/@aws-sdk/client-kms/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/protocols/Aws_json1_1.d.ts +0 -479
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-kms/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -638
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/models/index.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/protocols/Aws_restXml.js +0 -7771
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/index.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/protocols/Aws_restXml.d.ts +0 -893
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +0 -1197
- package/node_modules/@aws-sdk/client-sso/LICENSE +0 -201
- package/node_modules/@aws-sdk/client-sso/README.md +0 -252
- package/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js +0 -68
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +0 -625
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js +0 -40
- package/node_modules/@aws-sdk/client-sso/dist-es/SSO.js +0 -15
- package/node_modules/@aws-sdk/client-sso/dist-es/SSOClient.js +0 -48
- package/node_modules/@aws-sdk/client-sso/dist-es/auth/httpAuthSchemeProvider.js +0 -62
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/GetRoleCredentialsCommand.js +0 -23
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountRolesCommand.js +0 -23
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/ListAccountsCommand.js +0 -23
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/LogoutCommand.js +0 -23
- package/node_modules/@aws-sdk/client-sso/dist-es/commands/index.js +0 -4
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-sso/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-sso/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/client-sso/dist-es/models/index.js +0 -1
- package/node_modules/@aws-sdk/client-sso/dist-es/models/models_0.js +0 -75
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountRolesPaginator.js +0 -4
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/ListAccountsPaginator.js +0 -4
- package/node_modules/@aws-sdk/client-sso/dist-es/pagination/index.js +0 -3
- package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +0 -210
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.browser.js +0 -33
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.js +0 -49
- package/node_modules/@aws-sdk/client-sso/dist-es/runtimeConfig.shared.js +0 -36
- package/node_modules/@aws-sdk/client-sso/dist-types/SSO.d.ts +0 -53
- package/node_modules/@aws-sdk/client-sso/dist-types/SSOClient.d.ts +0 -200
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthExtensionConfiguration.d.ts +0 -29
- package/node_modules/@aws-sdk/client-sso/dist-types/auth/httpAuthSchemeProvider.d.ts +0 -75
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/GetRoleCredentialsCommand.d.ts +0 -95
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountRolesCommand.d.ts +0 -96
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/ListAccountsCommand.d.ts +0 -98
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/LogoutCommand.d.ts +0 -95
- package/node_modules/@aws-sdk/client-sso/dist-types/commands/index.d.ts +0 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/EndpointParameters.d.ts +0 -38
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/endpointResolver.d.ts +0 -5
- package/node_modules/@aws-sdk/client-sso/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/extensionConfiguration.d.ts +0 -9
- package/node_modules/@aws-sdk/client-sso/dist-types/index.d.ts +0 -29
- package/node_modules/@aws-sdk/client-sso/dist-types/models/SSOServiceException.d.ts +0 -14
- package/node_modules/@aws-sdk/client-sso/dist-types/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +0 -266
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/Interfaces.d.ts +0 -8
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountRolesPaginator.d.ts +0 -7
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/ListAccountsPaginator.d.ts +0 -7
- package/node_modules/@aws-sdk/client-sso/dist-types/pagination/index.d.ts +0 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/protocols/Aws_restJson1.d.ts +0 -38
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.browser.d.ts +0 -57
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.d.ts +0 -57
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.native.d.ts +0 -56
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeConfig.shared.d.ts +0 -32
- package/node_modules/@aws-sdk/client-sso/dist-types/runtimeExtensions.d.ts +0 -17
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSO.d.ts +0 -73
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/SSOClient.d.ts +0 -138
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +0 -46
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/GetRoleCredentialsCommand.d.ts +0 -51
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountRolesCommand.d.ts +0 -50
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +0 -47
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/LogoutCommand.d.ts +0 -41
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/commands/index.d.ts +0 -4
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/SSOServiceException.d.ts +0 -9
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +0 -93
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -5
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountRolesPaginator.d.ts +0 -11
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +0 -11
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/pagination/index.d.ts +0 -3
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -53
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -112
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.d.ts +0 -107
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -116
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -49
- package/node_modules/@aws-sdk/client-sso/package.json +0 -98
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/crc64-nvme-crt-container.d.ts +0 -13
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js +0 -255
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/protocols/Aws_query.js +0 -528
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -11
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/protocols/Aws_query.d.ts +0 -20
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +0 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/index.d.ts +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/protocols/Aws_query.d.ts +0 -29
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/config.js +0 -12
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/getRealRegion.js +0 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/index.js +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/isFipsRegion.js +0 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/resolveRegionConfig.js +0 -24
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/config.d.ts +0 -17
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/getRealRegion.d.ts +0 -4
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/index.d.ts +0 -8
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/isFipsRegion.d.ts +0 -4
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/resolveRegionConfig.d.ts +0 -37
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -8
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -1
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -14
- package/node_modules/@smithy/abort-controller/README.md +0 -4
- package/node_modules/@smithy/abort-controller/dist-cjs/AbortController.js +0 -1
- package/node_modules/@smithy/abort-controller/dist-cjs/AbortSignal.js +0 -1
- package/node_modules/@smithy/abort-controller/dist-cjs/index.js +0 -84
- package/node_modules/@smithy/abort-controller/dist-es/AbortController.js +0 -9
- package/node_modules/@smithy/abort-controller/dist-es/AbortSignal.js +0 -20
- package/node_modules/@smithy/abort-controller/dist-es/index.js +0 -2
- package/node_modules/@smithy/abort-controller/dist-types/AbortController.d.ts +0 -16
- package/node_modules/@smithy/abort-controller/dist-types/AbortSignal.d.ts +0 -21
- package/node_modules/@smithy/abort-controller/dist-types/index.d.ts +0 -9
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortController.d.ts +0 -16
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/AbortSignal.d.ts +0 -21
- package/node_modules/@smithy/abort-controller/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@smithy/abort-controller/package.json +0 -62
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/index.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveCustomEndpointsConfig.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/resolveEndpointsConfig.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/endpointsConfig/utils/getEndpointFromRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/config.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/getRealRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/index.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/isFipsRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionConfig/resolveRegionConfig.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariant.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/EndpointVariantTag.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/PartitionHash.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/RegionHash.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getHostnameFromVariants.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getRegionInfo.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedHostname.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedPartition.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/getResolvedSigningRegion.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-cjs/regionInfo/index.js +0 -1
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -17
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -17
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/index.d.ts +0 -16
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -37
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -11
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/config.d.ts +0 -17
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/getRealRegion.d.ts +0 -4
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/index.d.ts +0 -8
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/isFipsRegion.d.ts +0 -4
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionConfig/resolveRegionConfig.d.ts +0 -34
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariant.d.ts +0 -11
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/EndpointVariantTag.d.ts +0 -10
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/PartitionHash.d.ts +0 -15
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/RegionHash.d.ts +0 -13
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getHostnameFromVariants.d.ts +0 -14
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getRegionInfo.d.ts +0 -19
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedHostname.d.ts +0 -13
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedPartition.d.ts +0 -13
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/getResolvedSigningRegion.d.ts +0 -14
- package/node_modules/@smithy/config-resolver/dist-types/ts3.4/regionInfo/index.d.ts +0 -12
- package/node_modules/@smithy/core/dist-cjs/protocols/requestBuilder.js +0 -1
- package/node_modules/@smithy/core/dist-types/ts3.4/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -18
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +0 -18
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +0 -33
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-auth-scheme/resolveAuthOptions.d.ts +0 -10
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/getHttpSigningMiddleware.d.ts +0 -9
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/httpSigningMiddleware.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/middleware-http-signing/index.d.ts +0 -2
- package/node_modules/@smithy/core/dist-types/ts3.4/normalizeProvider.d.ts +0 -7
- package/node_modules/@smithy/core/dist-types/ts3.4/pagination/createPaginator.d.ts +0 -7
- package/node_modules/@smithy/core/dist-types/ts3.4/protocols/requestBuilder.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/setFeature.d.ts +0 -12
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/CborCodec.d.ts +0 -29
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/SmithyRpcV2CborProtocol.d.ts +0 -22
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/byte-printer.d.ts +0 -6
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-decode.d.ts +0 -17
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-encode.d.ts +0 -9
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor-types.d.ts +0 -65
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/cbor.d.ts +0 -26
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/index.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/cbor/parseCborBody.d.ts +0 -31
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpBindingProtocol.d.ts +0 -15
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/HttpProtocol.d.ts +0 -33
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/RpcProtocol.d.ts +0 -11
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/collect-stream-body.d.ts +0 -10
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/extended-encode-uri-component.d.ts +0 -7
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/index.d.ts +0 -11
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/requestBuilder.d.ts +0 -51
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/resolve-path.d.ts +0 -4
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/FromStringShapeDeserializer.d.ts +0 -14
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeDeserializer.d.ts +0 -18
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/HttpInterceptingShapeSerializer.d.ts +0 -20
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/ToStringShapeSerializer.d.ts +0 -15
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/protocols/serde/determineTimestampFormat.d.ts +0 -9
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/TypeRegistry.d.ts +0 -55
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/deref.d.ts +0 -6
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/index.d.ts +0 -12
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/getSchemaSerdePlugin.d.ts +0 -14
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schema-middleware-types.d.ts +0 -11
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaDeserializationMiddleware.d.ts +0 -9
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/middleware/schemaSerializationMiddleware.d.ts +0 -6
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ErrorSchema.d.ts +0 -38
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/ListSchema.d.ts +0 -20
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/MapSchema.d.ts +0 -25
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/NormalizedSchema.d.ts +0 -125
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/OperationSchema.d.ts +0 -20
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/Schema.d.ts +0 -11
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/SimpleSchema.d.ts +0 -20
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/StructureSchema.d.ts +0 -24
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/schema/schemas/sentinels.d.ts +0 -21
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/copyDocumentWithTransform.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/date-utils.d.ts +0 -73
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/index.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/lazy-json.d.ts +0 -45
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/parse-utils.d.ts +0 -270
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/quote-header.d.ts +0 -6
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-every.d.ts +0 -11
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/split-header.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/ts3.4/submodules/serde/value/NumericValue.d.ts +0 -33
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/DefaultIdentityProviderConfig.d.ts +0 -15
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/httpAuthSchemes/noAuth.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/ts3.4/util-identity-and-auth/memoizeIdentityProvider.d.ts +0 -30
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/Endpoint.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointConfigOptions.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointMode.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/config/EndpointModeConfigOptions.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/error/InstanceMetadataV1FallbackError.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromContainerMetadata.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/fromInstanceMetadata.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/ImdsCredentials.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/RemoteProviderInit.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/httpRequest.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/index.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/remoteProvider/retry.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getExtendedInstanceMetadataCredentials.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/getInstanceMetadataEndpoint.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/utils/staticStabilityProvider.js +0 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/Endpoint.d.ts +0 -7
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointConfigOptions.d.ts +0 -13
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointMode.d.ts +0 -7
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/config/EndpointModeConfigOptions.d.ts +0 -13
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/error/InstanceMetadataV1FallbackError.d.ts +0 -12
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromContainerMetadata.d.ts +0 -21
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/fromInstanceMetadata.d.ts +0 -10
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/index.d.ts +0 -28
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/ImdsCredentials.d.ts +0 -19
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/RemoteProviderInit.d.ts +0 -40
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/httpRequest.d.ts +0 -6
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/index.d.ts +0 -8
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/remoteProvider/retry.d.ts +0 -10
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/types.d.ts +0 -7
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getExtendedInstanceMetadataCredentials.d.ts +0 -6
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/getInstanceMetadataEndpoint.d.ts +0 -21
- package/node_modules/@smithy/credential-provider-imds/dist-types/ts3.4/utils/staticStabilityProvider.d.ts +0 -16
- package/node_modules/@smithy/eventstream-codec/dist-cjs/EventStreamCodec.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/HeaderMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Int64.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/Message.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageDecoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/MessageEncoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageDecoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/SmithyMessageEncoderStream.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/TestVectors.fixture.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/splitMessage.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-cjs/vectorTypes.fixture.js +0 -1
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/EventStreamCodec.d.ts +0 -31
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/HeaderMarshaller.d.ts +0 -12
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Int64.d.ts +0 -20
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/Message.d.ts +0 -26
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageDecoderStream.d.ts +0 -17
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/MessageEncoderStream.d.ts +0 -18
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageDecoderStream.d.ts +0 -17
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/SmithyMessageEncoderStream.d.ts +0 -17
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/TestVectors.fixture.d.ts +0 -2
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/splitMessage.d.ts +0 -11
- package/node_modules/@smithy/eventstream-codec/dist-types/ts3.4/vectorTypes.fixture.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/EventStreamMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/provider.js +0 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/utils.js +0 -1
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -47
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/index.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/ts3.4/utils.d.ts +0 -13
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/EventStreamSerdeConfig.js +0 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/ts3.4/EventStreamSerdeConfig.d.ts +0 -27
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/EventStreamMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/provider.js +0 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/utils.js +0 -1
- package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-node/dist-types/ts3.4/utils.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/EventStreamMarshaller.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getChunkedStream.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/getUnmarshalledStream.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/provider.js +0 -1
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getChunkedStream.d.ts +0 -4
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/getUnmarshalledStream.d.ts +0 -18
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/ts3.4/provider.d.ts +0 -3
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/create-request.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/fetch-http-handler.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/request-timeout.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/stream-collector.js +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/create-request.d.ts +0 -6
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/fetch-http-handler.d.ts +0 -41
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/request-timeout.d.ts +0 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/ts3.4/stream-collector.d.ts +0 -2
- package/node_modules/@smithy/hash-blob-browser/dist-types/ts3.4/index.d.ts +0 -5
- package/node_modules/@smithy/hash-node/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@smithy/hash-stream-node/dist-cjs/HashCalculator.js +0 -1
- package/node_modules/@smithy/hash-stream-node/dist-cjs/fileStreamHasher.js +0 -1
- package/node_modules/@smithy/hash-stream-node/dist-cjs/readableStreamHasher.js +0 -1
- package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/HashCalculator.d.ts +0 -10
- package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/fileStreamHasher.d.ts +0 -6
- package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/hash-stream-node/dist-types/ts3.4/readableStreamHasher.d.ts +0 -6
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidFunction.js +0 -1
- package/node_modules/@smithy/invalid-dependency/dist-cjs/invalidProvider.js +0 -1
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidFunction.d.ts +0 -4
- package/node_modules/@smithy/invalid-dependency/dist-types/ts3.4/invalidProvider.d.ts +0 -5
- package/node_modules/@smithy/md5-js/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/md5-js/dist-types/ts3.4/constants.d.ts +0 -12
- package/node_modules/@smithy/md5-js/dist-types/ts3.4/index.d.ts +0 -16
- package/node_modules/@smithy/middleware-content-length/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/createConfigValueProvider.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromInstructions.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/index.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/toEndpointV1.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/endpointMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/getEndpointPlugin.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointConfig.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/resolveEndpointRequiredConfig.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/index.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/service-customizations/s3.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/createConfigValueProvider.d.ts +0 -13
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromConfig.d.ts +0 -4
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointFromInstructions.d.ts +0 -28
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/adaptors/toEndpointV1.d.ts +0 -5
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/endpointMiddleware.d.ts +0 -10
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/getEndpointPlugin.d.ts +0 -11
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/index.d.ts +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointConfig.d.ts +0 -106
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/resolveEndpointRequiredConfig.d.ts +0 -32
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/index.d.ts +0 -4
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/service-customizations/s3.d.ts +0 -26
- package/node_modules/@smithy/middleware-endpoint/dist-types/ts3.4/types.d.ts +0 -41
- package/node_modules/@smithy/middleware-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/StandardRetryStrategy.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/configurations.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/defaultRetryQuota.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/delayDecider.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/omitRetryHeadersMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryDecider.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/retryMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-cjs/util.js +0 -1
- package/node_modules/@smithy/middleware-retry/dist-es/AdaptiveRetryStrategy.js +0 -20
- package/node_modules/@smithy/middleware-retry/dist-es/StandardRetryStrategy.js +0 -90
- package/node_modules/@smithy/middleware-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -22
- package/node_modules/@smithy/middleware-retry/dist-types/StandardRetryStrategy.d.ts +0 -33
- package/node_modules/@smithy/middleware-retry/dist-types/defaultRetryQuota.d.ts +0 -24
- package/node_modules/@smithy/middleware-retry/dist-types/delayDecider.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/retryDecider.d.ts +0 -6
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -22
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -33
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/configurations.d.ts +0 -66
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/defaultRetryQuota.d.ts +0 -24
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/delayDecider.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/index.d.ts +0 -7
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/isStreamingPayload/isStreamingPayload.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/omitRetryHeadersMiddleware.d.ts +0 -13
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryDecider.d.ts +0 -6
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/retryMiddleware.d.ts +0 -18
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/types.d.ts +0 -65
- package/node_modules/@smithy/middleware-retry/dist-types/ts3.4/util.d.ts +0 -2
- package/node_modules/@smithy/middleware-retry/dist-types/types.d.ts +0 -65
- package/node_modules/@smithy/middleware-serde/dist-cjs/deserializerMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-serde/dist-cjs/serdePlugin.js +0 -1
- package/node_modules/@smithy/middleware-serde/dist-cjs/serializerMiddleware.js +0 -1
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/deserializerMiddleware.d.ts +0 -6
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serdePlugin.d.ts +0 -24
- package/node_modules/@smithy/middleware-serde/dist-types/ts3.4/serializerMiddleware.d.ts +0 -6
- package/node_modules/@smithy/middleware-stack/dist-cjs/MiddlewareStack.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/MiddlewareStack.d.ts +0 -5
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@smithy/middleware-stack/dist-types/ts3.4/types.d.ts +0 -22
- package/node_modules/@smithy/node-config-provider/dist-cjs/configLoader.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromEnv.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromSharedConfigFiles.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/fromStatic.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-cjs/getSelectorName.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/configLoader.d.ts +0 -31
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromEnv.d.ts +0 -20
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromSharedConfigFiles.d.ts +0 -22
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/fromStatic.d.ts +0 -9
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/getSelectorName.d.ts +0 -9
- package/node_modules/@smithy/node-config-provider/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/node-http-handler/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/get-transformed-headers.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http-handler.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-manager.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-connection-pool.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/node-http2-handler.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/readable.mock.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/server.mock.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-connection-timeout.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-keep-alive.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/set-socket-timeout.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/collector.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/index.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/stream-collector/readable.mock.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/timing.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-cjs/write-request-body.js +0 -1
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/constants.d.ts +0 -5
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/get-transformed-headers.d.ts +0 -4
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http-handler.d.ts +0 -45
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-manager.d.ts +0 -24
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-connection-pool.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/node-http2-handler.d.ts +0 -62
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/readable.mock.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/server.mock.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-connection-timeout.d.ts +0 -2
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-keep-alive.d.ts +0 -6
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/set-socket-timeout.d.ts +0 -2
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/collector.d.ts +0 -5
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/index.d.ts +0 -6
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/stream-collector/readable.mock.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/timing.d.ts +0 -8
- package/node_modules/@smithy/node-http-handler/dist-types/ts3.4/write-request-body.d.ts +0 -11
- package/node_modules/@smithy/property-provider/dist-cjs/CredentialsProviderError.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/ProviderError.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/TokenProviderError.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/chain.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/fromStatic.js +0 -1
- package/node_modules/@smithy/property-provider/dist-cjs/memoize.js +0 -1
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/CredentialsProviderError.d.ts +0 -30
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/ProviderError.d.ts +0 -39
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/TokenProviderError.d.ts +0 -30
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/chain.d.ts +0 -13
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/fromStatic.d.ts +0 -5
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/index.d.ts +0 -24
- package/node_modules/@smithy/property-provider/dist-types/ts3.4/memoize.d.ts +0 -40
- package/node_modules/@smithy/protocol-http/dist-cjs/Field.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/Fields.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/httpExtensionConfiguration.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/httpHandler.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/httpRequest.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/httpResponse.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/isValidHostname.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Field.d.ts +0 -49
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/Fields.d.ts +0 -44
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/httpExtensionConfiguration.d.ts +0 -33
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpHandler.d.ts +0 -35
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpRequest.d.ts +0 -55
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/httpResponse.d.ts +0 -29
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/isValidHostname.d.ts +0 -1
- package/node_modules/@smithy/protocol-http/dist-types/ts3.4/types.d.ts +0 -21
- package/node_modules/@smithy/querystring-builder/dist-types/ts3.4/index.d.ts +0 -5
- package/node_modules/@smithy/querystring-parser/dist-types/ts3.4/index.d.ts +0 -5
- package/node_modules/@smithy/service-error-classification/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/constants.d.ts +0 -30
- package/node_modules/@smithy/service-error-classification/dist-types/ts3.4/index.d.ts +0 -24
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigData.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getConfigFilepath.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getCredentialsFilepath.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getProfileName.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSsoSessionData.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSharedConfigFiles.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/loadSsoSessionData.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/mergeConfigFiles.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseIni.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/parseKnownFiles.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/slurpFile.js +0 -13
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/slurpFile.js +0 -9
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/slurpFile.d.ts +0 -5
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigData.d.ts +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getConfigFilepath.d.ts +0 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getCredentialsFilepath.d.ts +0 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getHomeDir.d.ts +0 -6
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getProfileName.d.ts +0 -15
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFilepath.d.ts +0 -5
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSSOTokenFromFile.d.ts +0 -46
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/getSsoSessionData.d.ts +0 -6
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSharedConfigFiles.d.ts +0 -36
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/loadSsoSessionData.d.ts +0 -17
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/mergeConfigFiles.d.ts +0 -7
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseIni.d.ts +0 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/parseKnownFiles.d.ts +0 -18
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/slurpFile.d.ts +0 -5
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/ts3.4/types.d.ts +0 -16
- package/node_modules/@smithy/signature-v4/dist-cjs/HeaderFormatter.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/SignatureV4Base.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/credentialDerivation.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalHeaders.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/getCanonicalQuery.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/getPayloadHash.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/headerUtil.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/moveHeadersToQuery.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/prepareRequest.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/signature-v4a-container.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/suite.fixture.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-cjs/utilDate.js +0 -1
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/HeaderFormatter.d.ts +0 -24
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4.d.ts +0 -20
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/SignatureV4Base.d.ts +0 -69
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/constants.d.ts +0 -43
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/credentialDerivation.d.ts +0 -30
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalHeaders.d.ts +0 -5
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getCanonicalQuery.d.ts +0 -5
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/getPayloadHash.d.ts +0 -5
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/headerUtil.d.ts +0 -4
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/index.d.ts +0 -11
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/moveHeadersToQuery.d.ts +0 -10
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/prepareRequest.d.ts +0 -5
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/signature-v4a-container.d.ts +0 -24
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/suite.fixture.d.ts +0 -14
- package/node_modules/@smithy/signature-v4/dist-types/ts3.4/utilDate.d.ts +0 -2
- package/node_modules/@smithy/smithy-client/dist-cjs/NoOpLogger.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/client.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/collect-stream-body.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/command.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/create-aggregated-client.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/default-error-handler.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/defaults-mode.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/emitWarningIfUnsupportedVersion.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/exceptions.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extended-encode-uri-component.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/get-array-if-single-item.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/get-value-from-text-node.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/is-serializable-header-value.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/object-mapping.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/resolve-path.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/ser-utils.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-cjs/serde-json.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/NoOpLogger.d.ts +0 -11
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/client.d.ts +0 -61
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/collect-stream-body.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/command.d.ts +0 -119
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/constants.d.ts +0 -4
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/create-aggregated-client.d.ts +0 -11
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/default-error-handler.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/defaults-mode.d.ts +0 -28
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/emitWarningIfUnsupportedVersion.d.ts +0 -8
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/exceptions.d.ts +0 -42
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extended-encode-uri-component.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/checksum.d.ts +0 -24
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -38
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-array-if-single-item.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/get-value-from-text-node.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/index.d.ts +0 -21
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/is-serializable-header-value.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/object-mapping.d.ts +0 -178
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/resolve-path.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/ser-utils.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/ts3.4/serde-json.d.ts +0 -12
- package/node_modules/@smithy/types/dist-cjs/abort-handler.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/abort.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpApiKeyAuth.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthScheme.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpAuthSchemeProvider.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/HttpSigner.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/IdentityProviderConfig.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/auth.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/auth/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/blob/blob-payload-input-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/checksum.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/client.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/command.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/config.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/manager.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/connection/pool.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/crypto.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/downlevel-ts3.4/transform/type-transform.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/encode.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoint.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/EndpointRuleObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/ErrorRuleObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/RuleSetObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/TreeRuleObject.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/endpoints/shared.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/eventStream.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/checksum.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultClientConfiguration.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/defaultExtensionConfiguration.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/extensions/retry.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/externals-check/browser-externals-check.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/feature-ids.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/http/httpHandlerInitialization.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/http.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/apiKeyIdentity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/awsCredentialIdentity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/identity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/index.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/identity/tokenIdentity.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/logger.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/middleware.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/pagination.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/profile.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/response.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/retry.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/schema/schema.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/schema/sentinels.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/schema/traits.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/serde.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/shapes.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/signature.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/stream.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-common-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-input-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/streaming-payload/streaming-blob-payload-output-types.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transfer.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/client-method-transforms.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/client-payload-blob-type-narrow.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/exact.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/mutable.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/no-undefined.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/transform/type-transform.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/uri.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/util.js +0 -1
- package/node_modules/@smithy/types/dist-cjs/waiter.js +0 -1
- package/node_modules/@smithy/types/dist-types/ts3.4/abort-handler.d.ts +0 -7
- package/node_modules/@smithy/types/dist-types/ts3.4/abort.d.ts +0 -50
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpApiKeyAuth.d.ts +0 -7
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthScheme.d.ts +0 -49
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpAuthSchemeProvider.d.ts +0 -20
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/HttpSigner.d.ts +0 -41
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/IdentityProviderConfig.d.ts +0 -14
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/auth.d.ts +0 -57
- package/node_modules/@smithy/types/dist-types/ts3.4/auth/index.d.ts +0 -6
- package/node_modules/@smithy/types/dist-types/ts3.4/blob/blob-payload-input-types.d.ts +0 -40
- package/node_modules/@smithy/types/dist-types/ts3.4/checksum.d.ts +0 -63
- package/node_modules/@smithy/types/dist-types/ts3.4/client.d.ts +0 -57
- package/node_modules/@smithy/types/dist-types/ts3.4/command.d.ts +0 -28
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/config.d.ts +0 -10
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/index.d.ts +0 -3
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/manager.d.ts +0 -34
- package/node_modules/@smithy/types/dist-types/ts3.4/connection/pool.d.ts +0 -32
- package/node_modules/@smithy/types/dist-types/ts3.4/crypto.d.ts +0 -60
- package/node_modules/@smithy/types/dist-types/ts3.4/downlevel-ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@smithy/types/dist-types/ts3.4/encode.d.ts +0 -31
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoint.d.ts +0 -77
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/EndpointRuleObject.d.ts +0 -27
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/ErrorRuleObject.d.ts +0 -10
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/RuleSetObject.d.ts +0 -28
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/TreeRuleObject.d.ts +0 -16
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/index.d.ts +0 -5
- package/node_modules/@smithy/types/dist-types/ts3.4/endpoints/shared.d.ts +0 -55
- package/node_modules/@smithy/types/dist-types/ts3.4/eventStream.d.ts +0 -137
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/checksum.d.ts +0 -58
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultClientConfiguration.d.ts +0 -33
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/defaultExtensionConfiguration.d.ts +0 -9
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/index.d.ts +0 -4
- package/node_modules/@smithy/types/dist-types/ts3.4/extensions/retry.d.ts +0 -18
- package/node_modules/@smithy/types/dist-types/ts3.4/externals-check/browser-externals-check.d.ts +0 -35
- package/node_modules/@smithy/types/dist-types/ts3.4/feature-ids.d.ts +0 -16
- package/node_modules/@smithy/types/dist-types/ts3.4/http/httpHandlerInitialization.d.ts +0 -121
- package/node_modules/@smithy/types/dist-types/ts3.4/http.d.ts +0 -112
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/apiKeyIdentity.d.ts +0 -14
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/awsCredentialIdentity.d.ts +0 -31
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/identity.d.ts +0 -15
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/index.d.ts +0 -4
- package/node_modules/@smithy/types/dist-types/ts3.4/identity/tokenIdentity.d.ts +0 -14
- package/node_modules/@smithy/types/dist-types/ts3.4/index.d.ts +0 -40
- package/node_modules/@smithy/types/dist-types/ts3.4/logger.d.ts +0 -13
- package/node_modules/@smithy/types/dist-types/ts3.4/middleware.d.ts +0 -534
- package/node_modules/@smithy/types/dist-types/ts3.4/pagination.d.ts +0 -33
- package/node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts +0 -30
- package/node_modules/@smithy/types/dist-types/ts3.4/response.d.ts +0 -40
- package/node_modules/@smithy/types/dist-types/ts3.4/retry.d.ts +0 -133
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/schema.d.ts +0 -276
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/sentinels.d.ts +0 -65
- package/node_modules/@smithy/types/dist-types/ts3.4/schema/traits.d.ts +0 -46
- package/node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts +0 -114
- package/node_modules/@smithy/types/dist-types/ts3.4/shapes.d.ts +0 -82
- package/node_modules/@smithy/types/dist-types/ts3.4/signature.d.ts +0 -155
- package/node_modules/@smithy/types/dist-types/ts3.4/stream.d.ts +0 -22
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-common-types.d.ts +0 -32
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-input-types.d.ts +0 -60
- package/node_modules/@smithy/types/dist-types/ts3.4/streaming-payload/streaming-blob-payload-output-types.d.ts +0 -51
- package/node_modules/@smithy/types/dist-types/ts3.4/transfer.d.ts +0 -41
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-method-transforms.d.ts +0 -26
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/client-payload-blob-type-narrow.d.ts +0 -81
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/exact.d.ts +0 -14
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/mutable.d.ts +0 -6
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/no-undefined.d.ts +0 -88
- package/node_modules/@smithy/types/dist-types/ts3.4/transform/type-transform.d.ts +0 -41
- package/node_modules/@smithy/types/dist-types/ts3.4/uri.d.ts +0 -17
- package/node_modules/@smithy/types/dist-types/ts3.4/util.d.ts +0 -192
- package/node_modules/@smithy/types/dist-types/ts3.4/waiter.d.ts +0 -35
- package/node_modules/@smithy/url-parser/dist-types/ts3.4/index.d.ts +0 -5
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/calculateBodyLength.js +0 -1
- package/node_modules/@smithy/util-body-length-node/dist-cjs/calculateBodyLength.js +0 -1
- package/node_modules/@smithy/util-config-provider/dist-cjs/booleanSelector.js +0 -1
- package/node_modules/@smithy/util-config-provider/dist-cjs/numberSelector.js +0 -1
- package/node_modules/@smithy/util-config-provider/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/constants.d.ts +0 -12
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/ts3.4/resolveDefaultsModeConfig.native.d.ts +0 -16
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/defaultsModeConfig.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/resolveDefaultsModeConfig.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/constants.d.ts +0 -24
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/defaultsModeConfig.d.ts +0 -6
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/ts3.4/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-endpoints/dist-cjs/cache/EndpointCache.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/debugId.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/index.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/debug/toDebugString.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/getEndpointUrlConfig.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/booleanEquals.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttr.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/getAttrPathList.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/index.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isIpAddress.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isSet.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/isValidHostLabel.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/not.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/parseURL.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/stringEquals.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/substring.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/lib/uriEncode.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/resolveEndpoint.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointError.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointFunctions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/EndpointRuleObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/ErrorRuleObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/RuleSetObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/TreeRuleObject.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/index.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/types/shared.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/callFunction.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/customEndpointFunctions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/endpointFunctions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateCondition.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateConditions.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateEndpointRule.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateErrorRule.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateExpression.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateRules.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTemplate.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/evaluateTreeRule.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointHeaders.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperties.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointProperty.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getEndpointUrl.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/getReferenceValue.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-cjs/utils/index.js +0 -1
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/cache/EndpointCache.d.ts +0 -34
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/debugId.d.ts +0 -1
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/index.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/debug/toDebugString.d.ts +0 -9
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/booleanEquals.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttr.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/getAttrPathList.d.ts +0 -4
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/index.d.ts +0 -9
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -4
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isSet.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/isValidHostLabel.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/not.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/parseURL.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/stringEquals.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/substring.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/lib/uriEncode.d.ts +0 -4
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -3
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointFunctions.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -4
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -3
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -25
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/callFunction.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/customEndpointFunctions.d.ts +0 -4
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/endpointFunctions.d.ts +0 -11
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateCondition.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateConditions.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateEndpointRule.d.ts +0 -3
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateErrorRule.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateExpression.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateRules.d.ts +0 -3
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTemplate.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/evaluateTreeRule.d.ts +0 -3
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointHeaders.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperties.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointProperty.d.ts +0 -3
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getEndpointUrl.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/getReferenceValue.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/ts3.4/utils/index.d.ts +0 -2
- package/node_modules/@smithy/util-middleware/dist-cjs/getSmithyContext.js +0 -1
- package/node_modules/@smithy/util-middleware/dist-cjs/normalizeProvider.js +0 -1
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/util-middleware/dist-types/ts3.4/normalizeProvider.d.ts +0 -7
- package/node_modules/@smithy/util-retry/dist-cjs/AdaptiveRetryStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/ConfiguredRetryStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/DefaultRateLimiter.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/StandardRetryStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/config.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/constants.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryBackoffStrategy.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/defaultRetryToken.js +0 -1
- package/node_modules/@smithy/util-retry/dist-cjs/types.js +0 -1
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryBackoffStrategy.js +0 -14
- package/node_modules/@smithy/util-retry/dist-es/defaultRetryToken.js +0 -11
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryBackoffStrategy.d.ts +0 -5
- package/node_modules/@smithy/util-retry/dist-types/defaultRetryToken.d.ts +0 -9
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/AdaptiveRetryStrategy.d.ts +0 -33
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/ConfiguredRetryStrategy.d.ts +0 -32
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/DefaultRateLimiter.d.ts +0 -49
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/StandardRetryStrategy.d.ts +0 -26
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/config.d.ts +0 -20
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/constants.d.ts +0 -59
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryBackoffStrategy.d.ts +0 -5
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/defaultRetryToken.d.ts +0 -9
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/index.d.ts +0 -7
- package/node_modules/@smithy/util-retry/dist-types/ts3.4/types.d.ts +0 -19
- package/node_modules/@smithy/util-stream/dist-cjs/blob/Uint8ArrayBlobAdapter.js +0 -1
- package/node_modules/@smithy/util-stream/dist-cjs/blob/transforms.js +0 -1
- package/node_modules/@smithy/util-stream/dist-es/blob/transforms.js +0 -15
- package/node_modules/@smithy/util-stream/dist-types/blob/transforms.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/ByteArrayCollector.d.ts +0 -13
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/Uint8ArrayBlobAdapter.d.ts +0 -21
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/blob/transforms.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.browser.d.ts +0 -37
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/ChecksumStream.d.ts +0 -59
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.browser.d.ts +0 -15
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/checksum/createChecksumStream.d.ts +0 -11
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadable.d.ts +0 -12
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/createBufferedReadableStream.d.ts +0 -54
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.browser.d.ts +0 -5
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/getAwsChunkedEncodingStream.d.ts +0 -6
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.browser.d.ts +0 -8
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/headStream.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/index.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.browser.d.ts +0 -7
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/sdk-stream-mixin.d.ts +0 -8
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.browser.d.ts +0 -8
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/splitStream.d.ts +0 -14
- package/node_modules/@smithy/util-stream/dist-types/ts3.4/stream-type-check.d.ts +0 -16
- package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri-path.js +0 -1
- package/node_modules/@smithy/util-uri-escape/dist-cjs/escape-uri.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/createWaiter.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/poller.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/index.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/sleep.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/utils/validate.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-cjs/waiter.js +0 -1
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/createWaiter.d.ts +0 -11
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/poller.d.ts +0 -10
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/index.d.ts +0 -8
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/sleep.d.ts +0 -4
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/utils/validate.d.ts +0 -8
- package/node_modules/@smithy/util-waiter/dist-types/ts3.4/waiter.d.ts +0 -49
- package/node_modules/@types/uuid/LICENSE +0 -21
- package/node_modules/@types/uuid/README.md +0 -15
- package/node_modules/@types/uuid/index.d.mts +0 -12
- package/node_modules/@types/uuid/index.d.ts +0 -86
- package/node_modules/@types/uuid/package.json +0 -54
- package/node_modules/bowser/CHANGELOG.md +0 -218
- package/node_modules/fast-xml-parser/src/v5/CharsSymbol.js +0 -16
- package/node_modules/fast-xml-parser/src/v5/EntitiesParser.js +0 -107
- package/node_modules/fast-xml-parser/src/v5/OptionsBuilder.js +0 -64
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/BaseOutputBuilder.js +0 -71
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsArrBuilder.js +0 -103
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsMinArrBuilder.js +0 -102
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/JsObjBuilder.js +0 -156
- package/node_modules/fast-xml-parser/src/v5/OutputBuilders/ParserOptionsBuilder.js +0 -99
- package/node_modules/fast-xml-parser/src/v5/TagPath.js +0 -81
- package/node_modules/fast-xml-parser/src/v5/TagPathMatcher.js +0 -15
- package/node_modules/fast-xml-parser/src/v5/XMLParser.js +0 -85
- package/node_modules/fast-xml-parser/src/v5/Xml2JsParser.js +0 -237
- package/node_modules/fast-xml-parser/src/v5/XmlPartReader.js +0 -212
- package/node_modules/fast-xml-parser/src/v5/XmlSpecialTagsReader.js +0 -118
- package/node_modules/fast-xml-parser/src/v5/inputSource/BufferSource.js +0 -118
- package/node_modules/fast-xml-parser/src/v5/inputSource/StringSource.js +0 -123
- package/node_modules/fast-xml-parser/src/v5/valueParsers/EntitiesParser.js +0 -107
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParser.js +0 -23
- package/node_modules/fast-xml-parser/src/v5/valueParsers/booleanParserExt.js +0 -20
- package/node_modules/fast-xml-parser/src/v5/valueParsers/currency.js +0 -40
- package/node_modules/fast-xml-parser/src/v5/valueParsers/join.js +0 -14
- package/node_modules/fast-xml-parser/src/v5/valueParsers/number.js +0 -16
- package/node_modules/fast-xml-parser/src/v5/valueParsers/trim.js +0 -8
- package/node_modules/fast-xml-parser/src/xmlbuilder/orderedJs2Xml.js +0 -135
- package/node_modules/lodash.merge/LICENSE +0 -47
- package/node_modules/lodash.merge/README.md +0 -18
- package/node_modules/lodash.merge/index.js +0 -1977
- package/node_modules/lodash.merge/package.json +0 -16
- package/node_modules/strnum/.vscode/launch.json +0 -25
- package/node_modules/strnum/strnum.test.js +0 -165
- package/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/uuid/LICENSE.md +0 -9
- package/node_modules/uuid/README.md +0 -466
- package/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/uuid/dist/esm-browser/index.js +0 -9
- package/node_modules/uuid/dist/esm-browser/md5.js +0 -215
- package/node_modules/uuid/dist/esm-browser/native.js +0 -4
- package/node_modules/uuid/dist/esm-browser/nil.js +0 -1
- package/node_modules/uuid/dist/esm-browser/parse.js +0 -35
- package/node_modules/uuid/dist/esm-browser/regex.js +0 -1
- package/node_modules/uuid/dist/esm-browser/rng.js +0 -18
- package/node_modules/uuid/dist/esm-browser/sha1.js +0 -96
- package/node_modules/uuid/dist/esm-browser/stringify.js +0 -33
- package/node_modules/uuid/dist/esm-browser/v1.js +0 -95
- package/node_modules/uuid/dist/esm-browser/v3.js +0 -4
- package/node_modules/uuid/dist/esm-browser/v35.js +0 -66
- package/node_modules/uuid/dist/esm-browser/v4.js +0 -29
- package/node_modules/uuid/dist/esm-browser/v5.js +0 -4
- package/node_modules/uuid/dist/esm-browser/validate.js +0 -7
- package/node_modules/uuid/dist/esm-browser/version.js +0 -11
- package/node_modules/uuid/dist/esm-node/index.js +0 -9
- package/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/uuid/package.json +0 -135
- package/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/{@smithy/abort-controller → @aws-sdk/crc64-nvme}/LICENSE +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-es/crc64-nvme-crt-container.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums → crc64-nvme}/dist-types/ts3.4/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/{@smithy/middleware-retry → @aws-sdk/credential-provider-login}/dist-es/types.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-cjs → nested-clients/dist-cjs/submodules/cognito-identity}/runtimeConfig.native.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-es → nested-clients/dist-es/submodules/cognito-identity}/auth/httpAuthExtensionConfiguration.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-es → nested-clients/dist-es/submodules/cognito-identity}/extensionConfiguration.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-es/pagination/Interfaces.js → nested-clients/dist-es/submodules/cognito-identity/models/models_0.js} +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-es → nested-clients/dist-es/submodules/cognito-identity}/runtimeConfig.native.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-es → nested-clients/dist-es/submodules/cognito-identity}/runtimeExtensions.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-es → nested-clients/dist-es/submodules/sso}/endpoint/EndpointParameters.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-es → nested-clients/dist-es/submodules/sso}/models/SSOServiceException.js +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-types/ts3.4 → nested-clients/dist-types/ts3.4/submodules/cognito-identity}/endpoint/EndpointParameters.d.ts +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-types/ts3.4 → nested-clients/dist-types/ts3.4/submodules/cognito-identity}/endpoint/endpointResolver.d.ts +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-types/ts3.4 → nested-clients/dist-types/ts3.4/submodules/sso}/auth/httpAuthExtensionConfiguration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-types/ts3.4 → nested-clients/dist-types/ts3.4/submodules/sso}/extensionConfiguration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{client-sso/dist-types/ts3.4 → nested-clients/dist-types/ts3.4/submodules/sso}/runtimeExtensions.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-es/{protocols → request-builder}/requestBuilder.js +0 -0
- /package/node_modules/@smithy/core/dist-types/{protocols → request-builder}/requestBuilder.d.ts +0 -0
- /package/node_modules/@smithy/middleware-retry/dist-es/{defaultRetryQuota.js → retry-pre-sra-deprecated/defaultRetryQuota.js} +0 -0
- /package/node_modules/@smithy/middleware-retry/dist-es/{delayDecider.js → retry-pre-sra-deprecated/delayDecider.js} +0 -0
- /package/node_modules/@smithy/middleware-retry/dist-es/{retryDecider.js → retry-pre-sra-deprecated/retryDecider.js} +0 -0
- /package/node_modules/{fast-xml-parser/src/xmlbuilder → fast-xml-builder/src}/prettifyJs2Xml.js +0 -0
- /package/node_modules/fast-xml-parser/src/{v5 → v6}/Report.js +0 -0
|
@@ -1,2508 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { S3ServiceException as __BaseException } from "./S3ServiceException";
|
|
5
|
-
/**
|
|
6
|
-
* <p>Describes the cross-origin access configuration for objects in an Amazon S3 bucket. For more
|
|
7
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html">Enabling
|
|
8
|
-
* Cross-Origin Resource Sharing</a> in the
|
|
9
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
10
|
-
* @public
|
|
11
|
-
*/
|
|
12
|
-
export interface CORSConfiguration {
|
|
13
|
-
/**
|
|
14
|
-
* <p>A set of origins and methods (cross-origin access that you want to allow). You can add
|
|
15
|
-
* up to 100 rules to the configuration.</p>
|
|
16
|
-
* @public
|
|
17
|
-
*/
|
|
18
|
-
CORSRules: CORSRule[] | undefined;
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* @public
|
|
22
|
-
*/
|
|
23
|
-
export interface PutBucketCorsRequest {
|
|
24
|
-
/**
|
|
25
|
-
* <p>Specifies the bucket impacted by the <code>cors</code>configuration.</p>
|
|
26
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
27
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
28
|
-
* @public
|
|
29
|
-
*/
|
|
30
|
-
Bucket: string | undefined;
|
|
31
|
-
/**
|
|
32
|
-
* <p>Describes the cross-origin access configuration for objects in an Amazon S3 bucket. For more
|
|
33
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/cors.html">Enabling
|
|
34
|
-
* Cross-Origin Resource Sharing</a> in the
|
|
35
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
36
|
-
* @public
|
|
37
|
-
*/
|
|
38
|
-
CORSConfiguration: CORSConfiguration | undefined;
|
|
39
|
-
/**
|
|
40
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the data. This header must be used as a message
|
|
41
|
-
* integrity check to verify that the request body was not corrupted in transit. For more
|
|
42
|
-
* information, go to <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC
|
|
43
|
-
* 1864.</a>
|
|
44
|
-
* </p>
|
|
45
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
46
|
-
* @public
|
|
47
|
-
*/
|
|
48
|
-
ContentMD5?: string | undefined;
|
|
49
|
-
/**
|
|
50
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
51
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
52
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
53
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
54
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
55
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
56
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
57
|
-
* @public
|
|
58
|
-
*/
|
|
59
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
60
|
-
/**
|
|
61
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
62
|
-
* @public
|
|
63
|
-
*/
|
|
64
|
-
ExpectedBucketOwner?: string | undefined;
|
|
65
|
-
}
|
|
66
|
-
/**
|
|
67
|
-
* @public
|
|
68
|
-
*/
|
|
69
|
-
export interface PutBucketEncryptionRequest {
|
|
70
|
-
/**
|
|
71
|
-
* <p>Specifies default encryption for a bucket using server-side encryption with different
|
|
72
|
-
* key options.</p>
|
|
73
|
-
* <p>
|
|
74
|
-
* <b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
|
|
75
|
-
* </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code>
|
|
76
|
-
* <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
|
|
77
|
-
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i>
|
|
78
|
-
* </p>
|
|
79
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
80
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
81
|
-
* @public
|
|
82
|
-
*/
|
|
83
|
-
Bucket: string | undefined;
|
|
84
|
-
/**
|
|
85
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the server-side encryption
|
|
86
|
-
* configuration.</p>
|
|
87
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
88
|
-
* <note>
|
|
89
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
90
|
-
* </note>
|
|
91
|
-
* @public
|
|
92
|
-
*/
|
|
93
|
-
ContentMD5?: string | undefined;
|
|
94
|
-
/**
|
|
95
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
96
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
97
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
98
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
99
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
100
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
101
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
102
|
-
* <note>
|
|
103
|
-
* <p>For directory buckets, when you use Amazon Web Services SDKs, <code>CRC32</code> is the default checksum algorithm that's used for performance.</p>
|
|
104
|
-
* </note>
|
|
105
|
-
* @public
|
|
106
|
-
*/
|
|
107
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
108
|
-
/**
|
|
109
|
-
* <p>Specifies the default server-side-encryption configuration.</p>
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
ServerSideEncryptionConfiguration: ServerSideEncryptionConfiguration | undefined;
|
|
113
|
-
/**
|
|
114
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
115
|
-
* <note>
|
|
116
|
-
* <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
|
|
117
|
-
* <code>501 Not Implemented</code>.</p>
|
|
118
|
-
* </note>
|
|
119
|
-
* @public
|
|
120
|
-
*/
|
|
121
|
-
ExpectedBucketOwner?: string | undefined;
|
|
122
|
-
}
|
|
123
|
-
/**
|
|
124
|
-
* @public
|
|
125
|
-
*/
|
|
126
|
-
export interface PutBucketIntelligentTieringConfigurationRequest {
|
|
127
|
-
/**
|
|
128
|
-
* <p>The name of the Amazon S3 bucket whose configuration you want to modify or retrieve.</p>
|
|
129
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
130
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
131
|
-
* @public
|
|
132
|
-
*/
|
|
133
|
-
Bucket: string | undefined;
|
|
134
|
-
/**
|
|
135
|
-
* <p>The ID used to identify the S3 Intelligent-Tiering configuration.</p>
|
|
136
|
-
* @public
|
|
137
|
-
*/
|
|
138
|
-
Id: string | undefined;
|
|
139
|
-
/**
|
|
140
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
141
|
-
* @public
|
|
142
|
-
*/
|
|
143
|
-
ExpectedBucketOwner?: string | undefined;
|
|
144
|
-
/**
|
|
145
|
-
* <p>Container for S3 Intelligent-Tiering configuration.</p>
|
|
146
|
-
* @public
|
|
147
|
-
*/
|
|
148
|
-
IntelligentTieringConfiguration: IntelligentTieringConfiguration | undefined;
|
|
149
|
-
}
|
|
150
|
-
/**
|
|
151
|
-
* @public
|
|
152
|
-
*/
|
|
153
|
-
export interface PutBucketInventoryConfigurationRequest {
|
|
154
|
-
/**
|
|
155
|
-
* <p>The name of the bucket where the inventory configuration will be stored.</p>
|
|
156
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
157
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
158
|
-
* @public
|
|
159
|
-
*/
|
|
160
|
-
Bucket: string | undefined;
|
|
161
|
-
/**
|
|
162
|
-
* <p>The ID used to identify the inventory configuration.</p>
|
|
163
|
-
* @public
|
|
164
|
-
*/
|
|
165
|
-
Id: string | undefined;
|
|
166
|
-
/**
|
|
167
|
-
* <p>Specifies the inventory configuration.</p>
|
|
168
|
-
* @public
|
|
169
|
-
*/
|
|
170
|
-
InventoryConfiguration: InventoryConfiguration | undefined;
|
|
171
|
-
/**
|
|
172
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
173
|
-
* @public
|
|
174
|
-
*/
|
|
175
|
-
ExpectedBucketOwner?: string | undefined;
|
|
176
|
-
}
|
|
177
|
-
/**
|
|
178
|
-
* @public
|
|
179
|
-
*/
|
|
180
|
-
export interface PutBucketLifecycleConfigurationOutput {
|
|
181
|
-
/**
|
|
182
|
-
* <p>Indicates which default minimum object size behavior is applied to the lifecycle
|
|
183
|
-
* configuration.</p>
|
|
184
|
-
* <note>
|
|
185
|
-
* <p>This parameter applies to general purpose buckets only. It is not supported for
|
|
186
|
-
* directory bucket lifecycle configurations.</p>
|
|
187
|
-
* </note>
|
|
188
|
-
* <ul>
|
|
189
|
-
* <li>
|
|
190
|
-
* <p>
|
|
191
|
-
* <code>all_storage_classes_128K</code> - Objects smaller than 128 KB will not
|
|
192
|
-
* transition to any storage class by default. </p>
|
|
193
|
-
* </li>
|
|
194
|
-
* <li>
|
|
195
|
-
* <p>
|
|
196
|
-
* <code>varies_by_storage_class</code> - Objects smaller than 128 KB will
|
|
197
|
-
* transition to Glacier Flexible Retrieval or Glacier Deep Archive storage classes. By
|
|
198
|
-
* default, all other storage classes will prevent transitions smaller than 128 KB.
|
|
199
|
-
* </p>
|
|
200
|
-
* </li>
|
|
201
|
-
* </ul>
|
|
202
|
-
* <p>To customize the minimum object size for any transition you can add a filter that
|
|
203
|
-
* specifies a custom <code>ObjectSizeGreaterThan</code> or <code>ObjectSizeLessThan</code> in
|
|
204
|
-
* the body of your transition rule. Custom filters always take precedence over the default
|
|
205
|
-
* transition behavior.</p>
|
|
206
|
-
* @public
|
|
207
|
-
*/
|
|
208
|
-
TransitionDefaultMinimumObjectSize?: TransitionDefaultMinimumObjectSize | undefined;
|
|
209
|
-
}
|
|
210
|
-
/**
|
|
211
|
-
* <p>Specifies the lifecycle configuration for objects in an Amazon S3 bucket. For more
|
|
212
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html">Object Lifecycle Management</a>
|
|
213
|
-
* in the <i>Amazon S3 User Guide</i>.</p>
|
|
214
|
-
* @public
|
|
215
|
-
*/
|
|
216
|
-
export interface BucketLifecycleConfiguration {
|
|
217
|
-
/**
|
|
218
|
-
* <p>A lifecycle rule for individual objects in an Amazon S3 bucket.</p>
|
|
219
|
-
* @public
|
|
220
|
-
*/
|
|
221
|
-
Rules: LifecycleRule[] | undefined;
|
|
222
|
-
}
|
|
223
|
-
/**
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
export interface PutBucketLifecycleConfigurationRequest {
|
|
227
|
-
/**
|
|
228
|
-
* <p>The name of the bucket for which to set the configuration.</p>
|
|
229
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
230
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
231
|
-
* @public
|
|
232
|
-
*/
|
|
233
|
-
Bucket: string | undefined;
|
|
234
|
-
/**
|
|
235
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
236
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
237
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
238
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
239
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
240
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
241
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
242
|
-
* @public
|
|
243
|
-
*/
|
|
244
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
245
|
-
/**
|
|
246
|
-
* <p>Container for lifecycle rules. You can add as many as 1,000 rules.</p>
|
|
247
|
-
* @public
|
|
248
|
-
*/
|
|
249
|
-
LifecycleConfiguration?: BucketLifecycleConfiguration | undefined;
|
|
250
|
-
/**
|
|
251
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
252
|
-
* <note>
|
|
253
|
-
* <p>This parameter applies to general purpose buckets only. It is not supported for
|
|
254
|
-
* directory bucket lifecycle configurations.</p>
|
|
255
|
-
* </note>
|
|
256
|
-
* @public
|
|
257
|
-
*/
|
|
258
|
-
ExpectedBucketOwner?: string | undefined;
|
|
259
|
-
/**
|
|
260
|
-
* <p>Indicates which default minimum object size behavior is applied to the lifecycle
|
|
261
|
-
* configuration.</p>
|
|
262
|
-
* <note>
|
|
263
|
-
* <p>This parameter applies to general purpose buckets only. It is not supported for
|
|
264
|
-
* directory bucket lifecycle configurations.</p>
|
|
265
|
-
* </note>
|
|
266
|
-
* <ul>
|
|
267
|
-
* <li>
|
|
268
|
-
* <p>
|
|
269
|
-
* <code>all_storage_classes_128K</code> - Objects smaller than 128 KB will not
|
|
270
|
-
* transition to any storage class by default. </p>
|
|
271
|
-
* </li>
|
|
272
|
-
* <li>
|
|
273
|
-
* <p>
|
|
274
|
-
* <code>varies_by_storage_class</code> - Objects smaller than 128 KB will
|
|
275
|
-
* transition to Glacier Flexible Retrieval or Glacier Deep Archive storage classes. By
|
|
276
|
-
* default, all other storage classes will prevent transitions smaller than 128 KB.
|
|
277
|
-
* </p>
|
|
278
|
-
* </li>
|
|
279
|
-
* </ul>
|
|
280
|
-
* <p>To customize the minimum object size for any transition you can add a filter that
|
|
281
|
-
* specifies a custom <code>ObjectSizeGreaterThan</code> or <code>ObjectSizeLessThan</code> in
|
|
282
|
-
* the body of your transition rule. Custom filters always take precedence over the default
|
|
283
|
-
* transition behavior.</p>
|
|
284
|
-
* @public
|
|
285
|
-
*/
|
|
286
|
-
TransitionDefaultMinimumObjectSize?: TransitionDefaultMinimumObjectSize | undefined;
|
|
287
|
-
}
|
|
288
|
-
/**
|
|
289
|
-
* <p>Container for logging status information.</p>
|
|
290
|
-
* @public
|
|
291
|
-
*/
|
|
292
|
-
export interface BucketLoggingStatus {
|
|
293
|
-
/**
|
|
294
|
-
* <p>Describes where logs are stored and the prefix that Amazon S3 assigns to all log object keys
|
|
295
|
-
* for a bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTlogging.html">PUT Bucket logging</a> in the
|
|
296
|
-
* <i>Amazon S3 API Reference</i>.</p>
|
|
297
|
-
* @public
|
|
298
|
-
*/
|
|
299
|
-
LoggingEnabled?: LoggingEnabled | undefined;
|
|
300
|
-
}
|
|
301
|
-
/**
|
|
302
|
-
* @public
|
|
303
|
-
*/
|
|
304
|
-
export interface PutBucketLoggingRequest {
|
|
305
|
-
/**
|
|
306
|
-
* <p>The name of the bucket for which to set the logging parameters.</p>
|
|
307
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
308
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
309
|
-
* @public
|
|
310
|
-
*/
|
|
311
|
-
Bucket: string | undefined;
|
|
312
|
-
/**
|
|
313
|
-
* <p>Container for logging status information.</p>
|
|
314
|
-
* @public
|
|
315
|
-
*/
|
|
316
|
-
BucketLoggingStatus: BucketLoggingStatus | undefined;
|
|
317
|
-
/**
|
|
318
|
-
* <p>The MD5 hash of the <code>PutBucketLogging</code> request body.</p>
|
|
319
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
320
|
-
* @public
|
|
321
|
-
*/
|
|
322
|
-
ContentMD5?: string | undefined;
|
|
323
|
-
/**
|
|
324
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
325
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
326
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
327
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
328
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
329
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
330
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
331
|
-
* @public
|
|
332
|
-
*/
|
|
333
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
334
|
-
/**
|
|
335
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
336
|
-
* @public
|
|
337
|
-
*/
|
|
338
|
-
ExpectedBucketOwner?: string | undefined;
|
|
339
|
-
}
|
|
340
|
-
/**
|
|
341
|
-
* @public
|
|
342
|
-
*/
|
|
343
|
-
export interface PutBucketMetricsConfigurationRequest {
|
|
344
|
-
/**
|
|
345
|
-
* <p>The name of the bucket for which the metrics configuration is set.</p>
|
|
346
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
347
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
348
|
-
* @public
|
|
349
|
-
*/
|
|
350
|
-
Bucket: string | undefined;
|
|
351
|
-
/**
|
|
352
|
-
* <p>The ID used to identify the metrics configuration. The ID has a 64 character limit and
|
|
353
|
-
* can only contain letters, numbers, periods, dashes, and underscores.</p>
|
|
354
|
-
* @public
|
|
355
|
-
*/
|
|
356
|
-
Id: string | undefined;
|
|
357
|
-
/**
|
|
358
|
-
* <p>Specifies the metrics configuration.</p>
|
|
359
|
-
* @public
|
|
360
|
-
*/
|
|
361
|
-
MetricsConfiguration: MetricsConfiguration | undefined;
|
|
362
|
-
/**
|
|
363
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
364
|
-
* @public
|
|
365
|
-
*/
|
|
366
|
-
ExpectedBucketOwner?: string | undefined;
|
|
367
|
-
}
|
|
368
|
-
/**
|
|
369
|
-
* @public
|
|
370
|
-
*/
|
|
371
|
-
export interface PutBucketNotificationConfigurationRequest {
|
|
372
|
-
/**
|
|
373
|
-
* <p>The name of the bucket.</p>
|
|
374
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
375
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
376
|
-
* @public
|
|
377
|
-
*/
|
|
378
|
-
Bucket: string | undefined;
|
|
379
|
-
/**
|
|
380
|
-
* <p>A container for specifying the notification configuration of the bucket. If this element
|
|
381
|
-
* is empty, notifications are turned off for the bucket.</p>
|
|
382
|
-
* @public
|
|
383
|
-
*/
|
|
384
|
-
NotificationConfiguration: NotificationConfiguration | undefined;
|
|
385
|
-
/**
|
|
386
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
387
|
-
* @public
|
|
388
|
-
*/
|
|
389
|
-
ExpectedBucketOwner?: string | undefined;
|
|
390
|
-
/**
|
|
391
|
-
* <p>Skips validation of Amazon SQS, Amazon SNS, and Lambda
|
|
392
|
-
* destinations. True or false value.</p>
|
|
393
|
-
* @public
|
|
394
|
-
*/
|
|
395
|
-
SkipDestinationValidation?: boolean | undefined;
|
|
396
|
-
}
|
|
397
|
-
/**
|
|
398
|
-
* @public
|
|
399
|
-
*/
|
|
400
|
-
export interface PutBucketOwnershipControlsRequest {
|
|
401
|
-
/**
|
|
402
|
-
* <p>The name of the Amazon S3 bucket whose <code>OwnershipControls</code> you want to set.</p>
|
|
403
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
404
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
405
|
-
* @public
|
|
406
|
-
*/
|
|
407
|
-
Bucket: string | undefined;
|
|
408
|
-
/**
|
|
409
|
-
* <p>The MD5 hash of the <code>OwnershipControls</code> request body. </p>
|
|
410
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
411
|
-
* @public
|
|
412
|
-
*/
|
|
413
|
-
ContentMD5?: string | undefined;
|
|
414
|
-
/**
|
|
415
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
416
|
-
* @public
|
|
417
|
-
*/
|
|
418
|
-
ExpectedBucketOwner?: string | undefined;
|
|
419
|
-
/**
|
|
420
|
-
* <p>The <code>OwnershipControls</code> (BucketOwnerEnforced, BucketOwnerPreferred, or
|
|
421
|
-
* ObjectWriter) that you want to apply to this Amazon S3 bucket.</p>
|
|
422
|
-
* @public
|
|
423
|
-
*/
|
|
424
|
-
OwnershipControls: OwnershipControls | undefined;
|
|
425
|
-
/**
|
|
426
|
-
* <p> Indicates the algorithm used to create the checksum for the object when you use the
|
|
427
|
-
* SDK. This header will not provide any additional functionality if you don't use the
|
|
428
|
-
* SDK. When you send this header, there must be a corresponding
|
|
429
|
-
* <code>x-amz-checksum-<i>algorithm</i>
|
|
430
|
-
* </code> header sent. Otherwise, Amazon S3 fails the request with the HTTP
|
|
431
|
-
* status code <code>400 Bad Request</code>. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object
|
|
432
|
-
* integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
433
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided <code>ChecksumAlgorithm</code> parameter. </p>
|
|
434
|
-
* @public
|
|
435
|
-
*/
|
|
436
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
437
|
-
}
|
|
438
|
-
/**
|
|
439
|
-
* @public
|
|
440
|
-
*/
|
|
441
|
-
export interface PutBucketPolicyRequest {
|
|
442
|
-
/**
|
|
443
|
-
* <p>The name of the bucket.</p>
|
|
444
|
-
* <p>
|
|
445
|
-
* <b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i>
|
|
446
|
-
* </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code>
|
|
447
|
-
* <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
|
|
448
|
-
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i>
|
|
449
|
-
* </p>
|
|
450
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
451
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
452
|
-
* @public
|
|
453
|
-
*/
|
|
454
|
-
Bucket: string | undefined;
|
|
455
|
-
/**
|
|
456
|
-
* <p>The MD5 hash of the request body.</p>
|
|
457
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
458
|
-
* <note>
|
|
459
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
460
|
-
* </note>
|
|
461
|
-
* @public
|
|
462
|
-
*/
|
|
463
|
-
ContentMD5?: string | undefined;
|
|
464
|
-
/**
|
|
465
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
466
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum-<i>algorithm</i>
|
|
467
|
-
* </code> or
|
|
468
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>.</p>
|
|
469
|
-
* <p>For the <code>x-amz-checksum-<i>algorithm</i>
|
|
470
|
-
* </code> header, replace <code>
|
|
471
|
-
* <i>algorithm</i>
|
|
472
|
-
* </code> with the supported algorithm from the following list: </p>
|
|
473
|
-
* <ul>
|
|
474
|
-
* <li>
|
|
475
|
-
* <p>
|
|
476
|
-
* <code>CRC32</code>
|
|
477
|
-
* </p>
|
|
478
|
-
* </li>
|
|
479
|
-
* <li>
|
|
480
|
-
* <p>
|
|
481
|
-
* <code>CRC32C</code>
|
|
482
|
-
* </p>
|
|
483
|
-
* </li>
|
|
484
|
-
* <li>
|
|
485
|
-
* <p>
|
|
486
|
-
* <code>CRC64NVME</code>
|
|
487
|
-
* </p>
|
|
488
|
-
* </li>
|
|
489
|
-
* <li>
|
|
490
|
-
* <p>
|
|
491
|
-
* <code>SHA1</code>
|
|
492
|
-
* </p>
|
|
493
|
-
* </li>
|
|
494
|
-
* <li>
|
|
495
|
-
* <p>
|
|
496
|
-
* <code>SHA256</code>
|
|
497
|
-
* </p>
|
|
498
|
-
* </li>
|
|
499
|
-
* </ul>
|
|
500
|
-
* <p>For more
|
|
501
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
502
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
503
|
-
* <p>If the individual checksum value you provide through <code>x-amz-checksum-<i>algorithm</i>
|
|
504
|
-
* </code> doesn't match the checksum algorithm you set through <code>x-amz-sdk-checksum-algorithm</code>, Amazon S3 fails the request with a <code>BadDigest</code> error.</p>
|
|
505
|
-
* <note>
|
|
506
|
-
* <p>For directory buckets, when you use Amazon Web Services SDKs, <code>CRC32</code> is the default checksum algorithm that's used for performance.</p>
|
|
507
|
-
* </note>
|
|
508
|
-
* @public
|
|
509
|
-
*/
|
|
510
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
511
|
-
/**
|
|
512
|
-
* <p>Set this parameter to true to confirm that you want to remove your permissions to change
|
|
513
|
-
* this bucket policy in the future.</p>
|
|
514
|
-
* <note>
|
|
515
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
516
|
-
* </note>
|
|
517
|
-
* @public
|
|
518
|
-
*/
|
|
519
|
-
ConfirmRemoveSelfBucketAccess?: boolean | undefined;
|
|
520
|
-
/**
|
|
521
|
-
* <p>The bucket policy as a JSON document.</p>
|
|
522
|
-
* <p>For directory buckets, the only IAM action supported in the bucket policy is
|
|
523
|
-
* <code>s3express:CreateSession</code>.</p>
|
|
524
|
-
* @public
|
|
525
|
-
*/
|
|
526
|
-
Policy: string | undefined;
|
|
527
|
-
/**
|
|
528
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
529
|
-
* <note>
|
|
530
|
-
* <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code
|
|
531
|
-
* <code>501 Not Implemented</code>.</p>
|
|
532
|
-
* </note>
|
|
533
|
-
* @public
|
|
534
|
-
*/
|
|
535
|
-
ExpectedBucketOwner?: string | undefined;
|
|
536
|
-
}
|
|
537
|
-
/**
|
|
538
|
-
* @public
|
|
539
|
-
*/
|
|
540
|
-
export interface PutBucketReplicationRequest {
|
|
541
|
-
/**
|
|
542
|
-
* <p>The name of the bucket</p>
|
|
543
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
544
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
545
|
-
* @public
|
|
546
|
-
*/
|
|
547
|
-
Bucket: string | undefined;
|
|
548
|
-
/**
|
|
549
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the data. You must use this header as a message
|
|
550
|
-
* integrity check to verify that the request body was not corrupted in transit. For more
|
|
551
|
-
* information, see <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC 1864</a>.</p>
|
|
552
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
553
|
-
* @public
|
|
554
|
-
*/
|
|
555
|
-
ContentMD5?: string | undefined;
|
|
556
|
-
/**
|
|
557
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
558
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
559
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
560
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
561
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
562
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
563
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
564
|
-
* @public
|
|
565
|
-
*/
|
|
566
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
567
|
-
/**
|
|
568
|
-
* <p>A container for replication rules. You can add up to 1,000 rules. The maximum size of a
|
|
569
|
-
* replication configuration is 2 MB.</p>
|
|
570
|
-
* @public
|
|
571
|
-
*/
|
|
572
|
-
ReplicationConfiguration: ReplicationConfiguration | undefined;
|
|
573
|
-
/**
|
|
574
|
-
* <p>A token to allow Object Lock to be enabled for an existing bucket.</p>
|
|
575
|
-
* @public
|
|
576
|
-
*/
|
|
577
|
-
Token?: string | undefined;
|
|
578
|
-
/**
|
|
579
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
580
|
-
* @public
|
|
581
|
-
*/
|
|
582
|
-
ExpectedBucketOwner?: string | undefined;
|
|
583
|
-
}
|
|
584
|
-
/**
|
|
585
|
-
* <p>Container for Payer.</p>
|
|
586
|
-
* @public
|
|
587
|
-
*/
|
|
588
|
-
export interface RequestPaymentConfiguration {
|
|
589
|
-
/**
|
|
590
|
-
* <p>Specifies who pays for the download and request fees.</p>
|
|
591
|
-
* @public
|
|
592
|
-
*/
|
|
593
|
-
Payer: Payer | undefined;
|
|
594
|
-
}
|
|
595
|
-
/**
|
|
596
|
-
* @public
|
|
597
|
-
*/
|
|
598
|
-
export interface PutBucketRequestPaymentRequest {
|
|
599
|
-
/**
|
|
600
|
-
* <p>The bucket name.</p>
|
|
601
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
602
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
603
|
-
* @public
|
|
604
|
-
*/
|
|
605
|
-
Bucket: string | undefined;
|
|
606
|
-
/**
|
|
607
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the data. You must use this header as a message
|
|
608
|
-
* integrity check to verify that the request body was not corrupted in transit. For more
|
|
609
|
-
* information, see <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC 1864</a>.</p>
|
|
610
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
611
|
-
* @public
|
|
612
|
-
*/
|
|
613
|
-
ContentMD5?: string | undefined;
|
|
614
|
-
/**
|
|
615
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
616
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
617
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
618
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
619
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
620
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
621
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
622
|
-
* @public
|
|
623
|
-
*/
|
|
624
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
625
|
-
/**
|
|
626
|
-
* <p>Container for Payer.</p>
|
|
627
|
-
* @public
|
|
628
|
-
*/
|
|
629
|
-
RequestPaymentConfiguration: RequestPaymentConfiguration | undefined;
|
|
630
|
-
/**
|
|
631
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
632
|
-
* @public
|
|
633
|
-
*/
|
|
634
|
-
ExpectedBucketOwner?: string | undefined;
|
|
635
|
-
}
|
|
636
|
-
/**
|
|
637
|
-
* <p>Container for <code>TagSet</code> elements.</p>
|
|
638
|
-
* @public
|
|
639
|
-
*/
|
|
640
|
-
export interface Tagging {
|
|
641
|
-
/**
|
|
642
|
-
* <p>A collection for a set of tags</p>
|
|
643
|
-
* @public
|
|
644
|
-
*/
|
|
645
|
-
TagSet: Tag[] | undefined;
|
|
646
|
-
}
|
|
647
|
-
/**
|
|
648
|
-
* @public
|
|
649
|
-
*/
|
|
650
|
-
export interface PutBucketTaggingRequest {
|
|
651
|
-
/**
|
|
652
|
-
* <p>The bucket name.</p>
|
|
653
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
654
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
655
|
-
* @public
|
|
656
|
-
*/
|
|
657
|
-
Bucket: string | undefined;
|
|
658
|
-
/**
|
|
659
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the data. You must use this header as a message
|
|
660
|
-
* integrity check to verify that the request body was not corrupted in transit. For more
|
|
661
|
-
* information, see <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC 1864</a>.</p>
|
|
662
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
663
|
-
* @public
|
|
664
|
-
*/
|
|
665
|
-
ContentMD5?: string | undefined;
|
|
666
|
-
/**
|
|
667
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
668
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
669
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
670
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
671
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
672
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
673
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
674
|
-
* @public
|
|
675
|
-
*/
|
|
676
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
677
|
-
/**
|
|
678
|
-
* <p>Container for the <code>TagSet</code> and <code>Tag</code> elements.</p>
|
|
679
|
-
* @public
|
|
680
|
-
*/
|
|
681
|
-
Tagging: Tagging | undefined;
|
|
682
|
-
/**
|
|
683
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
684
|
-
* @public
|
|
685
|
-
*/
|
|
686
|
-
ExpectedBucketOwner?: string | undefined;
|
|
687
|
-
}
|
|
688
|
-
/**
|
|
689
|
-
* @public
|
|
690
|
-
* @enum
|
|
691
|
-
*/
|
|
692
|
-
export declare const MFADelete: {
|
|
693
|
-
readonly Disabled: "Disabled";
|
|
694
|
-
readonly Enabled: "Enabled";
|
|
695
|
-
};
|
|
696
|
-
/**
|
|
697
|
-
* @public
|
|
698
|
-
*/
|
|
699
|
-
export type MFADelete = (typeof MFADelete)[keyof typeof MFADelete];
|
|
700
|
-
/**
|
|
701
|
-
* <p>Describes the versioning state of an Amazon S3 bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html">PUT
|
|
702
|
-
* Bucket versioning</a> in the <i>Amazon S3 API Reference</i>.</p>
|
|
703
|
-
* @public
|
|
704
|
-
*/
|
|
705
|
-
export interface VersioningConfiguration {
|
|
706
|
-
/**
|
|
707
|
-
* <p>Specifies whether MFA delete is enabled in the bucket versioning configuration. This
|
|
708
|
-
* element is only returned if the bucket has been configured with MFA delete. If the bucket
|
|
709
|
-
* has never been so configured, this element is not returned.</p>
|
|
710
|
-
* @public
|
|
711
|
-
*/
|
|
712
|
-
MFADelete?: MFADelete | undefined;
|
|
713
|
-
/**
|
|
714
|
-
* <p>The versioning state of the bucket.</p>
|
|
715
|
-
* @public
|
|
716
|
-
*/
|
|
717
|
-
Status?: BucketVersioningStatus | undefined;
|
|
718
|
-
}
|
|
719
|
-
/**
|
|
720
|
-
* @public
|
|
721
|
-
*/
|
|
722
|
-
export interface PutBucketVersioningRequest {
|
|
723
|
-
/**
|
|
724
|
-
* <p>The bucket name.</p>
|
|
725
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
726
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
727
|
-
* @public
|
|
728
|
-
*/
|
|
729
|
-
Bucket: string | undefined;
|
|
730
|
-
/**
|
|
731
|
-
* <p>>The Base64 encoded 128-bit <code>MD5</code> digest of the data. You must use this header as a
|
|
732
|
-
* message integrity check to verify that the request body was not corrupted in transit. For
|
|
733
|
-
* more information, see <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC
|
|
734
|
-
* 1864</a>.</p>
|
|
735
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
736
|
-
* @public
|
|
737
|
-
*/
|
|
738
|
-
ContentMD5?: string | undefined;
|
|
739
|
-
/**
|
|
740
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
741
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
742
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
743
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
744
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
745
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
746
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
747
|
-
* @public
|
|
748
|
-
*/
|
|
749
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
750
|
-
/**
|
|
751
|
-
* <p>The concatenation of the authentication device's serial number, a space, and the value
|
|
752
|
-
* that is displayed on your authentication device.</p>
|
|
753
|
-
* @public
|
|
754
|
-
*/
|
|
755
|
-
MFA?: string | undefined;
|
|
756
|
-
/**
|
|
757
|
-
* <p>Container for setting the versioning state.</p>
|
|
758
|
-
* @public
|
|
759
|
-
*/
|
|
760
|
-
VersioningConfiguration: VersioningConfiguration | undefined;
|
|
761
|
-
/**
|
|
762
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
763
|
-
* @public
|
|
764
|
-
*/
|
|
765
|
-
ExpectedBucketOwner?: string | undefined;
|
|
766
|
-
}
|
|
767
|
-
/**
|
|
768
|
-
* <p>Specifies website configuration parameters for an Amazon S3 bucket.</p>
|
|
769
|
-
* @public
|
|
770
|
-
*/
|
|
771
|
-
export interface WebsiteConfiguration {
|
|
772
|
-
/**
|
|
773
|
-
* <p>The name of the error document for the website.</p>
|
|
774
|
-
* @public
|
|
775
|
-
*/
|
|
776
|
-
ErrorDocument?: ErrorDocument | undefined;
|
|
777
|
-
/**
|
|
778
|
-
* <p>The name of the index document for the website.</p>
|
|
779
|
-
* @public
|
|
780
|
-
*/
|
|
781
|
-
IndexDocument?: IndexDocument | undefined;
|
|
782
|
-
/**
|
|
783
|
-
* <p>The redirect behavior for every request to this bucket's website endpoint.</p>
|
|
784
|
-
* <important>
|
|
785
|
-
* <p>If you specify this property, you can't specify any other property.</p>
|
|
786
|
-
* </important>
|
|
787
|
-
* @public
|
|
788
|
-
*/
|
|
789
|
-
RedirectAllRequestsTo?: RedirectAllRequestsTo | undefined;
|
|
790
|
-
/**
|
|
791
|
-
* <p>Rules that define when a redirect is applied and the redirect behavior.</p>
|
|
792
|
-
* @public
|
|
793
|
-
*/
|
|
794
|
-
RoutingRules?: RoutingRule[] | undefined;
|
|
795
|
-
}
|
|
796
|
-
/**
|
|
797
|
-
* @public
|
|
798
|
-
*/
|
|
799
|
-
export interface PutBucketWebsiteRequest {
|
|
800
|
-
/**
|
|
801
|
-
* <p>The bucket name.</p>
|
|
802
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
803
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
804
|
-
* @public
|
|
805
|
-
*/
|
|
806
|
-
Bucket: string | undefined;
|
|
807
|
-
/**
|
|
808
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the data. You must use this header as a message
|
|
809
|
-
* integrity check to verify that the request body was not corrupted in transit. For more
|
|
810
|
-
* information, see <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC 1864</a>.</p>
|
|
811
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
812
|
-
* @public
|
|
813
|
-
*/
|
|
814
|
-
ContentMD5?: string | undefined;
|
|
815
|
-
/**
|
|
816
|
-
* <p>Indicates the algorithm used to create the checksum for the request when you use the SDK. This header will not provide any
|
|
817
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
818
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
819
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
820
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
821
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
822
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
823
|
-
* @public
|
|
824
|
-
*/
|
|
825
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
826
|
-
/**
|
|
827
|
-
* <p>Container for the request.</p>
|
|
828
|
-
* @public
|
|
829
|
-
*/
|
|
830
|
-
WebsiteConfiguration: WebsiteConfiguration | undefined;
|
|
831
|
-
/**
|
|
832
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
833
|
-
* @public
|
|
834
|
-
*/
|
|
835
|
-
ExpectedBucketOwner?: string | undefined;
|
|
836
|
-
}
|
|
837
|
-
/**
|
|
838
|
-
* <p>
|
|
839
|
-
* The existing object was created with a different encryption type.
|
|
840
|
-
* Subsequent write requests must include the appropriate encryption
|
|
841
|
-
* parameters in the request or while creating the session.
|
|
842
|
-
* </p>
|
|
843
|
-
* @public
|
|
844
|
-
*/
|
|
845
|
-
export declare class EncryptionTypeMismatch extends __BaseException {
|
|
846
|
-
readonly name: "EncryptionTypeMismatch";
|
|
847
|
-
readonly $fault: "client";
|
|
848
|
-
/**
|
|
849
|
-
* @internal
|
|
850
|
-
*/
|
|
851
|
-
constructor(opts: __ExceptionOptionType<EncryptionTypeMismatch, __BaseException>);
|
|
852
|
-
}
|
|
853
|
-
/**
|
|
854
|
-
* <p>You may receive this error in multiple cases. Depending on the reason for the error, you may receive one of the messages below:</p>
|
|
855
|
-
* <ul>
|
|
856
|
-
* <li>
|
|
857
|
-
* <p>Cannot specify both a write offset value and user-defined object metadata for existing objects.</p>
|
|
858
|
-
* </li>
|
|
859
|
-
* <li>
|
|
860
|
-
* <p>Checksum Type mismatch occurred, expected checksum Type: sha1, actual checksum Type: crc32c.</p>
|
|
861
|
-
* </li>
|
|
862
|
-
* <li>
|
|
863
|
-
* <p>Request body cannot be empty when 'write offset' is specified.</p>
|
|
864
|
-
* </li>
|
|
865
|
-
* </ul>
|
|
866
|
-
* @public
|
|
867
|
-
*/
|
|
868
|
-
export declare class InvalidRequest extends __BaseException {
|
|
869
|
-
readonly name: "InvalidRequest";
|
|
870
|
-
readonly $fault: "client";
|
|
871
|
-
/**
|
|
872
|
-
* @internal
|
|
873
|
-
*/
|
|
874
|
-
constructor(opts: __ExceptionOptionType<InvalidRequest, __BaseException>);
|
|
875
|
-
}
|
|
876
|
-
/**
|
|
877
|
-
* <p>
|
|
878
|
-
* The write offset value that you specified does not match the current object size.
|
|
879
|
-
* </p>
|
|
880
|
-
* @public
|
|
881
|
-
*/
|
|
882
|
-
export declare class InvalidWriteOffset extends __BaseException {
|
|
883
|
-
readonly name: "InvalidWriteOffset";
|
|
884
|
-
readonly $fault: "client";
|
|
885
|
-
/**
|
|
886
|
-
* @internal
|
|
887
|
-
*/
|
|
888
|
-
constructor(opts: __ExceptionOptionType<InvalidWriteOffset, __BaseException>);
|
|
889
|
-
}
|
|
890
|
-
/**
|
|
891
|
-
* @public
|
|
892
|
-
*/
|
|
893
|
-
export interface PutObjectOutput {
|
|
894
|
-
/**
|
|
895
|
-
* <p>If the expiration is configured for the object (see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html">PutBucketLifecycleConfiguration</a>) in the <i>Amazon S3 User Guide</i>,
|
|
896
|
-
* the response includes this header. It includes the <code>expiry-date</code> and
|
|
897
|
-
* <code>rule-id</code> key-value pairs that provide information about object expiration.
|
|
898
|
-
* The value of the <code>rule-id</code> is URL-encoded.</p>
|
|
899
|
-
* <note>
|
|
900
|
-
* <p>Object expiration information is not returned in directory buckets and this header returns the value "<code>NotImplemented</code>" in all responses for directory buckets.</p>
|
|
901
|
-
* </note>
|
|
902
|
-
* @public
|
|
903
|
-
*/
|
|
904
|
-
Expiration?: string | undefined;
|
|
905
|
-
/**
|
|
906
|
-
* <p>Entity tag for the uploaded object.</p>
|
|
907
|
-
* <p>
|
|
908
|
-
* <b>General purpose buckets </b> - To ensure that data is not
|
|
909
|
-
* corrupted traversing the network, for objects where the ETag is the MD5 digest of the
|
|
910
|
-
* object, you can calculate the MD5 while putting an object to Amazon S3 and compare the returned
|
|
911
|
-
* ETag to the calculated MD5 value.</p>
|
|
912
|
-
* <p>
|
|
913
|
-
* <b>Directory buckets </b> - The ETag for the object in
|
|
914
|
-
* a directory bucket isn't the MD5 digest of the object.</p>
|
|
915
|
-
* @public
|
|
916
|
-
*/
|
|
917
|
-
ETag?: string | undefined;
|
|
918
|
-
/**
|
|
919
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32 checksum</code> of the object. This checksum is only be present if the checksum was uploaded
|
|
920
|
-
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
921
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
922
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
923
|
-
* @public
|
|
924
|
-
*/
|
|
925
|
-
ChecksumCRC32?: string | undefined;
|
|
926
|
-
/**
|
|
927
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. This checksum is only present if the checksum was uploaded
|
|
928
|
-
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
929
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
930
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
931
|
-
* @public
|
|
932
|
-
*/
|
|
933
|
-
ChecksumCRC32C?: string | undefined;
|
|
934
|
-
/**
|
|
935
|
-
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the object. This header
|
|
936
|
-
* is present if the object was uploaded with the <code>CRC64NVME</code> checksum algorithm, or if it
|
|
937
|
-
* was uploaded without a checksum (and Amazon S3 added the default checksum,
|
|
938
|
-
* <code>CRC64NVME</code>, to the uploaded object). For more information about how
|
|
939
|
-
* checksums are calculated with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
940
|
-
* in the Amazon S3 User Guide</a>.</p>
|
|
941
|
-
* @public
|
|
942
|
-
*/
|
|
943
|
-
ChecksumCRC64NVME?: string | undefined;
|
|
944
|
-
/**
|
|
945
|
-
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the object. This will only be present if the object was uploaded
|
|
946
|
-
* with the object. When you use the API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
947
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
948
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
949
|
-
* @public
|
|
950
|
-
*/
|
|
951
|
-
ChecksumSHA1?: string | undefined;
|
|
952
|
-
/**
|
|
953
|
-
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the object. This will only be present if the object was uploaded
|
|
954
|
-
* with the object. When you use an API operation on an object that was uploaded using multipart uploads, this value may not be a direct checksum value of the full object. Instead, it's a calculation based on the checksum values of each individual part. For more information about how checksums are calculated
|
|
955
|
-
* with multipart uploads, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums">
|
|
956
|
-
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
957
|
-
* @public
|
|
958
|
-
*/
|
|
959
|
-
ChecksumSHA256?: string | undefined;
|
|
960
|
-
/**
|
|
961
|
-
* <p>This header specifies the checksum type of the object, which determines how part-level
|
|
962
|
-
* checksums are combined to create an object-level checksum for multipart objects. For
|
|
963
|
-
* <code>PutObject</code> uploads, the checksum type is always <code>FULL_OBJECT</code>. You can use this header as a
|
|
964
|
-
* data integrity check to verify that the checksum type that is received is the same checksum
|
|
965
|
-
* that was specified. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
966
|
-
* @public
|
|
967
|
-
*/
|
|
968
|
-
ChecksumType?: ChecksumType | undefined;
|
|
969
|
-
/**
|
|
970
|
-
* <p>The server-side encryption algorithm used when you store this object in Amazon S3 or Amazon FSx.</p>
|
|
971
|
-
* <note>
|
|
972
|
-
* <p>When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side encryption option is <code>aws:fsx</code>.</p>
|
|
973
|
-
* </note>
|
|
974
|
-
* @public
|
|
975
|
-
*/
|
|
976
|
-
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
977
|
-
/**
|
|
978
|
-
* <p>Version ID of the object.</p>
|
|
979
|
-
* <p>If you enable versioning for a bucket, Amazon S3 automatically generates a unique version ID
|
|
980
|
-
* for the object being stored. Amazon S3 returns this ID in the response. When you enable
|
|
981
|
-
* versioning for a bucket, if Amazon S3 receives multiple write requests for the same object
|
|
982
|
-
* simultaneously, it stores all of the objects. For more information about versioning, see
|
|
983
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/AddingObjectstoVersioningEnabledBuckets.html">Adding Objects to
|
|
984
|
-
* Versioning-Enabled Buckets</a> in the <i>Amazon S3 User Guide</i>. For
|
|
985
|
-
* information about returning the versioning state of a bucket, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketVersioning.html">GetBucketVersioning</a>. </p>
|
|
986
|
-
* <note>
|
|
987
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
988
|
-
* </note>
|
|
989
|
-
* @public
|
|
990
|
-
*/
|
|
991
|
-
VersionId?: string | undefined;
|
|
992
|
-
/**
|
|
993
|
-
* <p>If server-side encryption with a customer-provided encryption key was requested, the
|
|
994
|
-
* response will include this header to confirm the encryption algorithm that's used.</p>
|
|
995
|
-
* <note>
|
|
996
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
997
|
-
* </note>
|
|
998
|
-
* @public
|
|
999
|
-
*/
|
|
1000
|
-
SSECustomerAlgorithm?: string | undefined;
|
|
1001
|
-
/**
|
|
1002
|
-
* <p>If server-side encryption with a customer-provided encryption key was requested, the
|
|
1003
|
-
* response will include this header to provide the round-trip message integrity verification
|
|
1004
|
-
* of the customer-provided encryption key.</p>
|
|
1005
|
-
* <note>
|
|
1006
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1007
|
-
* </note>
|
|
1008
|
-
* @public
|
|
1009
|
-
*/
|
|
1010
|
-
SSECustomerKeyMD5?: string | undefined;
|
|
1011
|
-
/**
|
|
1012
|
-
* <p>If present, indicates the ID of the KMS key that was used for object encryption.</p>
|
|
1013
|
-
* @public
|
|
1014
|
-
*/
|
|
1015
|
-
SSEKMSKeyId?: string | undefined;
|
|
1016
|
-
/**
|
|
1017
|
-
* <p>If present, indicates the Amazon Web Services KMS Encryption Context to use for object encryption. The value of
|
|
1018
|
-
* this header is a Base64 encoded string of a UTF-8 encoded JSON, which contains the encryption context as key-value pairs.
|
|
1019
|
-
* This value is stored as object metadata and automatically gets
|
|
1020
|
-
* passed on to Amazon Web Services KMS for future <code>GetObject</code>
|
|
1021
|
-
* operations on this object.</p>
|
|
1022
|
-
* @public
|
|
1023
|
-
*/
|
|
1024
|
-
SSEKMSEncryptionContext?: string | undefined;
|
|
1025
|
-
/**
|
|
1026
|
-
* <p>Indicates whether the uploaded object uses an S3 Bucket Key for server-side encryption
|
|
1027
|
-
* with Key Management Service (KMS) keys (SSE-KMS).</p>
|
|
1028
|
-
* @public
|
|
1029
|
-
*/
|
|
1030
|
-
BucketKeyEnabled?: boolean | undefined;
|
|
1031
|
-
/**
|
|
1032
|
-
* <p>
|
|
1033
|
-
* The size of the object in bytes. This value is only be present if you append to an object.
|
|
1034
|
-
* </p>
|
|
1035
|
-
* <note>
|
|
1036
|
-
* <p>This functionality is only supported for objects in the Amazon S3 Express One Zone storage class in directory buckets.</p>
|
|
1037
|
-
* </note>
|
|
1038
|
-
* @public
|
|
1039
|
-
*/
|
|
1040
|
-
Size?: number | undefined;
|
|
1041
|
-
/**
|
|
1042
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
1043
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple Storage Service user guide</i>.</p>
|
|
1044
|
-
* <note>
|
|
1045
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1046
|
-
* </note>
|
|
1047
|
-
* @public
|
|
1048
|
-
*/
|
|
1049
|
-
RequestCharged?: RequestCharged | undefined;
|
|
1050
|
-
}
|
|
1051
|
-
/**
|
|
1052
|
-
* @public
|
|
1053
|
-
*/
|
|
1054
|
-
export interface PutObjectRequest {
|
|
1055
|
-
/**
|
|
1056
|
-
* <p>The canned ACL to apply to the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL">Canned
|
|
1057
|
-
* ACL</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1058
|
-
* <p>When adding a new object, you can use headers to grant ACL-based permissions to
|
|
1059
|
-
* individual Amazon Web Services accounts or to predefined groups defined by Amazon S3. These permissions are
|
|
1060
|
-
* then added to the ACL on the object. By default, all objects are private. Only the owner
|
|
1061
|
-
* has full access control. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html">Access Control List (ACL) Overview</a>
|
|
1062
|
-
* and <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-using-rest-api.html">Managing
|
|
1063
|
-
* ACLs Using the REST API</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1064
|
-
* <p>If the bucket that you're uploading objects to uses the bucket owner enforced setting
|
|
1065
|
-
* for S3 Object Ownership, ACLs are disabled and no longer affect permissions. Buckets that
|
|
1066
|
-
* use this setting only accept PUT requests that don't specify an ACL or PUT requests that
|
|
1067
|
-
* specify bucket owner full control ACLs, such as the <code>bucket-owner-full-control</code>
|
|
1068
|
-
* canned ACL or an equivalent form of this ACL expressed in the XML format. PUT requests that
|
|
1069
|
-
* contain other ACLs (for example, custom grants to certain Amazon Web Services accounts) fail and return a
|
|
1070
|
-
* <code>400</code> error with the error code <code>AccessControlListNotSupported</code>.
|
|
1071
|
-
* For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html"> Controlling ownership of
|
|
1072
|
-
* objects and disabling ACLs</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1073
|
-
* <note>
|
|
1074
|
-
* <ul>
|
|
1075
|
-
* <li>
|
|
1076
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1077
|
-
* </li>
|
|
1078
|
-
* <li>
|
|
1079
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1080
|
-
* </li>
|
|
1081
|
-
* </ul>
|
|
1082
|
-
* </note>
|
|
1083
|
-
* @public
|
|
1084
|
-
*/
|
|
1085
|
-
ACL?: ObjectCannedACL | undefined;
|
|
1086
|
-
/**
|
|
1087
|
-
* <p>Object data.</p>
|
|
1088
|
-
* @public
|
|
1089
|
-
*/
|
|
1090
|
-
Body?: StreamingBlobTypes | undefined;
|
|
1091
|
-
/**
|
|
1092
|
-
* <p>The bucket name to which the PUT action was initiated. </p>
|
|
1093
|
-
* <p>
|
|
1094
|
-
* <b>Directory buckets</b> -
|
|
1095
|
-
* When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format <code>
|
|
1096
|
-
* <i>Bucket-name</i>.s3express-<i>zone-id</i>.<i>region-code</i>.amazonaws.com</code>. Path-style requests are not supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must follow the format <code>
|
|
1097
|
-
* <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
|
|
1098
|
-
* <i>amzn-s3-demo-bucket</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming
|
|
1099
|
-
* restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming
|
|
1100
|
-
* rules</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1101
|
-
* <p>
|
|
1102
|
-
* <b>Access points</b> - When you use this action with an access point for general purpose buckets, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When you use this action with an access point for directory buckets, you must provide the access point name in place of the bucket name. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html">Using access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1103
|
-
* <note>
|
|
1104
|
-
* <p>Object Lambda access points are not supported by directory buckets.</p>
|
|
1105
|
-
* </note>
|
|
1106
|
-
* <p>
|
|
1107
|
-
* <b>S3 on Outposts</b> - When you use this action with S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the
|
|
1108
|
-
* form <code>
|
|
1109
|
-
* <i>AccessPointName</i>-<i>AccountId</i>.<i>outpostID</i>.s3-outposts.<i>Region</i>.amazonaws.com</code>. When you use this action with S3 on Outposts, the destination bucket must be the Outposts access point ARN or the access point alias. For more information about S3 on Outposts, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html">What is S3 on Outposts?</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1110
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
1111
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
1112
|
-
* @public
|
|
1113
|
-
*/
|
|
1114
|
-
Bucket: string | undefined;
|
|
1115
|
-
/**
|
|
1116
|
-
* <p>Can be used to specify caching behavior along the request/reply chain. For more
|
|
1117
|
-
* information, see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9">http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9</a>.</p>
|
|
1118
|
-
* @public
|
|
1119
|
-
*/
|
|
1120
|
-
CacheControl?: string | undefined;
|
|
1121
|
-
/**
|
|
1122
|
-
* <p>Specifies presentational information for the object. For more information, see <a href="https://www.rfc-editor.org/rfc/rfc6266#section-4">https://www.rfc-editor.org/rfc/rfc6266#section-4</a>.</p>
|
|
1123
|
-
* @public
|
|
1124
|
-
*/
|
|
1125
|
-
ContentDisposition?: string | undefined;
|
|
1126
|
-
/**
|
|
1127
|
-
* <p>Specifies what content encodings have been applied to the object and thus what decoding
|
|
1128
|
-
* mechanisms must be applied to obtain the media-type referenced by the Content-Type header
|
|
1129
|
-
* field. For more information, see <a href="https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding">https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding</a>.</p>
|
|
1130
|
-
* @public
|
|
1131
|
-
*/
|
|
1132
|
-
ContentEncoding?: string | undefined;
|
|
1133
|
-
/**
|
|
1134
|
-
* <p>The language the content is in.</p>
|
|
1135
|
-
* @public
|
|
1136
|
-
*/
|
|
1137
|
-
ContentLanguage?: string | undefined;
|
|
1138
|
-
/**
|
|
1139
|
-
* <p>Size of the body in bytes. This parameter is useful when the size of the body cannot be
|
|
1140
|
-
* determined automatically. For more information, see <a href="https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length">https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length</a>.</p>
|
|
1141
|
-
* @public
|
|
1142
|
-
*/
|
|
1143
|
-
ContentLength?: number | undefined;
|
|
1144
|
-
/**
|
|
1145
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the message (without the headers) according to
|
|
1146
|
-
* RFC 1864. This header can be used as a message integrity check to verify that the data is
|
|
1147
|
-
* the same data that was originally sent. Although it is optional, we recommend using the
|
|
1148
|
-
* Content-MD5 mechanism as an end-to-end integrity check. For more information about REST
|
|
1149
|
-
* request authentication, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html">REST Authentication</a>.</p>
|
|
1150
|
-
* <note>
|
|
1151
|
-
* <p>The <code>Content-MD5</code> or <code>x-amz-sdk-checksum-algorithm</code> header is
|
|
1152
|
-
* required for any request to upload an object with a retention period configured using
|
|
1153
|
-
* Amazon S3 Object Lock. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-managing.html#object-lock-put-object">Uploading objects to an Object Lock enabled bucket </a> in the
|
|
1154
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1155
|
-
* </note>
|
|
1156
|
-
* <note>
|
|
1157
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1158
|
-
* </note>
|
|
1159
|
-
* @public
|
|
1160
|
-
*/
|
|
1161
|
-
ContentMD5?: string | undefined;
|
|
1162
|
-
/**
|
|
1163
|
-
* <p>A standard MIME type describing the format of the contents. For more information, see
|
|
1164
|
-
* <a href="https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type">https://www.rfc-editor.org/rfc/rfc9110.html#name-content-type</a>.</p>
|
|
1165
|
-
* @public
|
|
1166
|
-
*/
|
|
1167
|
-
ContentType?: string | undefined;
|
|
1168
|
-
/**
|
|
1169
|
-
* <p>Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any
|
|
1170
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum-<i>algorithm</i>
|
|
1171
|
-
* </code> or
|
|
1172
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>.</p>
|
|
1173
|
-
* <p>For the <code>x-amz-checksum-<i>algorithm</i>
|
|
1174
|
-
* </code> header, replace <code>
|
|
1175
|
-
* <i>algorithm</i>
|
|
1176
|
-
* </code> with the supported algorithm from the following list: </p>
|
|
1177
|
-
* <ul>
|
|
1178
|
-
* <li>
|
|
1179
|
-
* <p>
|
|
1180
|
-
* <code>CRC32</code>
|
|
1181
|
-
* </p>
|
|
1182
|
-
* </li>
|
|
1183
|
-
* <li>
|
|
1184
|
-
* <p>
|
|
1185
|
-
* <code>CRC32C</code>
|
|
1186
|
-
* </p>
|
|
1187
|
-
* </li>
|
|
1188
|
-
* <li>
|
|
1189
|
-
* <p>
|
|
1190
|
-
* <code>CRC64NVME</code>
|
|
1191
|
-
* </p>
|
|
1192
|
-
* </li>
|
|
1193
|
-
* <li>
|
|
1194
|
-
* <p>
|
|
1195
|
-
* <code>SHA1</code>
|
|
1196
|
-
* </p>
|
|
1197
|
-
* </li>
|
|
1198
|
-
* <li>
|
|
1199
|
-
* <p>
|
|
1200
|
-
* <code>SHA256</code>
|
|
1201
|
-
* </p>
|
|
1202
|
-
* </li>
|
|
1203
|
-
* </ul>
|
|
1204
|
-
* <p>For more
|
|
1205
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1206
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1207
|
-
* <p>If the individual checksum value you provide through <code>x-amz-checksum-<i>algorithm</i>
|
|
1208
|
-
* </code> doesn't match the checksum algorithm you set through <code>x-amz-sdk-checksum-algorithm</code>, Amazon S3 fails the request with a <code>BadDigest</code> error.</p>
|
|
1209
|
-
* <note>
|
|
1210
|
-
* <p>The <code>Content-MD5</code> or <code>x-amz-sdk-checksum-algorithm</code> header is
|
|
1211
|
-
* required for any request to upload an object with a retention period configured using
|
|
1212
|
-
* Amazon S3 Object Lock. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-managing.html#object-lock-put-object">Uploading objects to an Object Lock enabled bucket </a> in the
|
|
1213
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1214
|
-
* </note>
|
|
1215
|
-
* <p>For directory buckets, when you use Amazon Web Services SDKs, <code>CRC32</code> is the default checksum algorithm that's used for performance.</p>
|
|
1216
|
-
* @public
|
|
1217
|
-
*/
|
|
1218
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
1219
|
-
/**
|
|
1220
|
-
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1221
|
-
* This header specifies the Base64 encoded, 32-bit <code>CRC32</code> checksum of the object. For more information, see
|
|
1222
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1223
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1224
|
-
* @public
|
|
1225
|
-
*/
|
|
1226
|
-
ChecksumCRC32?: string | undefined;
|
|
1227
|
-
/**
|
|
1228
|
-
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1229
|
-
* This header specifies the Base64 encoded, 32-bit <code>CRC32C</code> checksum of the object. For more information, see
|
|
1230
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1231
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1232
|
-
* @public
|
|
1233
|
-
*/
|
|
1234
|
-
ChecksumCRC32C?: string | undefined;
|
|
1235
|
-
/**
|
|
1236
|
-
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
1237
|
-
* the same data that was originally sent. This header specifies the Base64 encoded, 64-bit
|
|
1238
|
-
* <code>CRC64NVME</code> checksum of the object. The <code>CRC64NVME</code> checksum is
|
|
1239
|
-
* always a full object checksum. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity
|
|
1240
|
-
* in the Amazon S3 User Guide</a>.</p>
|
|
1241
|
-
* @public
|
|
1242
|
-
*/
|
|
1243
|
-
ChecksumCRC64NVME?: string | undefined;
|
|
1244
|
-
/**
|
|
1245
|
-
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1246
|
-
* This header specifies the Base64 encoded, 160-bit <code>SHA1</code> digest of the object. For more information, see
|
|
1247
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1248
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1249
|
-
* @public
|
|
1250
|
-
*/
|
|
1251
|
-
ChecksumSHA1?: string | undefined;
|
|
1252
|
-
/**
|
|
1253
|
-
* <p>This header can be used as a data integrity check to verify that the data received is the same data that was originally sent.
|
|
1254
|
-
* This header specifies the Base64 encoded, 256-bit <code>SHA256</code> digest of the object. For more information, see
|
|
1255
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in the
|
|
1256
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1257
|
-
* @public
|
|
1258
|
-
*/
|
|
1259
|
-
ChecksumSHA256?: string | undefined;
|
|
1260
|
-
/**
|
|
1261
|
-
* <p>The date and time at which the object is no longer cacheable. For more information, see
|
|
1262
|
-
* <a href="https://www.rfc-editor.org/rfc/rfc7234#section-5.3">https://www.rfc-editor.org/rfc/rfc7234#section-5.3</a>.</p>
|
|
1263
|
-
* @public
|
|
1264
|
-
*/
|
|
1265
|
-
Expires?: Date | undefined;
|
|
1266
|
-
/**
|
|
1267
|
-
* <p>Uploads the object only if the ETag (entity tag) value provided during the WRITE
|
|
1268
|
-
* operation matches the ETag of the object in S3. If the ETag values do not match, the
|
|
1269
|
-
* operation returns a <code>412 Precondition Failed</code> error.</p>
|
|
1270
|
-
* <p>If a conflicting operation occurs during the upload S3 returns a <code>409 ConditionalRequestConflict</code> response. On a 409 failure you should fetch the object's ETag and retry the upload.</p>
|
|
1271
|
-
* <p>Expects the ETag value as a string.</p>
|
|
1272
|
-
* <p>For more information about conditional requests, see <a href="https://tools.ietf.org/html/rfc7232">RFC 7232</a>, or <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html">Conditional requests</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1273
|
-
* @public
|
|
1274
|
-
*/
|
|
1275
|
-
IfMatch?: string | undefined;
|
|
1276
|
-
/**
|
|
1277
|
-
* <p>Uploads the object only if the object key name does not already exist in the bucket
|
|
1278
|
-
* specified. Otherwise, Amazon S3 returns a <code>412 Precondition Failed</code> error.</p>
|
|
1279
|
-
* <p>If a conflicting operation occurs during the upload S3 returns a <code>409
|
|
1280
|
-
* ConditionalRequestConflict</code> response. On a 409 failure you should retry the
|
|
1281
|
-
* upload.</p>
|
|
1282
|
-
* <p>Expects the '*' (asterisk) character.</p>
|
|
1283
|
-
* <p>For more information about conditional requests, see <a href="https://tools.ietf.org/html/rfc7232">RFC 7232</a>, or <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/conditional-requests.html">Conditional requests</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1284
|
-
* @public
|
|
1285
|
-
*/
|
|
1286
|
-
IfNoneMatch?: string | undefined;
|
|
1287
|
-
/**
|
|
1288
|
-
* <p>Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.</p>
|
|
1289
|
-
* <note>
|
|
1290
|
-
* <ul>
|
|
1291
|
-
* <li>
|
|
1292
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1293
|
-
* </li>
|
|
1294
|
-
* <li>
|
|
1295
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1296
|
-
* </li>
|
|
1297
|
-
* </ul>
|
|
1298
|
-
* </note>
|
|
1299
|
-
* @public
|
|
1300
|
-
*/
|
|
1301
|
-
GrantFullControl?: string | undefined;
|
|
1302
|
-
/**
|
|
1303
|
-
* <p>Allows grantee to read the object data and its metadata.</p>
|
|
1304
|
-
* <note>
|
|
1305
|
-
* <ul>
|
|
1306
|
-
* <li>
|
|
1307
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1308
|
-
* </li>
|
|
1309
|
-
* <li>
|
|
1310
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1311
|
-
* </li>
|
|
1312
|
-
* </ul>
|
|
1313
|
-
* </note>
|
|
1314
|
-
* @public
|
|
1315
|
-
*/
|
|
1316
|
-
GrantRead?: string | undefined;
|
|
1317
|
-
/**
|
|
1318
|
-
* <p>Allows grantee to read the object ACL.</p>
|
|
1319
|
-
* <note>
|
|
1320
|
-
* <ul>
|
|
1321
|
-
* <li>
|
|
1322
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1323
|
-
* </li>
|
|
1324
|
-
* <li>
|
|
1325
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1326
|
-
* </li>
|
|
1327
|
-
* </ul>
|
|
1328
|
-
* </note>
|
|
1329
|
-
* @public
|
|
1330
|
-
*/
|
|
1331
|
-
GrantReadACP?: string | undefined;
|
|
1332
|
-
/**
|
|
1333
|
-
* <p>Allows grantee to write the ACL for the applicable object.</p>
|
|
1334
|
-
* <note>
|
|
1335
|
-
* <ul>
|
|
1336
|
-
* <li>
|
|
1337
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1338
|
-
* </li>
|
|
1339
|
-
* <li>
|
|
1340
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1341
|
-
* </li>
|
|
1342
|
-
* </ul>
|
|
1343
|
-
* </note>
|
|
1344
|
-
* @public
|
|
1345
|
-
*/
|
|
1346
|
-
GrantWriteACP?: string | undefined;
|
|
1347
|
-
/**
|
|
1348
|
-
* <p>Object key for which the PUT action was initiated.</p>
|
|
1349
|
-
* @public
|
|
1350
|
-
*/
|
|
1351
|
-
Key: string | undefined;
|
|
1352
|
-
/**
|
|
1353
|
-
* <p>
|
|
1354
|
-
* Specifies the offset for appending data to existing objects in bytes.
|
|
1355
|
-
* The offset must be equal to the size of the existing object being appended to.
|
|
1356
|
-
* If no object exists, setting this header to 0 will create a new object.
|
|
1357
|
-
* </p>
|
|
1358
|
-
* <note>
|
|
1359
|
-
* <p>This functionality is only supported for objects in the Amazon S3 Express One Zone storage class in directory buckets.</p>
|
|
1360
|
-
* </note>
|
|
1361
|
-
* @public
|
|
1362
|
-
*/
|
|
1363
|
-
WriteOffsetBytes?: number | undefined;
|
|
1364
|
-
/**
|
|
1365
|
-
* <p>A map of metadata to store with the object in S3.</p>
|
|
1366
|
-
* @public
|
|
1367
|
-
*/
|
|
1368
|
-
Metadata?: Record<string, string> | undefined;
|
|
1369
|
-
/**
|
|
1370
|
-
* <p>The server-side encryption algorithm that was used when you store this object in Amazon S3 or Amazon FSx.</p>
|
|
1371
|
-
* <ul>
|
|
1372
|
-
* <li>
|
|
1373
|
-
* <p>
|
|
1374
|
-
* <b>General purpose buckets </b> - You have four mutually
|
|
1375
|
-
* exclusive options to protect data using server-side encryption in Amazon S3, depending on
|
|
1376
|
-
* how you choose to manage the encryption keys. Specifically, the encryption key
|
|
1377
|
-
* options are Amazon S3 managed keys (SSE-S3), Amazon Web Services KMS keys (SSE-KMS or DSSE-KMS), and
|
|
1378
|
-
* customer-provided keys (SSE-C). Amazon S3 encrypts data with server-side encryption by
|
|
1379
|
-
* using Amazon S3 managed keys (SSE-S3) by default. You can optionally tell Amazon S3 to encrypt
|
|
1380
|
-
* data at rest by using server-side encryption with other key options. For more
|
|
1381
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingServerSideEncryption.html">Using Server-Side
|
|
1382
|
-
* Encryption</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1383
|
-
* </li>
|
|
1384
|
-
* <li>
|
|
1385
|
-
* <p>
|
|
1386
|
-
* <b>Directory buckets </b> -
|
|
1387
|
-
* For directory buckets, there are only two supported options for server-side encryption: server-side encryption with Amazon S3 managed keys (SSE-S3) (<code>AES256</code>) and server-side encryption with KMS keys (SSE-KMS) (<code>aws:kms</code>). We recommend that the bucket's default encryption uses the desired encryption configuration and you don't override the bucket default encryption in your
|
|
1388
|
-
* <code>CreateSession</code> requests or <code>PUT</code> object requests. Then, new objects
|
|
1389
|
-
* are automatically encrypted with the desired encryption settings. For more
|
|
1390
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-serv-side-encryption.html">Protecting data with server-side encryption</a> in the <i>Amazon S3 User Guide</i>. For more information about the encryption overriding behaviors in directory buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-specifying-kms-encryption.html">Specifying server-side encryption with KMS for new object uploads</a>. </p>
|
|
1391
|
-
* <p>In the Zonal endpoint API calls (except <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html">CopyObject</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html">UploadPartCopy</a>) using the REST API, the encryption request headers must match the encryption settings that are specified in the <code>CreateSession</code> request.
|
|
1392
|
-
* You can't override the values of the encryption settings (<code>x-amz-server-side-encryption</code>, <code>x-amz-server-side-encryption-aws-kms-key-id</code>, <code>x-amz-server-side-encryption-context</code>, and <code>x-amz-server-side-encryption-bucket-key-enabled</code>) that are specified in the <code>CreateSession</code> request.
|
|
1393
|
-
* You don't need to explicitly specify these encryption settings values in Zonal endpoint API calls, and
|
|
1394
|
-
* Amazon S3 will use the encryption settings values from the <code>CreateSession</code> request to protect new objects in the directory bucket.
|
|
1395
|
-
* </p>
|
|
1396
|
-
* <note>
|
|
1397
|
-
* <p>When you use the CLI or the Amazon Web Services SDKs, for <code>CreateSession</code>, the session token refreshes automatically to avoid service interruptions when a session expires. The CLI or the Amazon Web Services SDKs use the bucket's default encryption configuration for the
|
|
1398
|
-
* <code>CreateSession</code> request. It's not supported to override the encryption settings values in the <code>CreateSession</code> request.
|
|
1399
|
-
* So in the Zonal endpoint API calls (except <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html">CopyObject</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html">UploadPartCopy</a>),
|
|
1400
|
-
* the encryption request headers must match the default encryption configuration of the directory bucket.
|
|
1401
|
-
*
|
|
1402
|
-
* </p>
|
|
1403
|
-
* </note>
|
|
1404
|
-
* </li>
|
|
1405
|
-
* <li>
|
|
1406
|
-
* <p>
|
|
1407
|
-
* <b>S3 access points for Amazon FSx </b> - When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side encryption option is <code>aws:fsx</code>. All Amazon FSx file systems have encryption configured by default and are encrypted at rest. Data is automatically encrypted before being written to the file system, and automatically decrypted as it is read. These processes are handled transparently by Amazon FSx.</p>
|
|
1408
|
-
* </li>
|
|
1409
|
-
* </ul>
|
|
1410
|
-
* @public
|
|
1411
|
-
*/
|
|
1412
|
-
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
1413
|
-
/**
|
|
1414
|
-
* <p>By default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The
|
|
1415
|
-
* STANDARD storage class provides high durability and high availability. Depending on
|
|
1416
|
-
* performance needs, you can specify a different Storage Class. For more information, see
|
|
1417
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage
|
|
1418
|
-
* Classes</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1419
|
-
* <note>
|
|
1420
|
-
* <ul>
|
|
1421
|
-
* <li>
|
|
1422
|
-
* <p>Directory buckets only support <code>EXPRESS_ONEZONE</code> (the S3 Express One Zone storage class) in Availability Zones and <code>ONEZONE_IA</code> (the S3 One Zone-Infrequent Access storage class) in Dedicated Local Zones.</p>
|
|
1423
|
-
* </li>
|
|
1424
|
-
* <li>
|
|
1425
|
-
* <p>Amazon S3 on Outposts only uses the OUTPOSTS Storage Class.</p>
|
|
1426
|
-
* </li>
|
|
1427
|
-
* </ul>
|
|
1428
|
-
* </note>
|
|
1429
|
-
* @public
|
|
1430
|
-
*/
|
|
1431
|
-
StorageClass?: StorageClass | undefined;
|
|
1432
|
-
/**
|
|
1433
|
-
* <p>If the bucket is configured as a website, redirects requests for this object to another
|
|
1434
|
-
* object in the same bucket or to an external URL. Amazon S3 stores the value of this header in
|
|
1435
|
-
* the object metadata. For information about object metadata, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html">Object Key and Metadata</a> in the
|
|
1436
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1437
|
-
* <p>In the following example, the request header sets the redirect to an object
|
|
1438
|
-
* (anotherPage.html) in the same bucket:</p>
|
|
1439
|
-
* <p>
|
|
1440
|
-
* <code>x-amz-website-redirect-location: /anotherPage.html</code>
|
|
1441
|
-
* </p>
|
|
1442
|
-
* <p>In the following example, the request header sets the object redirect to another
|
|
1443
|
-
* website:</p>
|
|
1444
|
-
* <p>
|
|
1445
|
-
* <code>x-amz-website-redirect-location: http://www.example.com/</code>
|
|
1446
|
-
* </p>
|
|
1447
|
-
* <p>For more information about website hosting in Amazon S3, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html">Hosting Websites on Amazon S3</a> and
|
|
1448
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/how-to-page-redirect.html">How to
|
|
1449
|
-
* Configure Website Page Redirects</a> in the <i>Amazon S3 User Guide</i>. </p>
|
|
1450
|
-
* <note>
|
|
1451
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1452
|
-
* </note>
|
|
1453
|
-
* @public
|
|
1454
|
-
*/
|
|
1455
|
-
WebsiteRedirectLocation?: string | undefined;
|
|
1456
|
-
/**
|
|
1457
|
-
* <p>Specifies the algorithm to use when encrypting the object (for example,
|
|
1458
|
-
* <code>AES256</code>).</p>
|
|
1459
|
-
* <note>
|
|
1460
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1461
|
-
* </note>
|
|
1462
|
-
* @public
|
|
1463
|
-
*/
|
|
1464
|
-
SSECustomerAlgorithm?: string | undefined;
|
|
1465
|
-
/**
|
|
1466
|
-
* <p>Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This
|
|
1467
|
-
* value is used to store the object and then it is discarded; Amazon S3 does not store the
|
|
1468
|
-
* encryption key. The key must be appropriate for use with the algorithm specified in the
|
|
1469
|
-
* <code>x-amz-server-side-encryption-customer-algorithm</code> header.</p>
|
|
1470
|
-
* <note>
|
|
1471
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1472
|
-
* </note>
|
|
1473
|
-
* @public
|
|
1474
|
-
*/
|
|
1475
|
-
SSECustomerKey?: string | undefined;
|
|
1476
|
-
/**
|
|
1477
|
-
* <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses
|
|
1478
|
-
* this header for a message integrity check to ensure that the encryption key was transmitted
|
|
1479
|
-
* without error.</p>
|
|
1480
|
-
* <note>
|
|
1481
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1482
|
-
* </note>
|
|
1483
|
-
* @public
|
|
1484
|
-
*/
|
|
1485
|
-
SSECustomerKeyMD5?: string | undefined;
|
|
1486
|
-
/**
|
|
1487
|
-
* <p>Specifies the KMS key ID (Key ID, Key ARN, or Key Alias) to use for object encryption. If the KMS key doesn't exist in the same
|
|
1488
|
-
* account that's issuing the command, you must use the full Key ARN not the Key ID.</p>
|
|
1489
|
-
* <p>
|
|
1490
|
-
* <b>General purpose buckets</b> - If you specify <code>x-amz-server-side-encryption</code> with <code>aws:kms</code> or <code>aws:kms:dsse</code>, this header specifies the ID (Key ID, Key ARN, or Key Alias) of the KMS
|
|
1491
|
-
* key to use. If you specify
|
|
1492
|
-
* <code>x-amz-server-side-encryption:aws:kms</code> or
|
|
1493
|
-
* <code>x-amz-server-side-encryption:aws:kms:dsse</code>, but do not provide <code>x-amz-server-side-encryption-aws-kms-key-id</code>, Amazon S3 uses the Amazon Web Services managed key
|
|
1494
|
-
* (<code>aws/s3</code>) to protect the data.</p>
|
|
1495
|
-
* <p>
|
|
1496
|
-
* <b>Directory buckets</b> - To encrypt data using SSE-KMS, it's recommended to specify the
|
|
1497
|
-
* <code>x-amz-server-side-encryption</code> header to <code>aws:kms</code>. Then, the <code>x-amz-server-side-encryption-aws-kms-key-id</code> header implicitly uses
|
|
1498
|
-
* the bucket's default KMS customer managed key ID. If you want to explicitly set the <code>
|
|
1499
|
-
* x-amz-server-side-encryption-aws-kms-key-id</code> header, it must match the bucket's default customer managed key (using key ID or ARN, not alias). Your SSE-KMS configuration can only support 1 <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk">customer managed key</a> per directory bucket's lifetime.
|
|
1500
|
-
* The <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed key</a> (<code>aws/s3</code>) isn't supported.
|
|
1501
|
-
*
|
|
1502
|
-
* Incorrect key specification results in an HTTP <code>400 Bad Request</code> error. </p>
|
|
1503
|
-
* @public
|
|
1504
|
-
*/
|
|
1505
|
-
SSEKMSKeyId?: string | undefined;
|
|
1506
|
-
/**
|
|
1507
|
-
* <p>Specifies the Amazon Web Services KMS Encryption Context as an additional encryption context to use for object encryption. The value of
|
|
1508
|
-
* this header is a Base64 encoded string of a UTF-8 encoded JSON, which contains the encryption context as key-value pairs.
|
|
1509
|
-
* This value is stored as object metadata and automatically gets passed on
|
|
1510
|
-
* to Amazon Web Services KMS for future <code>GetObject</code> operations on
|
|
1511
|
-
* this object.</p>
|
|
1512
|
-
* <p>
|
|
1513
|
-
* <b>General purpose buckets</b> - This value must be explicitly added during <code>CopyObject</code> operations if you want an additional encryption context for your object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/UsingKMSEncryption.html#encryption-context">Encryption context</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1514
|
-
* <p>
|
|
1515
|
-
* <b>Directory buckets</b> - You can optionally provide an explicit encryption context value. The value must match the default encryption context - the bucket Amazon Resource Name (ARN). An additional encryption context value is not supported. </p>
|
|
1516
|
-
* @public
|
|
1517
|
-
*/
|
|
1518
|
-
SSEKMSEncryptionContext?: string | undefined;
|
|
1519
|
-
/**
|
|
1520
|
-
* <p>Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with
|
|
1521
|
-
* server-side encryption using Key Management Service (KMS) keys (SSE-KMS).</p>
|
|
1522
|
-
* <p>
|
|
1523
|
-
* <b>General purpose buckets</b> - Setting this header to
|
|
1524
|
-
* <code>true</code> causes Amazon S3 to use an S3 Bucket Key for object encryption with
|
|
1525
|
-
* SSE-KMS. Also, specifying this header with a PUT action doesn't affect bucket-level settings for S3
|
|
1526
|
-
* Bucket Key.</p>
|
|
1527
|
-
* <p>
|
|
1528
|
-
* <b>Directory buckets</b> - S3 Bucket Keys are always enabled for <code>GET</code> and <code>PUT</code> operations in a directory bucket and can’t be disabled. S3 Bucket Keys aren't supported, when you copy SSE-KMS encrypted objects from general purpose buckets
|
|
1529
|
-
* to directory buckets, from directory buckets to general purpose buckets, or between directory buckets, through <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_CopyObject.html">CopyObject</a>, <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPartCopy.html">UploadPartCopy</a>, <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-buckets-objects-Batch-Ops">the Copy operation in Batch Operations</a>, or
|
|
1530
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/create-import-job">the import jobs</a>. In this case, Amazon S3 makes a call to KMS every time a copy request is made for a KMS-encrypted object.</p>
|
|
1531
|
-
* @public
|
|
1532
|
-
*/
|
|
1533
|
-
BucketKeyEnabled?: boolean | undefined;
|
|
1534
|
-
/**
|
|
1535
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
1536
|
-
* owners need not specify this parameter in their requests. If either the source or
|
|
1537
|
-
* destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding
|
|
1538
|
-
* charges to copy the object. For information about downloading objects from Requester Pays
|
|
1539
|
-
* buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in
|
|
1540
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1541
|
-
* <note>
|
|
1542
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1543
|
-
* </note>
|
|
1544
|
-
* @public
|
|
1545
|
-
*/
|
|
1546
|
-
RequestPayer?: RequestPayer | undefined;
|
|
1547
|
-
/**
|
|
1548
|
-
* <p>The tag-set for the object. The tag-set must be encoded as URL Query parameters. (For
|
|
1549
|
-
* example, "Key1=Value1")</p>
|
|
1550
|
-
* <note>
|
|
1551
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1552
|
-
* </note>
|
|
1553
|
-
* @public
|
|
1554
|
-
*/
|
|
1555
|
-
Tagging?: string | undefined;
|
|
1556
|
-
/**
|
|
1557
|
-
* <p>The Object Lock mode that you want to apply to this object.</p>
|
|
1558
|
-
* <note>
|
|
1559
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1560
|
-
* </note>
|
|
1561
|
-
* @public
|
|
1562
|
-
*/
|
|
1563
|
-
ObjectLockMode?: ObjectLockMode | undefined;
|
|
1564
|
-
/**
|
|
1565
|
-
* <p>The date and time when you want this object's Object Lock to expire. Must be formatted
|
|
1566
|
-
* as a timestamp parameter.</p>
|
|
1567
|
-
* <note>
|
|
1568
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1569
|
-
* </note>
|
|
1570
|
-
* @public
|
|
1571
|
-
*/
|
|
1572
|
-
ObjectLockRetainUntilDate?: Date | undefined;
|
|
1573
|
-
/**
|
|
1574
|
-
* <p>Specifies whether a legal hold will be applied to this object. For more information
|
|
1575
|
-
* about S3 Object Lock, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object Lock</a> in the
|
|
1576
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
1577
|
-
* <note>
|
|
1578
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1579
|
-
* </note>
|
|
1580
|
-
* @public
|
|
1581
|
-
*/
|
|
1582
|
-
ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | undefined;
|
|
1583
|
-
/**
|
|
1584
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
1585
|
-
* @public
|
|
1586
|
-
*/
|
|
1587
|
-
ExpectedBucketOwner?: string | undefined;
|
|
1588
|
-
}
|
|
1589
|
-
/**
|
|
1590
|
-
* <p>
|
|
1591
|
-
* You have attempted to add more parts than the maximum of 10000
|
|
1592
|
-
* that are allowed for this object. You can use the CopyObject operation
|
|
1593
|
-
* to copy this object to another and then add more data to the newly copied object.
|
|
1594
|
-
* </p>
|
|
1595
|
-
* @public
|
|
1596
|
-
*/
|
|
1597
|
-
export declare class TooManyParts extends __BaseException {
|
|
1598
|
-
readonly name: "TooManyParts";
|
|
1599
|
-
readonly $fault: "client";
|
|
1600
|
-
/**
|
|
1601
|
-
* @internal
|
|
1602
|
-
*/
|
|
1603
|
-
constructor(opts: __ExceptionOptionType<TooManyParts, __BaseException>);
|
|
1604
|
-
}
|
|
1605
|
-
/**
|
|
1606
|
-
* @public
|
|
1607
|
-
*/
|
|
1608
|
-
export interface PutObjectAclOutput {
|
|
1609
|
-
/**
|
|
1610
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
1611
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple Storage Service user guide</i>.</p>
|
|
1612
|
-
* <note>
|
|
1613
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1614
|
-
* </note>
|
|
1615
|
-
* @public
|
|
1616
|
-
*/
|
|
1617
|
-
RequestCharged?: RequestCharged | undefined;
|
|
1618
|
-
}
|
|
1619
|
-
/**
|
|
1620
|
-
* @public
|
|
1621
|
-
*/
|
|
1622
|
-
export interface PutObjectAclRequest {
|
|
1623
|
-
/**
|
|
1624
|
-
* <p>The canned ACL to apply to the object. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#CannedACL">Canned
|
|
1625
|
-
* ACL</a>.</p>
|
|
1626
|
-
* @public
|
|
1627
|
-
*/
|
|
1628
|
-
ACL?: ObjectCannedACL | undefined;
|
|
1629
|
-
/**
|
|
1630
|
-
* <p>Contains the elements that set the ACL permissions for an object per grantee.</p>
|
|
1631
|
-
* @public
|
|
1632
|
-
*/
|
|
1633
|
-
AccessControlPolicy?: AccessControlPolicy | undefined;
|
|
1634
|
-
/**
|
|
1635
|
-
* <p>The bucket name that contains the object to which you want to attach the ACL. </p>
|
|
1636
|
-
* <p>
|
|
1637
|
-
* <b>Access points</b> - When you use this action with an access point for general purpose buckets, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When you use this action with an access point for directory buckets, you must provide the access point name in place of the bucket name. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html">Using access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1638
|
-
* <p>
|
|
1639
|
-
* <b>S3 on Outposts</b> - When you use this action with S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the
|
|
1640
|
-
* form <code>
|
|
1641
|
-
* <i>AccessPointName</i>-<i>AccountId</i>.<i>outpostID</i>.s3-outposts.<i>Region</i>.amazonaws.com</code>. When you use this action with S3 on Outposts, the destination bucket must be the Outposts access point ARN or the access point alias. For more information about S3 on Outposts, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html">What is S3 on Outposts?</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1642
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
1643
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
1644
|
-
* @public
|
|
1645
|
-
*/
|
|
1646
|
-
Bucket: string | undefined;
|
|
1647
|
-
/**
|
|
1648
|
-
* <p>The Base64 encoded 128-bit <code>MD5</code> digest of the data. This header must be used as a message
|
|
1649
|
-
* integrity check to verify that the request body was not corrupted in transit. For more
|
|
1650
|
-
* information, go to <a href="http://www.ietf.org/rfc/rfc1864.txt">RFC
|
|
1651
|
-
* 1864.></a>
|
|
1652
|
-
* </p>
|
|
1653
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
1654
|
-
* @public
|
|
1655
|
-
*/
|
|
1656
|
-
ContentMD5?: string | undefined;
|
|
1657
|
-
/**
|
|
1658
|
-
* <p>Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any
|
|
1659
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
1660
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
1661
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1662
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1663
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
1664
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
1665
|
-
* @public
|
|
1666
|
-
*/
|
|
1667
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
1668
|
-
/**
|
|
1669
|
-
* <p>Allows grantee the read, write, read ACP, and write ACP permissions on the
|
|
1670
|
-
* bucket.</p>
|
|
1671
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1672
|
-
* @public
|
|
1673
|
-
*/
|
|
1674
|
-
GrantFullControl?: string | undefined;
|
|
1675
|
-
/**
|
|
1676
|
-
* <p>Allows grantee to list the objects in the bucket.</p>
|
|
1677
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1678
|
-
* @public
|
|
1679
|
-
*/
|
|
1680
|
-
GrantRead?: string | undefined;
|
|
1681
|
-
/**
|
|
1682
|
-
* <p>Allows grantee to read the bucket ACL.</p>
|
|
1683
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1684
|
-
* @public
|
|
1685
|
-
*/
|
|
1686
|
-
GrantReadACP?: string | undefined;
|
|
1687
|
-
/**
|
|
1688
|
-
* <p>Allows grantee to create new objects in the bucket.</p>
|
|
1689
|
-
* <p>For the bucket and object owners of existing objects, also allows deletions and
|
|
1690
|
-
* overwrites of those objects.</p>
|
|
1691
|
-
* @public
|
|
1692
|
-
*/
|
|
1693
|
-
GrantWrite?: string | undefined;
|
|
1694
|
-
/**
|
|
1695
|
-
* <p>Allows grantee to write the ACL for the applicable bucket.</p>
|
|
1696
|
-
* <p>This functionality is not supported for Amazon S3 on Outposts.</p>
|
|
1697
|
-
* @public
|
|
1698
|
-
*/
|
|
1699
|
-
GrantWriteACP?: string | undefined;
|
|
1700
|
-
/**
|
|
1701
|
-
* <p>Key for which the PUT action was initiated.</p>
|
|
1702
|
-
* @public
|
|
1703
|
-
*/
|
|
1704
|
-
Key: string | undefined;
|
|
1705
|
-
/**
|
|
1706
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
1707
|
-
* owners need not specify this parameter in their requests. If either the source or
|
|
1708
|
-
* destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding
|
|
1709
|
-
* charges to copy the object. For information about downloading objects from Requester Pays
|
|
1710
|
-
* buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in
|
|
1711
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1712
|
-
* <note>
|
|
1713
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1714
|
-
* </note>
|
|
1715
|
-
* @public
|
|
1716
|
-
*/
|
|
1717
|
-
RequestPayer?: RequestPayer | undefined;
|
|
1718
|
-
/**
|
|
1719
|
-
* <p>Version ID used to reference a specific version of the object.</p>
|
|
1720
|
-
* <note>
|
|
1721
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1722
|
-
* </note>
|
|
1723
|
-
* @public
|
|
1724
|
-
*/
|
|
1725
|
-
VersionId?: string | undefined;
|
|
1726
|
-
/**
|
|
1727
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
1728
|
-
* @public
|
|
1729
|
-
*/
|
|
1730
|
-
ExpectedBucketOwner?: string | undefined;
|
|
1731
|
-
}
|
|
1732
|
-
/**
|
|
1733
|
-
* @public
|
|
1734
|
-
*/
|
|
1735
|
-
export interface PutObjectLegalHoldOutput {
|
|
1736
|
-
/**
|
|
1737
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
1738
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple Storage Service user guide</i>.</p>
|
|
1739
|
-
* <note>
|
|
1740
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1741
|
-
* </note>
|
|
1742
|
-
* @public
|
|
1743
|
-
*/
|
|
1744
|
-
RequestCharged?: RequestCharged | undefined;
|
|
1745
|
-
}
|
|
1746
|
-
/**
|
|
1747
|
-
* @public
|
|
1748
|
-
*/
|
|
1749
|
-
export interface PutObjectLegalHoldRequest {
|
|
1750
|
-
/**
|
|
1751
|
-
* <p>The bucket name containing the object that you want to place a legal hold on. </p>
|
|
1752
|
-
* <p>
|
|
1753
|
-
* <b>Access points</b> - When you use this action with an access point for general purpose buckets, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When you use this action with an access point for directory buckets, you must provide the access point name in place of the bucket name. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html">Using access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1754
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
1755
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
1756
|
-
* @public
|
|
1757
|
-
*/
|
|
1758
|
-
Bucket: string | undefined;
|
|
1759
|
-
/**
|
|
1760
|
-
* <p>The key name for the object that you want to place a legal hold on.</p>
|
|
1761
|
-
* @public
|
|
1762
|
-
*/
|
|
1763
|
-
Key: string | undefined;
|
|
1764
|
-
/**
|
|
1765
|
-
* <p>Container element for the legal hold configuration you want to apply to the specified
|
|
1766
|
-
* object.</p>
|
|
1767
|
-
* @public
|
|
1768
|
-
*/
|
|
1769
|
-
LegalHold?: ObjectLockLegalHold | undefined;
|
|
1770
|
-
/**
|
|
1771
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
1772
|
-
* owners need not specify this parameter in their requests. If either the source or
|
|
1773
|
-
* destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding
|
|
1774
|
-
* charges to copy the object. For information about downloading objects from Requester Pays
|
|
1775
|
-
* buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in
|
|
1776
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1777
|
-
* <note>
|
|
1778
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1779
|
-
* </note>
|
|
1780
|
-
* @public
|
|
1781
|
-
*/
|
|
1782
|
-
RequestPayer?: RequestPayer | undefined;
|
|
1783
|
-
/**
|
|
1784
|
-
* <p>The version ID of the object that you want to place a legal hold on.</p>
|
|
1785
|
-
* @public
|
|
1786
|
-
*/
|
|
1787
|
-
VersionId?: string | undefined;
|
|
1788
|
-
/**
|
|
1789
|
-
* <p>The MD5 hash for the request body.</p>
|
|
1790
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
1791
|
-
* @public
|
|
1792
|
-
*/
|
|
1793
|
-
ContentMD5?: string | undefined;
|
|
1794
|
-
/**
|
|
1795
|
-
* <p>Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any
|
|
1796
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
1797
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
1798
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1799
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1800
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
1801
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
1802
|
-
* @public
|
|
1803
|
-
*/
|
|
1804
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
1805
|
-
/**
|
|
1806
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
1807
|
-
* @public
|
|
1808
|
-
*/
|
|
1809
|
-
ExpectedBucketOwner?: string | undefined;
|
|
1810
|
-
}
|
|
1811
|
-
/**
|
|
1812
|
-
* @public
|
|
1813
|
-
*/
|
|
1814
|
-
export interface PutObjectLockConfigurationOutput {
|
|
1815
|
-
/**
|
|
1816
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
1817
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple Storage Service user guide</i>.</p>
|
|
1818
|
-
* <note>
|
|
1819
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1820
|
-
* </note>
|
|
1821
|
-
* @public
|
|
1822
|
-
*/
|
|
1823
|
-
RequestCharged?: RequestCharged | undefined;
|
|
1824
|
-
}
|
|
1825
|
-
/**
|
|
1826
|
-
* @public
|
|
1827
|
-
*/
|
|
1828
|
-
export interface PutObjectLockConfigurationRequest {
|
|
1829
|
-
/**
|
|
1830
|
-
* <p>The bucket whose Object Lock configuration you want to create or replace.</p>
|
|
1831
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
1832
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
1833
|
-
* @public
|
|
1834
|
-
*/
|
|
1835
|
-
Bucket: string | undefined;
|
|
1836
|
-
/**
|
|
1837
|
-
* <p>The Object Lock configuration that you want to apply to the specified bucket.</p>
|
|
1838
|
-
* @public
|
|
1839
|
-
*/
|
|
1840
|
-
ObjectLockConfiguration?: ObjectLockConfiguration | undefined;
|
|
1841
|
-
/**
|
|
1842
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
1843
|
-
* owners need not specify this parameter in their requests. If either the source or
|
|
1844
|
-
* destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding
|
|
1845
|
-
* charges to copy the object. For information about downloading objects from Requester Pays
|
|
1846
|
-
* buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in
|
|
1847
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1848
|
-
* <note>
|
|
1849
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1850
|
-
* </note>
|
|
1851
|
-
* @public
|
|
1852
|
-
*/
|
|
1853
|
-
RequestPayer?: RequestPayer | undefined;
|
|
1854
|
-
/**
|
|
1855
|
-
* <p>A token to allow Object Lock to be enabled for an existing bucket.</p>
|
|
1856
|
-
* @public
|
|
1857
|
-
*/
|
|
1858
|
-
Token?: string | undefined;
|
|
1859
|
-
/**
|
|
1860
|
-
* <p>The MD5 hash for the request body.</p>
|
|
1861
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
1862
|
-
* @public
|
|
1863
|
-
*/
|
|
1864
|
-
ContentMD5?: string | undefined;
|
|
1865
|
-
/**
|
|
1866
|
-
* <p>Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any
|
|
1867
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
1868
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
1869
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1870
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1871
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
1872
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
1873
|
-
* @public
|
|
1874
|
-
*/
|
|
1875
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
1876
|
-
/**
|
|
1877
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
1878
|
-
* @public
|
|
1879
|
-
*/
|
|
1880
|
-
ExpectedBucketOwner?: string | undefined;
|
|
1881
|
-
}
|
|
1882
|
-
/**
|
|
1883
|
-
* @public
|
|
1884
|
-
*/
|
|
1885
|
-
export interface PutObjectRetentionOutput {
|
|
1886
|
-
/**
|
|
1887
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
1888
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple Storage Service user guide</i>.</p>
|
|
1889
|
-
* <note>
|
|
1890
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1891
|
-
* </note>
|
|
1892
|
-
* @public
|
|
1893
|
-
*/
|
|
1894
|
-
RequestCharged?: RequestCharged | undefined;
|
|
1895
|
-
}
|
|
1896
|
-
/**
|
|
1897
|
-
* @public
|
|
1898
|
-
*/
|
|
1899
|
-
export interface PutObjectRetentionRequest {
|
|
1900
|
-
/**
|
|
1901
|
-
* <p>The bucket name that contains the object you want to apply this Object Retention
|
|
1902
|
-
* configuration to. </p>
|
|
1903
|
-
* <p>
|
|
1904
|
-
* <b>Access points</b> - When you use this action with an access point for general purpose buckets, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When you use this action with an access point for directory buckets, you must provide the access point name in place of the bucket name. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html">Using access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1905
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
1906
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
1907
|
-
* @public
|
|
1908
|
-
*/
|
|
1909
|
-
Bucket: string | undefined;
|
|
1910
|
-
/**
|
|
1911
|
-
* <p>The key name for the object that you want to apply this Object Retention configuration
|
|
1912
|
-
* to.</p>
|
|
1913
|
-
* @public
|
|
1914
|
-
*/
|
|
1915
|
-
Key: string | undefined;
|
|
1916
|
-
/**
|
|
1917
|
-
* <p>The container element for the Object Retention configuration.</p>
|
|
1918
|
-
* @public
|
|
1919
|
-
*/
|
|
1920
|
-
Retention?: ObjectLockRetention | undefined;
|
|
1921
|
-
/**
|
|
1922
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
1923
|
-
* owners need not specify this parameter in their requests. If either the source or
|
|
1924
|
-
* destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding
|
|
1925
|
-
* charges to copy the object. For information about downloading objects from Requester Pays
|
|
1926
|
-
* buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in
|
|
1927
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1928
|
-
* <note>
|
|
1929
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
1930
|
-
* </note>
|
|
1931
|
-
* @public
|
|
1932
|
-
*/
|
|
1933
|
-
RequestPayer?: RequestPayer | undefined;
|
|
1934
|
-
/**
|
|
1935
|
-
* <p>The version ID for the object that you want to apply this Object Retention configuration
|
|
1936
|
-
* to.</p>
|
|
1937
|
-
* @public
|
|
1938
|
-
*/
|
|
1939
|
-
VersionId?: string | undefined;
|
|
1940
|
-
/**
|
|
1941
|
-
* <p>Indicates whether this action should bypass Governance-mode restrictions.</p>
|
|
1942
|
-
* @public
|
|
1943
|
-
*/
|
|
1944
|
-
BypassGovernanceRetention?: boolean | undefined;
|
|
1945
|
-
/**
|
|
1946
|
-
* <p>The MD5 hash for the request body.</p>
|
|
1947
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
1948
|
-
* @public
|
|
1949
|
-
*/
|
|
1950
|
-
ContentMD5?: string | undefined;
|
|
1951
|
-
/**
|
|
1952
|
-
* <p>Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any
|
|
1953
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
1954
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
1955
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1956
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1957
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
1958
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
1959
|
-
* @public
|
|
1960
|
-
*/
|
|
1961
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
1962
|
-
/**
|
|
1963
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
1964
|
-
* @public
|
|
1965
|
-
*/
|
|
1966
|
-
ExpectedBucketOwner?: string | undefined;
|
|
1967
|
-
}
|
|
1968
|
-
/**
|
|
1969
|
-
* @public
|
|
1970
|
-
*/
|
|
1971
|
-
export interface PutObjectTaggingOutput {
|
|
1972
|
-
/**
|
|
1973
|
-
* <p>The versionId of the object the tag-set was added to.</p>
|
|
1974
|
-
* @public
|
|
1975
|
-
*/
|
|
1976
|
-
VersionId?: string | undefined;
|
|
1977
|
-
}
|
|
1978
|
-
/**
|
|
1979
|
-
* @public
|
|
1980
|
-
*/
|
|
1981
|
-
export interface PutObjectTaggingRequest {
|
|
1982
|
-
/**
|
|
1983
|
-
* <p>The bucket name containing the object. </p>
|
|
1984
|
-
* <p>
|
|
1985
|
-
* <b>Access points</b> - When you use this action with an access point for general purpose buckets, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When you use this action with an access point for directory buckets, you must provide the access point name in place of the bucket name. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html">Using access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1986
|
-
* <p>
|
|
1987
|
-
* <b>S3 on Outposts</b> - When you use this action with S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the
|
|
1988
|
-
* form <code>
|
|
1989
|
-
* <i>AccessPointName</i>-<i>AccountId</i>.<i>outpostID</i>.s3-outposts.<i>Region</i>.amazonaws.com</code>. When you use this action with S3 on Outposts, the destination bucket must be the Outposts access point ARN or the access point alias. For more information about S3 on Outposts, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/S3onOutposts.html">What is S3 on Outposts?</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1990
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
1991
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
1992
|
-
* @public
|
|
1993
|
-
*/
|
|
1994
|
-
Bucket: string | undefined;
|
|
1995
|
-
/**
|
|
1996
|
-
* <p>Name of the object key.</p>
|
|
1997
|
-
* @public
|
|
1998
|
-
*/
|
|
1999
|
-
Key: string | undefined;
|
|
2000
|
-
/**
|
|
2001
|
-
* <p>The versionId of the object that the tag-set will be added to.</p>
|
|
2002
|
-
* @public
|
|
2003
|
-
*/
|
|
2004
|
-
VersionId?: string | undefined;
|
|
2005
|
-
/**
|
|
2006
|
-
* <p>The MD5 hash for the request body.</p>
|
|
2007
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
2008
|
-
* @public
|
|
2009
|
-
*/
|
|
2010
|
-
ContentMD5?: string | undefined;
|
|
2011
|
-
/**
|
|
2012
|
-
* <p>Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any
|
|
2013
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
2014
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
2015
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
2016
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
2017
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
2018
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
2019
|
-
* @public
|
|
2020
|
-
*/
|
|
2021
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
2022
|
-
/**
|
|
2023
|
-
* <p>Container for the <code>TagSet</code> and <code>Tag</code> elements</p>
|
|
2024
|
-
* @public
|
|
2025
|
-
*/
|
|
2026
|
-
Tagging: Tagging | undefined;
|
|
2027
|
-
/**
|
|
2028
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
2029
|
-
* @public
|
|
2030
|
-
*/
|
|
2031
|
-
ExpectedBucketOwner?: string | undefined;
|
|
2032
|
-
/**
|
|
2033
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
2034
|
-
* owners need not specify this parameter in their requests. If either the source or
|
|
2035
|
-
* destination S3 bucket has Requester Pays enabled, the requester will pay for corresponding
|
|
2036
|
-
* charges to copy the object. For information about downloading objects from Requester Pays
|
|
2037
|
-
* buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in
|
|
2038
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
2039
|
-
* <note>
|
|
2040
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
2041
|
-
* </note>
|
|
2042
|
-
* @public
|
|
2043
|
-
*/
|
|
2044
|
-
RequestPayer?: RequestPayer | undefined;
|
|
2045
|
-
}
|
|
2046
|
-
/**
|
|
2047
|
-
* @public
|
|
2048
|
-
*/
|
|
2049
|
-
export interface PutPublicAccessBlockRequest {
|
|
2050
|
-
/**
|
|
2051
|
-
* <p>The name of the Amazon S3 bucket whose <code>PublicAccessBlock</code> configuration you want
|
|
2052
|
-
* to set.</p>
|
|
2053
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
2054
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
2055
|
-
* @public
|
|
2056
|
-
*/
|
|
2057
|
-
Bucket: string | undefined;
|
|
2058
|
-
/**
|
|
2059
|
-
* <p>The MD5 hash of the <code>PutPublicAccessBlock</code> request body. </p>
|
|
2060
|
-
* <p>For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.</p>
|
|
2061
|
-
* @public
|
|
2062
|
-
*/
|
|
2063
|
-
ContentMD5?: string | undefined;
|
|
2064
|
-
/**
|
|
2065
|
-
* <p>Indicates the algorithm used to create the checksum for the object when you use the SDK. This header will not provide any
|
|
2066
|
-
* additional functionality if you don't use the SDK. When you send this header, there must be a corresponding <code>x-amz-checksum</code> or
|
|
2067
|
-
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
2068
|
-
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
2069
|
-
* the <i>Amazon S3 User Guide</i>.</p>
|
|
2070
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
2071
|
-
* <code>ChecksumAlgorithm</code> parameter.</p>
|
|
2072
|
-
* @public
|
|
2073
|
-
*/
|
|
2074
|
-
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
2075
|
-
/**
|
|
2076
|
-
* <p>The <code>PublicAccessBlock</code> configuration that you want to apply to this Amazon S3
|
|
2077
|
-
* bucket. You can enable the configuration options in any combination. For more information
|
|
2078
|
-
* about when Amazon S3 considers a bucket or object public, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status">The Meaning of "Public"</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
2079
|
-
* @public
|
|
2080
|
-
*/
|
|
2081
|
-
PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | undefined;
|
|
2082
|
-
/**
|
|
2083
|
-
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
2084
|
-
* @public
|
|
2085
|
-
*/
|
|
2086
|
-
ExpectedBucketOwner?: string | undefined;
|
|
2087
|
-
}
|
|
2088
|
-
/**
|
|
2089
|
-
* <p>Parameters on this idempotent request are inconsistent with parameters used in previous request(s).
|
|
2090
|
-
* </p>
|
|
2091
|
-
* <p>For a list of error codes and more information on Amazon S3 errors, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList">Error
|
|
2092
|
-
* codes</a>.</p>
|
|
2093
|
-
* <note>
|
|
2094
|
-
* <p>Idempotency ensures that an API request completes no more than one time. With an idempotent request, if the original request completes successfully, any subsequent retries complete successfully without performing any further actions.</p>
|
|
2095
|
-
* </note>
|
|
2096
|
-
* @public
|
|
2097
|
-
*/
|
|
2098
|
-
export declare class IdempotencyParameterMismatch extends __BaseException {
|
|
2099
|
-
readonly name: "IdempotencyParameterMismatch";
|
|
2100
|
-
readonly $fault: "client";
|
|
2101
|
-
/**
|
|
2102
|
-
* @internal
|
|
2103
|
-
*/
|
|
2104
|
-
constructor(opts: __ExceptionOptionType<IdempotencyParameterMismatch, __BaseException>);
|
|
2105
|
-
}
|
|
2106
|
-
/**
|
|
2107
|
-
* @public
|
|
2108
|
-
*/
|
|
2109
|
-
export interface RenameObjectOutput {
|
|
2110
|
-
}
|
|
2111
|
-
/**
|
|
2112
|
-
* @public
|
|
2113
|
-
*/
|
|
2114
|
-
export interface RenameObjectRequest {
|
|
2115
|
-
/**
|
|
2116
|
-
* <p>The bucket name of the directory bucket containing the object.</p>
|
|
2117
|
-
* <p> You must use virtual-hosted-style requests in the format
|
|
2118
|
-
* <code>Bucket-name.s3express-zone-id.region-code.amazonaws.com</code>. Path-style requests are not supported.
|
|
2119
|
-
* Directory bucket names must be unique in the chosen
|
|
2120
|
-
* Availability Zone. Bucket names must follow the format <code>bucket-base-name--zone-id--x-s3 </code> (for example,
|
|
2121
|
-
* <code>amzn-s3-demo-bucket--usw2-az1--x-s3</code>). For information about bucket naming
|
|
2122
|
-
* restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket
|
|
2123
|
-
* naming rules</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
2124
|
-
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
2125
|
-
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
2126
|
-
* @public
|
|
2127
|
-
*/
|
|
2128
|
-
Bucket: string | undefined;
|
|
2129
|
-
/**
|
|
2130
|
-
* <p>Key name of the object to rename.</p>
|
|
2131
|
-
* @public
|
|
2132
|
-
*/
|
|
2133
|
-
Key: string | undefined;
|
|
2134
|
-
/**
|
|
2135
|
-
* <p>Specifies the source for the rename operation. The value must be URL encoded.</p>
|
|
2136
|
-
* @public
|
|
2137
|
-
*/
|
|
2138
|
-
RenameSource: string | undefined;
|
|
2139
|
-
/**
|
|
2140
|
-
* <p>Renames the object only if the ETag (entity tag) value provided during the operation
|
|
2141
|
-
* matches the ETag of the object in S3. The <code>If-Match</code> header field makes the
|
|
2142
|
-
* request method conditional on ETags. If the ETag values do not match, the operation returns
|
|
2143
|
-
* a <code>412 Precondition Failed</code> error.</p>
|
|
2144
|
-
* <p>Expects the ETag value as a string.</p>
|
|
2145
|
-
* @public
|
|
2146
|
-
*/
|
|
2147
|
-
DestinationIfMatch?: string | undefined;
|
|
2148
|
-
/**
|
|
2149
|
-
* <p> Renames the object only if the destination does not already exist in the specified
|
|
2150
|
-
* directory bucket. If the object does exist when you send a request with
|
|
2151
|
-
* <code>If-None-Match:*</code>, the S3 API will return a <code>412 Precondition
|
|
2152
|
-
* Failed</code> error, preventing an overwrite. The <code>If-None-Match</code> header
|
|
2153
|
-
* prevents overwrites of existing data by validating that there's not an object with the same
|
|
2154
|
-
* key name already in your directory bucket.</p>
|
|
2155
|
-
* <p> Expects the <code>*</code> character (asterisk).</p>
|
|
2156
|
-
* @public
|
|
2157
|
-
*/
|
|
2158
|
-
DestinationIfNoneMatch?: string | undefined;
|
|
2159
|
-
/**
|
|
2160
|
-
* <p>Renames the object if the destination exists and if it has been modified since the
|
|
2161
|
-
* specified time.</p>
|
|
2162
|
-
* @public
|
|
2163
|
-
*/
|
|
2164
|
-
DestinationIfModifiedSince?: Date | undefined;
|
|
2165
|
-
/**
|
|
2166
|
-
* <p>Renames the object if it hasn't been modified since the specified time.</p>
|
|
2167
|
-
* @public
|
|
2168
|
-
*/
|
|
2169
|
-
DestinationIfUnmodifiedSince?: Date | undefined;
|
|
2170
|
-
/**
|
|
2171
|
-
* <p>Renames the object if the source exists and if its entity tag (ETag) matches the
|
|
2172
|
-
* specified ETag. </p>
|
|
2173
|
-
* @public
|
|
2174
|
-
*/
|
|
2175
|
-
SourceIfMatch?: string | undefined;
|
|
2176
|
-
/**
|
|
2177
|
-
* <p>Renames the object if the source exists and if its entity tag (ETag) is different than
|
|
2178
|
-
* the specified ETag. If an asterisk (<code>*</code>) character is provided, the operation
|
|
2179
|
-
* will fail and return a <code>412 Precondition Failed</code> error. </p>
|
|
2180
|
-
* @public
|
|
2181
|
-
*/
|
|
2182
|
-
SourceIfNoneMatch?: string | undefined;
|
|
2183
|
-
/**
|
|
2184
|
-
* <p>Renames the object if the source exists and if it has been modified since the specified time.</p>
|
|
2185
|
-
* @public
|
|
2186
|
-
*/
|
|
2187
|
-
SourceIfModifiedSince?: Date | undefined;
|
|
2188
|
-
/**
|
|
2189
|
-
* <p>Renames the object if the source exists and hasn't been modified since the specified time.</p>
|
|
2190
|
-
* @public
|
|
2191
|
-
*/
|
|
2192
|
-
SourceIfUnmodifiedSince?: Date | undefined;
|
|
2193
|
-
/**
|
|
2194
|
-
* <p> A unique string with a max of 64 ASCII characters in the ASCII range of 33 - 126.</p>
|
|
2195
|
-
* <note>
|
|
2196
|
-
* <p>
|
|
2197
|
-
* <code>RenameObject</code> supports idempotency using a client token. To make an
|
|
2198
|
-
* idempotent API request using <code>RenameObject</code>, specify a client token in the
|
|
2199
|
-
* request. You should not reuse the same client token for other API requests. If you retry a
|
|
2200
|
-
* request that completed successfully using the same client token and the same parameters,
|
|
2201
|
-
* the retry succeeds without performing any further actions. If you retry a successful
|
|
2202
|
-
* request using the same client token, but one or more of the parameters are different, the
|
|
2203
|
-
* retry fails and an <code>IdempotentParameterMismatch</code> error is returned. </p>
|
|
2204
|
-
* </note>
|
|
2205
|
-
* @public
|
|
2206
|
-
*/
|
|
2207
|
-
ClientToken?: string | undefined;
|
|
2208
|
-
}
|
|
2209
|
-
/**
|
|
2210
|
-
* <p>This action is not allowed against this storage tier.</p>
|
|
2211
|
-
* @public
|
|
2212
|
-
*/
|
|
2213
|
-
export declare class ObjectAlreadyInActiveTierError extends __BaseException {
|
|
2214
|
-
readonly name: "ObjectAlreadyInActiveTierError";
|
|
2215
|
-
readonly $fault: "client";
|
|
2216
|
-
/**
|
|
2217
|
-
* @internal
|
|
2218
|
-
*/
|
|
2219
|
-
constructor(opts: __ExceptionOptionType<ObjectAlreadyInActiveTierError, __BaseException>);
|
|
2220
|
-
}
|
|
2221
|
-
/**
|
|
2222
|
-
* @public
|
|
2223
|
-
*/
|
|
2224
|
-
export interface RestoreObjectOutput {
|
|
2225
|
-
/**
|
|
2226
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
2227
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple Storage Service user guide</i>.</p>
|
|
2228
|
-
* <note>
|
|
2229
|
-
* <p>This functionality is not supported for directory buckets.</p>
|
|
2230
|
-
* </note>
|
|
2231
|
-
* @public
|
|
2232
|
-
*/
|
|
2233
|
-
RequestCharged?: RequestCharged | undefined;
|
|
2234
|
-
/**
|
|
2235
|
-
* <p>Indicates the path in the provided S3 output location where Select results will be
|
|
2236
|
-
* restored to.</p>
|
|
2237
|
-
* @public
|
|
2238
|
-
*/
|
|
2239
|
-
RestoreOutputPath?: string | undefined;
|
|
2240
|
-
}
|
|
2241
|
-
/**
|
|
2242
|
-
* @public
|
|
2243
|
-
* @enum
|
|
2244
|
-
*/
|
|
2245
|
-
export declare const Tier: {
|
|
2246
|
-
readonly Bulk: "Bulk";
|
|
2247
|
-
readonly Expedited: "Expedited";
|
|
2248
|
-
readonly Standard: "Standard";
|
|
2249
|
-
};
|
|
2250
|
-
/**
|
|
2251
|
-
* @public
|
|
2252
|
-
*/
|
|
2253
|
-
export type Tier = (typeof Tier)[keyof typeof Tier];
|
|
2254
|
-
/**
|
|
2255
|
-
* <p>Container for S3 Glacier job parameters.</p>
|
|
2256
|
-
* @public
|
|
2257
|
-
*/
|
|
2258
|
-
export interface GlacierJobParameters {
|
|
2259
|
-
/**
|
|
2260
|
-
* <p>Retrieval tier at which the restore will be processed.</p>
|
|
2261
|
-
* @public
|
|
2262
|
-
*/
|
|
2263
|
-
Tier: Tier | undefined;
|
|
2264
|
-
}
|
|
2265
|
-
/**
|
|
2266
|
-
* <p>Contains the type of server-side encryption used.</p>
|
|
2267
|
-
* @public
|
|
2268
|
-
*/
|
|
2269
|
-
export interface Encryption {
|
|
2270
|
-
/**
|
|
2271
|
-
* <p>The server-side encryption algorithm used when storing job results in Amazon S3 (for example,
|
|
2272
|
-
* AES256, <code>aws:kms</code>).</p>
|
|
2273
|
-
* @public
|
|
2274
|
-
*/
|
|
2275
|
-
EncryptionType: ServerSideEncryption | undefined;
|
|
2276
|
-
/**
|
|
2277
|
-
* <p>If the encryption type is <code>aws:kms</code>, this optional value specifies the ID of
|
|
2278
|
-
* the symmetric encryption customer managed key to use for encryption of job results. Amazon S3 only
|
|
2279
|
-
* supports symmetric encryption KMS keys. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html">Asymmetric keys in KMS</a> in the <i>Amazon Web Services Key Management Service
|
|
2280
|
-
* Developer Guide</i>.</p>
|
|
2281
|
-
* @public
|
|
2282
|
-
*/
|
|
2283
|
-
KMSKeyId?: string | undefined;
|
|
2284
|
-
/**
|
|
2285
|
-
* <p>If the encryption type is <code>aws:kms</code>, this optional value can be used to
|
|
2286
|
-
* specify the encryption context for the restore results.</p>
|
|
2287
|
-
* @public
|
|
2288
|
-
*/
|
|
2289
|
-
KMSContext?: string | undefined;
|
|
2290
|
-
}
|
|
2291
|
-
/**
|
|
2292
|
-
* <p>A metadata key-value pair to store with an object.</p>
|
|
2293
|
-
* @public
|
|
2294
|
-
*/
|
|
2295
|
-
export interface MetadataEntry {
|
|
2296
|
-
/**
|
|
2297
|
-
* <p>Name of the object.</p>
|
|
2298
|
-
* @public
|
|
2299
|
-
*/
|
|
2300
|
-
Name?: string | undefined;
|
|
2301
|
-
/**
|
|
2302
|
-
* <p>Value of the object.</p>
|
|
2303
|
-
* @public
|
|
2304
|
-
*/
|
|
2305
|
-
Value?: string | undefined;
|
|
2306
|
-
}
|
|
2307
|
-
/**
|
|
2308
|
-
* <p>Describes an Amazon S3 location that will receive the results of the restore request.</p>
|
|
2309
|
-
* @public
|
|
2310
|
-
*/
|
|
2311
|
-
export interface S3Location {
|
|
2312
|
-
/**
|
|
2313
|
-
* <p>The name of the bucket where the restore results will be placed.</p>
|
|
2314
|
-
* @public
|
|
2315
|
-
*/
|
|
2316
|
-
BucketName: string | undefined;
|
|
2317
|
-
/**
|
|
2318
|
-
* <p>The prefix that is prepended to the restore results for this request.</p>
|
|
2319
|
-
* @public
|
|
2320
|
-
*/
|
|
2321
|
-
Prefix: string | undefined;
|
|
2322
|
-
/**
|
|
2323
|
-
* <p>Contains the type of server-side encryption used.</p>
|
|
2324
|
-
* @public
|
|
2325
|
-
*/
|
|
2326
|
-
Encryption?: Encryption | undefined;
|
|
2327
|
-
/**
|
|
2328
|
-
* <p>The canned ACL to apply to the restore results.</p>
|
|
2329
|
-
* @public
|
|
2330
|
-
*/
|
|
2331
|
-
CannedACL?: ObjectCannedACL | undefined;
|
|
2332
|
-
/**
|
|
2333
|
-
* <p>A list of grants that control access to the staged results.</p>
|
|
2334
|
-
* @public
|
|
2335
|
-
*/
|
|
2336
|
-
AccessControlList?: Grant[] | undefined;
|
|
2337
|
-
/**
|
|
2338
|
-
* <p>The tag-set that is applied to the restore results.</p>
|
|
2339
|
-
* @public
|
|
2340
|
-
*/
|
|
2341
|
-
Tagging?: Tagging | undefined;
|
|
2342
|
-
/**
|
|
2343
|
-
* <p>A list of metadata to store with the restore results in S3.</p>
|
|
2344
|
-
* @public
|
|
2345
|
-
*/
|
|
2346
|
-
UserMetadata?: MetadataEntry[] | undefined;
|
|
2347
|
-
/**
|
|
2348
|
-
* <p>The class of storage used to store the restore results.</p>
|
|
2349
|
-
* @public
|
|
2350
|
-
*/
|
|
2351
|
-
StorageClass?: StorageClass | undefined;
|
|
2352
|
-
}
|
|
2353
|
-
/**
|
|
2354
|
-
* <p>Describes the location where the restore job's output is stored.</p>
|
|
2355
|
-
* @public
|
|
2356
|
-
*/
|
|
2357
|
-
export interface OutputLocation {
|
|
2358
|
-
/**
|
|
2359
|
-
* <p>Describes an S3 location that will receive the results of the restore request.</p>
|
|
2360
|
-
* @public
|
|
2361
|
-
*/
|
|
2362
|
-
S3?: S3Location | undefined;
|
|
2363
|
-
}
|
|
2364
|
-
/**
|
|
2365
|
-
* @public
|
|
2366
|
-
* @enum
|
|
2367
|
-
*/
|
|
2368
|
-
export declare const ExpressionType: {
|
|
2369
|
-
readonly SQL: "SQL";
|
|
2370
|
-
};
|
|
2371
|
-
/**
|
|
2372
|
-
* @public
|
|
2373
|
-
*/
|
|
2374
|
-
export type ExpressionType = (typeof ExpressionType)[keyof typeof ExpressionType];
|
|
2375
|
-
/**
|
|
2376
|
-
* @public
|
|
2377
|
-
* @enum
|
|
2378
|
-
*/
|
|
2379
|
-
export declare const CompressionType: {
|
|
2380
|
-
readonly BZIP2: "BZIP2";
|
|
2381
|
-
readonly GZIP: "GZIP";
|
|
2382
|
-
readonly NONE: "NONE";
|
|
2383
|
-
};
|
|
2384
|
-
/**
|
|
2385
|
-
* @public
|
|
2386
|
-
*/
|
|
2387
|
-
export type CompressionType = (typeof CompressionType)[keyof typeof CompressionType];
|
|
2388
|
-
/**
|
|
2389
|
-
* @public
|
|
2390
|
-
* @enum
|
|
2391
|
-
*/
|
|
2392
|
-
export declare const FileHeaderInfo: {
|
|
2393
|
-
readonly IGNORE: "IGNORE";
|
|
2394
|
-
readonly NONE: "NONE";
|
|
2395
|
-
readonly USE: "USE";
|
|
2396
|
-
};
|
|
2397
|
-
/**
|
|
2398
|
-
* @public
|
|
2399
|
-
*/
|
|
2400
|
-
export type FileHeaderInfo = (typeof FileHeaderInfo)[keyof typeof FileHeaderInfo];
|
|
2401
|
-
/**
|
|
2402
|
-
* <p>Describes how an uncompressed comma-separated values (CSV)-formatted input object is
|
|
2403
|
-
* formatted.</p>
|
|
2404
|
-
* @public
|
|
2405
|
-
*/
|
|
2406
|
-
export interface CSVInput {
|
|
2407
|
-
/**
|
|
2408
|
-
* <p>Describes the first line of input. Valid values are:</p>
|
|
2409
|
-
* <ul>
|
|
2410
|
-
* <li>
|
|
2411
|
-
* <p>
|
|
2412
|
-
* <code>NONE</code>: First line is not a header.</p>
|
|
2413
|
-
* </li>
|
|
2414
|
-
* <li>
|
|
2415
|
-
* <p>
|
|
2416
|
-
* <code>IGNORE</code>: First line is a header, but you can't use the header values
|
|
2417
|
-
* to indicate the column in an expression. You can use column position (such as _1, _2,
|
|
2418
|
-
* …) to indicate the column (<code>SELECT s._1 FROM OBJECT s</code>).</p>
|
|
2419
|
-
* </li>
|
|
2420
|
-
* <li>
|
|
2421
|
-
* <p>
|
|
2422
|
-
* <code>Use</code>: First line is a header, and you can use the header value to
|
|
2423
|
-
* identify a column in an expression (<code>SELECT "name" FROM OBJECT</code>). </p>
|
|
2424
|
-
* </li>
|
|
2425
|
-
* </ul>
|
|
2426
|
-
* @public
|
|
2427
|
-
*/
|
|
2428
|
-
FileHeaderInfo?: FileHeaderInfo | undefined;
|
|
2429
|
-
/**
|
|
2430
|
-
* <p>A single character used to indicate that a row should be ignored when the character is
|
|
2431
|
-
* present at the start of that row. You can specify any character to indicate a comment line.
|
|
2432
|
-
* The default character is <code>#</code>.</p>
|
|
2433
|
-
* <p>Default: <code>#</code>
|
|
2434
|
-
* </p>
|
|
2435
|
-
* @public
|
|
2436
|
-
*/
|
|
2437
|
-
Comments?: string | undefined;
|
|
2438
|
-
/**
|
|
2439
|
-
* <p>A single character used for escaping the quotation mark character inside an already
|
|
2440
|
-
* escaped value. For example, the value <code>""" a , b """</code> is parsed as <code>" a , b
|
|
2441
|
-
* "</code>.</p>
|
|
2442
|
-
* @public
|
|
2443
|
-
*/
|
|
2444
|
-
QuoteEscapeCharacter?: string | undefined;
|
|
2445
|
-
/**
|
|
2446
|
-
* <p>A single character used to separate individual records in the input. Instead of the
|
|
2447
|
-
* default value, you can specify an arbitrary delimiter.</p>
|
|
2448
|
-
* @public
|
|
2449
|
-
*/
|
|
2450
|
-
RecordDelimiter?: string | undefined;
|
|
2451
|
-
/**
|
|
2452
|
-
* <p>A single character used to separate individual fields in a record. You can specify an
|
|
2453
|
-
* arbitrary delimiter.</p>
|
|
2454
|
-
* @public
|
|
2455
|
-
*/
|
|
2456
|
-
FieldDelimiter?: string | undefined;
|
|
2457
|
-
/**
|
|
2458
|
-
* <p>A single character used for escaping when the field delimiter is part of the value. For
|
|
2459
|
-
* example, if the value is <code>a, b</code>, Amazon S3 wraps this field value in quotation marks,
|
|
2460
|
-
* as follows: <code>" a , b "</code>.</p>
|
|
2461
|
-
* <p>Type: String</p>
|
|
2462
|
-
* <p>Default: <code>"</code>
|
|
2463
|
-
* </p>
|
|
2464
|
-
* <p>Ancestors: <code>CSV</code>
|
|
2465
|
-
* </p>
|
|
2466
|
-
* @public
|
|
2467
|
-
*/
|
|
2468
|
-
QuoteCharacter?: string | undefined;
|
|
2469
|
-
/**
|
|
2470
|
-
* <p>Specifies that CSV field values may contain quoted record delimiters and such records
|
|
2471
|
-
* should be allowed. Default value is FALSE. Setting this value to TRUE may lower
|
|
2472
|
-
* performance.</p>
|
|
2473
|
-
* @public
|
|
2474
|
-
*/
|
|
2475
|
-
AllowQuotedRecordDelimiter?: boolean | undefined;
|
|
2476
|
-
}
|
|
2477
|
-
/**
|
|
2478
|
-
* @public
|
|
2479
|
-
* @enum
|
|
2480
|
-
*/
|
|
2481
|
-
export declare const JSONType: {
|
|
2482
|
-
readonly DOCUMENT: "DOCUMENT";
|
|
2483
|
-
readonly LINES: "LINES";
|
|
2484
|
-
};
|
|
2485
|
-
/**
|
|
2486
|
-
* @public
|
|
2487
|
-
*/
|
|
2488
|
-
export type JSONType = (typeof JSONType)[keyof typeof JSONType];
|
|
2489
|
-
/**
|
|
2490
|
-
* <p>Specifies JSON as object's input serialization format.</p>
|
|
2491
|
-
* @public
|
|
2492
|
-
*/
|
|
2493
|
-
export interface JSONInput {
|
|
2494
|
-
/**
|
|
2495
|
-
* <p>The type of JSON. Valid values: Document, Lines.</p>
|
|
2496
|
-
* @public
|
|
2497
|
-
*/
|
|
2498
|
-
Type?: JSONType | undefined;
|
|
2499
|
-
}
|
|
2500
|
-
/**
|
|
2501
|
-
* <p>Container for Parquet.</p>
|
|
2502
|
-
* @public
|
|
2503
|
-
*/
|
|
2504
|
-
export interface ParquetInput {
|
|
2505
|
-
}
|
|
1
|
+
import type { StreamingBlobTypes } from "@smithy/types";
|
|
2
|
+
import type { ChecksumAlgorithm, CompressionType, ExpressionType, InventoryConfigurationState, ObjectLockLegalHoldStatus, ObjectLockMode, QuoteFields, ReplicationStatus, RequestCharged, RequestPayer, RestoreRequestType, ServerSideEncryption, StorageClass, Tier } from "./enums";
|
|
3
|
+
import type { CSVInput, GlacierJobParameters, JSONInput, MetadataTableEncryptionConfiguration, OutputLocation, ParquetInput, RecordExpiration } from "./models_0";
|
|
2506
4
|
/**
|
|
2507
5
|
* <p>Describes the serialization format of the object.</p>
|
|
2508
6
|
* @public
|
|
@@ -2514,8 +12,7 @@ export interface InputSerialization {
|
|
|
2514
12
|
*/
|
|
2515
13
|
CSV?: CSVInput | undefined;
|
|
2516
14
|
/**
|
|
2517
|
-
* <p>Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value:
|
|
2518
|
-
* NONE.</p>
|
|
15
|
+
* <p>Specifies object's compression format. Valid values: NONE, GZIP, BZIP2. Default Value: NONE.</p>
|
|
2519
16
|
* @public
|
|
2520
17
|
*/
|
|
2521
18
|
CompressionType?: CompressionType | undefined;
|
|
@@ -2531,20 +28,7 @@ export interface InputSerialization {
|
|
|
2531
28
|
Parquet?: ParquetInput | undefined;
|
|
2532
29
|
}
|
|
2533
30
|
/**
|
|
2534
|
-
*
|
|
2535
|
-
* @enum
|
|
2536
|
-
*/
|
|
2537
|
-
export declare const QuoteFields: {
|
|
2538
|
-
readonly ALWAYS: "ALWAYS";
|
|
2539
|
-
readonly ASNEEDED: "ASNEEDED";
|
|
2540
|
-
};
|
|
2541
|
-
/**
|
|
2542
|
-
* @public
|
|
2543
|
-
*/
|
|
2544
|
-
export type QuoteFields = (typeof QuoteFields)[keyof typeof QuoteFields];
|
|
2545
|
-
/**
|
|
2546
|
-
* <p>Describes how uncompressed comma-separated values (CSV)-formatted results are
|
|
2547
|
-
* formatted.</p>
|
|
31
|
+
* <p>Describes how uncompressed comma-separated values (CSV)-formatted results are formatted.</p>
|
|
2548
32
|
* @public
|
|
2549
33
|
*/
|
|
2550
34
|
export interface CSVOutput {
|
|
@@ -2564,27 +48,26 @@ export interface CSVOutput {
|
|
|
2564
48
|
*/
|
|
2565
49
|
QuoteFields?: QuoteFields | undefined;
|
|
2566
50
|
/**
|
|
2567
|
-
* <p>The single character used for escaping the quote character inside an already escaped
|
|
2568
|
-
* value.</p>
|
|
51
|
+
* <p>The single character used for escaping the quote character inside an already escaped value.</p>
|
|
2569
52
|
* @public
|
|
2570
53
|
*/
|
|
2571
54
|
QuoteEscapeCharacter?: string | undefined;
|
|
2572
55
|
/**
|
|
2573
|
-
* <p>A single character used to separate individual records in the output. Instead of the
|
|
2574
|
-
*
|
|
56
|
+
* <p>A single character used to separate individual records in the output. Instead of the default value,
|
|
57
|
+
* you can specify an arbitrary delimiter.</p>
|
|
2575
58
|
* @public
|
|
2576
59
|
*/
|
|
2577
60
|
RecordDelimiter?: string | undefined;
|
|
2578
61
|
/**
|
|
2579
62
|
* <p>The value used to separate individual fields in a record. You can specify an arbitrary
|
|
2580
|
-
*
|
|
63
|
+
* delimiter.</p>
|
|
2581
64
|
* @public
|
|
2582
65
|
*/
|
|
2583
66
|
FieldDelimiter?: string | undefined;
|
|
2584
67
|
/**
|
|
2585
|
-
* <p>A single character used for escaping when the field delimiter is part of the value. For
|
|
2586
|
-
*
|
|
2587
|
-
*
|
|
68
|
+
* <p>A single character used for escaping when the field delimiter is part of the value. For example, if
|
|
69
|
+
* the value is <code>a, b</code>, Amazon S3 wraps this field value in quotation marks, as follows: <code>" a ,
|
|
70
|
+
* b "</code>.</p>
|
|
2588
71
|
* @public
|
|
2589
72
|
*/
|
|
2590
73
|
QuoteCharacter?: string | undefined;
|
|
@@ -2595,8 +78,8 @@ export interface CSVOutput {
|
|
|
2595
78
|
*/
|
|
2596
79
|
export interface JSONOutput {
|
|
2597
80
|
/**
|
|
2598
|
-
* <p>The value used to separate individual records in the output. If no value is specified,
|
|
2599
|
-
*
|
|
81
|
+
* <p>The value used to separate individual records in the output. If no value is specified, Amazon S3 uses a
|
|
82
|
+
* newline character ('\n').</p>
|
|
2600
83
|
* @public
|
|
2601
84
|
*/
|
|
2602
85
|
RecordDelimiter?: string | undefined;
|
|
@@ -2619,12 +102,14 @@ export interface OutputSerialization {
|
|
|
2619
102
|
}
|
|
2620
103
|
/**
|
|
2621
104
|
* <important>
|
|
2622
|
-
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
105
|
+
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
106
|
+
* continue to use the feature as usual. <a href="http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/">Learn more</a>
|
|
2623
107
|
* </p>
|
|
2624
108
|
* </important>
|
|
2625
109
|
* <p>Describes the parameters for Select job types.</p>
|
|
2626
|
-
* <p>Learn <a href="http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/">How to
|
|
2627
|
-
*
|
|
110
|
+
* <p>Learn <a href="http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/">How to
|
|
111
|
+
* optimize querying your data in Amazon S3</a> using <a href="https://docs.aws.amazon.com/athena/latest/ug/what-is.html">Amazon Athena</a>, <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html">S3 Object Lambda</a>, or client-side
|
|
112
|
+
* filtering.</p>
|
|
2628
113
|
* @public
|
|
2629
114
|
*/
|
|
2630
115
|
export interface SelectParameters {
|
|
@@ -2640,7 +125,8 @@ export interface SelectParameters {
|
|
|
2640
125
|
ExpressionType: ExpressionType | undefined;
|
|
2641
126
|
/**
|
|
2642
127
|
* <important>
|
|
2643
|
-
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
128
|
+
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
129
|
+
* continue to use the feature as usual. <a href="http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/">Learn more</a>
|
|
2644
130
|
* </p>
|
|
2645
131
|
* </important>
|
|
2646
132
|
* <p>The expression that is used to query the object.</p>
|
|
@@ -2653,17 +139,6 @@ export interface SelectParameters {
|
|
|
2653
139
|
*/
|
|
2654
140
|
OutputSerialization: OutputSerialization | undefined;
|
|
2655
141
|
}
|
|
2656
|
-
/**
|
|
2657
|
-
* @public
|
|
2658
|
-
* @enum
|
|
2659
|
-
*/
|
|
2660
|
-
export declare const RestoreRequestType: {
|
|
2661
|
-
readonly SELECT: "SELECT";
|
|
2662
|
-
};
|
|
2663
|
-
/**
|
|
2664
|
-
* @public
|
|
2665
|
-
*/
|
|
2666
|
-
export type RestoreRequestType = (typeof RestoreRequestType)[keyof typeof RestoreRequestType];
|
|
2667
142
|
/**
|
|
2668
143
|
* <p>Container for restore job parameters.</p>
|
|
2669
144
|
* @public
|
|
@@ -2671,21 +146,22 @@ export type RestoreRequestType = (typeof RestoreRequestType)[keyof typeof Restor
|
|
|
2671
146
|
export interface RestoreRequest {
|
|
2672
147
|
/**
|
|
2673
148
|
* <p>Lifetime of the active copy in days. Do not use with restores that specify
|
|
2674
|
-
*
|
|
149
|
+
* <code>OutputLocation</code>.</p>
|
|
2675
150
|
* <p>The Days element is required for regular restores, and must not be provided for select
|
|
2676
|
-
*
|
|
151
|
+
* requests.</p>
|
|
2677
152
|
* @public
|
|
2678
153
|
*/
|
|
2679
154
|
Days?: number | undefined;
|
|
2680
155
|
/**
|
|
2681
|
-
* <p>S3 Glacier related parameters pertaining to this job. Do not use with restores that
|
|
2682
|
-
*
|
|
156
|
+
* <p>S3 Glacier related parameters pertaining to this job. Do not use with restores that specify
|
|
157
|
+
* <code>OutputLocation</code>.</p>
|
|
2683
158
|
* @public
|
|
2684
159
|
*/
|
|
2685
160
|
GlacierJobParameters?: GlacierJobParameters | undefined;
|
|
2686
161
|
/**
|
|
2687
162
|
* <important>
|
|
2688
|
-
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
163
|
+
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
164
|
+
* continue to use the feature as usual. <a href="http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/">Learn more</a>
|
|
2689
165
|
* </p>
|
|
2690
166
|
* </important>
|
|
2691
167
|
* <p>Type of restore request.</p>
|
|
@@ -2704,7 +180,8 @@ export interface RestoreRequest {
|
|
|
2704
180
|
Description?: string | undefined;
|
|
2705
181
|
/**
|
|
2706
182
|
* <important>
|
|
2707
|
-
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
183
|
+
* <p>Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3 Select can
|
|
184
|
+
* continue to use the feature as usual. <a href="http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/">Learn more</a>
|
|
2708
185
|
* </p>
|
|
2709
186
|
* </important>
|
|
2710
187
|
* <p>Describes the parameters for Select job types.</p>
|
|
@@ -2750,12 +227,11 @@ export interface RestoreObjectRequest {
|
|
|
2750
227
|
*/
|
|
2751
228
|
RestoreRequest?: RestoreRequest | undefined;
|
|
2752
229
|
/**
|
|
2753
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
2754
|
-
*
|
|
2755
|
-
*
|
|
2756
|
-
*
|
|
2757
|
-
*
|
|
2758
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
230
|
+
* <p>Confirms that the requester knows that they will be charged for the request. Bucket owners need not
|
|
231
|
+
* specify this parameter in their requests. If either the source or destination S3 bucket has Requester
|
|
232
|
+
* Pays enabled, the requester will pay for the corresponding charges. For information about
|
|
233
|
+
* downloading objects from Requester Pays buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in Requester Pays
|
|
234
|
+
* Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
2759
235
|
* <note>
|
|
2760
236
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
2761
237
|
* </note>
|
|
@@ -2768,8 +244,8 @@ export interface RestoreObjectRequest {
|
|
|
2768
244
|
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
2769
245
|
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
2770
246
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
2771
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
2772
|
-
*
|
|
247
|
+
* <p>If you provide an individual checksum, Amazon S3 ignores any provided <code>ChecksumAlgorithm</code>
|
|
248
|
+
* parameter.</p>
|
|
2773
249
|
* @public
|
|
2774
250
|
*/
|
|
2775
251
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
@@ -2786,9 +262,8 @@ export interface RestoreObjectRequest {
|
|
|
2786
262
|
export interface ContinuationEvent {
|
|
2787
263
|
}
|
|
2788
264
|
/**
|
|
2789
|
-
* <p>A message that indicates the request is complete and no more messages will be sent. You
|
|
2790
|
-
*
|
|
2791
|
-
* <code>EndEvent</code>.</p>
|
|
265
|
+
* <p>A message that indicates the request is complete and no more messages will be sent. You should not
|
|
266
|
+
* assume that the request is complete until the client receives an <code>EndEvent</code>.</p>
|
|
2792
267
|
* @public
|
|
2793
268
|
*/
|
|
2794
269
|
export interface EndEvent {
|
|
@@ -2831,12 +306,13 @@ export interface ProgressEvent {
|
|
|
2831
306
|
*/
|
|
2832
307
|
export interface RecordsEvent {
|
|
2833
308
|
/**
|
|
2834
|
-
* <p>The byte array of partial, one or more result records. S3 Select doesn't guarantee that
|
|
2835
|
-
*
|
|
2836
|
-
*
|
|
2837
|
-
*
|
|
2838
|
-
*
|
|
2839
|
-
*
|
|
309
|
+
* <p>The byte array of partial, one or more result records. S3 Select doesn't guarantee that a record
|
|
310
|
+
* will be self-contained in one record frame. To ensure continuous streaming of data, S3 Select might
|
|
311
|
+
* split the same record across multiple record frames instead of aggregating the results in memory. Some
|
|
312
|
+
* S3 clients (for example, the SDK for Java) handle this behavior by creating a
|
|
313
|
+
* <code>ByteStream</code> out of the response by default. Other clients might not handle this behavior
|
|
314
|
+
* by default. In those cases, you must aggregate the results on the client side and parse the
|
|
315
|
+
* response.</p>
|
|
2840
316
|
* @public
|
|
2841
317
|
*/
|
|
2842
318
|
Payload?: Uint8Array | undefined;
|
|
@@ -2953,6 +429,10 @@ export declare namespace SelectObjectContentEventStream {
|
|
|
2953
429
|
End?: never;
|
|
2954
430
|
$unknown: [string, any];
|
|
2955
431
|
}
|
|
432
|
+
/**
|
|
433
|
+
* @deprecated unused in schema-serde mode.
|
|
434
|
+
*
|
|
435
|
+
*/
|
|
2956
436
|
interface Visitor<T> {
|
|
2957
437
|
Records: (value: RecordsEvent) => T;
|
|
2958
438
|
Stats: (value: StatsEvent) => T;
|
|
@@ -2961,167 +441,471 @@ export declare namespace SelectObjectContentEventStream {
|
|
|
2961
441
|
End: (value: EndEvent) => T;
|
|
2962
442
|
_: (name: string, value: any) => T;
|
|
2963
443
|
}
|
|
2964
|
-
const visit: <T>(value: SelectObjectContentEventStream, visitor: Visitor<T>) => T;
|
|
2965
444
|
}
|
|
2966
445
|
/**
|
|
2967
446
|
* @public
|
|
2968
447
|
*/
|
|
2969
|
-
export interface SelectObjectContentOutput {
|
|
448
|
+
export interface SelectObjectContentOutput {
|
|
449
|
+
/**
|
|
450
|
+
* <p>The array of results.</p>
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
Payload?: AsyncIterable<SelectObjectContentEventStream> | undefined;
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* <p>Container for specifying if periodic <code>QueryProgress</code> messages should be sent.</p>
|
|
457
|
+
* @public
|
|
458
|
+
*/
|
|
459
|
+
export interface RequestProgress {
|
|
460
|
+
/**
|
|
461
|
+
* <p>Specifies whether periodic QueryProgress frames should be sent. Valid values: TRUE, FALSE. Default
|
|
462
|
+
* value: FALSE.</p>
|
|
463
|
+
* @public
|
|
464
|
+
*/
|
|
465
|
+
Enabled?: boolean | undefined;
|
|
466
|
+
}
|
|
467
|
+
/**
|
|
468
|
+
* <p>Specifies the byte range of the object to get the records from. A record is processed when its first
|
|
469
|
+
* byte is contained by the range. This parameter is optional, but when specified, it must not be empty.
|
|
470
|
+
* See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.</p>
|
|
471
|
+
* @public
|
|
472
|
+
*/
|
|
473
|
+
export interface ScanRange {
|
|
474
|
+
/**
|
|
475
|
+
* <p>Specifies the start of the byte range. This parameter is optional. Valid values: non-negative
|
|
476
|
+
* integers. The default value is 0. If only <code>start</code> is supplied, it means scan from that point
|
|
477
|
+
* to the end of the file. For example,
|
|
478
|
+
* <code><scanrange><start>50</start></scanrange></code> means scan from byte 50
|
|
479
|
+
* until the end of the file.</p>
|
|
480
|
+
* @public
|
|
481
|
+
*/
|
|
482
|
+
Start?: number | undefined;
|
|
483
|
+
/**
|
|
484
|
+
* <p>Specifies the end of the byte range. This parameter is optional. Valid values: non-negative
|
|
485
|
+
* integers. The default value is one less than the size of the object being queried. If only the End
|
|
486
|
+
* parameter is supplied, it is interpreted to mean scan the last N bytes of the file. For example,
|
|
487
|
+
* <code><scanrange><end>50</end></scanrange></code> means scan the last 50
|
|
488
|
+
* bytes.</p>
|
|
489
|
+
* @public
|
|
490
|
+
*/
|
|
491
|
+
End?: number | undefined;
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* <note>
|
|
495
|
+
* <p>Learn Amazon S3 Select is no longer available to new customers. Existing customers of Amazon S3
|
|
496
|
+
* Select can continue to use the feature as usual. <a href="http://aws.amazon.com/blogs/storage/how-to-optimize-querying-your-data-in-amazon-s3/">Learn more</a>
|
|
497
|
+
* </p>
|
|
498
|
+
* </note>
|
|
499
|
+
* <p>Request to filter the contents of an Amazon S3 object based on a simple Structured Query Language (SQL)
|
|
500
|
+
* statement. In the request, along with the SQL expression, you must specify a data serialization format
|
|
501
|
+
* (JSON or CSV) of the object. Amazon S3 uses this to parse object data into records. It returns only records
|
|
502
|
+
* that match the specified SQL expression. You must also specify the data serialization format for the
|
|
503
|
+
* response. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html">S3Select API Documentation</a>.</p>
|
|
504
|
+
* @public
|
|
505
|
+
*/
|
|
506
|
+
export interface SelectObjectContentRequest {
|
|
507
|
+
/**
|
|
508
|
+
* <p>The S3 bucket.</p>
|
|
509
|
+
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
510
|
+
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
511
|
+
* @public
|
|
512
|
+
*/
|
|
513
|
+
Bucket: string | undefined;
|
|
514
|
+
/**
|
|
515
|
+
* <p>The object key.</p>
|
|
516
|
+
* @public
|
|
517
|
+
*/
|
|
518
|
+
Key: string | undefined;
|
|
519
|
+
/**
|
|
520
|
+
* <p>The server-side encryption (SSE) algorithm used to encrypt the object. This parameter is needed only when the object was created
|
|
521
|
+
* using a checksum algorithm. For more information,
|
|
522
|
+
* see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Protecting data using SSE-C keys</a> in the
|
|
523
|
+
* <i>Amazon S3 User Guide</i>.</p>
|
|
524
|
+
* @public
|
|
525
|
+
*/
|
|
526
|
+
SSECustomerAlgorithm?: string | undefined;
|
|
527
|
+
/**
|
|
528
|
+
* <p>The server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum algorithm.
|
|
529
|
+
* For more information, see
|
|
530
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Protecting data using SSE-C keys</a> in the
|
|
531
|
+
* <i>Amazon S3 User Guide</i>.</p>
|
|
532
|
+
* @public
|
|
533
|
+
*/
|
|
534
|
+
SSECustomerKey?: string | undefined;
|
|
535
|
+
/**
|
|
536
|
+
* <p>The MD5 server-side encryption (SSE) customer managed key. This parameter is needed only when the object was created using a checksum
|
|
537
|
+
* algorithm. For more information,
|
|
538
|
+
* see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Protecting data using SSE-C keys</a> in the
|
|
539
|
+
* <i>Amazon S3 User Guide</i>.</p>
|
|
540
|
+
* @public
|
|
541
|
+
*/
|
|
542
|
+
SSECustomerKeyMD5?: string | undefined;
|
|
543
|
+
/**
|
|
544
|
+
* <p>The expression that is used to query the object.</p>
|
|
545
|
+
* @public
|
|
546
|
+
*/
|
|
547
|
+
Expression: string | undefined;
|
|
548
|
+
/**
|
|
549
|
+
* <p>The type of the provided expression (for example, SQL).</p>
|
|
550
|
+
* @public
|
|
551
|
+
*/
|
|
552
|
+
ExpressionType: ExpressionType | undefined;
|
|
553
|
+
/**
|
|
554
|
+
* <p>Specifies if periodic request progress information should be enabled.</p>
|
|
555
|
+
* @public
|
|
556
|
+
*/
|
|
557
|
+
RequestProgress?: RequestProgress | undefined;
|
|
558
|
+
/**
|
|
559
|
+
* <p>Describes the format of the data in the object that is being queried.</p>
|
|
560
|
+
* @public
|
|
561
|
+
*/
|
|
562
|
+
InputSerialization: InputSerialization | undefined;
|
|
563
|
+
/**
|
|
564
|
+
* <p>Describes the format of the data that you want Amazon S3 to return in response.</p>
|
|
565
|
+
* @public
|
|
566
|
+
*/
|
|
567
|
+
OutputSerialization: OutputSerialization | undefined;
|
|
568
|
+
/**
|
|
569
|
+
* <p>Specifies the byte range of the object to get the records from. A record is processed when its first
|
|
570
|
+
* byte is contained by the range. This parameter is optional, but when specified, it must not be empty.
|
|
571
|
+
* See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.</p>
|
|
572
|
+
* <p>
|
|
573
|
+
* <code>ScanRange</code>may be used in the following ways:</p>
|
|
574
|
+
* <ul>
|
|
575
|
+
* <li>
|
|
576
|
+
* <p>
|
|
577
|
+
* <code><scanrange><start>50</start><end>100</end></scanrange></code>
|
|
578
|
+
* - process only the records starting between the bytes 50 and 100 (inclusive, counting from
|
|
579
|
+
* zero)</p>
|
|
580
|
+
* </li>
|
|
581
|
+
* <li>
|
|
582
|
+
* <p>
|
|
583
|
+
* <code><scanrange><start>50</start></scanrange></code> - process only the
|
|
584
|
+
* records starting after the byte 50</p>
|
|
585
|
+
* </li>
|
|
586
|
+
* <li>
|
|
587
|
+
* <p>
|
|
588
|
+
* <code><scanrange><end>50</end></scanrange></code> - process only the
|
|
589
|
+
* records within the last 50 bytes of the file.</p>
|
|
590
|
+
* </li>
|
|
591
|
+
* </ul>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
ScanRange?: ScanRange | undefined;
|
|
595
|
+
/**
|
|
596
|
+
* <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p>
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
ExpectedBucketOwner?: string | undefined;
|
|
600
|
+
}
|
|
601
|
+
/**
|
|
602
|
+
* <p>
|
|
603
|
+
* The specified updates to the S3 Metadata inventory table configuration.
|
|
604
|
+
* </p>
|
|
605
|
+
* @public
|
|
606
|
+
*/
|
|
607
|
+
export interface InventoryTableConfigurationUpdates {
|
|
608
|
+
/**
|
|
609
|
+
* <p>
|
|
610
|
+
* The configuration state of the inventory table, indicating whether the inventory table is enabled
|
|
611
|
+
* or disabled.
|
|
612
|
+
* </p>
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
ConfigurationState: InventoryConfigurationState | undefined;
|
|
616
|
+
/**
|
|
617
|
+
* <p>
|
|
618
|
+
* The encryption configuration for the inventory table.
|
|
619
|
+
* </p>
|
|
620
|
+
* @public
|
|
621
|
+
*/
|
|
622
|
+
EncryptionConfiguration?: MetadataTableEncryptionConfiguration | undefined;
|
|
623
|
+
}
|
|
624
|
+
/**
|
|
625
|
+
* @public
|
|
626
|
+
*/
|
|
627
|
+
export interface UpdateBucketMetadataInventoryTableConfigurationRequest {
|
|
628
|
+
/**
|
|
629
|
+
* <p>
|
|
630
|
+
* The general purpose bucket that corresponds to the metadata configuration that you want to
|
|
631
|
+
* enable or disable an inventory table for.
|
|
632
|
+
* </p>
|
|
633
|
+
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
634
|
+
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
Bucket: string | undefined;
|
|
638
|
+
/**
|
|
639
|
+
* <p>
|
|
640
|
+
* The <code>Content-MD5</code> header for the inventory table configuration.
|
|
641
|
+
* </p>
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
644
|
+
ContentMD5?: string | undefined;
|
|
645
|
+
/**
|
|
646
|
+
* <p>
|
|
647
|
+
* The checksum algorithm to use with your inventory table configuration.
|
|
648
|
+
* </p>
|
|
649
|
+
* @public
|
|
650
|
+
*/
|
|
651
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
652
|
+
/**
|
|
653
|
+
* <p>
|
|
654
|
+
* The contents of your inventory table configuration.
|
|
655
|
+
* </p>
|
|
656
|
+
* @public
|
|
657
|
+
*/
|
|
658
|
+
InventoryTableConfiguration: InventoryTableConfigurationUpdates | undefined;
|
|
659
|
+
/**
|
|
660
|
+
* <p>
|
|
661
|
+
* The expected owner of the general purpose bucket that corresponds to the metadata table
|
|
662
|
+
* configuration that you want to enable or disable an inventory table for.
|
|
663
|
+
* </p>
|
|
664
|
+
* @public
|
|
665
|
+
*/
|
|
666
|
+
ExpectedBucketOwner?: string | undefined;
|
|
667
|
+
}
|
|
668
|
+
/**
|
|
669
|
+
* <p>
|
|
670
|
+
* The specified updates to the S3 Metadata journal table configuration.
|
|
671
|
+
* </p>
|
|
672
|
+
* @public
|
|
673
|
+
*/
|
|
674
|
+
export interface JournalTableConfigurationUpdates {
|
|
2970
675
|
/**
|
|
2971
|
-
* <p>
|
|
676
|
+
* <p>
|
|
677
|
+
* The journal table record expiration settings for the journal table.
|
|
678
|
+
* </p>
|
|
2972
679
|
* @public
|
|
2973
680
|
*/
|
|
2974
|
-
|
|
681
|
+
RecordExpiration: RecordExpiration | undefined;
|
|
2975
682
|
}
|
|
2976
683
|
/**
|
|
2977
|
-
* <p>Container for specifying if periodic <code>QueryProgress</code> messages should be
|
|
2978
|
-
* sent.</p>
|
|
2979
684
|
* @public
|
|
2980
685
|
*/
|
|
2981
|
-
export interface
|
|
686
|
+
export interface UpdateBucketMetadataJournalTableConfigurationRequest {
|
|
687
|
+
/**
|
|
688
|
+
* <p>
|
|
689
|
+
* The general purpose bucket that corresponds to the metadata configuration that you want to
|
|
690
|
+
* enable or disable journal table record expiration for.
|
|
691
|
+
* </p>
|
|
692
|
+
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
693
|
+
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
694
|
+
* @public
|
|
695
|
+
*/
|
|
696
|
+
Bucket: string | undefined;
|
|
2982
697
|
/**
|
|
2983
|
-
* <p>
|
|
2984
|
-
*
|
|
698
|
+
* <p>
|
|
699
|
+
* The <code>Content-MD5</code> header for the journal table configuration.
|
|
700
|
+
* </p>
|
|
2985
701
|
* @public
|
|
2986
702
|
*/
|
|
2987
|
-
|
|
703
|
+
ContentMD5?: string | undefined;
|
|
704
|
+
/**
|
|
705
|
+
* <p>
|
|
706
|
+
* The checksum algorithm to use with your journal table configuration.
|
|
707
|
+
* </p>
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
710
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
711
|
+
/**
|
|
712
|
+
* <p>
|
|
713
|
+
* The contents of your journal table configuration.
|
|
714
|
+
* </p>
|
|
715
|
+
* @public
|
|
716
|
+
*/
|
|
717
|
+
JournalTableConfiguration: JournalTableConfigurationUpdates | undefined;
|
|
718
|
+
/**
|
|
719
|
+
* <p>
|
|
720
|
+
* The expected owner of the general purpose bucket that corresponds to the metadata table
|
|
721
|
+
* configuration that you want to enable or disable journal table record expiration for.
|
|
722
|
+
* </p>
|
|
723
|
+
* @public
|
|
724
|
+
*/
|
|
725
|
+
ExpectedBucketOwner?: string | undefined;
|
|
2988
726
|
}
|
|
2989
727
|
/**
|
|
2990
|
-
* <p>
|
|
2991
|
-
*
|
|
2992
|
-
*
|
|
2993
|
-
*
|
|
728
|
+
* <p>
|
|
729
|
+
* If <code>SSEKMS</code> is specified for <code>ObjectEncryption</code>, this data type specifies
|
|
730
|
+
* the Amazon Web Services KMS key Amazon Resource Name (ARN) to use and whether to use an S3 Bucket Key for
|
|
731
|
+
* server-side encryption using Key Management Service (KMS) keys (SSE-KMS).
|
|
732
|
+
* </p>
|
|
2994
733
|
* @public
|
|
2995
734
|
*/
|
|
2996
|
-
export interface
|
|
735
|
+
export interface SSEKMSEncryption {
|
|
2997
736
|
/**
|
|
2998
|
-
* <p>
|
|
2999
|
-
*
|
|
3000
|
-
*
|
|
3001
|
-
*
|
|
3002
|
-
*
|
|
737
|
+
* <p>
|
|
738
|
+
* Specifies the Amazon Web Services KMS key Amazon Resource Name (ARN) to use for the updated server-side encryption
|
|
739
|
+
* type. Required if <code>ObjectEncryption</code> specifies <code>SSEKMS</code>.
|
|
740
|
+
* </p>
|
|
741
|
+
* <note>
|
|
742
|
+
* <p>You must specify the full Amazon Web Services KMS key ARN. The KMS key ID and KMS key alias aren't
|
|
743
|
+
* supported.</p>
|
|
744
|
+
* </note>
|
|
745
|
+
* <p>Pattern: (<code>arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]\{12\}:key/.+</code>)</p>
|
|
3003
746
|
* @public
|
|
3004
747
|
*/
|
|
3005
|
-
|
|
748
|
+
KMSKeyArn: string | undefined;
|
|
3006
749
|
/**
|
|
3007
|
-
* <p>
|
|
3008
|
-
*
|
|
3009
|
-
*
|
|
3010
|
-
*
|
|
3011
|
-
*
|
|
3012
|
-
*
|
|
750
|
+
* <p>
|
|
751
|
+
* Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption
|
|
752
|
+
* using Key Management Service (KMS) keys (SSE-KMS). If this value isn't specified, it defaults to <code>false</code>.
|
|
753
|
+
* Setting this value to <code>true</code> causes Amazon S3 to use an S3 Bucket Key for object encryption with
|
|
754
|
+
* SSE-KMS. For more information, see
|
|
755
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html">
|
|
756
|
+
* Using Amazon S3 Bucket Keys</a> in the <i>Amazon S3 User Guide</i>.
|
|
757
|
+
* </p>
|
|
758
|
+
* <p>Valid Values: <code>true</code> | <code>false</code>
|
|
759
|
+
* </p>
|
|
3013
760
|
* @public
|
|
3014
761
|
*/
|
|
3015
|
-
|
|
762
|
+
BucketKeyEnabled?: boolean | undefined;
|
|
3016
763
|
}
|
|
3017
764
|
/**
|
|
3018
|
-
* <
|
|
3019
|
-
*
|
|
3020
|
-
*
|
|
3021
|
-
*
|
|
3022
|
-
* <p>
|
|
3023
|
-
*
|
|
3024
|
-
* data serialization format (JSON or CSV) of the object. Amazon S3 uses this to parse object data
|
|
3025
|
-
* into records. It returns only records that match the specified SQL expression. You must
|
|
3026
|
-
* also specify the data serialization format for the response. For more information, see
|
|
3027
|
-
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectSELECTContent.html">S3Select API Documentation</a>.</p>
|
|
765
|
+
* <p>
|
|
766
|
+
* The updated server-side encryption type for this object. The <code>UpdateObjectEncryption</code>
|
|
767
|
+
* operation supports the SSE-S3 and SSE-KMS encryption types.
|
|
768
|
+
* </p>
|
|
769
|
+
* <p>Valid Values: <code>SSES3</code> | <code>SSEKMS</code>
|
|
770
|
+
* </p>
|
|
3028
771
|
* @public
|
|
3029
772
|
*/
|
|
3030
|
-
export
|
|
773
|
+
export type ObjectEncryption = ObjectEncryption.SSEKMSMember | ObjectEncryption.$UnknownMember;
|
|
774
|
+
/**
|
|
775
|
+
* @public
|
|
776
|
+
*/
|
|
777
|
+
export declare namespace ObjectEncryption {
|
|
3031
778
|
/**
|
|
3032
|
-
* <p>
|
|
3033
|
-
*
|
|
3034
|
-
*
|
|
779
|
+
* <p>
|
|
780
|
+
* Specifies to update the object encryption type to server-side encryption with Key Management Service (KMS) keys
|
|
781
|
+
* (SSE-KMS).
|
|
782
|
+
* </p>
|
|
3035
783
|
* @public
|
|
3036
784
|
*/
|
|
3037
|
-
|
|
785
|
+
interface SSEKMSMember {
|
|
786
|
+
SSEKMS: SSEKMSEncryption;
|
|
787
|
+
$unknown?: never;
|
|
788
|
+
}
|
|
3038
789
|
/**
|
|
3039
|
-
* <p>The object key.</p>
|
|
3040
790
|
* @public
|
|
3041
791
|
*/
|
|
3042
|
-
|
|
792
|
+
interface $UnknownMember {
|
|
793
|
+
SSEKMS?: never;
|
|
794
|
+
$unknown: [string, any];
|
|
795
|
+
}
|
|
3043
796
|
/**
|
|
3044
|
-
*
|
|
3045
|
-
*
|
|
3046
|
-
* see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html">Protecting data using SSE-C keys</a> in the
|
|
3047
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
3048
|
-
* @public
|
|
797
|
+
* @deprecated unused in schema-serde mode.
|
|
798
|
+
*
|
|
3049
799
|
*/
|
|
3050
|
-
|
|
800
|
+
interface Visitor<T> {
|
|
801
|
+
SSEKMS: (value: SSEKMSEncryption) => T;
|
|
802
|
+
_: (name: string, value: any) => T;
|
|
803
|
+
}
|
|
804
|
+
}
|
|
805
|
+
/**
|
|
806
|
+
* @public
|
|
807
|
+
*/
|
|
808
|
+
export interface UpdateObjectEncryptionRequest {
|
|
3051
809
|
/**
|
|
3052
|
-
* <p>
|
|
3053
|
-
*
|
|
3054
|
-
*
|
|
3055
|
-
*
|
|
810
|
+
* <p>
|
|
811
|
+
* The name of the general purpose bucket that contains the specified object key name.
|
|
812
|
+
* </p>
|
|
813
|
+
* <p>When you use this operation with an access point attached to a general purpose bucket, you
|
|
814
|
+
* must either provide the alias of the access point in place of the bucket name or you must specify
|
|
815
|
+
* the access point Amazon Resource Name (ARN). When using the access point ARN, you must direct
|
|
816
|
+
* requests to the access point hostname. The access point hostname takes the form
|
|
817
|
+
* <code>
|
|
818
|
+
* <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com</code>.
|
|
819
|
+
* When using this operation with an access point through the Amazon Web Services SDKs, you provide the access point
|
|
820
|
+
* ARN in place of the bucket name. For more information about access point ARNs, see
|
|
821
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points-naming.html">
|
|
822
|
+
* Referencing access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
823
|
+
* <p>Note: To supply the Multi-region Access Point (MRAP) to Bucket, you need to install the "@aws-sdk/signature-v4-crt" package to your project dependencies.
|
|
824
|
+
* For more information, please go to https://github.com/aws/aws-sdk-js-v3#known-issues</p>
|
|
3056
825
|
* @public
|
|
3057
826
|
*/
|
|
3058
|
-
|
|
827
|
+
Bucket: string | undefined;
|
|
3059
828
|
/**
|
|
3060
|
-
* <p>
|
|
3061
|
-
*
|
|
3062
|
-
*
|
|
3063
|
-
* <i>Amazon S3 User Guide</i>.</p>
|
|
829
|
+
* <p>
|
|
830
|
+
* The key name of the object that you want to update the server-side encryption type for.
|
|
831
|
+
* </p>
|
|
3064
832
|
* @public
|
|
3065
833
|
*/
|
|
3066
|
-
|
|
834
|
+
Key: string | undefined;
|
|
3067
835
|
/**
|
|
3068
|
-
* <p>
|
|
836
|
+
* <p>
|
|
837
|
+
* The version ID of the object that you want to update the server-side encryption type for.
|
|
838
|
+
* </p>
|
|
3069
839
|
* @public
|
|
3070
840
|
*/
|
|
3071
|
-
|
|
841
|
+
VersionId?: string | undefined;
|
|
3072
842
|
/**
|
|
3073
|
-
* <p>
|
|
843
|
+
* <p>
|
|
844
|
+
* The updated server-side encryption type for this object. The <code>UpdateObjectEncryption</code>
|
|
845
|
+
* operation supports the SSE-S3 and SSE-KMS encryption types.
|
|
846
|
+
* </p>
|
|
847
|
+
* <p>Valid Values: <code>SSES3</code> | <code>SSEKMS</code>
|
|
848
|
+
* </p>
|
|
3074
849
|
* @public
|
|
3075
850
|
*/
|
|
3076
|
-
|
|
851
|
+
ObjectEncryption: ObjectEncryption | undefined;
|
|
3077
852
|
/**
|
|
3078
|
-
* <p>
|
|
853
|
+
* <p>Confirms that the requester knows that they will be charged for the request. Bucket owners need not
|
|
854
|
+
* specify this parameter in their requests. If either the source or destination S3 bucket has Requester
|
|
855
|
+
* Pays enabled, the requester will pay for the corresponding charges. For information about
|
|
856
|
+
* downloading objects from Requester Pays buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in Requester Pays
|
|
857
|
+
* Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
858
|
+
* <note>
|
|
859
|
+
* <p>This functionality is not supported for directory buckets.</p>
|
|
860
|
+
* </note>
|
|
3079
861
|
* @public
|
|
3080
862
|
*/
|
|
3081
|
-
|
|
863
|
+
RequestPayer?: RequestPayer | undefined;
|
|
3082
864
|
/**
|
|
3083
|
-
* <p>
|
|
865
|
+
* <p>
|
|
866
|
+
* The account ID of the expected bucket owner. If the account ID that you provide doesn't match the
|
|
867
|
+
* actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code>
|
|
868
|
+
* (access denied).
|
|
869
|
+
* </p>
|
|
3084
870
|
* @public
|
|
3085
871
|
*/
|
|
3086
|
-
|
|
872
|
+
ExpectedBucketOwner?: string | undefined;
|
|
3087
873
|
/**
|
|
3088
|
-
* <p>
|
|
874
|
+
* <p>
|
|
875
|
+
* The MD5 hash for the request body. For requests made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web Services SDKs, this field is calculated automatically.
|
|
876
|
+
* </p>
|
|
3089
877
|
* @public
|
|
3090
878
|
*/
|
|
3091
|
-
|
|
879
|
+
ContentMD5?: string | undefined;
|
|
3092
880
|
/**
|
|
3093
|
-
* <p>
|
|
3094
|
-
*
|
|
3095
|
-
*
|
|
3096
|
-
*
|
|
3097
|
-
*
|
|
3098
|
-
*
|
|
3099
|
-
*
|
|
3100
|
-
*
|
|
3101
|
-
*
|
|
3102
|
-
*
|
|
3103
|
-
* - process only the records starting between the bytes 50 and 100 (inclusive, counting
|
|
3104
|
-
* from zero)</p>
|
|
3105
|
-
* </li>
|
|
3106
|
-
* <li>
|
|
3107
|
-
* <p>
|
|
3108
|
-
* <code><scanrange><start>50</start></scanrange></code> -
|
|
3109
|
-
* process only the records starting after the byte 50</p>
|
|
3110
|
-
* </li>
|
|
3111
|
-
* <li>
|
|
3112
|
-
* <p>
|
|
3113
|
-
* <code><scanrange><end>50</end></scanrange></code> -
|
|
3114
|
-
* process only the records within the last 50 bytes of the file.</p>
|
|
3115
|
-
* </li>
|
|
3116
|
-
* </ul>
|
|
881
|
+
* <p>
|
|
882
|
+
* Indicates the algorithm used to create the checksum for the object when you use an Amazon Web Services SDK. This header
|
|
883
|
+
* doesn't provide any additional functionality if you don't use the SDK. When you send this header,
|
|
884
|
+
* there must be a corresponding <code>x-amz-checksum</code> or <code>x-amz-trailer</code> header sent.
|
|
885
|
+
* Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
886
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">
|
|
887
|
+
* Checking object integrity </a> in the <i>Amazon S3 User Guide</i>.
|
|
888
|
+
* </p>
|
|
889
|
+
* <p>If you provide an individual checksum, Amazon S3 ignores any provided <code>ChecksumAlgorithm</code>
|
|
890
|
+
* parameter.</p>
|
|
3117
891
|
* @public
|
|
3118
892
|
*/
|
|
3119
|
-
|
|
893
|
+
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
894
|
+
}
|
|
895
|
+
/**
|
|
896
|
+
* @public
|
|
897
|
+
*/
|
|
898
|
+
export interface UpdateObjectEncryptionResponse {
|
|
3120
899
|
/**
|
|
3121
|
-
* <p>
|
|
900
|
+
* <p>If present, indicates that the requester was successfully charged for the request. For more
|
|
901
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple
|
|
902
|
+
* Storage Service user guide</i>.</p>
|
|
903
|
+
* <note>
|
|
904
|
+
* <p>This functionality is not supported for directory buckets.</p>
|
|
905
|
+
* </note>
|
|
3122
906
|
* @public
|
|
3123
907
|
*/
|
|
3124
|
-
|
|
908
|
+
RequestCharged?: RequestCharged | undefined;
|
|
3125
909
|
}
|
|
3126
910
|
/**
|
|
3127
911
|
* @public
|
|
@@ -3130,7 +914,8 @@ export interface UploadPartOutput {
|
|
|
3130
914
|
/**
|
|
3131
915
|
* <p>The server-side encryption algorithm used when you store this object in Amazon S3 or Amazon FSx.</p>
|
|
3132
916
|
* <note>
|
|
3133
|
-
* <p>When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side
|
|
917
|
+
* <p>When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side
|
|
918
|
+
* encryption option is <code>aws:fsx</code>.</p>
|
|
3134
919
|
* </note>
|
|
3135
920
|
* @public
|
|
3136
921
|
*/
|
|
@@ -3141,47 +926,88 @@ export interface UploadPartOutput {
|
|
|
3141
926
|
*/
|
|
3142
927
|
ETag?: string | undefined;
|
|
3143
928
|
/**
|
|
3144
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32
|
|
3145
|
-
*
|
|
3146
|
-
*
|
|
3147
|
-
*
|
|
929
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This will only be present if
|
|
930
|
+
* the checksum was provided in the request. For more information, see
|
|
931
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
932
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3148
933
|
* @public
|
|
3149
934
|
*/
|
|
3150
935
|
ChecksumCRC32?: string | undefined;
|
|
3151
936
|
/**
|
|
3152
|
-
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the
|
|
3153
|
-
*
|
|
3154
|
-
*
|
|
3155
|
-
*
|
|
937
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This will only be present if
|
|
938
|
+
* the checksum was provided in the request. For more information, see
|
|
939
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
940
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3156
941
|
* @public
|
|
3157
942
|
*/
|
|
3158
943
|
ChecksumCRC32C?: string | undefined;
|
|
3159
944
|
/**
|
|
3160
|
-
* <p>
|
|
3161
|
-
*
|
|
3162
|
-
*
|
|
945
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This will only be present if
|
|
946
|
+
* the checksum was provided in the request. For more information, see
|
|
947
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
948
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3163
949
|
* @public
|
|
3164
950
|
*/
|
|
3165
951
|
ChecksumCRC64NVME?: string | undefined;
|
|
3166
952
|
/**
|
|
3167
|
-
* <p>The Base64 encoded, 160-bit <code>SHA1</code>
|
|
3168
|
-
*
|
|
3169
|
-
*
|
|
3170
|
-
*
|
|
953
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> checksum of the part. This will only be present if
|
|
954
|
+
* the checksum was provided in the request. For more information, see
|
|
955
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
956
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3171
957
|
* @public
|
|
3172
958
|
*/
|
|
3173
959
|
ChecksumSHA1?: string | undefined;
|
|
3174
960
|
/**
|
|
3175
|
-
* <p>The Base64 encoded, 256-bit <code>SHA256</code>
|
|
3176
|
-
*
|
|
3177
|
-
*
|
|
3178
|
-
*
|
|
961
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> checksum of the part. This will only be present if
|
|
962
|
+
* the checksum was provided in the request. For more information, see
|
|
963
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
964
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3179
965
|
* @public
|
|
3180
966
|
*/
|
|
3181
967
|
ChecksumSHA256?: string | undefined;
|
|
3182
968
|
/**
|
|
3183
|
-
* <p>
|
|
3184
|
-
*
|
|
969
|
+
* <p>The Base64 encoded, 512-bit <code>SHA512</code> checksum of the part. This will only be present if
|
|
970
|
+
* the checksum was provided in the request. For more information, see
|
|
971
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
972
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
973
|
+
* @public
|
|
974
|
+
*/
|
|
975
|
+
ChecksumSHA512?: string | undefined;
|
|
976
|
+
/**
|
|
977
|
+
* <p>The Base64 encoded, 128-bit <code>MD5</code> checksum of the part. This will only be present if
|
|
978
|
+
* the checksum was provided in the request. For more information, see
|
|
979
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
980
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
981
|
+
* @public
|
|
982
|
+
*/
|
|
983
|
+
ChecksumMD5?: string | undefined;
|
|
984
|
+
/**
|
|
985
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This will only be present if
|
|
986
|
+
* the checksum was provided in the request. For more information, see
|
|
987
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
988
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
989
|
+
* @public
|
|
990
|
+
*/
|
|
991
|
+
ChecksumXXHASH64?: string | undefined;
|
|
992
|
+
/**
|
|
993
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This will only be present if
|
|
994
|
+
* the checksum was provided in the request. For more information, see
|
|
995
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
996
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
997
|
+
* @public
|
|
998
|
+
*/
|
|
999
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1000
|
+
/**
|
|
1001
|
+
* <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This will only be present if
|
|
1002
|
+
* the checksum was provided in the request. For more information, see
|
|
1003
|
+
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking
|
|
1004
|
+
* object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1005
|
+
* @public
|
|
1006
|
+
*/
|
|
1007
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1008
|
+
/**
|
|
1009
|
+
* <p>If server-side encryption with a customer-provided encryption key was requested, the response will
|
|
1010
|
+
* include this header to confirm the encryption algorithm that's used.</p>
|
|
3185
1011
|
* <note>
|
|
3186
1012
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3187
1013
|
* </note>
|
|
@@ -3189,9 +1015,9 @@ export interface UploadPartOutput {
|
|
|
3189
1015
|
*/
|
|
3190
1016
|
SSECustomerAlgorithm?: string | undefined;
|
|
3191
1017
|
/**
|
|
3192
|
-
* <p>If server-side encryption with a customer-provided encryption key was requested, the
|
|
3193
|
-
*
|
|
3194
|
-
*
|
|
1018
|
+
* <p>If server-side encryption with a customer-provided encryption key was requested, the response will
|
|
1019
|
+
* include this header to provide the round-trip message integrity verification of the customer-provided
|
|
1020
|
+
* encryption key.</p>
|
|
3195
1021
|
* <note>
|
|
3196
1022
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3197
1023
|
* </note>
|
|
@@ -3204,14 +1030,15 @@ export interface UploadPartOutput {
|
|
|
3204
1030
|
*/
|
|
3205
1031
|
SSEKMSKeyId?: string | undefined;
|
|
3206
1032
|
/**
|
|
3207
|
-
* <p>Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption
|
|
3208
|
-
*
|
|
1033
|
+
* <p>Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with
|
|
1034
|
+
* Key Management Service (KMS) keys (SSE-KMS).</p>
|
|
3209
1035
|
* @public
|
|
3210
1036
|
*/
|
|
3211
1037
|
BucketKeyEnabled?: boolean | undefined;
|
|
3212
1038
|
/**
|
|
3213
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
3214
|
-
*
|
|
1039
|
+
* <p>If present, indicates that the requester was successfully charged for the request. For more
|
|
1040
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple
|
|
1041
|
+
* Storage Service user guide</i>.</p>
|
|
3215
1042
|
* <note>
|
|
3216
1043
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3217
1044
|
* </note>
|
|
@@ -3231,8 +1058,7 @@ export interface UploadPartRequest {
|
|
|
3231
1058
|
/**
|
|
3232
1059
|
* <p>The name of the bucket to which the multipart upload was initiated.</p>
|
|
3233
1060
|
* <p>
|
|
3234
|
-
* <b>Directory buckets</b> -
|
|
3235
|
-
* When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format <code>
|
|
1061
|
+
* <b>Directory buckets</b> - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format <code>
|
|
3236
1062
|
* <i>Bucket-name</i>.s3express-<i>zone-id</i>.<i>region-code</i>.amazonaws.com</code>. Path-style requests are not supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must follow the format <code>
|
|
3237
1063
|
* <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code>
|
|
3238
1064
|
* <i>amzn-s3-demo-bucket</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming
|
|
@@ -3253,15 +1079,14 @@ export interface UploadPartRequest {
|
|
|
3253
1079
|
*/
|
|
3254
1080
|
Bucket: string | undefined;
|
|
3255
1081
|
/**
|
|
3256
|
-
* <p>Size of the body in bytes. This parameter is useful when the size of the body cannot be
|
|
3257
|
-
*
|
|
1082
|
+
* <p>Size of the body in bytes. This parameter is useful when the size of the body cannot be determined
|
|
1083
|
+
* automatically.</p>
|
|
3258
1084
|
* @public
|
|
3259
1085
|
*/
|
|
3260
1086
|
ContentLength?: number | undefined;
|
|
3261
1087
|
/**
|
|
3262
|
-
* <p>The Base64 encoded 128-bit MD5 digest of the part data. This parameter is auto-populated
|
|
3263
|
-
*
|
|
3264
|
-
* are specified.</p>
|
|
1088
|
+
* <p>The Base64 encoded 128-bit MD5 digest of the part data. This parameter is auto-populated when using
|
|
1089
|
+
* the command from the CLI. This parameter is required if object lock parameters are specified.</p>
|
|
3265
1090
|
* <note>
|
|
3266
1091
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3267
1092
|
* </note>
|
|
@@ -3274,10 +1099,10 @@ export interface UploadPartRequest {
|
|
|
3274
1099
|
* <code>x-amz-trailer</code> header sent. Otherwise, Amazon S3 fails the request with the HTTP status code <code>400 Bad Request</code>. For more
|
|
3275
1100
|
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
3276
1101
|
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3277
|
-
* <p>If you provide an individual checksum, Amazon S3 ignores any provided
|
|
3278
|
-
*
|
|
3279
|
-
* <p>This checksum algorithm must be the same for all parts and it match the checksum value
|
|
3280
|
-
*
|
|
1102
|
+
* <p>If you provide an individual checksum, Amazon S3 ignores any provided <code>ChecksumAlgorithm</code>
|
|
1103
|
+
* parameter.</p>
|
|
1104
|
+
* <p>This checksum algorithm must be the same for all parts and it match the checksum value supplied in
|
|
1105
|
+
* the <code>CreateMultipartUpload</code> request.</p>
|
|
3281
1106
|
* @public
|
|
3282
1107
|
*/
|
|
3283
1108
|
ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
|
|
@@ -3298,9 +1123,10 @@ export interface UploadPartRequest {
|
|
|
3298
1123
|
*/
|
|
3299
1124
|
ChecksumCRC32C?: string | undefined;
|
|
3300
1125
|
/**
|
|
3301
|
-
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3302
|
-
*
|
|
3303
|
-
*
|
|
1126
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1127
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>CRC64NVME</code>
|
|
1128
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1129
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3304
1130
|
* @public
|
|
3305
1131
|
*/
|
|
3306
1132
|
ChecksumCRC64NVME?: string | undefined;
|
|
@@ -3320,14 +1146,53 @@ export interface UploadPartRequest {
|
|
|
3320
1146
|
* @public
|
|
3321
1147
|
*/
|
|
3322
1148
|
ChecksumSHA256?: string | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1151
|
+
* that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
|
|
1152
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1153
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1154
|
+
* @public
|
|
1155
|
+
*/
|
|
1156
|
+
ChecksumSHA512?: string | undefined;
|
|
1157
|
+
/**
|
|
1158
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1159
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
|
|
1160
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1161
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1162
|
+
* @public
|
|
1163
|
+
*/
|
|
1164
|
+
ChecksumMD5?: string | undefined;
|
|
1165
|
+
/**
|
|
1166
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1167
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
|
|
1168
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1169
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1170
|
+
* @public
|
|
1171
|
+
*/
|
|
1172
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1175
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
|
|
1176
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1177
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1180
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1181
|
+
/**
|
|
1182
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1183
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
|
|
1184
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1185
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1188
|
+
ChecksumXXHASH128?: string | undefined;
|
|
3323
1189
|
/**
|
|
3324
1190
|
* <p>Object key for which the multipart upload was initiated.</p>
|
|
3325
1191
|
* @public
|
|
3326
1192
|
*/
|
|
3327
1193
|
Key: string | undefined;
|
|
3328
1194
|
/**
|
|
3329
|
-
* <p>Part number of part being uploaded. This is a positive integer between 1 and
|
|
3330
|
-
* 10,000.</p>
|
|
1195
|
+
* <p>Part number of part being uploaded. This is a positive integer between 1 and 10,000.</p>
|
|
3331
1196
|
* @public
|
|
3332
1197
|
*/
|
|
3333
1198
|
PartNumber: number | undefined;
|
|
@@ -3345,11 +1210,11 @@ export interface UploadPartRequest {
|
|
|
3345
1210
|
*/
|
|
3346
1211
|
SSECustomerAlgorithm?: string | undefined;
|
|
3347
1212
|
/**
|
|
3348
|
-
* <p>Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This
|
|
3349
|
-
*
|
|
3350
|
-
*
|
|
3351
|
-
*
|
|
3352
|
-
*
|
|
1213
|
+
* <p>Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is
|
|
1214
|
+
* used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must
|
|
1215
|
+
* be appropriate for use with the algorithm specified in the
|
|
1216
|
+
* <code>x-amz-server-side-encryption-customer-algorithm header</code>. This must be the same encryption
|
|
1217
|
+
* key specified in the initiate multipart upload request.</p>
|
|
3353
1218
|
* <note>
|
|
3354
1219
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3355
1220
|
* </note>
|
|
@@ -3357,9 +1222,8 @@ export interface UploadPartRequest {
|
|
|
3357
1222
|
*/
|
|
3358
1223
|
SSECustomerKey?: string | undefined;
|
|
3359
1224
|
/**
|
|
3360
|
-
* <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses
|
|
3361
|
-
*
|
|
3362
|
-
* without error.</p>
|
|
1225
|
+
* <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header
|
|
1226
|
+
* for a message integrity check to ensure that the encryption key was transmitted without error.</p>
|
|
3363
1227
|
* <note>
|
|
3364
1228
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3365
1229
|
* </note>
|
|
@@ -3367,12 +1231,11 @@ export interface UploadPartRequest {
|
|
|
3367
1231
|
*/
|
|
3368
1232
|
SSECustomerKeyMD5?: string | undefined;
|
|
3369
1233
|
/**
|
|
3370
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
3371
|
-
*
|
|
3372
|
-
*
|
|
3373
|
-
*
|
|
3374
|
-
*
|
|
3375
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1234
|
+
* <p>Confirms that the requester knows that they will be charged for the request. Bucket owners need not
|
|
1235
|
+
* specify this parameter in their requests. If either the source or destination S3 bucket has Requester
|
|
1236
|
+
* Pays enabled, the requester will pay for the corresponding charges. For information about
|
|
1237
|
+
* downloading objects from Requester Pays buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in Requester Pays
|
|
1238
|
+
* Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3376
1239
|
* <note>
|
|
3377
1240
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3378
1241
|
* </note>
|
|
@@ -3401,51 +1264,93 @@ export interface CopyPartResult {
|
|
|
3401
1264
|
*/
|
|
3402
1265
|
LastModified?: Date | undefined;
|
|
3403
1266
|
/**
|
|
3404
|
-
* <p>
|
|
3405
|
-
*
|
|
3406
|
-
*
|
|
3407
|
-
*
|
|
1267
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32</code> checksum of the part. This checksum is present if
|
|
1268
|
+
* the multipart upload request was created with the <code>CRC32</code> checksum algorithm. For more
|
|
1269
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1270
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3408
1271
|
* @public
|
|
3409
1272
|
*/
|
|
3410
1273
|
ChecksumCRC32?: string | undefined;
|
|
3411
1274
|
/**
|
|
3412
|
-
* <p>
|
|
3413
|
-
*
|
|
3414
|
-
*
|
|
3415
|
-
*
|
|
1275
|
+
* <p>The Base64 encoded, 32-bit <code>CRC32C</code> checksum of the part. This checksum is present if
|
|
1276
|
+
* the multipart upload request was created with the <code>CRC32C</code> checksum algorithm. For more
|
|
1277
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1278
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3416
1279
|
* @public
|
|
3417
1280
|
*/
|
|
3418
1281
|
ChecksumCRC32C?: string | undefined;
|
|
3419
1282
|
/**
|
|
3420
|
-
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present
|
|
3421
|
-
*
|
|
1283
|
+
* <p>The Base64 encoded, 64-bit <code>CRC64NVME</code> checksum of the part. This checksum is present if
|
|
1284
|
+
* the multipart upload request was created with the <code>CRC64NVME</code> checksum algorithm. For more
|
|
1285
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1286
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3422
1287
|
* @public
|
|
3423
1288
|
*/
|
|
3424
1289
|
ChecksumCRC64NVME?: string | undefined;
|
|
3425
1290
|
/**
|
|
3426
|
-
* <p>
|
|
3427
|
-
*
|
|
3428
|
-
*
|
|
3429
|
-
*
|
|
1291
|
+
* <p>The Base64 encoded, 160-bit <code>SHA1</code> digest of the part. This checksum is present if
|
|
1292
|
+
* the multipart upload request was created with the <code>SHA1</code> checksum algorithm. For more
|
|
1293
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1294
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3430
1295
|
* @public
|
|
3431
1296
|
*/
|
|
3432
1297
|
ChecksumSHA1?: string | undefined;
|
|
3433
1298
|
/**
|
|
3434
|
-
* <p>
|
|
3435
|
-
*
|
|
3436
|
-
*
|
|
3437
|
-
*
|
|
1299
|
+
* <p>The Base64 encoded, 256-bit <code>SHA256</code> digest of the part. This checksum is present if
|
|
1300
|
+
* the multipart upload request was created with the <code>SHA256</code> checksum algorithm. For more
|
|
1301
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1302
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3438
1303
|
* @public
|
|
3439
1304
|
*/
|
|
3440
1305
|
ChecksumSHA256?: string | undefined;
|
|
1306
|
+
/**
|
|
1307
|
+
* <p>The Base64 encoded, 512-bit <code>SHA512</code> digest of the part. This checksum is present if
|
|
1308
|
+
* the multipart upload request was created with the <code>SHA512</code> checksum algorithm. For more
|
|
1309
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1310
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1311
|
+
* @public
|
|
1312
|
+
*/
|
|
1313
|
+
ChecksumSHA512?: string | undefined;
|
|
1314
|
+
/**
|
|
1315
|
+
* <p>The Base64 encoded, 128-bit <code>MD5</code> digest of the part. This checksum is present if
|
|
1316
|
+
* the multipart upload request was created with the <code>MD5</code> checksum algorithm. For more
|
|
1317
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1318
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1319
|
+
* @public
|
|
1320
|
+
*/
|
|
1321
|
+
ChecksumMD5?: string | undefined;
|
|
1322
|
+
/**
|
|
1323
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH64</code> checksum of the part. This checksum is present if
|
|
1324
|
+
* the multipart upload request was created with the <code>XXHASH64</code> checksum algorithm. For more
|
|
1325
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1326
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1327
|
+
* @public
|
|
1328
|
+
*/
|
|
1329
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1330
|
+
/**
|
|
1331
|
+
* <p>The Base64 encoded, 64-bit <code>XXHASH3</code> checksum of the part. This checksum is present if
|
|
1332
|
+
* the multipart upload request was created with the <code>XXHASH3</code> checksum algorithm. For more
|
|
1333
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1334
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1335
|
+
* @public
|
|
1336
|
+
*/
|
|
1337
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1338
|
+
/**
|
|
1339
|
+
* <p>The Base64 encoded, 128-bit <code>XXHASH128</code> checksum of the part. This checksum is present if
|
|
1340
|
+
* the multipart upload request was created with the <code>XXHASH128</code> checksum algorithm. For more
|
|
1341
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1342
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1343
|
+
* @public
|
|
1344
|
+
*/
|
|
1345
|
+
ChecksumXXHASH128?: string | undefined;
|
|
3441
1346
|
}
|
|
3442
1347
|
/**
|
|
3443
1348
|
* @public
|
|
3444
1349
|
*/
|
|
3445
1350
|
export interface UploadPartCopyOutput {
|
|
3446
1351
|
/**
|
|
3447
|
-
* <p>The version of the source object that was copied, if you have enabled versioning on the
|
|
3448
|
-
*
|
|
1352
|
+
* <p>The version of the source object that was copied, if you have enabled versioning on the source
|
|
1353
|
+
* bucket.</p>
|
|
3449
1354
|
* <note>
|
|
3450
1355
|
* <p>This functionality is not supported when the source object is in a directory bucket.</p>
|
|
3451
1356
|
* </note>
|
|
@@ -3460,14 +1365,15 @@ export interface UploadPartCopyOutput {
|
|
|
3460
1365
|
/**
|
|
3461
1366
|
* <p>The server-side encryption algorithm used when you store this object in Amazon S3 or Amazon FSx.</p>
|
|
3462
1367
|
* <note>
|
|
3463
|
-
* <p>When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side
|
|
1368
|
+
* <p>When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side
|
|
1369
|
+
* encryption option is <code>aws:fsx</code>.</p>
|
|
3464
1370
|
* </note>
|
|
3465
1371
|
* @public
|
|
3466
1372
|
*/
|
|
3467
1373
|
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
3468
1374
|
/**
|
|
3469
|
-
* <p>If server-side encryption with a customer-provided encryption key was requested, the
|
|
3470
|
-
*
|
|
1375
|
+
* <p>If server-side encryption with a customer-provided encryption key was requested, the response will
|
|
1376
|
+
* include this header to confirm the encryption algorithm that's used.</p>
|
|
3471
1377
|
* <note>
|
|
3472
1378
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3473
1379
|
* </note>
|
|
@@ -3475,9 +1381,9 @@ export interface UploadPartCopyOutput {
|
|
|
3475
1381
|
*/
|
|
3476
1382
|
SSECustomerAlgorithm?: string | undefined;
|
|
3477
1383
|
/**
|
|
3478
|
-
* <p>If server-side encryption with a customer-provided encryption key was requested, the
|
|
3479
|
-
*
|
|
3480
|
-
*
|
|
1384
|
+
* <p>If server-side encryption with a customer-provided encryption key was requested, the response will
|
|
1385
|
+
* include this header to provide the round-trip message integrity verification of the customer-provided
|
|
1386
|
+
* encryption key.</p>
|
|
3481
1387
|
* <note>
|
|
3482
1388
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3483
1389
|
* </note>
|
|
@@ -3490,14 +1396,15 @@ export interface UploadPartCopyOutput {
|
|
|
3490
1396
|
*/
|
|
3491
1397
|
SSEKMSKeyId?: string | undefined;
|
|
3492
1398
|
/**
|
|
3493
|
-
* <p>Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption
|
|
3494
|
-
*
|
|
1399
|
+
* <p>Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with
|
|
1400
|
+
* Key Management Service (KMS) keys (SSE-KMS).</p>
|
|
3495
1401
|
* @public
|
|
3496
1402
|
*/
|
|
3497
1403
|
BucketKeyEnabled?: boolean | undefined;
|
|
3498
1404
|
/**
|
|
3499
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
3500
|
-
*
|
|
1405
|
+
* <p>If present, indicates that the requester was successfully charged for the request. For more
|
|
1406
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple
|
|
1407
|
+
* Storage Service user guide</i>.</p>
|
|
3501
1408
|
* <note>
|
|
3502
1409
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3503
1410
|
* </note>
|
|
@@ -3519,8 +1426,10 @@ export interface UploadPartCopyRequest {
|
|
|
3519
1426
|
* restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming
|
|
3520
1427
|
* rules</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3521
1428
|
* <note>
|
|
3522
|
-
* <p>Copying objects across different Amazon Web Services Regions isn't supported when the source or destination
|
|
3523
|
-
*
|
|
1429
|
+
* <p>Copying objects across different Amazon Web Services Regions isn't supported when the source or destination
|
|
1430
|
+
* bucket is in Amazon Web Services Local Zones. The source and destination buckets must have the same parent Amazon Web Services Region.
|
|
1431
|
+
* Otherwise, you get an HTTP <code>400 Bad Request</code> error with the error code
|
|
1432
|
+
* <code>InvalidRequest</code>.</p>
|
|
3524
1433
|
* </note>
|
|
3525
1434
|
* <p>
|
|
3526
1435
|
* <b>Access points</b> - When you use this action with an access point for general purpose buckets, you must provide the alias of the access point in place of the bucket name or specify the access point ARN. When you use this action with an access point for directory buckets, you must provide the access point name in place of the bucket name. When using the access point ARN, you must direct requests to the access point hostname. The access point hostname takes the form <i>AccessPointName</i>-<i>AccountId</i>.s3-accesspoint.<i>Region</i>.amazonaws.com. When using this action with an access point through the Amazon Web Services SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-access-points.html">Using access points</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
@@ -3537,15 +1446,14 @@ export interface UploadPartCopyRequest {
|
|
|
3537
1446
|
*/
|
|
3538
1447
|
Bucket: string | undefined;
|
|
3539
1448
|
/**
|
|
3540
|
-
* <p>Specifies the source object for the copy operation. You specify the value in one of two
|
|
3541
|
-
*
|
|
1449
|
+
* <p>Specifies the source object for the copy operation. You specify the value in one of two formats,
|
|
1450
|
+
* depending on whether you want to access the source object through an <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-points.html">access point</a>:</p>
|
|
3542
1451
|
* <ul>
|
|
3543
1452
|
* <li>
|
|
3544
|
-
* <p>For objects not accessed through an access point, specify the name of the source bucket
|
|
3545
|
-
*
|
|
3546
|
-
*
|
|
3547
|
-
*
|
|
3548
|
-
* The value must be URL-encoded.</p>
|
|
1453
|
+
* <p>For objects not accessed through an access point, specify the name of the source bucket and key of the
|
|
1454
|
+
* source object, separated by a slash (/). For example, to copy the object
|
|
1455
|
+
* <code>reports/january.pdf</code> from the bucket <code>awsexamplebucket</code>, use
|
|
1456
|
+
* <code>awsexamplebucket/reports/january.pdf</code>. The value must be URL-encoded.</p>
|
|
3549
1457
|
* </li>
|
|
3550
1458
|
* <li>
|
|
3551
1459
|
* <p>For objects accessed through access points, specify the Amazon Resource Name (ARN) of the object as accessed through the access point, in the format <code>arn:aws:s3:<Region>:<account-id>:accesspoint/<access-point-name>/object/<key></code>. For example, to copy the object <code>reports/january.pdf</code> through access point <code>my-access-point</code> owned by account <code>123456789012</code> in Region <code>us-west-2</code>, use the URL encoding of <code>arn:aws:s3:us-west-2:123456789012:accesspoint/my-access-point/object/reports/january.pdf</code>. The value must be URL encoded.</p>
|
|
@@ -3562,22 +1470,19 @@ export interface UploadPartCopyRequest {
|
|
|
3562
1470
|
* <p>Alternatively, for objects accessed through Amazon S3 on Outposts, specify the ARN of the object as accessed in the format <code>arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/object/<key></code>. For example, to copy the object <code>reports/january.pdf</code> through outpost <code>my-outpost</code> owned by account <code>123456789012</code> in Region <code>us-west-2</code>, use the URL encoding of <code>arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/object/reports/january.pdf</code>. The value must be URL-encoded. </p>
|
|
3563
1471
|
* </li>
|
|
3564
1472
|
* </ul>
|
|
3565
|
-
* <p>If your bucket has versioning enabled, you could have multiple versions of the same
|
|
3566
|
-
*
|
|
3567
|
-
*
|
|
3568
|
-
*
|
|
3569
|
-
*
|
|
3570
|
-
* /awsexamplebucket/reports/january.pdf?versionId=QUpfdndhfd8438MNFDN93jdnJFkdmqnh893</code>). </p>
|
|
1473
|
+
* <p>If your bucket has versioning enabled, you could have multiple versions of the same object. By
|
|
1474
|
+
* default, <code>x-amz-copy-source</code> identifies the current version of the source object to copy. To
|
|
1475
|
+
* copy a specific version of the source object to copy, append <code>?versionId=<version-id></code> to
|
|
1476
|
+
* the <code>x-amz-copy-source</code> request header (for example, <code>x-amz-copy-source:
|
|
1477
|
+
* /awsexamplebucket/reports/january.pdf?versionId=QUpfdndhfd8438MNFDN93jdnJFkdmqnh893</code>). </p>
|
|
3571
1478
|
* <p>If the current version is a delete marker and you don't specify a versionId in the
|
|
3572
|
-
*
|
|
3573
|
-
*
|
|
3574
|
-
*
|
|
3575
|
-
*
|
|
3576
|
-
* marker as a version for the <code>x-amz-copy-source</code>. </p>
|
|
1479
|
+
* <code>x-amz-copy-source</code> request header, Amazon S3 returns a <code>404 Not Found</code> error,
|
|
1480
|
+
* because the object does not exist. If you specify versionId in the <code>x-amz-copy-source</code> and
|
|
1481
|
+
* the versionId is a delete marker, Amazon S3 returns an HTTP <code>400 Bad Request</code> error, because you
|
|
1482
|
+
* are not allowed to specify a delete marker as a version for the <code>x-amz-copy-source</code>. </p>
|
|
3577
1483
|
* <note>
|
|
3578
1484
|
* <p>
|
|
3579
|
-
* <b>Directory buckets</b> -
|
|
3580
|
-
* S3 Versioning isn't enabled and supported for directory buckets.</p>
|
|
1485
|
+
* <b>Directory buckets</b> - S3 Versioning isn't enabled and supported for directory buckets.</p>
|
|
3581
1486
|
* </note>
|
|
3582
1487
|
* @public
|
|
3583
1488
|
*/
|
|
@@ -3585,72 +1490,62 @@ export interface UploadPartCopyRequest {
|
|
|
3585
1490
|
/**
|
|
3586
1491
|
* <p>Copies the object if its entity tag (ETag) matches the specified tag.</p>
|
|
3587
1492
|
* <p>If both of the <code>x-amz-copy-source-if-match</code> and
|
|
3588
|
-
*
|
|
3589
|
-
*
|
|
1493
|
+
* <code>x-amz-copy-source-if-unmodified-since</code> headers are present in the request as
|
|
1494
|
+
* follows:</p>
|
|
3590
1495
|
* <p>
|
|
3591
|
-
* <code>x-amz-copy-source-if-match</code> condition evaluates to <code>true</code>,
|
|
3592
|
-
* and;</p>
|
|
1496
|
+
* <code>x-amz-copy-source-if-match</code> condition evaluates to <code>true</code>, and;</p>
|
|
3593
1497
|
* <p>
|
|
3594
|
-
* <code>x-amz-copy-source-if-unmodified-since</code> condition evaluates to
|
|
3595
|
-
* <code>false</code>;</p>
|
|
1498
|
+
* <code>x-amz-copy-source-if-unmodified-since</code> condition evaluates to <code>false</code>;</p>
|
|
3596
1499
|
* <p>Amazon S3 returns <code>200 OK</code> and copies the data.
|
|
3597
|
-
*
|
|
1500
|
+
* </p>
|
|
3598
1501
|
* @public
|
|
3599
1502
|
*/
|
|
3600
1503
|
CopySourceIfMatch?: string | undefined;
|
|
3601
1504
|
/**
|
|
3602
1505
|
* <p>Copies the object if it has been modified since the specified time.</p>
|
|
3603
1506
|
* <p>If both of the <code>x-amz-copy-source-if-none-match</code> and
|
|
3604
|
-
*
|
|
3605
|
-
* follows:</p>
|
|
1507
|
+
* <code>x-amz-copy-source-if-modified-since</code> headers are present in the request as follows:</p>
|
|
3606
1508
|
* <p>
|
|
3607
|
-
* <code>x-amz-copy-source-if-none-match</code> condition evaluates to <code>false</code>,
|
|
3608
|
-
* and;</p>
|
|
1509
|
+
* <code>x-amz-copy-source-if-none-match</code> condition evaluates to <code>false</code>, and;</p>
|
|
3609
1510
|
* <p>
|
|
3610
|
-
* <code>x-amz-copy-source-if-modified-since</code> condition evaluates to
|
|
3611
|
-
* <code>true</code>;</p>
|
|
1511
|
+
* <code>x-amz-copy-source-if-modified-since</code> condition evaluates to <code>true</code>;</p>
|
|
3612
1512
|
* <p>Amazon S3 returns <code>412 Precondition Failed</code> response code.
|
|
3613
|
-
*
|
|
1513
|
+
* </p>
|
|
3614
1514
|
* @public
|
|
3615
1515
|
*/
|
|
3616
1516
|
CopySourceIfModifiedSince?: Date | undefined;
|
|
3617
1517
|
/**
|
|
3618
1518
|
* <p>Copies the object if its entity tag (ETag) is different than the specified ETag.</p>
|
|
3619
1519
|
* <p>If both of the <code>x-amz-copy-source-if-none-match</code> and
|
|
3620
|
-
*
|
|
3621
|
-
* follows:</p>
|
|
1520
|
+
* <code>x-amz-copy-source-if-modified-since</code> headers are present in the request as follows:</p>
|
|
3622
1521
|
* <p>
|
|
3623
|
-
* <code>x-amz-copy-source-if-none-match</code> condition evaluates to <code>false</code>,
|
|
3624
|
-
* and;</p>
|
|
1522
|
+
* <code>x-amz-copy-source-if-none-match</code> condition evaluates to <code>false</code>, and;</p>
|
|
3625
1523
|
* <p>
|
|
3626
|
-
* <code>x-amz-copy-source-if-modified-since</code> condition evaluates to
|
|
3627
|
-
* <code>true</code>;</p>
|
|
1524
|
+
* <code>x-amz-copy-source-if-modified-since</code> condition evaluates to <code>true</code>;</p>
|
|
3628
1525
|
* <p>Amazon S3 returns <code>412 Precondition Failed</code> response code.
|
|
3629
|
-
*
|
|
1526
|
+
* </p>
|
|
3630
1527
|
* @public
|
|
3631
1528
|
*/
|
|
3632
1529
|
CopySourceIfNoneMatch?: string | undefined;
|
|
3633
1530
|
/**
|
|
3634
1531
|
* <p>Copies the object if it hasn't been modified since the specified time.</p>
|
|
3635
1532
|
* <p>If both of the <code>x-amz-copy-source-if-match</code> and
|
|
3636
|
-
*
|
|
3637
|
-
*
|
|
1533
|
+
* <code>x-amz-copy-source-if-unmodified-since</code> headers are present in the request as
|
|
1534
|
+
* follows:</p>
|
|
3638
1535
|
* <p>
|
|
3639
|
-
* <code>x-amz-copy-source-if-match</code> condition evaluates to <code>true</code>,
|
|
3640
|
-
* and;</p>
|
|
1536
|
+
* <code>x-amz-copy-source-if-match</code> condition evaluates to <code>true</code>, and;</p>
|
|
3641
1537
|
* <p>
|
|
3642
|
-
* <code>x-amz-copy-source-if-unmodified-since</code> condition evaluates to
|
|
3643
|
-
* <code>false</code>;</p>
|
|
1538
|
+
* <code>x-amz-copy-source-if-unmodified-since</code> condition evaluates to <code>false</code>;</p>
|
|
3644
1539
|
* <p>Amazon S3 returns <code>200 OK</code> and copies the data.
|
|
3645
|
-
*
|
|
1540
|
+
* </p>
|
|
3646
1541
|
* @public
|
|
3647
1542
|
*/
|
|
3648
1543
|
CopySourceIfUnmodifiedSince?: Date | undefined;
|
|
3649
1544
|
/**
|
|
3650
1545
|
* <p>The range of bytes to copy from the source object. The range value must use the form
|
|
3651
|
-
*
|
|
3652
|
-
*
|
|
3653
|
-
*
|
|
1546
|
+
* bytes=first-last, where the first and last are the zero-based byte offsets to copy. For example,
|
|
1547
|
+
* bytes=0-9 indicates that you want to copy the first 10 bytes of the source. You can copy a range only if
|
|
1548
|
+
* the source object is greater than 5 MB.</p>
|
|
3654
1549
|
* @public
|
|
3655
1550
|
*/
|
|
3656
1551
|
CopySourceRange?: string | undefined;
|
|
@@ -3660,8 +1555,7 @@ export interface UploadPartCopyRequest {
|
|
|
3660
1555
|
*/
|
|
3661
1556
|
Key: string | undefined;
|
|
3662
1557
|
/**
|
|
3663
|
-
* <p>Part number of part being copied. This is a positive integer between 1 and
|
|
3664
|
-
* 10,000.</p>
|
|
1558
|
+
* <p>Part number of part being copied. This is a positive integer between 1 and 10,000.</p>
|
|
3665
1559
|
* @public
|
|
3666
1560
|
*/
|
|
3667
1561
|
PartNumber: number | undefined;
|
|
@@ -3679,11 +1573,11 @@ export interface UploadPartCopyRequest {
|
|
|
3679
1573
|
*/
|
|
3680
1574
|
SSECustomerAlgorithm?: string | undefined;
|
|
3681
1575
|
/**
|
|
3682
|
-
* <p>Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This
|
|
3683
|
-
*
|
|
3684
|
-
*
|
|
3685
|
-
*
|
|
3686
|
-
*
|
|
1576
|
+
* <p>Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is
|
|
1577
|
+
* used to store the object and then it is discarded; Amazon S3 does not store the encryption key. The key must
|
|
1578
|
+
* be appropriate for use with the algorithm specified in the
|
|
1579
|
+
* <code>x-amz-server-side-encryption-customer-algorithm</code> header. This must be the same encryption
|
|
1580
|
+
* key specified in the initiate multipart upload request.</p>
|
|
3687
1581
|
* <note>
|
|
3688
1582
|
* <p>This functionality is not supported when the destination bucket is a directory bucket.</p>
|
|
3689
1583
|
* </note>
|
|
@@ -3691,9 +1585,8 @@ export interface UploadPartCopyRequest {
|
|
|
3691
1585
|
*/
|
|
3692
1586
|
SSECustomerKey?: string | undefined;
|
|
3693
1587
|
/**
|
|
3694
|
-
* <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses
|
|
3695
|
-
*
|
|
3696
|
-
* without error.</p>
|
|
1588
|
+
* <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header
|
|
1589
|
+
* for a message integrity check to ensure that the encryption key was transmitted without error.</p>
|
|
3697
1590
|
* <note>
|
|
3698
1591
|
* <p>This functionality is not supported when the destination bucket is a directory bucket.</p>
|
|
3699
1592
|
* </note>
|
|
@@ -3702,7 +1595,7 @@ export interface UploadPartCopyRequest {
|
|
|
3702
1595
|
SSECustomerKeyMD5?: string | undefined;
|
|
3703
1596
|
/**
|
|
3704
1597
|
* <p>Specifies the algorithm to use when decrypting the source object (for example,
|
|
3705
|
-
*
|
|
1598
|
+
* <code>AES256</code>).</p>
|
|
3706
1599
|
* <note>
|
|
3707
1600
|
* <p>This functionality is not supported when the source object is in a directory bucket.</p>
|
|
3708
1601
|
* </note>
|
|
@@ -3710,9 +1603,9 @@ export interface UploadPartCopyRequest {
|
|
|
3710
1603
|
*/
|
|
3711
1604
|
CopySourceSSECustomerAlgorithm?: string | undefined;
|
|
3712
1605
|
/**
|
|
3713
|
-
* <p>Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source
|
|
3714
|
-
*
|
|
3715
|
-
*
|
|
1606
|
+
* <p>Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The
|
|
1607
|
+
* encryption key provided in this header must be one that was used when the source object was
|
|
1608
|
+
* created.</p>
|
|
3716
1609
|
* <note>
|
|
3717
1610
|
* <p>This functionality is not supported when the source object is in a directory bucket.</p>
|
|
3718
1611
|
* </note>
|
|
@@ -3720,9 +1613,8 @@ export interface UploadPartCopyRequest {
|
|
|
3720
1613
|
*/
|
|
3721
1614
|
CopySourceSSECustomerKey?: string | undefined;
|
|
3722
1615
|
/**
|
|
3723
|
-
* <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses
|
|
3724
|
-
*
|
|
3725
|
-
* without error.</p>
|
|
1616
|
+
* <p>Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header
|
|
1617
|
+
* for a message integrity check to ensure that the encryption key was transmitted without error.</p>
|
|
3726
1618
|
* <note>
|
|
3727
1619
|
* <p>This functionality is not supported when the source object is in a directory bucket.</p>
|
|
3728
1620
|
* </note>
|
|
@@ -3730,12 +1622,11 @@ export interface UploadPartCopyRequest {
|
|
|
3730
1622
|
*/
|
|
3731
1623
|
CopySourceSSECustomerKeyMD5?: string | undefined;
|
|
3732
1624
|
/**
|
|
3733
|
-
* <p>Confirms that the requester knows that they will be charged for the request. Bucket
|
|
3734
|
-
*
|
|
3735
|
-
*
|
|
3736
|
-
*
|
|
3737
|
-
*
|
|
3738
|
-
* Requester Pays Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1625
|
+
* <p>Confirms that the requester knows that they will be charged for the request. Bucket owners need not
|
|
1626
|
+
* specify this parameter in their requests. If either the source or destination S3 bucket has Requester
|
|
1627
|
+
* Pays enabled, the requester will pay for the corresponding charges. For information about
|
|
1628
|
+
* downloading objects from Requester Pays buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html">Downloading Objects in Requester Pays
|
|
1629
|
+
* Buckets</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
3739
1630
|
* <note>
|
|
3740
1631
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
3741
1632
|
* </note>
|
|
@@ -3763,8 +1654,8 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3763
1654
|
*/
|
|
3764
1655
|
RequestRoute: string | undefined;
|
|
3765
1656
|
/**
|
|
3766
|
-
* <p>A single use encrypted token that maps <code>WriteGetObjectResponse</code> to the end
|
|
3767
|
-
*
|
|
1657
|
+
* <p>A single use encrypted token that maps <code>WriteGetObjectResponse</code> to the end user
|
|
1658
|
+
* <code>GetObject</code> request.</p>
|
|
3768
1659
|
* @public
|
|
3769
1660
|
*/
|
|
3770
1661
|
RequestToken: string | undefined;
|
|
@@ -3774,8 +1665,8 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3774
1665
|
*/
|
|
3775
1666
|
Body?: StreamingBlobTypes | undefined;
|
|
3776
1667
|
/**
|
|
3777
|
-
* <p>The integer status code for an HTTP response of a corresponding <code>GetObject</code>
|
|
3778
|
-
*
|
|
1668
|
+
* <p>The integer status code for an HTTP response of a corresponding <code>GetObject</code> request. The
|
|
1669
|
+
* following is a list of status codes.</p>
|
|
3779
1670
|
* <ul>
|
|
3780
1671
|
* <li>
|
|
3781
1672
|
* <p>
|
|
@@ -3852,19 +1743,18 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3852
1743
|
*/
|
|
3853
1744
|
StatusCode?: number | undefined;
|
|
3854
1745
|
/**
|
|
3855
|
-
* <p>A string that uniquely identifies an error condition. Returned in the <Code> tag
|
|
3856
|
-
*
|
|
3857
|
-
*
|
|
3858
|
-
*
|
|
3859
|
-
*
|
|
1746
|
+
* <p>A string that uniquely identifies an error condition. Returned in the <Code> tag of the error
|
|
1747
|
+
* XML response for a corresponding <code>GetObject</code> call. Cannot be used with a successful
|
|
1748
|
+
* <code>StatusCode</code> header or when the transformed object is provided in the body. All error codes
|
|
1749
|
+
* from S3 are sentence-cased. The regular expression (regex) value is
|
|
1750
|
+
* <code>"^[A-Z][a-zA-Z]+$"</code>.</p>
|
|
3860
1751
|
* @public
|
|
3861
1752
|
*/
|
|
3862
1753
|
ErrorCode?: string | undefined;
|
|
3863
1754
|
/**
|
|
3864
|
-
* <p>Contains a generic description of the error condition. Returned in the <Message>
|
|
3865
|
-
*
|
|
3866
|
-
*
|
|
3867
|
-
* provided in body.</p>
|
|
1755
|
+
* <p>Contains a generic description of the error condition. Returned in the <Message> tag of the
|
|
1756
|
+
* error XML response for a corresponding <code>GetObject</code> call. Cannot be used with a successful
|
|
1757
|
+
* <code>StatusCode</code> header or when the transformed object is provided in body.</p>
|
|
3868
1758
|
* @public
|
|
3869
1759
|
*/
|
|
3870
1760
|
ErrorMessage?: string | undefined;
|
|
@@ -3884,9 +1774,8 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3884
1774
|
*/
|
|
3885
1775
|
ContentDisposition?: string | undefined;
|
|
3886
1776
|
/**
|
|
3887
|
-
* <p>Specifies what content encodings have been applied to the object and thus what decoding
|
|
3888
|
-
*
|
|
3889
|
-
* field.</p>
|
|
1777
|
+
* <p>Specifies what content encodings have been applied to the object and thus what decoding mechanisms
|
|
1778
|
+
* must be applied to obtain the media-type referenced by the Content-Type header field.</p>
|
|
3890
1779
|
* @public
|
|
3891
1780
|
*/
|
|
3892
1781
|
ContentEncoding?: string | undefined;
|
|
@@ -3911,74 +1800,111 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3911
1800
|
*/
|
|
3912
1801
|
ContentType?: string | undefined;
|
|
3913
1802
|
/**
|
|
3914
|
-
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3915
|
-
*
|
|
3916
|
-
*
|
|
3917
|
-
*
|
|
3918
|
-
*
|
|
3919
|
-
*
|
|
3920
|
-
*
|
|
3921
|
-
*
|
|
3922
|
-
* headers, this request will fail.</p>
|
|
1803
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1804
|
+
* that was originally sent. This specifies the Base64 encoded, 32-bit <code>CRC32</code> checksum of the
|
|
1805
|
+
* object returned by the Object Lambda function. This may not match the checksum for the object stored in
|
|
1806
|
+
* Amazon S3. Amazon S3 will perform validation of the checksum values only when the original <code>GetObject</code>
|
|
1807
|
+
* request required checksum validation. For more information about checksums, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object
|
|
1808
|
+
* integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1809
|
+
* <p>Only one checksum header can be specified at a time. If you supply multiple checksum headers, this
|
|
1810
|
+
* request will fail.</p>
|
|
3923
1811
|
* <p></p>
|
|
3924
1812
|
* @public
|
|
3925
1813
|
*/
|
|
3926
1814
|
ChecksumCRC32?: string | undefined;
|
|
3927
1815
|
/**
|
|
3928
|
-
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3929
|
-
*
|
|
3930
|
-
*
|
|
3931
|
-
*
|
|
3932
|
-
*
|
|
3933
|
-
*
|
|
3934
|
-
*
|
|
3935
|
-
*
|
|
3936
|
-
* headers, this request will fail.</p>
|
|
1816
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1817
|
+
* that was originally sent. This specifies the Base64 encoded, 32-bit <code>CRC32C</code> checksum of the
|
|
1818
|
+
* object returned by the Object Lambda function. This may not match the checksum for the object stored in
|
|
1819
|
+
* Amazon S3. Amazon S3 will perform validation of the checksum values only when the original <code>GetObject</code>
|
|
1820
|
+
* request required checksum validation. For more information about checksums, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object
|
|
1821
|
+
* integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1822
|
+
* <p>Only one checksum header can be specified at a time. If you supply multiple checksum headers, this
|
|
1823
|
+
* request will fail.</p>
|
|
3937
1824
|
* @public
|
|
3938
1825
|
*/
|
|
3939
1826
|
ChecksumCRC32C?: string | undefined;
|
|
3940
1827
|
/**
|
|
3941
|
-
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3942
|
-
*
|
|
3943
|
-
*
|
|
1828
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1829
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>CRC64NVME</code>
|
|
1830
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1831
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
3944
1832
|
* @public
|
|
3945
1833
|
*/
|
|
3946
1834
|
ChecksumCRC64NVME?: string | undefined;
|
|
3947
1835
|
/**
|
|
3948
|
-
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3949
|
-
*
|
|
3950
|
-
*
|
|
3951
|
-
*
|
|
3952
|
-
*
|
|
3953
|
-
*
|
|
3954
|
-
*
|
|
3955
|
-
*
|
|
3956
|
-
* headers, this request will fail.</p>
|
|
1836
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1837
|
+
* that was originally sent. This specifies the Base64 encoded, 160-bit <code>SHA1</code> digest of the
|
|
1838
|
+
* object returned by the Object Lambda function. This may not match the checksum for the object stored in
|
|
1839
|
+
* Amazon S3. Amazon S3 will perform validation of the checksum values only when the original <code>GetObject</code>
|
|
1840
|
+
* request required checksum validation. For more information about checksums, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object
|
|
1841
|
+
* integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1842
|
+
* <p>Only one checksum header can be specified at a time. If you supply multiple checksum headers, this
|
|
1843
|
+
* request will fail.</p>
|
|
3957
1844
|
* @public
|
|
3958
1845
|
*/
|
|
3959
1846
|
ChecksumSHA1?: string | undefined;
|
|
3960
1847
|
/**
|
|
3961
|
-
* <p>This header can be used as a data integrity check to verify that the data received is
|
|
3962
|
-
*
|
|
3963
|
-
*
|
|
3964
|
-
*
|
|
3965
|
-
*
|
|
3966
|
-
*
|
|
3967
|
-
*
|
|
3968
|
-
*
|
|
3969
|
-
* headers, this request will fail.</p>
|
|
1848
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1849
|
+
* that was originally sent. This specifies the Base64 encoded, 256-bit <code>SHA256</code> digest of the
|
|
1850
|
+
* object returned by the Object Lambda function. This may not match the checksum for the object stored in
|
|
1851
|
+
* Amazon S3. Amazon S3 will perform validation of the checksum values only when the original <code>GetObject</code>
|
|
1852
|
+
* request required checksum validation. For more information about checksums, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object
|
|
1853
|
+
* integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1854
|
+
* <p>Only one checksum header can be specified at a time. If you supply multiple checksum headers, this
|
|
1855
|
+
* request will fail.</p>
|
|
3970
1856
|
* @public
|
|
3971
1857
|
*/
|
|
3972
1858
|
ChecksumSHA256?: string | undefined;
|
|
3973
1859
|
/**
|
|
3974
|
-
* <p>
|
|
3975
|
-
*
|
|
1860
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1861
|
+
* that was originally sent. This header specifies the Base64 encoded, 512-bit <code>SHA512</code>
|
|
1862
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1863
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1866
|
+
ChecksumSHA512?: string | undefined;
|
|
1867
|
+
/**
|
|
1868
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1869
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>MD5</code>
|
|
1870
|
+
* digest of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1871
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1872
|
+
* @public
|
|
1873
|
+
*/
|
|
1874
|
+
ChecksumMD5?: string | undefined;
|
|
1875
|
+
/**
|
|
1876
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1877
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH64</code>
|
|
1878
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1879
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1880
|
+
* @public
|
|
1881
|
+
*/
|
|
1882
|
+
ChecksumXXHASH64?: string | undefined;
|
|
1883
|
+
/**
|
|
1884
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1885
|
+
* that was originally sent. This header specifies the Base64 encoded, 64-bit <code>XXHASH3</code>
|
|
1886
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1887
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1888
|
+
* @public
|
|
1889
|
+
*/
|
|
1890
|
+
ChecksumXXHASH3?: string | undefined;
|
|
1891
|
+
/**
|
|
1892
|
+
* <p>This header can be used as a data integrity check to verify that the data received is the same data
|
|
1893
|
+
* that was originally sent. This header specifies the Base64 encoded, 128-bit <code>XXHASH128</code>
|
|
1894
|
+
* checksum of the part. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html">Checking object integrity</a> in
|
|
1895
|
+
* the <i>Amazon S3 User Guide</i>.</p>
|
|
1896
|
+
* @public
|
|
1897
|
+
*/
|
|
1898
|
+
ChecksumXXHASH128?: string | undefined;
|
|
1899
|
+
/**
|
|
1900
|
+
* <p>Specifies whether an object stored in Amazon S3 is (<code>true</code>) or is not (<code>false</code>) a
|
|
1901
|
+
* delete marker. To learn more about delete markers, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeleteMarker.html">Working with delete markers</a>.</p>
|
|
3976
1902
|
* @public
|
|
3977
1903
|
*/
|
|
3978
1904
|
DeleteMarker?: boolean | undefined;
|
|
3979
1905
|
/**
|
|
3980
|
-
* <p>An opaque identifier assigned by a web server to a specific version of a resource found
|
|
3981
|
-
*
|
|
1906
|
+
* <p>An opaque identifier assigned by a web server to a specific version of a resource found at a URL.
|
|
1907
|
+
* </p>
|
|
3982
1908
|
* @public
|
|
3983
1909
|
*/
|
|
3984
1910
|
ETag?: string | undefined;
|
|
@@ -3988,10 +1914,9 @@ export interface WriteGetObjectResponseRequest {
|
|
|
3988
1914
|
*/
|
|
3989
1915
|
Expires?: Date | undefined;
|
|
3990
1916
|
/**
|
|
3991
|
-
* <p>If the object expiration is configured (see PUT Bucket lifecycle), the response includes
|
|
3992
|
-
*
|
|
3993
|
-
*
|
|
3994
|
-
* is URL-encoded. </p>
|
|
1917
|
+
* <p>If the object expiration is configured (see PUT Bucket lifecycle), the response includes this
|
|
1918
|
+
* header. It includes the <code>expiry-date</code> and <code>rule-id</code> key-value pairs that provide
|
|
1919
|
+
* the object expiration information. The value of the <code>rule-id</code> is URL-encoded. </p>
|
|
3995
1920
|
* @public
|
|
3996
1921
|
*/
|
|
3997
1922
|
Expiration?: string | undefined;
|
|
@@ -4001,10 +1926,9 @@ export interface WriteGetObjectResponseRequest {
|
|
|
4001
1926
|
*/
|
|
4002
1927
|
LastModified?: Date | undefined;
|
|
4003
1928
|
/**
|
|
4004
|
-
* <p>Set to the number of metadata entries not returned in <code>x-amz-meta</code> headers.
|
|
4005
|
-
*
|
|
4006
|
-
*
|
|
4007
|
-
* are not legal HTTP headers.</p>
|
|
1929
|
+
* <p>Set to the number of metadata entries not returned in <code>x-amz-meta</code> headers. This can
|
|
1930
|
+
* happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST
|
|
1931
|
+
* API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.</p>
|
|
4008
1932
|
* @public
|
|
4009
1933
|
*/
|
|
4010
1934
|
MissingMeta?: number | undefined;
|
|
@@ -4014,8 +1938,9 @@ export interface WriteGetObjectResponseRequest {
|
|
|
4014
1938
|
*/
|
|
4015
1939
|
Metadata?: Record<string, string> | undefined;
|
|
4016
1940
|
/**
|
|
4017
|
-
* <p>Indicates whether an object stored in Amazon S3 has Object Lock enabled. For more information
|
|
4018
|
-
*
|
|
1941
|
+
* <p>Indicates whether an object stored in Amazon S3 has Object Lock enabled. For more information about S3
|
|
1942
|
+
* Object Lock, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock.html">Object
|
|
1943
|
+
* Lock</a>.</p>
|
|
4019
1944
|
* @public
|
|
4020
1945
|
*/
|
|
4021
1946
|
ObjectLockMode?: ObjectLockMode | undefined;
|
|
@@ -4035,14 +1960,15 @@ export interface WriteGetObjectResponseRequest {
|
|
|
4035
1960
|
*/
|
|
4036
1961
|
PartsCount?: number | undefined;
|
|
4037
1962
|
/**
|
|
4038
|
-
* <p>Indicates if request involves bucket that is either a source or destination in a
|
|
4039
|
-
*
|
|
1963
|
+
* <p>Indicates if request involves bucket that is either a source or destination in a Replication rule.
|
|
1964
|
+
* For more information about S3 Replication, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/replication.html">Replication</a>.</p>
|
|
4040
1965
|
* @public
|
|
4041
1966
|
*/
|
|
4042
1967
|
ReplicationStatus?: ReplicationStatus | undefined;
|
|
4043
1968
|
/**
|
|
4044
|
-
* <p>If present, indicates that the requester was successfully charged for the
|
|
4045
|
-
*
|
|
1969
|
+
* <p>If present, indicates that the requester was successfully charged for the request. For more
|
|
1970
|
+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/RequesterPaysBuckets.html">Using Requester Pays buckets for storage transfers and usage</a> in the <i>Amazon Simple
|
|
1971
|
+
* Storage Service user guide</i>.</p>
|
|
4046
1972
|
* <note>
|
|
4047
1973
|
* <p>This functionality is not supported for directory buckets.</p>
|
|
4048
1974
|
* </note>
|
|
@@ -4050,43 +1976,42 @@ export interface WriteGetObjectResponseRequest {
|
|
|
4050
1976
|
*/
|
|
4051
1977
|
RequestCharged?: RequestCharged | undefined;
|
|
4052
1978
|
/**
|
|
4053
|
-
* <p>Provides information about object restoration operation and expiration time of the
|
|
4054
|
-
*
|
|
1979
|
+
* <p>Provides information about object restoration operation and expiration time of the restored object
|
|
1980
|
+
* copy.</p>
|
|
4055
1981
|
* @public
|
|
4056
1982
|
*/
|
|
4057
1983
|
Restore?: string | undefined;
|
|
4058
1984
|
/**
|
|
4059
1985
|
* <p> The server-side encryption algorithm used when storing requested object in Amazon S3 or Amazon FSx.</p>
|
|
4060
1986
|
* <note>
|
|
4061
|
-
* <p>When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side
|
|
1987
|
+
* <p>When accessing data stored in Amazon FSx file systems using S3 access points, the only valid server side
|
|
1988
|
+
* encryption option is <code>aws:fsx</code>.</p>
|
|
4062
1989
|
* </note>
|
|
4063
1990
|
* @public
|
|
4064
1991
|
*/
|
|
4065
1992
|
ServerSideEncryption?: ServerSideEncryption | undefined;
|
|
4066
1993
|
/**
|
|
4067
|
-
* <p>Encryption algorithm used if server-side encryption with a customer-provided encryption
|
|
4068
|
-
*
|
|
1994
|
+
* <p>Encryption algorithm used if server-side encryption with a customer-provided encryption key was
|
|
1995
|
+
* specified for object stored in Amazon S3.</p>
|
|
4069
1996
|
* @public
|
|
4070
1997
|
*/
|
|
4071
1998
|
SSECustomerAlgorithm?: string | undefined;
|
|
4072
1999
|
/**
|
|
4073
|
-
* <p> If present, specifies the ID (Key ID, Key ARN, or Key Alias) of the Amazon Web Services Key
|
|
4074
|
-
*
|
|
4075
|
-
* Amazon S3 object. </p>
|
|
2000
|
+
* <p> If present, specifies the ID (Key ID, Key ARN, or Key Alias) of the Amazon Web Services Key Management Service
|
|
2001
|
+
* (Amazon Web Services KMS) symmetric encryption customer managed key that was used for stored in Amazon S3 object. </p>
|
|
4076
2002
|
* @public
|
|
4077
2003
|
*/
|
|
4078
2004
|
SSEKMSKeyId?: string | undefined;
|
|
4079
2005
|
/**
|
|
4080
|
-
* <p> 128-bit MD5 digest of customer-provided encryption key used in Amazon S3 to encrypt data
|
|
4081
|
-
*
|
|
4082
|
-
*
|
|
4083
|
-
* (SSE-C)</a>.</p>
|
|
2006
|
+
* <p> 128-bit MD5 digest of customer-provided encryption key used in Amazon S3 to encrypt data stored in S3.
|
|
2007
|
+
* For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html">Protecting data using
|
|
2008
|
+
* server-side encryption with customer-provided encryption keys (SSE-C)</a>.</p>
|
|
4084
2009
|
* @public
|
|
4085
2010
|
*/
|
|
4086
2011
|
SSECustomerKeyMD5?: string | undefined;
|
|
4087
2012
|
/**
|
|
4088
|
-
* <p>Provides storage class information of the object. Amazon S3 returns this header for all
|
|
4089
|
-
*
|
|
2013
|
+
* <p>Provides storage class information of the object. Amazon S3 returns this header for all objects except
|
|
2014
|
+
* for S3 Standard storage class objects.</p>
|
|
4090
2015
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage Classes</a>.</p>
|
|
4091
2016
|
* @public
|
|
4092
2017
|
*/
|
|
@@ -4102,77 +2027,9 @@ export interface WriteGetObjectResponseRequest {
|
|
|
4102
2027
|
*/
|
|
4103
2028
|
VersionId?: string | undefined;
|
|
4104
2029
|
/**
|
|
4105
|
-
* <p> Indicates whether the object stored in Amazon S3 uses an S3 bucket key for server-side
|
|
4106
|
-
*
|
|
2030
|
+
* <p> Indicates whether the object stored in Amazon S3 uses an S3 bucket key for server-side encryption with
|
|
2031
|
+
* Amazon Web Services KMS (SSE-KMS).</p>
|
|
4107
2032
|
* @public
|
|
4108
2033
|
*/
|
|
4109
2034
|
BucketKeyEnabled?: boolean | undefined;
|
|
4110
2035
|
}
|
|
4111
|
-
/**
|
|
4112
|
-
* @internal
|
|
4113
|
-
*/
|
|
4114
|
-
export declare const PutBucketEncryptionRequestFilterSensitiveLog: (obj: PutBucketEncryptionRequest) => any;
|
|
4115
|
-
/**
|
|
4116
|
-
* @internal
|
|
4117
|
-
*/
|
|
4118
|
-
export declare const PutBucketInventoryConfigurationRequestFilterSensitiveLog: (obj: PutBucketInventoryConfigurationRequest) => any;
|
|
4119
|
-
/**
|
|
4120
|
-
* @internal
|
|
4121
|
-
*/
|
|
4122
|
-
export declare const PutObjectOutputFilterSensitiveLog: (obj: PutObjectOutput) => any;
|
|
4123
|
-
/**
|
|
4124
|
-
* @internal
|
|
4125
|
-
*/
|
|
4126
|
-
export declare const PutObjectRequestFilterSensitiveLog: (obj: PutObjectRequest) => any;
|
|
4127
|
-
/**
|
|
4128
|
-
* @internal
|
|
4129
|
-
*/
|
|
4130
|
-
export declare const EncryptionFilterSensitiveLog: (obj: Encryption) => any;
|
|
4131
|
-
/**
|
|
4132
|
-
* @internal
|
|
4133
|
-
*/
|
|
4134
|
-
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
4135
|
-
/**
|
|
4136
|
-
* @internal
|
|
4137
|
-
*/
|
|
4138
|
-
export declare const OutputLocationFilterSensitiveLog: (obj: OutputLocation) => any;
|
|
4139
|
-
/**
|
|
4140
|
-
* @internal
|
|
4141
|
-
*/
|
|
4142
|
-
export declare const RestoreRequestFilterSensitiveLog: (obj: RestoreRequest) => any;
|
|
4143
|
-
/**
|
|
4144
|
-
* @internal
|
|
4145
|
-
*/
|
|
4146
|
-
export declare const RestoreObjectRequestFilterSensitiveLog: (obj: RestoreObjectRequest) => any;
|
|
4147
|
-
/**
|
|
4148
|
-
* @internal
|
|
4149
|
-
*/
|
|
4150
|
-
export declare const SelectObjectContentEventStreamFilterSensitiveLog: (obj: SelectObjectContentEventStream) => any;
|
|
4151
|
-
/**
|
|
4152
|
-
* @internal
|
|
4153
|
-
*/
|
|
4154
|
-
export declare const SelectObjectContentOutputFilterSensitiveLog: (obj: SelectObjectContentOutput) => any;
|
|
4155
|
-
/**
|
|
4156
|
-
* @internal
|
|
4157
|
-
*/
|
|
4158
|
-
export declare const SelectObjectContentRequestFilterSensitiveLog: (obj: SelectObjectContentRequest) => any;
|
|
4159
|
-
/**
|
|
4160
|
-
* @internal
|
|
4161
|
-
*/
|
|
4162
|
-
export declare const UploadPartOutputFilterSensitiveLog: (obj: UploadPartOutput) => any;
|
|
4163
|
-
/**
|
|
4164
|
-
* @internal
|
|
4165
|
-
*/
|
|
4166
|
-
export declare const UploadPartRequestFilterSensitiveLog: (obj: UploadPartRequest) => any;
|
|
4167
|
-
/**
|
|
4168
|
-
* @internal
|
|
4169
|
-
*/
|
|
4170
|
-
export declare const UploadPartCopyOutputFilterSensitiveLog: (obj: UploadPartCopyOutput) => any;
|
|
4171
|
-
/**
|
|
4172
|
-
* @internal
|
|
4173
|
-
*/
|
|
4174
|
-
export declare const UploadPartCopyRequestFilterSensitiveLog: (obj: UploadPartCopyRequest) => any;
|
|
4175
|
-
/**
|
|
4176
|
-
* @internal
|
|
4177
|
-
*/
|
|
4178
|
-
export declare const WriteGetObjectResponseRequestFilterSensitiveLog: (obj: WriteGetObjectResponseRequest) => any;
|