@mavogel/awscdk-rootmail 0.0.334 → 0.0.336
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 +11 -13
- package/CLAUDE.md +14 -30
- package/cdk.json +0 -1
- package/lib/custom-resource-types.d.ts +23 -0
- package/lib/custom-resource-types.js +3 -0
- package/lib/hosted-zone-dkim-propagation.is-complete-handler.d.ts +2 -2
- package/lib/hosted-zone-dkim-propagation.is-complete-handler.js +1 -1
- package/lib/hosted-zone-dkim-propagation.on-event-handler.d.ts +2 -2
- package/lib/hosted-zone-dkim-propagation.on-event-handler.js +1 -1
- package/lib/hosted-zone-dkim-verification-records.on-event-handler.d.ts +2 -2
- package/lib/hosted-zone-dkim-verification-records.on-event-handler.js +1 -1
- package/lib/rootmail-autowire-dns.is-complete-handler.d.ts +2 -2
- package/lib/rootmail-autowire-dns.is-complete-handler.js +1 -1
- package/lib/rootmail-autowire-dns.on-event-handler.d.ts +2 -1
- package/lib/rootmail-autowire-dns.on-event-handler.js +1 -1
- package/lib/rootmail.js +1 -1
- package/lib/ses-receipt-ruleset-activation.is-complete-handler.d.ts +2 -2
- package/lib/ses-receipt-ruleset-activation.is-complete-handler.js +1 -1
- package/lib/ses-receipt-ruleset-activation.on-event-handler.d.ts +2 -2
- package/lib/ses-receipt-ruleset-activation.on-event-handler.js +1 -1
- package/lib/ses-receive.js +1 -1
- package/node_modules/@aws/lambda-invoke-store/README.md +25 -1
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +6 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
- package/node_modules/@aws-sdk/checksums/README.md +6 -0
- package/node_modules/@aws-sdk/checksums/crc.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/crc.js +5 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +22 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/crc/index.js +159 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/flexible-checksums/index.js +444 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/md5/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/sha/index.js +312 -0
- package/node_modules/@aws-sdk/checksums/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cJs.js +31 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cNode.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64Nvme.js +18 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64NvmeJs.js +92 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.browser.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/flexibleChecksumsMiddleware.js +123 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/flexibleChecksumsResponseMiddleware.js +48 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/isStreaming.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/resolveFlexibleChecksumsConfig.js +11 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/selectChecksumAlgorithmFunction.js +27 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/stringHasher.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/validateChecksumFromResponse.js +45 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/md5/index.js +1 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.browser.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Js.js +173 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Node.js +59 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1WebCrypto.js +71 -0
- package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +3 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cJs.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cNode.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +21 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/crc64-nvme-crt-container.d.ts +11 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/index.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/validateChecksumFromResponse.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.browser.d.ts +3 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Js.d.ts +26 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Node.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1WebCrypto.d.ts +22 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +30 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cJs.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cNode.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64Nvme.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +7 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +7 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/index.d.ts +31 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/validateChecksumFromResponse.d.ts +12 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Js.d.ts +20 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Node.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1WebCrypto.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.js +5 -0
- package/node_modules/@aws-sdk/checksums/md5.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/md5.js +5 -0
- package/node_modules/@aws-sdk/checksums/package.json +129 -0
- package/node_modules/@aws-sdk/checksums/sha.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/sha.js +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/README.md +42 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/index.js +4564 -1443
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/CloudWatchLogs.js +11 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/CloudWatchLogsClient.js +7 -10
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/AssociateKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/AssociateSourceToS3TableIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CancelExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CancelImportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateDeliveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateImportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLogStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/CreateScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteAccountPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliveryDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDeliverySourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteIndexPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLogStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteMetricFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteQueryDefinitionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteRetentionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteSubscriptionFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteSyslogConfigurationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DeleteTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeAccountPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeConfigurationTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliveriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliveryDestinationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDeliverySourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeDestinationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeExportTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeFieldIndexesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeImportTaskBatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeImportTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeIndexPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLogGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLogStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeLookupTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeMetricFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeQueriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeQueryDefinitionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeResourcePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DescribeSubscriptionFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DisassociateKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/DisassociateSourceFromS3TableIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/FilterLogEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliveryDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetDeliverySourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogFieldsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogGroupFieldsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogObjectCommand.js +2 -18
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLogRecordCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetQueryResultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetScheduledQueryHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetStorageTierPolicyCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/GetTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListAggregateLogGroupSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListAnomaliesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListIntegrationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogAnomalyDetectorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListLogGroupsForQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListScheduledQueriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListSourcesForS3TableIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListSyslogConfigurationsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/ListTagsLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutAccountPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutBearerTokenAuthenticationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliveryDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliveryDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDeliverySourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutDestinationPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutIndexPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutIntegrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutLogEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutLogGroupDeletionProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutMetricFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutQueryDefinitionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutRetentionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutStorageTierPolicyCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutSubscriptionFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutSyslogConfigurationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/PutTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StartLiveTailCommand.js +2 -18
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StartQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/StopQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TagLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TestMetricFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/TestTransformerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UntagLogGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateAnomalyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateDeliveryConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateLogAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateLookupTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/UpdateScheduledQueryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/models/CloudWatchLogsServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/models/enums.js +25 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.browser.js +6 -10
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.js +6 -12
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/schemas/schemas_0.js +165 -39
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/CloudWatchLogs.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/CloudWatchLogsClient.d.ts +21 -10
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/AssociateKmsKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CancelExportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CancelImportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateDeliveryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateExportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateImportTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogAnomalyDetectorCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLogStreamCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateLookupTableCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/CreateScheduledQueryCommand.d.ts +4 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteAccountPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDataProtectionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliveryDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDeliverySourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteIndexPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogAnomalyDetectorCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLogStreamCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteLookupTableCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteMetricFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteQueryDefinitionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteRetentionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteScheduledQueryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteSubscriptionFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteSyslogConfigurationCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DeleteTransformerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeAccountPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeConfigurationTemplatesCommand.d.ts +19 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliveriesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliveryDestinationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDeliverySourcesCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeDestinationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeFieldIndexesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeImportTaskBatchesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeImportTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeIndexPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLogGroupsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLogStreamsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeLookupTablesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeMetricFiltersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeQueriesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeQueryDefinitionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeResourcePoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DescribeSubscriptionFiltersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DisassociateKmsKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/FilterLogEventsCommand.d.ts +8 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliveryDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetDeliverySourceCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogAnomalyDetectorCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogEventsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogFieldsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogGroupFieldsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogObjectCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLogRecordCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetLookupTableCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetQueryResultsCommand.d.ts +9 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetScheduledQueryCommand.d.ts +5 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetScheduledQueryHistoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetStorageTierPolicyCommand.d.ts +85 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/GetTransformerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListAggregateLogGroupSummariesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListAnomaliesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListIntegrationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogAnomalyDetectorsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogGroupsCommand.d.ts +14 -11
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListLogGroupsForQueryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListScheduledQueriesCommand.d.ts +5 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListSourcesForS3TableIntegrationCommand.d.ts +4 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListSyslogConfigurationsCommand.d.ts +101 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/ListTagsLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutAccountPolicyCommand.d.ts +51 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutBearerTokenAuthenticationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliveryDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliveryDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDeliverySourceCommand.d.ts +11 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutDestinationPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutIndexPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutIntegrationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutLogEventsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutLogGroupDeletionProtectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutMetricFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutQueryDefinitionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutRetentionPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutStorageTierPolicyCommand.d.ts +89 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutSubscriptionFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutSyslogConfigurationCommand.d.ts +92 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/PutTransformerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StartLiveTailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StartQueryCommand.d.ts +5 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/StopQueryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TagLogGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TagResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TestMetricFilterCommand.d.ts +5 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/TestTransformerCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UntagLogGroupCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UntagResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateAnomalyCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateDeliveryConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateLogAnomalyDetectorCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateLookupTableCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/UpdateScheduledQueryCommand.d.ts +9 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/index.d.ts +8 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/CloudWatchLogsServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/enums.d.ts +73 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/models_0.d.ts +397 -279
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/models/models_1.d.ts +283 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/schemas/schemas_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/CloudWatchLogs.d.ts +87 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/CloudWatchLogsClient.d.ts +43 -21
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/AssociateKmsKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/AssociateSourceToS3TableIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateDeliveryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateExportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateImportTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogAnomalyDetectorCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLogStreamCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateLookupTableCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/CreateScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteAccountPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDataProtectionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliveryDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDeliverySourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteIndexPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogAnomalyDetectorCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLogStreamCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteLookupTableCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteMetricFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteQueryDefinitionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteRetentionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteSubscriptionFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteSyslogConfigurationCommand.d.ts +40 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DeleteTransformerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeAccountPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeConfigurationTemplatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliveriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliveryDestinationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDeliverySourcesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeDestinationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeFieldIndexesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeImportTaskBatchesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeImportTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeIndexPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLogGroupsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLogStreamsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeLookupTablesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeMetricFiltersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeQueriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeQueryDefinitionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeResourcePoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DescribeSubscriptionFiltersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DisassociateKmsKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/DisassociateSourceFromS3TableIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/FilterLogEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliveryDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetDeliverySourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogAnomalyDetectorCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogFieldsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogGroupFieldsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLogRecordCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetLookupTableCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetScheduledQueryHistoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetStorageTierPolicyCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/GetTransformerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListAggregateLogGroupSummariesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListAnomaliesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListIntegrationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogAnomalyDetectorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogGroupsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListLogGroupsForQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListScheduledQueriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListSourcesForS3TableIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListSyslogConfigurationsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/ListTagsLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutAccountPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutBearerTokenAuthenticationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliveryDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliveryDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDeliverySourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutDestinationPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutIndexPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutLogEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutLogGroupDeletionProtectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutMetricFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutQueryDefinitionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutRetentionPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutStorageTierPolicyCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutSubscriptionFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutSyslogConfigurationCommand.d.ts +39 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/PutTransformerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StartLiveTailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StartQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/StopQueryCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TagLogGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TestMetricFilterCommand.d.ts +11 -20
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/TestTransformerCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UntagLogGroupCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateAnomalyCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateDeliveryConfigurationCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateLogAnomalyDetectorCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateLookupTableCommand.d.ts +12 -17
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/UpdateScheduledQueryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/CloudWatchLogsServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/enums.d.ts +35 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/models_0.d.ts +75 -57
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/models/models_1.d.ts +73 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch-logs/package.json +19 -53
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/index.js +3975 -1068
- package/node_modules/@aws-sdk/client-route-53/dist-es/Route53.js +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-es/Route53Client.js +6 -9
- package/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-es/commandBuilder.js +14 -0
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ActivateKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/AssociateVPCWithHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeCidrCollectionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeResourceRecordSetsCommand.js +2 -19
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateCidrCollectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateQueryLoggingConfigCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateReusableDelegationSetCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyVersionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateVPCAssociationAuthorizationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeactivateKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteCidrCollectionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteKeySigningKeyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteQueryLoggingConfigCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteReusableDelegationSetCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteVPCAssociationAuthorizationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisableHostedZoneDNSSECCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisassociateVPCFromHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/EnableHostedZoneDNSSECCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetAccountLimitCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetChangeCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetCheckerIpRangesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetDNSSECCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetGeoLocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckLastFailureReasonCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneLimitCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetQueryLoggingConfigCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetLimitCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrBlocksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrCollectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrLocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListGeoLocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHealthChecksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByNameCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByVPCCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListQueryLoggingConfigsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListResourceRecordSetsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListReusableDelegationSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByHostedZoneCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyVersionsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListVPCAssociationAuthorizationsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/TestDNSAnswerCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHealthCheckCommand.js +2 -14
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneCommentCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneFeaturesCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyCommentCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyInstanceCommand.js +2 -18
- package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/bdd.js +83 -0
- package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-route-53/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-es/models/Route53ServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.browser.js +5 -9
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.js +5 -11
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-route-53/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-route-53/dist-es/waiters/waitForResourceRecordSetsChanged.js +2 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/Route53.d.ts +2 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/Route53Client.d.ts +6 -7
- package/node_modules/@aws-sdk/client-route-53/dist-types/commandBuilder.d.ts +26 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ActivateKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/AssociateVPCWithHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeCidrCollectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeResourceRecordSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ChangeTagsForResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateCidrCollectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateQueryLoggingConfigCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateReusableDelegationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateTrafficPolicyVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/CreateVPCAssociationAuthorizationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeactivateKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteCidrCollectionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteKeySigningKeyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteQueryLoggingConfigCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteReusableDelegationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteTrafficPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DisableHostedZoneDNSSECCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/DisassociateVPCFromHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/EnableHostedZoneDNSSECCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetAccountLimitCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetChangeCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetCheckerIpRangesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetDNSSECCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetGeoLocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckCountCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckLastFailureReasonCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHealthCheckStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneCountCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetHostedZoneLimitCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetQueryLoggingConfigCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetReusableDelegationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetReusableDelegationSetLimitCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/GetTrafficPolicyInstanceCountCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrBlocksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrCollectionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListCidrLocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListGeoLocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHealthChecksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesByNameCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesByVPCCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListHostedZonesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListQueryLoggingConfigsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListResourceRecordSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListReusableDelegationSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTagsForResourcesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesByHostedZoneCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesByPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyInstancesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListTrafficPolicyVersionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/ListVPCAssociationAuthorizationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/TestDNSAnswerCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHealthCheckCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHostedZoneCommentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateHostedZoneFeaturesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateTrafficPolicyCommentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/commands/UpdateTrafficPolicyInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/models/Route53ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/Route53.d.ts +2 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/Route53Client.d.ts +9 -17
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commandBuilder.d.ts +58 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ActivateKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/AssociateVPCWithHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeCidrCollectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeResourceRecordSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ChangeTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateCidrCollectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateQueryLoggingConfigCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateReusableDelegationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateTrafficPolicyVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/CreateVPCAssociationAuthorizationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeactivateKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteCidrCollectionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteKeySigningKeyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteQueryLoggingConfigCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteReusableDelegationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteTrafficPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DeleteVPCAssociationAuthorizationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DisableHostedZoneDNSSECCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/DisassociateVPCFromHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/EnableHostedZoneDNSSECCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetAccountLimitCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetChangeCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetCheckerIpRangesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetDNSSECCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetGeoLocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckCountCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckLastFailureReasonCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHealthCheckStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneCountCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetHostedZoneLimitCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetQueryLoggingConfigCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetReusableDelegationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetReusableDelegationSetLimitCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/GetTrafficPolicyInstanceCountCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrBlocksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrCollectionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListCidrLocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListGeoLocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHealthChecksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesByNameCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesByVPCCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListHostedZonesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListQueryLoggingConfigsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListResourceRecordSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListReusableDelegationSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTagsForResourcesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesByHostedZoneCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesByPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyInstancesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListTrafficPolicyVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/ListVPCAssociationAuthorizationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/TestDNSAnswerCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHealthCheckCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHostedZoneCommentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateHostedZoneFeaturesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateTrafficPolicyCommentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/commands/UpdateTrafficPolicyInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/models/Route53ServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/waiters/waitForResourceRecordSetsChanged.d.ts +8 -4
- package/node_modules/@aws-sdk/client-route-53/dist-types/waiters/waitForResourceRecordSetsChanged.d.ts +5 -4
- package/node_modules/@aws-sdk/client-route-53/package.json +21 -53
- package/node_modules/@aws-sdk/client-s3/README.md +35 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5750 -2187
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +13 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +9 -13
- package/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commandBuilder.js +122 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +2 -30
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +2 -30
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +2 -29
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +758 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +17 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +7 -15
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +9 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +9 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +318 -143
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +48 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +16 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/commandBuilder.d.ts +106 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +18 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +10 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +31 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +41 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +114 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +42 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +14 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +136 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +13 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +42 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +133 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +9 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +34 -11
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +14 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +14 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +8 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +1 -0
- 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 +34 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +77 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +1464 -544
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +574 -36
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +12 -12
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +50 -51
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +10 -10
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +5 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +104 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +45 -23
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commandBuilder.d.ts +133 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +52 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +52 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +10 -18
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +40 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +1 -0
- 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 +23 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +42 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +193 -64
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +95 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +20 -14
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +76 -80
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +19 -13
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +5 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +8 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +9 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +8 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +9 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +6 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +6 -4
- package/node_modules/@aws-sdk/client-s3/package.json +27 -71
- package/node_modules/@aws-sdk/client-ses/dist-cjs/index.js +3013 -926
- package/node_modules/@aws-sdk/client-ses/dist-es/SES.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-es/SESClient.js +6 -9
- package/node_modules/@aws-sdk/client-ses/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CloneReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetEventDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateConfigurationSetTrackingOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/CreateTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetEventDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteConfigurationSetTrackingOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteIdentityPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DeleteVerifiedEmailAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeActiveReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeConfigurationSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/DescribeReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetAccountSendingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityDkimAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityMailFromDomainAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetIdentityVerificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetSendQuotaCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetSendStatisticsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/GetTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListConfigurationSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListCustomVerificationEmailTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListIdentitiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListIdentityPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListReceiptFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListReceiptRuleSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ListVerifiedEmailAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/PutConfigurationSetDeliveryOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/PutIdentityPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/ReorderReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendBounceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendBulkTemplatedEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendCustomVerificationEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendRawEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SendTemplatedEmailCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetActiveReceiptRuleSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityDkimEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityFeedbackForwardingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityHeadersInNotificationsEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityMailFromDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetIdentityNotificationTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/SetReceiptRulePositionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/TestRenderTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateAccountSendingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetEventDestinationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetSendingEnabledCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateConfigurationSetTrackingOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateCustomVerificationEmailTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateReceiptRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/UpdateTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyDomainDkimCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyDomainIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyEmailAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/commands/VerifyEmailIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/bdd.js +46 -0
- package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-ses/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-es/models/SESServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.browser.js +5 -9
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.js +5 -11
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-ses/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-ses/dist-es/waiters/waitForIdentityExists.js +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/SES.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ses/dist-types/SESClient.d.ts +6 -7
- package/node_modules/@aws-sdk/client-ses/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CloneReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetEventDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/CreateTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteIdentityPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptFilterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DeleteVerifiedEmailAddressCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeActiveReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeConfigurationSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/DescribeReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetAccountSendingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityDkimAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityNotificationAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetIdentityVerificationAttributesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetSendQuotaCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetSendStatisticsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/GetTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListConfigurationSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListIdentitiesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListIdentityPoliciesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListReceiptFiltersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListReceiptRuleSetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListTemplatesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ListVerifiedEmailAddressesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/PutIdentityPolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/ReorderReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendBounceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendBulkTemplatedEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendCustomVerificationEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendRawEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SendTemplatedEmailCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetActiveReceiptRuleSetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityDkimEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityMailFromDomainCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetIdentityNotificationTopicCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/SetReceiptRulePositionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/TestRenderTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateAccountSendingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateReceiptRuleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/UpdateTemplateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyDomainDkimCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyDomainIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyEmailAddressCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/commands/VerifyEmailIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/models/SESServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/SES.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/SESClient.d.ts +9 -17
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CloneReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetEventDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateConfigurationSetTrackingOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/CreateTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetEventDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteConfigurationSetTrackingOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteIdentityPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptFilterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DeleteVerifiedEmailAddressCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeActiveReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeConfigurationSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/DescribeReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetAccountSendingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityDkimAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityMailFromDomainAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityNotificationAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetIdentityVerificationAttributesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetSendQuotaCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetSendStatisticsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListConfigurationSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListCustomVerificationEmailTemplatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListIdentitiesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListIdentityPoliciesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListReceiptFiltersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListReceiptRuleSetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListTemplatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ListVerifiedEmailAddressesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/PutConfigurationSetDeliveryOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/PutIdentityPolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/ReorderReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendBounceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendBulkTemplatedEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendCustomVerificationEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendEmailCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendRawEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SendTemplatedEmailCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetActiveReceiptRuleSetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityDkimEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityFeedbackForwardingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityHeadersInNotificationsEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityMailFromDomainCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetIdentityNotificationTopicCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/SetReceiptRulePositionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/TestRenderTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateAccountSendingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetEventDestinationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetReputationMetricsEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetSendingEnabledCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateConfigurationSetTrackingOptionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateCustomVerificationEmailTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateReceiptRuleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/UpdateTemplateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyDomainDkimCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyDomainIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyEmailAddressCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/commands/VerifyEmailIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/models/SESServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/waiters/waitForIdentityExists.d.ts +12 -4
- package/node_modules/@aws-sdk/client-ses/dist-types/waiters/waitForIdentityExists.d.ts +5 -4
- package/node_modules/@aws-sdk/client-ses/package.json +19 -51
- package/node_modules/@aws-sdk/client-ssm/README.md +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +9401 -1940
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSM.js +17 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/SSMClient.js +6 -9
- package/node_modules/@aws-sdk/client-ssm/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAccessTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCloudConnectorsCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAccessRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ValidateCloudConnectorCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/index.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/SSMServiceException.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/enums.js +34 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/models/errors.js +50 -36
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ListCloudConnectorsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/ValidateCloudConnectorPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/pagination/index.js +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +5 -9
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +5 -11
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/client-ssm/dist-es/schemas/schemas_0.js +232 -45
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +59 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSMClient.d.ts +14 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateCloudConnectorCommand.d.ts +108 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteCloudConnectorCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +5 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +6 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +17 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +17 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCloudConnectorsCommand.d.ts +93 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +10 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +17 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateCloudConnectorCommand.d.ts +99 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ValidateCloudConnectorCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/SSMServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/enums.d.ts +66 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/errors.d.ts +62 -48
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_0.d.ts +268 -360
- package/node_modules/@aws-sdk/client-ssm/dist-types/models/models_1.d.ts +601 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ListCloudConnectorsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/ValidateCloudConnectorPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +119 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSMClient.d.ts +47 -19
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +12 -17
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCloudConnectorsCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesCommand.d.ts +9 -18
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAccessRequestCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ValidateCloudConnectorCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/SSMServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/enums.d.ts +42 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/errors.d.ts +27 -21
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_0.d.ts +78 -59
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/models/models_1.d.ts +123 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ListCloudConnectorsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/ValidateCloudConnectorPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +11 -5
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +10 -4
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +5 -4
- package/node_modules/@aws-sdk/client-ssm/package.json +15 -47
- package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +1 -3
- package/node_modules/@aws-sdk/core/client.d.ts +1 -3
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +19 -2236
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +923 -7
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +31 -27
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +211 -189
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +57 -0
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
- 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/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -6
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.browser.js +36 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +26 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.native.js +37 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-host-header/hostHeaderMiddleware.js +33 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/configuration.js +7 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.js +3 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.js +58 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/check-features.js +49 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/middleware-user-agent/user-agent-middleware.js +82 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/awsRegionConfig.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/region-config-resolver/stsRegionDefaultResolver.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/util-endpoints/aws.js +10 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/isVirtualHostableS3Bucket.js +25 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partition.js +41 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/isIpAddress.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveDefaultAwsRegionalEndpointsConfig.js +21 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/resolveEndpoint.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/types/EndpointError.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.browser.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/defaultUserAgent.js +31 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.js +9 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +12 -7
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/index.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/getDateHeader.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/utils/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/ProtocolLib.js +12 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/UnionSerde.js +4 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/cbor/AwsSmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/common.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/index.js +19 -20
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsJsonRpcProtocol.js +11 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/AwsRestJsonProtocol.js +3 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +7 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +16 -12
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/awsExpectUnion.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/parseJsonBody.js +43 -28
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/AwsQueryProtocol.js +4 -9
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +4 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeDeserializer.js +2 -2
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +6 -5
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/parseXmlBody.js +1 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/index.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/util/util-format-url/format-url.js +29 -0
- package/node_modules/@aws-sdk/core/dist-types/api-extractor-type-index.d.ts +3 -1
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +13 -14
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/account-id-endpoint/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +1 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.browser.d.ts +47 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +38 -4
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.native.d.ts +48 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/configuration.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/middleware-recursion-detection/recursionDetectionMiddleware.d.ts +10 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/awsRegionConfig.d.ts +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/region-config-resolver/stsRegionDefaultResolver.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/util-endpoints/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/aws/partitions.d.ts +638 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/RuleSetObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-endpoints/types/shared.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +13 -0
- 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/index.d.ts +5 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/index.d.ts +3 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/index.d.ts +22 -20
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/JsonShapeSerializer.d.ts +2 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/protocols/json/parseJsonBody.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/util/util-format-url/format-url.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/api-extractor-type-index.d.ts +0 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +65 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/NodeAccountIdEndpointModeConfigOptions.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/account-id-endpoint/index.d.ts +16 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.browser.d.ts +116 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +123 -4
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.native.d.ts +116 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.d.ts +4 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/awsRegionConfig.d.ts +8 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/region-config-resolver/stsRegionDefaultResolver.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/aws.d.ts +2 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/aws/partitions.d.ts +647 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/lib/isIpAddress.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/resolveEndpoint.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointError.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/EndpointRuleObject.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/ErrorRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/RuleSetObject.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/TreeRuleObject.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-endpoints/types/shared.d.ts +12 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/createUserAgentStringParsingProvider.d.ts +9 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.browser.d.ts +7 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/util-user-agent-node/nodeAppIdConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/NODE_AUTH_SCHEME_PREFERENCE_OPTIONS.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/index.d.ts +23 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/aws_sdk/resolveAwsSdkSigV4AConfig.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/index.d.ts +24 -2
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/httpAuthSchemes/utils/index.d.ts +3 -3
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/ProtocolLib.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/index.d.ts +31 -20
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/JsonShapeSerializer.d.ts +1 -1
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/protocols/json/parseJsonBody.d.ts +5 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/index.d.ts +3 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/util/util-format-url/format-url.d.ts +4 -0
- package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +1 -3
- package/node_modules/@aws-sdk/core/package.json +40 -23
- package/node_modules/@aws-sdk/core/protocols.d.ts +1 -3
- package/node_modules/@aws-sdk/core/util.d.ts +5 -0
- package/node_modules/@aws-sdk/core/util.js +5 -0
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-env/dist-types/ts3.4/index.d.ts +10 -1
- package/node_modules/@aws-sdk/credential-provider-env/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +179 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.browser.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js +29 -17
- package/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js +4 -4
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/dist-types/ts3.4/fromHttp/requestHelpers.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-http/package.json +23 -18
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -42
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/fromIni.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-ini/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +18 -19
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -34
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js +2 -3
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/index.d.ts +2 -8
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/ts3.4/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/dist-types/types.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-login/package.json +11 -13
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +28 -20
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js +12 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-node/dist-types/ts3.4/index.d.ts +6 -1
- package/node_modules/@aws-sdk/credential-provider-node/package.json +16 -17
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -14
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js +1 -2
- 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/index.d.ts +2 -4
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/fromProcess.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-process/dist-types/ts3.4/index.d.ts +2 -1
- package/node_modules/@aws-sdk/credential-provider-process/package.json +10 -11
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +26 -26
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js +3 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +6 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/fromSSO.d.ts +5 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/index.d.ts +5 -16
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/fromSSO.d.ts +1 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-types/ts3.4/index.d.ts +5 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +15 -14
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +55 -24
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js +1 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/index.d.ts +4 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-types/ts3.4/index.d.ts +7 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +12 -14
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-types/index.d.ts +4 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/dist-types/ts3.4/index.d.ts +12 -2
- package/node_modules/@aws-sdk/middleware-sdk-route53/package.json +9 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -567
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +1040 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +213 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/NodeUseArnRegionConfigOptions.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.browser.js +30 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint/bucketEndpointMiddleware.js +81 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-check-content-length-header/check-content-length-header.js +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-expect-continue/middleware-expect-continue.js +41 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-configuration/s3Configuration.js +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-expires/s3-expires-middleware.js +33 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.js +3 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/constants.js +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.js +38 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-s3-express/functions/s3ExpressMiddleware.js +41 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.js +51 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/to-stream/toStream.browser.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/to-stream/toStream.js +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/configurations.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/constants.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/index.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.js +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.js +18 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.js +94 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/update-arnables-request.js +31 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.js +26 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/NodeUseArnRegionConfigOptions.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.browser.d.ts +36 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.d.ts +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint/bucketHostnameUtils.d.ts +174 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-configuration/s3Configuration.d.ts +79 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/constants.d.ts +37 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +27 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts +21 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts +14 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/to-stream/toStream.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/to-stream/toStream.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/configurations.d.ts +47 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/index.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +27 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +39 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/NodeDisableMultiregionAccessPointConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/NodeUseArnRegionConfigOptions.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.browser.d.ts +103 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.d.ts +107 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint/bucketHostnameUtils.d.ts +80 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts +22 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-configuration/s3Configuration.d.ts +33 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/classes/SignatureV4S3Express.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/constants.d.ts +11 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +40 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/to-stream/toStream.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/to-stream/toStream.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/configurations.d.ts +23 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/index.d.ts +26 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +22 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +63 -24
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
- package/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +525 -85
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +450 -75
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +382 -75
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +576 -75
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +748 -72
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentity.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/CognitoIdentityClient.js +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +61 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/models/CognitoIdentityServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +73 -41
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/Signin.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/SigninClient.js +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commandBuilder.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +90 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/SigninServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +36 -59
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSO.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/SSOClient.js +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/models/SSOServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +32 -32
- 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 +6 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +5 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +7 -15
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +5 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +50 -50
- 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 +7 -9
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +91 -13
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultStsRoleAssumers.js +1 -7
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +85 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/STSServiceException.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +6 -11
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +15 -18
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +13 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeExtensions.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +63 -80
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/CognitoIdentityClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -6
- 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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/SigninClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/SSOClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -6
- 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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -6
- 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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -0
- 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/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +6 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/STSClient.d.ts +6 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +16 -18
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +0 -9
- 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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +1 -0
- 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 +2 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +10 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +16 -10
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +10 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/CognitoIdentityClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +9 -16
- 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 +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/CognitoIdentityServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/SigninClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +5 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/SigninServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/SSOClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +5 -8
- 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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/SSOServiceException.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +5 -8
- 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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
- 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/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +13 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +12 -6
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +14 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/STSClient.d.ts +9 -17
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +20 -19
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +9 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +0 -3
- 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/extensionConfiguration.d.ts +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
- 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 +2 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +24 -12
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +47 -22
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +25 -13
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +9 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +16 -45
- package/node_modules/@aws-sdk/nested-clients/signin.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sts.d.ts +1 -3
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +41 -7
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4SignWithCredentials.js +36 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/index.js +3 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4MultiRegion.d.ts +1 -1
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/SignatureV4SignWithCredentials.d.ts +20 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/index.d.ts +3 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/SignatureV4SignWithCredentials.d.ts +21 -0
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-types/ts3.4/index.d.ts +9 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +12 -13
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -29
- package/node_modules/@aws-sdk/token-providers/dist-es/fromEnvSigningName.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js +1 -2
- package/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/index.js +4 -4
- package/node_modules/@aws-sdk/token-providers/dist-es/nodeProvider.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js +1 -1
- 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 +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/getNewSsoOidcToken.d.ts +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/index.d.ts +7 -4
- 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 +1 -1
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/index.d.ts +7 -4
- package/node_modules/@aws-sdk/token-providers/dist-types/ts3.4/writeSSOTokenToFile.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 +11 -12
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/dist-es/endpoint.js +1 -1
- package/node_modules/@aws-sdk/types/dist-es/identity/index.js +1 -5
- package/node_modules/@aws-sdk/types/dist-es/index.js +4 -34
- package/node_modules/@aws-sdk/types/dist-es/transfer.js +1 -1
- package/node_modules/@aws-sdk/types/dist-types/abort.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/auth.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts +2 -2
- package/node_modules/@aws-sdk/types/dist-types/checksum.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/client.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/command.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/connection.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/crypto.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/encode.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/endpoint.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/eventStream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/http.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts +7 -7
- package/node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/identity/index.d.ts +5 -5
- package/node_modules/@aws-sdk/types/dist-types/index.d.ts +42 -34
- package/node_modules/@aws-sdk/types/dist-types/middleware.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/pagination.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/profile.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/response.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/retry.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/serde.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/shapes.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/signature.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/stream.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/transfer.d.ts +2 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/auth.d.ts +2 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/endpoint.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/AwsCredentialIdentity.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/identity/index.d.ts +17 -5
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/index.d.ts +225 -34
- package/node_modules/@aws-sdk/types/dist-types/ts3.4/transfer.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/uri.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/util.d.ts +1 -1
- package/node_modules/@aws-sdk/types/dist-types/waiter.d.ts +1 -1
- package/node_modules/@aws-sdk/types/package.json +7 -7
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +236 -5
- package/node_modules/@aws-sdk/xml-builder/dist-es/index.js +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +233 -19
- package/node_modules/@aws-sdk/xml-builder/dist-types/index.d.ts +2 -11
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +2 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +11 -11
- package/node_modules/@selderee/plugin-htmlparser2/LICENSE +1 -1
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.cjs +51 -4
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.cts +25 -0
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.mts +25 -0
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.mjs +51 -2
- package/node_modules/@selderee/plugin-htmlparser2/package.json +20 -9
- package/node_modules/@smithy/core/cbor.d.ts +1 -3
- package/node_modules/@smithy/core/cbor.js +0 -1
- package/node_modules/@smithy/core/checksum.d.ts +5 -0
- package/node_modules/@smithy/core/checksum.js +5 -0
- package/node_modules/@smithy/core/client.d.ts +5 -0
- package/node_modules/@smithy/core/client.js +5 -0
- package/node_modules/@smithy/core/config.d.ts +5 -0
- package/node_modules/@smithy/core/config.js +5 -0
- package/node_modules/@smithy/core/dist-cjs/index.js +15 -18
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +576 -417
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +413 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +577 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +440 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1145 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +374 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +779 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +363 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +826 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +851 -15
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +867 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +645 -12
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +230 -66
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +816 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +843 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +25 -12
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +1397 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +1047 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +1397 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +182 -0
- package/node_modules/@smithy/core/dist-es/index.js +8 -8
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +42 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +23 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/DefaultIdentityProviderConfig.js +14 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +34 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +11 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/util-identity-and-auth/index.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/cbor/CborCodec.js +24 -14
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +325 -269
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +191 -103
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/index.js +3 -3
- package/node_modules/@smithy/core/dist-es/submodules/cbor/parseCborBody.js +11 -6
- package/node_modules/@smithy/core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-blob-browser/blobHasher.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/HashCalculator.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/hash-stream-node/fileStreamHasher.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js +179 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js +59 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js +71 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/index.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client.js +51 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/command.js +131 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/checksum.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/createWaiter.js +48 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/util-waiter/poller.js +87 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveCustomEndpointsConfig.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/checkRegion.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.js +19 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.browser.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/index.native.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/configLoader.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromEnv.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromSharedConfigFiles.js +24 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/node-config-provider/fromStatic.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/property-provider/fromValue.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getConfigFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getCredentialsFilepath.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getHomeDir.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFilepath.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.js +11 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/shared-ini-file-loader/loadSharedConfigFiles.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.browser.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/index.js +22 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.js +65 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.js +31 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +47 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/getEndpointPlugin.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.js +25 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/service-customizations/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/debug/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/decideEndpoint.js +42 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/coalesce.js +8 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/getAttr.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/index.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/ite.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/split.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/lib/substring.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/resolveEndpoint.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/types/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/endpointFunctions.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateCondition.js +16 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateConditions.js +26 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateEndpointRule.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateExpression.js +46 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateRules.js +42 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/evaluateTemplate.js +33 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getEndpointProperties.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/getReferenceValue.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/util-endpoints/utils/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/EventStreamSerde.js +17 -9
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js +67 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/HeaderMarshaller.js +184 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/Int64.js +44 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js +31 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/EventStreamMarshaller.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde/utils.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.js +30 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.browser.js +14 -0
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/index.js +14 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpBindingProtocol.js +12 -8
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +23 -10
- package/node_modules/@smithy/core/dist-es/submodules/protocols/RpcProtocol.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/protocols/collect-stream-body.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/index.js +25 -13
- package/node_modules/@smithy/core/dist-es/submodules/protocols/middleware-content-length/contentLengthMiddleware.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/querystring-builder/buildQueryString.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/protocols/requestBuilder.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/FromStringShapeDeserializer.js +1 -3
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/HttpInterceptingShapeDeserializer.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/serde/ToStringShapeSerializer.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.browser.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/index.js +20 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/configurations.js +63 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/omitRetryHeadersMiddleware.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/parseRetryAfterHeader.js +49 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +22 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +95 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/defaultRetryQuota.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/delayDecider.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/retryDecider.js +7 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retryMiddleware.js +108 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/constants.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/service-error-classification/service-error-classification.js +44 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/AdaptiveRetryStrategy.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/ConfiguredRetryStrategy.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +111 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRetryToken.js +28 -0
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/StandardRetryStrategy.js +97 -0
- package/node_modules/@smithy/core/dist-es/submodules/schema/TypeRegistry.js +18 -1
- package/node_modules/@smithy/core/dist-es/submodules/schema/index.js +14 -14
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaDeserializationMiddleware.js +3 -4
- package/node_modules/@smithy/core/dist-es/submodules/schema/middleware/schemaSerializationMiddleware.js +1 -2
- package/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/hash-node/hash-node.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +43 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +42 -10
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +45 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/middleware-serde/deserializerMiddleware.js +58 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/parse-utils.js +6 -3
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.browser.js +36 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/fromBase64.js +12 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-base64/toBase64.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-body-length/calculateBodyLength.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-buffer-from/buffer-from.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.js +23 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +68 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.browser.js +35 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/createChecksumStream.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/createBufferedReadable.js +57 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +39 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.browser.js +64 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/sdk-stream-mixin.js +50 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/splitStream.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +33 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/fromUtf8.js +5 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js +13 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUtf8.js +10 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/uuid/v4.js +32 -0
- package/node_modules/@smithy/core/dist-es/submodules/transport/index.js +9 -0
- package/node_modules/@smithy/core/dist-es/submodules/transport/parseUrl.js +18 -0
- package/node_modules/@smithy/core/dist-es/submodules/transport/toEndpointV1.js +17 -0
- package/node_modules/@smithy/core/dist-types/index.d.ts +14 -8
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-auth-scheme/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/middleware-http-signing/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/pagination/createPaginator.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/httpAuthSchemes/index.d.ts +3 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/legacy-root-exports/util-identity-and-auth/memoizeIdentityProvider.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/setFeature.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +9 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-types.d.ts +4 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/cbor/index.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/cbor/parseCborBody.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Js.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/HashCalculator.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/fileStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/hash-stream-node/readableStreamHasher.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Js.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Node.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +27 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client.d.ts +84 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +118 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/create-aggregated-client.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/default-error-handler.d.ts +15 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/emitWarningIfUnsupportedVersion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/exceptions.d.ts +42 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/checksum.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/extensions/defaultExtensionConfiguration.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-array-if-single-item.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/get-value-from-text-node.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/object-mapping.d.ts +163 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/ser-utils.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/serde-json.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/createWaiter.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/poller.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/utils/validate.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/util-waiter/waiter.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/endpointsConfig/resolveEndpointsConfig.d.ts +57 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/config.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/constants.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/defaultsModeConfig.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.browser.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/resolveDefaultsModeConfig.native.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.browser.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.d.ts +36 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/index.native.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/configLoader.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/node-config-provider/fromSharedConfigFiles.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/CredentialsProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/ProviderError.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/TokenProviderError.d.ts +29 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/chain.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/property-provider/fromValue.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getConfigData.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSSOTokenFromFile.d.ts +53 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/getSsoSessionData.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseIni.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/shared-ini-file-loader/parseKnownFiles.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +24 -1
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromConfig.browser.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointUrlConfig.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/toEndpointV1.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/resolveEndpointConfig.d.ts +110 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/service-customizations/index.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/bdd/BinaryDecisionDiagram.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/cache/EndpointCache.d.ts +34 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/debug/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/getEndpointUrlConfig.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/coalesce.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/index.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/ite.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/parseURL.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/lib/split.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/resolveEndpoint.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/index.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/types/shared.d.ts +25 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/endpointFunctions.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateCondition.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateConditions.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateErrorRule.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateExpression.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/evaluateRules.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointHeaders.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointProperties.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getEndpointUrl.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/getReferenceValue.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/util-endpoints/utils/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-codec/EventStreamCodec.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.browser.d.ts +46 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/EventStreamMarshaller.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde/utils.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/EventStreamMarshaller.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/eventstream-serde-universal/getUnmarshalledStream.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.browser.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/event-streams/index.d.ts +23 -1
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpBindingProtocol.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/collect-stream-body.d.ts +3 -3
- package/node_modules/@smithy/core/dist-types/submodules/protocols/extended-encode-uri-component.d.ts +2 -2
- package/node_modules/@smithy/core/dist-types/submodules/protocols/index.d.ts +27 -13
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/Field.d.ts +49 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/extensions/httpExtensionConfiguration.d.ts +33 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/protocol-http/httpHandler.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/requestBuilder.d.ts +3 -2
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.browser.d.ts +26 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/index.d.ts +20 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/configurations.d.ts +71 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.browser.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/isStreamingPayload/isStreamingPayload.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +23 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/middleware-retry/retryMiddleware.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/service-error-classification/service-error-classification.d.ts +30 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/AdaptiveRetryStrategy.d.ts +38 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/ConfiguredRetryStrategy.d.ts +31 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/DefaultRetryToken.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/StandardRetryStrategy.d.ts +56 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/constants.d.ts +60 -0
- package/node_modules/@smithy/core/dist-types/submodules/retry/util-retry/retries-2026-config.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/index.d.ts +14 -14
- package/node_modules/@smithy/core/dist-types/submodules/schema/schemas/StructureSchema.d.ts +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/serde/concatBytes.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/date-utils.d.ts +7 -19
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +41 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +39 -10
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +39 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/lazy-json.d.ts +4 -6
- package/node_modules/@smithy/core/dist-types/submodules/serde/parse-utils.d.ts +31 -51
- package/node_modules/@smithy/core/dist-types/submodules/serde/schema-serde-lib/schema-date-utils.d.ts +3 -12
- package/node_modules/@smithy/core/dist-types/submodules/serde/split-every.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-buffer-from/buffer-from.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/blob/Uint8ArrayBlobAdapter.d.ts +18 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +77 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.browser.d.ts +14 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/createChecksumStream.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.browser.d.ts +51 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/createBufferedReadable.d.ts +16 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/getAwsChunkedEncodingStream.d.ts +10 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/headStream.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/sdk-stream-mixin.d.ts +8 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/splitStream.d.ts +11 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-utf8/toUint8Array.browser.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/uuid/v4.d.ts +24 -0
- package/node_modules/@smithy/core/dist-types/submodules/transport/getSmithyContext.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/transport/httpRequest.d.ts +55 -0
- package/node_modules/@smithy/core/dist-types/submodules/transport/index.d.ts +10 -0
- package/node_modules/@smithy/core/endpoints.d.ts +1 -3
- package/node_modules/@smithy/core/endpoints.js +0 -1
- package/node_modules/@smithy/core/event-streams.d.ts +1 -3
- package/node_modules/@smithy/core/event-streams.js +0 -1
- package/node_modules/@smithy/core/package.json +135 -26
- package/node_modules/@smithy/core/protocols.d.ts +1 -3
- package/node_modules/@smithy/core/protocols.js +0 -1
- package/node_modules/@smithy/core/retry.d.ts +5 -0
- package/node_modules/@smithy/core/retry.js +5 -0
- package/node_modules/@smithy/core/schema.d.ts +1 -3
- package/node_modules/@smithy/core/schema.js +0 -1
- package/node_modules/@smithy/core/serde.d.ts +1 -3
- package/node_modules/@smithy/core/serde.js +0 -1
- package/node_modules/@smithy/core/transport.d.ts +5 -0
- package/node_modules/@smithy/core/transport.js +5 -0
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +55 -57
- package/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js +16 -15
- package/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js +2 -3
- package/node_modules/@smithy/credential-provider-imds/dist-es/index.js +3 -4
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +3 -4
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js +2 -2
- 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/error/InstanceMetadataV1FallbackError.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromContainerMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/fromInstanceMetadata.d.ts +3 -3
- package/node_modules/@smithy/credential-provider-imds/dist-types/index.d.ts +5 -4
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/node-http.d.ts +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/utils/staticStabilityProvider.d.ts +1 -2
- package/node_modules/@smithy/credential-provider-imds/package.json +7 -9
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -62
- package/node_modules/@smithy/fetch-http-handler/dist-es/fetch-http-handler.js +1 -2
- package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -2
- package/node_modules/@smithy/fetch-http-handler/dist-types/create-request.d.ts +2 -1
- package/node_modules/@smithy/fetch-http-handler/dist-types/fetch-http-handler.d.ts +7 -8
- package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +10 -12
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +259 -181
- package/node_modules/@smithy/node-http-handler/dist-es/get-transformed-headers.js +1 -1
- package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +50 -0
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -3
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +33 -22
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +90 -41
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-pool.js +32 -18
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +50 -46
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2.js +2 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-https.js +2 -0
- package/node_modules/@smithy/node-http-handler/dist-es/write-request-body.js +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/get-transformed-headers.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +46 -0
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -3
- 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 +36 -14
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-pool.d.ts +33 -9
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +21 -8
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-https.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/set-request-timeout.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/timing.d.ts +2 -1
- package/node_modules/@smithy/node-http-handler/dist-types/write-request-body.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +8 -9
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +178 -177
- package/node_modules/@smithy/signature-v4/dist-es/HeaderFormatter.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4.js +14 -9
- package/node_modules/@smithy/signature-v4/dist-es/SignatureV4Base.js +3 -4
- package/node_modules/@smithy/signature-v4/dist-es/credentialDerivation.js +1 -2
- package/node_modules/@smithy/signature-v4/dist-es/getCanonicalQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/getPayloadHash.js +1 -3
- package/node_modules/@smithy/signature-v4/dist-es/index.js +4 -4
- package/node_modules/@smithy/signature-v4/dist-es/moveHeadersToQuery.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-es/prepareRequest.js +1 -1
- package/node_modules/@smithy/signature-v4/dist-types/HeaderFormatter.d.ts +2 -1
- package/node_modules/@smithy/signature-v4/dist-types/SignatureV4.d.ts +4 -5
- package/node_modules/@smithy/signature-v4/dist-types/index.d.ts +6 -5
- package/node_modules/@smithy/signature-v4/dist-types/signature-v4a-container.d.ts +2 -3
- package/node_modules/@smithy/signature-v4/package.json +7 -13
- package/node_modules/@smithy/types/README.md +3 -3
- package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
- package/node_modules/@smithy/types/dist-es/auth/index.js +2 -6
- package/node_modules/@smithy/types/dist-es/connection/index.js +1 -3
- package/node_modules/@smithy/types/dist-es/endpoints/index.js +1 -5
- package/node_modules/@smithy/types/dist-es/extensions/index.js +1 -2
- package/node_modules/@smithy/types/dist-es/identity/index.js +1 -4
- package/node_modules/@smithy/types/dist-es/index.js +7 -43
- package/node_modules/@smithy/types/dist-types/abort.d.ts +5 -7
- package/node_modules/@smithy/types/dist-types/auth/auth.d.ts +6 -4
- package/node_modules/@smithy/types/dist-types/auth/index.d.ts +7 -6
- package/node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts +7 -10
- package/node_modules/@smithy/types/dist-types/checksum.d.ts +4 -6
- package/node_modules/@smithy/types/dist-types/client.d.ts +8 -8
- 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/index.d.ts +3 -3
- package/node_modules/@smithy/types/dist-types/crypto.d.ts +6 -8
- package/node_modules/@smithy/types/dist-types/downlevel-ts3.4/transform/type-transform.d.ts +6 -7
- package/node_modules/@smithy/types/dist-types/endpoints/index.d.ts +5 -5
- package/node_modules/@smithy/types/dist-types/eventStream.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts +9 -10
- package/node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/extensions/index.d.ts +6 -4
- package/node_modules/@smithy/types/dist-types/externals-check/browser-externals-check.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/http/httpHandlerInitialization.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/http.d.ts +18 -21
- package/node_modules/@smithy/types/dist-types/identity/index.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/index.d.ts +52 -43
- package/node_modules/@smithy/types/dist-types/logger.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/metrics.d.ts +93 -0
- package/node_modules/@smithy/types/dist-types/middleware.d.ts +28 -27
- package/node_modules/@smithy/types/dist-types/pagination.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/retry.d.ts +25 -0
- package/node_modules/@smithy/types/dist-types/serde.d.ts +10 -10
- package/node_modules/@smithy/types/dist-types/shapes.d.ts +9 -12
- package/node_modules/@smithy/types/dist-types/signature.d.ts +24 -7
- package/node_modules/@smithy/types/dist-types/stream.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts +7 -11
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts +23 -29
- package/node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts +9 -19
- package/node_modules/@smithy/types/dist-types/transfer.d.ts +2 -1
- package/node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts +4 -4
- package/node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts +14 -18
- package/node_modules/@smithy/types/dist-types/transform/exact.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/transform/no-undefined.d.ts +12 -12
- package/node_modules/@smithy/types/dist-types/transform/type-transform.d.ts +14 -9
- package/node_modules/@smithy/types/dist-types/uri.d.ts +2 -2
- package/node_modules/@smithy/types/dist-types/util.d.ts +28 -28
- package/node_modules/@smithy/types/package.json +10 -10
- package/node_modules/@zone-eu/mailsplit/index.d.ts +97 -0
- package/node_modules/@zone-eu/mailsplit/index.js +4 -1
- package/node_modules/@zone-eu/mailsplit/lib/chunked-passthrough.d.ts +59 -0
- package/node_modules/@zone-eu/mailsplit/lib/chunked-passthrough.js +16 -0
- package/node_modules/@zone-eu/mailsplit/lib/flowed-decoder.d.ts +59 -0
- package/node_modules/@zone-eu/mailsplit/lib/flowed-decoder.js +23 -6
- package/node_modules/@zone-eu/mailsplit/lib/headers.d.ts +117 -0
- package/node_modules/@zone-eu/mailsplit/lib/headers.js +147 -28
- package/node_modules/@zone-eu/mailsplit/lib/message-joiner.d.ts +56 -0
- package/node_modules/@zone-eu/mailsplit/lib/message-joiner.js +18 -0
- package/node_modules/@zone-eu/mailsplit/lib/message-splitter.d.ts +59 -0
- package/node_modules/@zone-eu/mailsplit/lib/message-splitter.js +68 -9
- package/node_modules/@zone-eu/mailsplit/lib/mime-node.d.ts +144 -0
- package/node_modules/@zone-eu/mailsplit/lib/mime-node.js +129 -47
- package/node_modules/@zone-eu/mailsplit/lib/node-rewriter.d.ts +105 -0
- package/node_modules/@zone-eu/mailsplit/lib/node-rewriter.js +66 -21
- package/node_modules/@zone-eu/mailsplit/lib/node-streamer.d.ts +105 -0
- package/node_modules/@zone-eu/mailsplit/lib/node-streamer.js +66 -13
- package/node_modules/@zone-eu/mailsplit/lib/types.d.ts +285 -0
- package/node_modules/@zone-eu/mailsplit/package.json +16 -6
- package/node_modules/cdk-nag/.devcontainer.json +6 -1
- package/node_modules/cdk-nag/.jsii +188 -180
- package/node_modules/cdk-nag/.jsii.tabl.json +1 -0
- package/node_modules/cdk-nag/RULES.md +2 -1
- package/node_modules/cdk-nag/lib/ignore-suppression-conditions.js +5 -5
- package/node_modules/cdk-nag/lib/nag-logger.js +9 -5
- package/node_modules/cdk-nag/lib/nag-pack.js +1 -1
- package/node_modules/cdk-nag/lib/nag-rules.js +1 -1
- package/node_modules/cdk-nag/lib/nag-suppressions.js +1 -1
- package/node_modules/cdk-nag/lib/packs/aws-solutions.js +10 -10
- package/node_modules/cdk-nag/lib/packs/hipaa-security.js +1 -1
- package/node_modules/cdk-nag/lib/packs/nist-800-53-r4.js +1 -1
- package/node_modules/cdk-nag/lib/packs/nist-800-53-r5.js +1 -1
- package/node_modules/cdk-nag/lib/packs/pci-dss-321.js +1 -1
- package/node_modules/cdk-nag/lib/packs/serverless.js +1 -1
- package/node_modules/cdk-nag/lib/rules/apigw/APIGWStructuredLogging.js +2 -2
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolPlusTier.d.ts +8 -0
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolPlusTier.js +25 -0
- package/node_modules/cdk-nag/lib/rules/cognito/index.d.ts +1 -1
- package/node_modules/cdk-nag/lib/rules/cognito/index.js +4 -4
- package/node_modules/cdk-nag/lib/rules/index.d.ts +1 -0
- package/node_modules/cdk-nag/lib/rules/index.js +3 -2
- package/node_modules/cdk-nag/lib/rules/mwaa/MWAAAllLoggingInfo.d.ts +9 -0
- package/node_modules/cdk-nag/lib/rules/mwaa/MWAAAllLoggingInfo.js +78 -0
- package/node_modules/cdk-nag/lib/rules/mwaa/index.d.ts +1 -0
- package/node_modules/cdk-nag/lib/rules/mwaa/index.js +10 -0
- package/node_modules/cdk-nag/lib/rules/s3/S3DefaultEncryptionKMS.js +1 -4
- package/node_modules/cdk-nag/package.json +55 -41
- package/node_modules/cdk-nag/rosetta/default.ts-fixture +13 -0
- package/node_modules/deepmerge-ts/CHANGELOG.md +390 -0
- package/node_modules/deepmerge-ts/LICENSE +29 -0
- package/node_modules/deepmerge-ts/README.md +185 -0
- package/node_modules/deepmerge-ts/dist/index.cjs +619 -0
- package/node_modules/deepmerge-ts/dist/index.d.cts +832 -0
- package/node_modules/deepmerge-ts/dist/index.d.mts +832 -0
- package/node_modules/deepmerge-ts/dist/index.mjs +611 -0
- package/node_modules/deepmerge-ts/package.json +154 -0
- package/node_modules/html-to-text/CHANGELOG.md +38 -1
- package/node_modules/html-to-text/LICENSE +1 -1
- package/node_modules/html-to-text/README.md +47 -39
- package/node_modules/html-to-text/lib/html-to-text.cjs +104 -85
- package/node_modules/html-to-text/lib/html-to-text.mjs +104 -79
- package/node_modules/html-to-text/package.json +22 -14
- package/node_modules/htmlparser2/README.md +5 -6
- package/node_modules/htmlparser2/WritableStream.js +3 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.js +527 -0
- package/node_modules/htmlparser2/dist/commonjs/Parser.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js +805 -0
- package/node_modules/htmlparser2/dist/commonjs/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts +15 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.js +36 -0
- package/node_modules/htmlparser2/dist/commonjs/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/index.d.ts +54 -0
- package/node_modules/htmlparser2/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/index.js +123 -0
- package/node_modules/htmlparser2/dist/commonjs/index.js.map +1 -0
- package/node_modules/htmlparser2/dist/commonjs/package.json +3 -0
- package/node_modules/htmlparser2/dist/esm/Parser.d.ts +198 -0
- package/node_modules/htmlparser2/dist/esm/Parser.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/Parser.js +490 -0
- package/node_modules/htmlparser2/dist/esm/Parser.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts +126 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.js +801 -0
- package/node_modules/htmlparser2/dist/esm/Tokenizer.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts +15 -0
- package/node_modules/htmlparser2/dist/esm/WritableStream.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/WritableStream.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/index.d.ts +54 -0
- package/node_modules/htmlparser2/dist/esm/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/dist/esm/index.js +74 -0
- package/node_modules/htmlparser2/dist/esm/index.js.map +1 -0
- package/node_modules/htmlparser2/dist/esm/package.json +3 -0
- package/node_modules/htmlparser2/node_modules/entities/decode.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/decode.js +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts +19 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js +77 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode-codepoint.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts +205 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js +568 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/decode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts +22 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js +92 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/encode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts +46 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js +138 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/escape.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js +7 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/decode-data-xml.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js +14 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/generated/encode-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts +96 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js +131 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/index.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts +17 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js +31 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/decode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts +32 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js +94 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/internal/encode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/commonjs/package.json +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts +19 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js +72 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode-codepoint.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts +205 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js +554 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/decode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts +22 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js +88 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/encode.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts +46 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js +134 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/escape.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js +4 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js +4 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/decode-data-xml.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js +11 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/generated/encode-html.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts +96 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js +107 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/index.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts +17 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js +18 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/bin-trie-flags.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts +2 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js +28 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/decode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts +32 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.d.ts.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js +91 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/internal/encode-shared.js.map +1 -0
- package/node_modules/htmlparser2/node_modules/entities/dist/esm/package.json +3 -0
- package/node_modules/htmlparser2/node_modules/entities/escape.d.ts +3 -0
- package/node_modules/htmlparser2/node_modules/entities/escape.js +3 -0
- package/node_modules/htmlparser2/node_modules/entities/package.json +99 -69
- package/node_modules/htmlparser2/node_modules/entities/readme.md +50 -29
- package/node_modules/htmlparser2/node_modules/entities/src/decode-codepoint.ts +81 -0
- package/node_modules/htmlparser2/node_modules/entities/src/decode.ts +685 -0
- package/node_modules/htmlparser2/node_modules/entities/src/encode.ts +93 -0
- package/node_modules/htmlparser2/node_modules/entities/src/escape.ts +161 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/.eslintrc.json +10 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-html.ts +6 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/decode-data-xml.ts +6 -0
- package/node_modules/htmlparser2/node_modules/entities/src/generated/encode-html.ts +17 -0
- package/node_modules/htmlparser2/node_modules/entities/src/index.ts +187 -0
- package/node_modules/htmlparser2/node_modules/entities/src/internal/bin-trie-flags.ts +16 -0
- package/node_modules/htmlparser2/node_modules/entities/src/internal/decode-shared.ts +30 -0
- package/node_modules/htmlparser2/node_modules/entities/src/internal/encode-shared.ts +121 -0
- package/node_modules/htmlparser2/package.json +74 -58
- package/node_modules/htmlparser2/src/Parser.ts +663 -0
- package/node_modules/htmlparser2/src/Tokenizer.ts +877 -0
- package/node_modules/htmlparser2/src/WritableStream.ts +43 -0
- package/node_modules/htmlparser2/src/index.ts +115 -0
- package/node_modules/leac/LICENSE +1 -1
- package/node_modules/leac/README.md +91 -12
- package/node_modules/leac/lib/leac.cjs +133 -1
- package/node_modules/leac/lib/leac.d.cts +173 -0
- package/node_modules/leac/lib/leac.d.mts +173 -0
- package/node_modules/leac/lib/leac.mjs +131 -1
- package/node_modules/leac/package.json +51 -37
- package/node_modules/libmime/CHANGELOG.md +14 -0
- package/node_modules/libmime/README.md +9 -7
- package/node_modules/libmime/lib/charset.js +3 -2
- package/node_modules/libmime/lib/libmime.js +13 -0
- package/node_modules/libmime/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
- package/node_modules/libmime/node_modules/iconv-lite/encodings/utf32.js +10 -3
- package/node_modules/libmime/node_modules/iconv-lite/package.json +2 -2
- package/node_modules/libmime/node_modules/iconv-lite/types/encodings.d.ts +2 -0
- package/node_modules/libmime/package.json +4 -4
- package/node_modules/linkify-it/README.md +3 -4
- package/node_modules/linkify-it/build/index.cjs.js +143 -135
- package/node_modules/linkify-it/index.mjs +109 -105
- package/node_modules/linkify-it/lib/re.mjs +34 -30
- package/node_modules/linkify-it/package.json +20 -15
- package/node_modules/mailparser/.release-please-manifest.json +1 -1
- package/node_modules/mailparser/CHANGELOG.md +42 -0
- package/node_modules/mailparser/SECURITY.md +90 -0
- package/node_modules/mailparser/SECURITY.txt +27 -0
- package/node_modules/mailparser/lib/mail-parser.js +4 -1
- package/node_modules/mailparser/node_modules/iconv-lite/encodings/sbcs-data.js +2 -0
- package/node_modules/mailparser/node_modules/iconv-lite/encodings/utf32.js +10 -3
- package/node_modules/mailparser/node_modules/iconv-lite/package.json +2 -2
- package/node_modules/mailparser/node_modules/iconv-lite/types/encodings.d.ts +2 -0
- package/node_modules/mailparser/package.json +11 -11
- package/node_modules/nodemailer/CHANGELOG.md +86 -0
- package/node_modules/nodemailer/CLAUDE.md +1 -0
- package/node_modules/nodemailer/SECURITY.md +65 -0
- package/node_modules/nodemailer/lib/addressparser/index.js +17 -1
- package/node_modules/nodemailer/lib/base64/index.js +6 -8
- package/node_modules/nodemailer/lib/dkim/relaxed-body.js +1 -1
- package/node_modules/nodemailer/lib/fetch/cookies.js +1 -1
- package/node_modules/nodemailer/lib/fetch/index.js +26 -3
- package/node_modules/nodemailer/lib/mail-composer/index.js +72 -34
- package/node_modules/nodemailer/lib/mailer/index.js +34 -26
- package/node_modules/nodemailer/lib/mailer/mail-message.js +30 -20
- package/node_modules/nodemailer/lib/mime-funcs/mime-types.js +1 -1
- package/node_modules/nodemailer/lib/mime-node/index.js +12 -8
- package/node_modules/nodemailer/lib/nodemailer.js +26 -7
- package/node_modules/nodemailer/lib/sendmail-transport/index.js +14 -2
- package/node_modules/nodemailer/lib/ses-transport/index.js +60 -18
- package/node_modules/nodemailer/lib/shared/index.js +44 -11
- package/node_modules/nodemailer/lib/shared/url.js +151 -0
- package/node_modules/nodemailer/lib/smtp-connection/http-proxy-client.js +36 -6
- package/node_modules/nodemailer/lib/smtp-connection/index.js +120 -31
- package/node_modules/nodemailer/lib/smtp-transport/index.js +38 -11
- package/node_modules/nodemailer/lib/stream-transport/index.js +9 -0
- package/node_modules/nodemailer/lib/xoauth2/index.js +14 -2
- package/node_modules/nodemailer/package.json +9 -10
- package/node_modules/parseley/LICENSE +1 -1
- package/node_modules/parseley/README.md +33 -8
- package/node_modules/parseley/lib/ast.d.cts +183 -0
- package/node_modules/parseley/lib/ast.d.mts +183 -0
- package/node_modules/parseley/lib/parseley.cjs +212 -93
- package/node_modules/parseley/lib/parseley.d.cts +96 -0
- package/node_modules/parseley/lib/parseley.d.mts +96 -0
- package/node_modules/parseley/lib/parseley.mjs +210 -87
- package/node_modules/parseley/package.json +40 -29
- package/node_modules/peberminta/LICENSE +1 -1
- package/node_modules/peberminta/README.md +74 -31
- package/node_modules/peberminta/lib/char.cjs +37 -19
- package/node_modules/peberminta/lib/char.d.cts +165 -0
- package/node_modules/peberminta/lib/char.d.mts +165 -0
- package/node_modules/peberminta/lib/char.mjs +31 -11
- package/node_modules/peberminta/lib/core.cjs +351 -218
- package/node_modules/peberminta/lib/core.d.cts +1355 -0
- package/node_modules/peberminta/lib/core.d.mts +1355 -0
- package/node_modules/peberminta/lib/core.mjs +336 -210
- package/node_modules/peberminta/lib/util/util.cjs +11 -0
- package/node_modules/peberminta/package.json +65 -61
- package/node_modules/selderee/LICENSE +1 -1
- package/node_modules/selderee/README.md +18 -18
- package/node_modules/selderee/lib/selderee.cjs +90 -79
- package/node_modules/selderee/lib/selderee.d.cts +289 -0
- package/node_modules/selderee/lib/selderee.d.mts +289 -0
- package/node_modules/selderee/lib/selderee.mjs +86 -72
- package/node_modules/selderee/package.json +15 -7
- package/node_modules/uuid/README.md +196 -171
- package/node_modules/uuid/dist/index.d.ts +15 -0
- package/node_modules/uuid/dist/index.js +14 -79
- package/node_modules/uuid/dist/max.d.ts +2 -0
- package/node_modules/uuid/dist/max.js +1 -0
- package/node_modules/uuid/dist/md5.d.ts +2 -0
- package/node_modules/uuid/dist/md5.js +134 -22
- package/node_modules/uuid/dist/nil.d.ts +2 -0
- package/node_modules/uuid/dist/nil.js +1 -8
- package/node_modules/uuid/dist/parse.d.ts +3 -0
- package/node_modules/uuid/dist/parse.js +7 -43
- package/node_modules/uuid/dist/regex.d.ts +2 -0
- package/node_modules/uuid/dist/regex.js +1 -8
- package/node_modules/uuid/dist/rng.d.ts +1 -0
- package/node_modules/uuid/dist/rng.js +4 -24
- package/node_modules/uuid/dist/sha1.d.ts +2 -0
- package/node_modules/uuid/dist/sha1.js +68 -21
- package/node_modules/uuid/dist/stringify.d.ts +3 -0
- package/node_modules/uuid/dist/stringify.js +29 -38
- package/node_modules/uuid/dist/types.d.ts +22 -0
- package/node_modules/uuid/dist/uuid-bin.d.ts +1 -0
- package/node_modules/uuid/dist/uuid-bin.js +61 -76
- package/node_modules/uuid/dist/v1.d.ts +11 -0
- package/node_modules/uuid/dist/v1.js +79 -103
- package/node_modules/uuid/dist/v1ToV6.d.ts +3 -0
- package/node_modules/uuid/dist/v1ToV6.js +10 -0
- package/node_modules/uuid/dist/v3.d.ts +9 -0
- package/node_modules/uuid/dist/v3.js +9 -16
- package/node_modules/uuid/dist/v35.d.ts +7 -0
- package/node_modules/uuid/dist/v35.js +34 -75
- package/node_modules/uuid/dist/v4.d.ts +4 -0
- package/node_modules/uuid/dist/v4.js +26 -40
- package/node_modules/uuid/dist/v5.d.ts +9 -0
- package/node_modules/uuid/dist/v5.js +9 -16
- package/node_modules/uuid/dist/v6.d.ts +4 -0
- package/node_modules/uuid/dist/v6.js +20 -0
- package/node_modules/uuid/dist/v6ToV1.d.ts +2 -0
- package/node_modules/uuid/dist/v6ToV1.js +10 -0
- package/node_modules/uuid/dist/v7.d.ts +9 -0
- package/node_modules/uuid/dist/v7.js +65 -0
- package/node_modules/uuid/dist/validate.d.ts +2 -0
- package/node_modules/uuid/dist/validate.js +3 -15
- package/node_modules/uuid/dist/version.d.ts +2 -0
- package/node_modules/uuid/dist/version.js +6 -19
- package/node_modules/uuid/dist-node/bin/uuid +2 -0
- package/node_modules/uuid/dist-node/index.js +14 -0
- package/node_modules/uuid/dist-node/max.js +1 -0
- package/node_modules/uuid/dist-node/md5.js +11 -0
- package/node_modules/uuid/dist-node/nil.js +1 -0
- package/node_modules/uuid/dist-node/parse.js +9 -0
- package/node_modules/uuid/dist-node/regex.js +1 -0
- package/node_modules/uuid/dist-node/rng.js +4 -0
- package/node_modules/uuid/dist-node/sha1.js +11 -0
- package/node_modules/uuid/dist-node/stringify.js +35 -0
- package/node_modules/uuid/dist-node/uuid-bin.js +70 -0
- package/node_modules/uuid/dist-node/v1.js +83 -0
- package/node_modules/uuid/dist-node/v1ToV6.js +10 -0
- package/node_modules/uuid/dist-node/v3.js +9 -0
- package/node_modules/uuid/dist-node/v35.js +39 -0
- package/node_modules/uuid/dist-node/v4.js +29 -0
- package/node_modules/uuid/dist-node/v5.js +9 -0
- package/node_modules/uuid/dist-node/v6.js +20 -0
- package/node_modules/uuid/dist-node/v6ToV1.js +10 -0
- package/node_modules/uuid/dist-node/v7.js +65 -0
- package/node_modules/uuid/dist-node/validate.js +5 -0
- package/node_modules/uuid/dist-node/version.js +8 -0
- package/node_modules/uuid/package.json +66 -87
- package/package.json +25 -34
- package/lib/index-cli-synth.js +0 -68
- package/lib/scripts/publish-assets.js +0 -39
- package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -100
- package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32/README.md +0 -16
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js +0 -31
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/index.js +0 -108
- package/node_modules/@aws-crypto/crc32/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js +0 -28
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/index.js +0 -103
- package/node_modules/@aws-crypto/crc32/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/package.json +0 -32
- package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
- package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
- package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/crc32c/CHANGELOG.md +0 -76
- package/node_modules/@aws-crypto/crc32c/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32c/README.md +0 -16
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js +0 -31
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/index.js +0 -78
- package/node_modules/@aws-crypto/crc32c/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js +0 -28
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/index.js +0 -73
- package/node_modules/@aws-crypto/crc32c/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/package.json +0 -32
- package/node_modules/@aws-crypto/crc32c/src/aws_crc32c.ts +0 -24
- package/node_modules/@aws-crypto/crc32c/src/index.ts +0 -64
- package/node_modules/@aws-crypto/crc32c/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32c/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha1-browser/CHANGELOG.md +0 -62
- package/node_modules/@aws-crypto/sha1-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha1-browser/README.md +0 -21
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js +0 -31
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js +0 -29
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js +0 -61
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js +0 -28
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js +0 -26
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js +0 -58
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/sha1-browser/package.json +0 -35
- package/node_modules/@aws-crypto/sha1-browser/src/constants.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/crossPlatformSha1.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/src/webCryptoSha1.ts +0 -79
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -118
- package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +0 -43
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +0 -30
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +0 -56
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +0 -40
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +0 -27
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +0 -53
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
- package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -106
- package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +0 -124
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +0 -98
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +0 -85
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +0 -322
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +0 -121
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +0 -95
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +0 -82
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +0 -319
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/package.json +0 -32
- package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
- package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
- package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
- package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
- package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -66
- package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
- package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +0 -69
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +0 -62
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -28
- package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -71
- package/node_modules/@aws-crypto/util/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/README.md +0 -16
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +0 -24
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/main/index.js +0 -14
- package/node_modules/@aws-crypto/util/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +0 -13
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js +0 -15
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +0 -20
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +0 -20
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/module/index.js +0 -7
- package/node_modules/@aws-crypto/util/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +0 -9
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js +0 -11
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +0 -16
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8/package.json +0 -66
- package/node_modules/@aws-crypto/util/package.json +0 -32
- package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
- package/node_modules/@aws-crypto/util/src/index.ts +0 -7
- package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
- package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
- package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
- package/node_modules/@aws-crypto/util/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/util/tsconfig.module.json +0 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/models/CloudWatchLogsServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/models/errors.js +0 -285
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.browser.js +0 -40
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.js +0 -56
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-cjs/schemas/schemas_0.js +0 -3119
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch-logs/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/models/Route53ServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/models/errors.js +0 -916
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-route-53/dist-cjs/schemas/schemas_0.js +0 -2255
- package/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-route-53/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-route-53/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +0 -126
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +0 -33
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +0 -203
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +0 -46
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +0 -68
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +0 -56
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +0 -3258
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ses/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-ses/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-ses/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ses/dist-cjs/models/SESServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-ses/dist-cjs/models/errors.js +0 -504
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-ses/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-ses/dist-cjs/schemas/schemas_0.js +0 -1812
- package/node_modules/@aws-sdk/client-ses/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ses/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ses/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +0 -46
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +0 -12
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +0 -2059
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +0 -44
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +0 -5616
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/LICENSE +0 -201
- package/node_modules/@aws-sdk/crc64-nvme/README.md +0 -61
- package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +0 -101
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/Crc64Nvme.js +0 -92
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/Crc64Nvme.d.ts +0 -24
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/crc64-nvme-crt-container.d.ts +0 -13
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/Crc64Nvme.d.ts +0 -9
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/package.json +0 -50
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +0 -46
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +0 -31
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +0 -70
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttpTypes.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +0 -53
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +0 -17
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +0 -5
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +0 -34
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +0 -62
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +0 -352
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeDisableMultiregionAccessPointConfigOptions.js +0 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/NodeUseArnRegionConfigOptions.js +0 -8
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/bucketEndpointMiddleware.js +0 -81
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -4
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/NodeUseArnRegionConfigOptions.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/bucketHostnameUtils.d.ts +0 -174
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/NodeUseArnRegionConfigOptions.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/bucketHostnameUtils.d.ts +0 -80
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +0 -60
- package/node_modules/@aws-sdk/middleware-expect-continue/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-expect-continue/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +0 -48
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-es/index.js +0 -41
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/index.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-types/ts3.4/index.d.ts +0 -22
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +0 -58
- package/node_modules/@aws-sdk/middleware-flexible-checksums/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-flexible-checksums/README.md +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.browser.js +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/getCrc32ChecksumAlgorithmFunction.js +0 -26
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +0 -451
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsMiddleware.js +0 -123
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/flexibleChecksumsResponseMiddleware.js +0 -48
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/getCrc32ChecksumAlgorithmFunction.js +0 -21
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/isStreaming.js +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/resolveFlexibleChecksumsConfig.js +0 -11
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/selectChecksumAlgorithmFunction.js +0 -32
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/stringHasher.js +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/validateChecksumFromResponse.js +0 -45
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/getCrc32ChecksumAlgorithmFunction.d.ts +0 -10
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/getCrc32ChecksumAlgorithmFunction.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/validateChecksumFromResponse.d.ts +0 -12
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/validateChecksumFromResponse.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +0 -78
- package/node_modules/@aws-sdk/middleware-host-header/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-host-header/dist-cjs/index.js +0 -41
- package/node_modules/@aws-sdk/middleware-host-header/dist-es/index.js +0 -33
- package/node_modules/@aws-sdk/middleware-host-header/package.json +0 -59
- package/node_modules/@aws-sdk/middleware-location-constraint/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-location-constraint/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +0 -30
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +0 -57
- package/node_modules/@aws-sdk/middleware-logger/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-logger/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js +0 -48
- package/node_modules/@aws-sdk/middleware-logger/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-logger/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/middleware-logger/package.json +0 -59
- package/node_modules/@aws-sdk/middleware-recursion-detection/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-recursion-detection/README.md +0 -17
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/index.js +0 -29
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.js +0 -33
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-cjs/recursionDetectionMiddleware.native.js +0 -5
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/configuration.js +0 -7
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-es/recursionDetectionMiddleware.js +0 -29
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/configuration.d.ts +0 -5
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/recursionDetectionMiddleware.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-recursion-detection/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +0 -63
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/check-content-length-header.js +0 -32
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-expires-middleware.js +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/classes/SignatureV4S3Express.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/constants.js +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressHttpSigningMiddleware.js +0 -38
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/functions/s3ExpressMiddleware.js +0 -41
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3Configuration.js +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +0 -67
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/validate-bucket-name.js +0 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/classes/SignatureV4S3Express.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/constants.d.ts +0 -37
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -27
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3Configuration.d.ts +0 -79
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +0 -20
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/classes/SignatureV4S3Express.d.ts +0 -19
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/constants.d.ts +0 -11
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -40
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3Configuration.d.ts +0 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/validate-bucket-name.d.ts +0 -13
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/validate-bucket-name.d.ts +0 -14
- package/node_modules/@aws-sdk/middleware-ssec/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-ssec/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +0 -73
- package/node_modules/@aws-sdk/middleware-ssec/package.json +0 -57
- package/node_modules/@aws-sdk/middleware-user-agent/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-user-agent/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-user-agent/dist-cjs/index.js +0 -194
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/check-features.js +0 -49
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-es/user-agent-middleware.js +0 -82
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +0 -63
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +0 -60
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +0 -146
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/CognitoIdentityServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/models/errors.js +0 -121
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/schemas/schemas_0.js +0 -110
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +0 -133
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/SigninServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/models/errors.js +0 -64
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/schemas/schemas_0.js +0 -125
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/SSOServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/models/errors.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/schemas/schemas_0.js +0 -90
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +0 -56
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/SSOOIDCServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/models/errors.js +0 -195
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +0 -38
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +0 -49
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/schemas/schemas_0.js +0 -140
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +0 -54
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +0 -43
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +0 -62
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +0 -19
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +0 -18
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -145
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/STSServiceException.js +0 -12
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +0 -95
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +0 -68
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.native.js +0 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeExtensions.js +0 -13
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/schemas/schemas_0.js +0 -195
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +0 -143
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +0 -130
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -142
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +0 -2
- 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/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +0 -2
- 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/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/LICENSE +0 -201
- package/node_modules/@aws-sdk/region-config-resolver/README.md +0 -19
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/index.js +0 -38
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.js +0 -20
- package/node_modules/@aws-sdk/region-config-resolver/dist-cjs/regionConfig/stsRegionDefaultResolver.native.js +0 -6
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/index.js +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/awsRegionConfig.js +0 -2
- package/node_modules/@aws-sdk/region-config-resolver/dist-es/regionConfig/stsRegionDefaultResolver.js +0 -16
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/index.d.ts +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/awsRegionConfig.d.ts +0 -15
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/regionConfig/stsRegionDefaultResolver.d.ts +0 -14
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/awsRegionConfig.d.ts +0 -11
- package/node_modules/@aws-sdk/region-config-resolver/dist-types/ts3.4/regionConfig/stsRegionDefaultResolver.d.ts +0 -7
- package/node_modules/@aws-sdk/region-config-resolver/package.json +0 -62
- package/node_modules/@aws-sdk/util-arn-parser/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-arn-parser/README.md +0 -4
- package/node_modules/@aws-sdk/util-arn-parser/dist-cjs/index.js +0 -27
- package/node_modules/@aws-sdk/util-arn-parser/package.json +0 -55
- package/node_modules/@aws-sdk/util-endpoints/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-endpoints/README.md +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/index.js +0 -406
- package/node_modules/@aws-sdk/util-endpoints/dist-cjs/lib/aws/partitions.json +0 -267
- package/node_modules/@aws-sdk/util-endpoints/dist-es/aws.js +0 -10
- package/node_modules/@aws-sdk/util-endpoints/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/index.js +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/isVirtualHostableS3Bucket.js +0 -25
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partition.js +0 -41
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/aws/partitions.json +0 -267
- package/node_modules/@aws-sdk/util-endpoints/dist-es/lib/isIpAddress.js +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveDefaultAwsRegionalEndpointsConfig.js +0 -21
- package/node_modules/@aws-sdk/util-endpoints/dist-es/resolveEndpoint.js +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/EndpointError.js +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-es/types/index.js +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/aws.d.ts +0 -2
- package/node_modules/@aws-sdk/util-endpoints/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/aws/index.d.ts +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-types/lib/isIpAddress.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/aws.d.ts +0 -2
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/aws/index.d.ts +0 -3
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/lib/isIpAddress.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/resolveEndpoint.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointError.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/EndpointRuleObject.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/ErrorRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/RuleSetObject.d.ts +0 -5
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/TreeRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/ts3.4/types/shared.d.ts +0 -12
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointError.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/EndpointRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/ErrorRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/RuleSetObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/TreeRuleObject.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-endpoints/dist-types/types/shared.d.ts +0 -1
- package/node_modules/@aws-sdk/util-endpoints/package.json +0 -60
- package/node_modules/@aws-sdk/util-locate-window/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-locate-window/README.md +0 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -14
- package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +0 -10
- package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/util-locate-window/package.json +0 -54
- package/node_modules/@aws-sdk/util-user-agent-browser/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-user-agent-browser/README.md +0 -29
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/configurations.js +0 -2
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/createUserAgentStringParsingProvider.js +0 -57
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.js +0 -58
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-cjs/index.native.js +0 -22
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/createUserAgentStringParsingProvider.d.ts +0 -14
- package/node_modules/@aws-sdk/util-user-agent-browser/dist-types/ts3.4/createUserAgentStringParsingProvider.d.ts +0 -9
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +0 -55
- package/node_modules/@aws-sdk/util-user-agent-node/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-user-agent-node/README.md +0 -17
- package/node_modules/@aws-sdk/util-user-agent-node/dist-cjs/index.js +0 -185
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/defaultUserAgent.js +0 -36
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getNodeModulesParentDirs.js +0 -15
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedDevTypeScriptVersion.js +0 -14
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getSanitizedTypeScriptVersion.js +0 -9
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/getTypeScriptUserAgentPair.js +0 -75
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-es/nodeAppIdConfigOptions.js +0 -9
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getNodeModulesParentDirs.d.ts +0 -10
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedDevTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getSanitizedTypeScriptVersion.d.ts +0 -8
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/getTypeScriptUserAgentPair.d.ts +0 -6
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/nodeAppIdConfigOptions.d.ts +0 -13
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getNodeModulesParentDirs.d.ts +0 -1
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedDevTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getSanitizedTypeScriptVersion.d.ts +0 -3
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/getTypeScriptUserAgentPair.d.ts +0 -4
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/util-user-agent-node/dist-types/ts3.4/nodeAppIdConfigOptions.d.ts +0 -6
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +0 -69
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -23
- package/node_modules/@selderee/plugin-htmlparser2/lib/hp2-builder.d.ts +0 -16
- package/node_modules/@smithy/chunked-blob-reader/LICENSE +0 -201
- package/node_modules/@smithy/chunked-blob-reader/README.md +0 -10
- package/node_modules/@smithy/chunked-blob-reader/dist-cjs/index.js +0 -13
- package/node_modules/@smithy/chunked-blob-reader/dist-types/index.d.ts +0 -5
- package/node_modules/@smithy/chunked-blob-reader/dist-types/ts3.4/index.d.ts +0 -5
- package/node_modules/@smithy/chunked-blob-reader/package.json +0 -60
- package/node_modules/@smithy/chunked-blob-reader-native/LICENSE +0 -201
- package/node_modules/@smithy/chunked-blob-reader-native/README.md +0 -10
- package/node_modules/@smithy/chunked-blob-reader-native/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/chunked-blob-reader-native/dist-es/index.js +0 -27
- package/node_modules/@smithy/chunked-blob-reader-native/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/chunked-blob-reader-native/package.json +0 -61
- package/node_modules/@smithy/config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/config-resolver/README.md +0 -17
- package/node_modules/@smithy/config-resolver/dist-cjs/index.js +0 -198
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseDualstackEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/NodeUseFipsEndpointConfigOptions.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/index.js +0 -4
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveCustomEndpointsConfig.js +0 -10
- package/node_modules/@smithy/config-resolver/dist-es/endpointsConfig/resolveEndpointsConfig.js +0 -14
- package/node_modules/@smithy/config-resolver/dist-es/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/checkRegion.js +0 -15
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/config.js +0 -12
- package/node_modules/@smithy/config-resolver/dist-es/regionConfig/index.js +0 -2
- package/node_modules/@smithy/config-resolver/dist-es/regionInfo/index.js +0 -3
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseDualstackEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/NodeUseFipsEndpointConfigOptions.d.ts +0 -23
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/index.d.ts +0 -16
- package/node_modules/@smithy/config-resolver/dist-types/endpointsConfig/resolveEndpointsConfig.d.ts +0 -57
- package/node_modules/@smithy/config-resolver/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/config.d.ts +0 -17
- package/node_modules/@smithy/config-resolver/dist-types/regionConfig/index.d.ts +0 -8
- package/node_modules/@smithy/config-resolver/dist-types/regionInfo/index.d.ts +0 -12
- package/node_modules/@smithy/config-resolver/package.json +0 -65
- package/node_modules/@smithy/core/dist-cjs/getSmithyContext.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -21
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/getHttpAuthSchemePlugin.js +0 -21
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -46
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/middleware-http-auth-scheme/resolveAuthOptions.js +0 -24
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/getHttpSigningMiddleware.js +0 -19
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/httpSigningMiddleware.js +0 -27
- package/node_modules/@smithy/core/dist-cjs/middleware-http-signing/index.js +0 -5
- package/node_modules/@smithy/core/dist-cjs/normalizeProvider.js +0 -10
- package/node_modules/@smithy/core/dist-cjs/pagination/createPaginator.js +0 -44
- package/node_modules/@smithy/core/dist-cjs/request-builder/requestBuilder.js +0 -5
- package/node_modules/@smithy/core/dist-cjs/setFeature.js +0 -14
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -17
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -38
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -15
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/httpAuthSchemes/noAuth.js +0 -9
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/index.js +0 -6
- package/node_modules/@smithy/core/dist-cjs/util-identity-and-auth/memoizeIdentityProvider.js +0 -61
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +0 -42
- package/node_modules/@smithy/core/dist-es/middleware-http-auth-scheme/index.js +0 -3
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/httpSigningMiddleware.js +0 -23
- package/node_modules/@smithy/core/dist-es/middleware-http-signing/index.js +0 -2
- package/node_modules/@smithy/core/dist-es/request-builder/requestBuilder.js +0 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/toEndpointV1.js +0 -17
- package/node_modules/@smithy/core/dist-es/submodules/serde/generateIdempotencyToken.js +0 -2
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/DefaultIdentityProviderConfig.js +0 -13
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.js +0 -34
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.js +0 -11
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/httpAuthSchemes/index.js +0 -3
- package/node_modules/@smithy/core/dist-es/util-identity-and-auth/index.js +0 -3
- package/node_modules/@smithy/core/dist-types/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemeEndpointRuleSetPlugin.d.ts +0 -18
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/getHttpAuthSchemePlugin.d.ts +0 -18
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/httpAuthSchemeMiddleware.d.ts +0 -33
- package/node_modules/@smithy/core/dist-types/middleware-http-auth-scheme/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/middleware-http-signing/index.d.ts +0 -2
- package/node_modules/@smithy/core/dist-types/pagination/createPaginator.d.ts +0 -7
- package/node_modules/@smithy/core/dist-types/request-builder/requestBuilder.d.ts +0 -5
- package/node_modules/@smithy/core/dist-types/submodules/serde/generateIdempotencyToken.d.ts +0 -2
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpApiKeyAuth.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/httpBearerAuth.d.ts +0 -8
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/httpAuthSchemes/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/index.d.ts +0 -3
- package/node_modules/@smithy/core/dist-types/util-identity-and-auth/memoizeIdentityProvider.d.ts +0 -30
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/index.js +0 -2
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-codec/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-codec/README.md +0 -17
- package/node_modules/@smithy/eventstream-codec/dist-cjs/index.js +0 -401
- package/node_modules/@smithy/eventstream-codec/dist-es/EventStreamCodec.js +0 -65
- package/node_modules/@smithy/eventstream-codec/dist-es/HeaderMarshaller.js +0 -184
- package/node_modules/@smithy/eventstream-codec/dist-es/Int64.js +0 -44
- package/node_modules/@smithy/eventstream-codec/dist-es/TestVectors.fixture.js +0 -146
- package/node_modules/@smithy/eventstream-codec/dist-es/index.js +0 -8
- package/node_modules/@smithy/eventstream-codec/dist-es/splitMessage.js +0 -30
- package/node_modules/@smithy/eventstream-codec/dist-types/EventStreamCodec.d.ts +0 -31
- package/node_modules/@smithy/eventstream-codec/dist-types/TestVectors.fixture.d.ts +0 -2
- package/node_modules/@smithy/eventstream-codec/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-codec/dist-types/vectorTypes.fixture.d.ts +0 -12
- package/node_modules/@smithy/eventstream-codec/package.json +0 -64
- package/node_modules/@smithy/eventstream-serde-browser/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-browser/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-browser/dist-cjs/index.js +0 -58
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/EventStreamMarshaller.js +0 -20
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/index.js +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-browser/dist-es/utils.js +0 -28
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/EventStreamMarshaller.d.ts +0 -47
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-browser/dist-types/utils.d.ts +0 -13
- package/node_modules/@smithy/eventstream-serde-browser/package.json +0 -60
- package/node_modules/@smithy/eventstream-serde-config-resolver/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-config-resolver/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-cjs/index.js +0 -7
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-es/index.js +0 -1
- package/node_modules/@smithy/eventstream-serde-config-resolver/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/eventstream-serde-config-resolver/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-node/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-node/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-node/dist-cjs/index.js +0 -53
- package/node_modules/@smithy/eventstream-serde-node/dist-es/EventStreamMarshaller.js +0 -19
- package/node_modules/@smithy/eventstream-serde-node/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-node/dist-es/utils.js +0 -26
- package/node_modules/@smithy/eventstream-serde-node/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-node/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-node/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-node/dist-types/utils.d.ts +0 -12
- package/node_modules/@smithy/eventstream-serde-node/package.json +0 -61
- package/node_modules/@smithy/eventstream-serde-universal/LICENSE +0 -201
- package/node_modules/@smithy/eventstream-serde-universal/README.md +0 -17
- package/node_modules/@smithy/eventstream-serde-universal/dist-cjs/index.js +0 -132
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/EventStreamMarshaller.js +0 -25
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/index.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-es/provider.js +0 -2
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/EventStreamMarshaller.d.ts +0 -23
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/getUnmarshalledStream.d.ts +0 -18
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/eventstream-serde-universal/dist-types/provider.d.ts +0 -3
- package/node_modules/@smithy/eventstream-serde-universal/package.json +0 -65
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -53
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
- package/node_modules/@smithy/hash-blob-browser/LICENSE +0 -201
- package/node_modules/@smithy/hash-blob-browser/README.md +0 -17
- package/node_modules/@smithy/hash-blob-browser/dist-cjs/index.js +0 -13
- package/node_modules/@smithy/hash-blob-browser/dist-es/index.js +0 -8
- package/node_modules/@smithy/hash-blob-browser/package.json +0 -69
- package/node_modules/@smithy/hash-node/LICENSE +0 -201
- package/node_modules/@smithy/hash-node/README.md +0 -17
- package/node_modules/@smithy/hash-node/dist-cjs/index.js +0 -42
- package/node_modules/@smithy/hash-node/dist-es/index.js +0 -37
- package/node_modules/@smithy/hash-node/package.json +0 -64
- package/node_modules/@smithy/hash-stream-node/LICENSE +0 -201
- package/node_modules/@smithy/hash-stream-node/README.md +0 -17
- package/node_modules/@smithy/hash-stream-node/dist-cjs/index.js +0 -67
- package/node_modules/@smithy/hash-stream-node/dist-es/HashCalculator.js +0 -18
- package/node_modules/@smithy/hash-stream-node/dist-es/fileStreamHasher.js +0 -24
- package/node_modules/@smithy/hash-stream-node/dist-es/index.js +0 -2
- package/node_modules/@smithy/hash-stream-node/dist-types/HashCalculator.d.ts +0 -11
- package/node_modules/@smithy/hash-stream-node/dist-types/fileStreamHasher.d.ts +0 -6
- package/node_modules/@smithy/hash-stream-node/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/hash-stream-node/dist-types/readableStreamHasher.d.ts +0 -6
- package/node_modules/@smithy/hash-stream-node/package.json +0 -64
- package/node_modules/@smithy/invalid-dependency/LICENSE +0 -201
- package/node_modules/@smithy/invalid-dependency/README.md +0 -17
- package/node_modules/@smithy/invalid-dependency/dist-cjs/index.js +0 -10
- package/node_modules/@smithy/invalid-dependency/dist-es/index.js +0 -2
- package/node_modules/@smithy/invalid-dependency/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/invalid-dependency/package.json +0 -60
- package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -6
- package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/package.json +0 -61
- package/node_modules/@smithy/md5-js/LICENSE +0 -201
- package/node_modules/@smithy/md5-js/README.md +0 -17
- package/node_modules/@smithy/md5-js/dist-cjs/index.js +0 -176
- package/node_modules/@smithy/md5-js/dist-es/constants.js +0 -3
- package/node_modules/@smithy/md5-js/dist-es/index.js +0 -168
- package/node_modules/@smithy/md5-js/dist-types/constants.d.ts +0 -12
- package/node_modules/@smithy/md5-js/dist-types/index.d.ts +0 -16
- package/node_modules/@smithy/md5-js/package.json +0 -65
- package/node_modules/@smithy/middleware-content-length/LICENSE +0 -201
- package/node_modules/@smithy/middleware-content-length/README.md +0 -17
- package/node_modules/@smithy/middleware-content-length/dist-cjs/index.js +0 -46
- package/node_modules/@smithy/middleware-content-length/dist-es/index.js +0 -39
- package/node_modules/@smithy/middleware-content-length/package.json +0 -63
- package/node_modules/@smithy/middleware-endpoint/LICENSE +0 -201
- package/node_modules/@smithy/middleware-endpoint/README.md +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.browser.js +0 -5
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointFromConfig.js +0 -7
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/adaptors/getEndpointUrlConfig.js +0 -35
- package/node_modules/@smithy/middleware-endpoint/dist-cjs/index.js +0 -264
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromConfig.js +0 -3
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointFromInstructions.js +0 -64
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/getEndpointUrlConfig.js +0 -31
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/index.js +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-es/adaptors/toEndpointV1.js +0 -17
- package/node_modules/@smithy/middleware-endpoint/dist-es/endpointMiddleware.js +0 -36
- package/node_modules/@smithy/middleware-endpoint/dist-es/getEndpointPlugin.js +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-es/index.js +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-es/resolveEndpointConfig.js +0 -24
- package/node_modules/@smithy/middleware-endpoint/dist-es/service-customizations/index.js +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromConfig.browser.d.ts +0 -1
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointFromInstructions.d.ts +0 -28
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-endpoint/dist-types/adaptors/toEndpointV1.d.ts +0 -6
- package/node_modules/@smithy/middleware-endpoint/dist-types/endpointMiddleware.d.ts +0 -10
- package/node_modules/@smithy/middleware-endpoint/dist-types/getEndpointPlugin.d.ts +0 -11
- package/node_modules/@smithy/middleware-endpoint/dist-types/index.d.ts +0 -18
- package/node_modules/@smithy/middleware-endpoint/dist-types/resolveEndpointConfig.d.ts +0 -109
- package/node_modules/@smithy/middleware-endpoint/dist-types/service-customizations/index.d.ts +0 -4
- package/node_modules/@smithy/middleware-endpoint/package.json +0 -74
- package/node_modules/@smithy/middleware-retry/LICENSE +0 -201
- package/node_modules/@smithy/middleware-retry/README.md +0 -24
- package/node_modules/@smithy/middleware-retry/dist-cjs/index.js +0 -396
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.browser.js +0 -5
- package/node_modules/@smithy/middleware-retry/dist-cjs/isStreamingPayload/isStreamingPayload.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/configurations.js +0 -48
- package/node_modules/@smithy/middleware-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/middleware-retry/dist-es/isStreamingPayload/isStreamingPayload.js +0 -3
- package/node_modules/@smithy/middleware-retry/dist-es/omitRetryHeadersMiddleware.js +0 -22
- package/node_modules/@smithy/middleware-retry/dist-es/parseRetryAfterHeader.js +0 -49
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/AdaptiveRetryStrategy.js +0 -21
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/StandardRetryStrategy.js +0 -94
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/defaultRetryQuota.js +0 -27
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/delayDecider.js +0 -2
- package/node_modules/@smithy/middleware-retry/dist-es/retry-pre-sra-deprecated/retryDecider.js +0 -7
- package/node_modules/@smithy/middleware-retry/dist-es/retryMiddleware.js +0 -105
- package/node_modules/@smithy/middleware-retry/dist-types/configurations.d.ts +0 -68
- package/node_modules/@smithy/middleware-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.browser.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/isStreamingPayload/isStreamingPayload.d.ts +0 -5
- package/node_modules/@smithy/middleware-retry/dist-types/retry-pre-sra-deprecated/AdaptiveRetryStrategy.d.ts +0 -24
- package/node_modules/@smithy/middleware-retry/dist-types/retryMiddleware.d.ts +0 -14
- package/node_modules/@smithy/middleware-retry/package.json +0 -79
- package/node_modules/@smithy/middleware-serde/LICENSE +0 -201
- package/node_modules/@smithy/middleware-serde/README.md +0 -17
- package/node_modules/@smithy/middleware-serde/dist-cjs/index.js +0 -104
- package/node_modules/@smithy/middleware-serde/dist-es/deserializerMiddleware.js +0 -58
- package/node_modules/@smithy/middleware-serde/dist-es/index.js +0 -3
- package/node_modules/@smithy/middleware-serde/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/middleware-serde/package.json +0 -65
- package/node_modules/@smithy/middleware-stack/LICENSE +0 -201
- package/node_modules/@smithy/middleware-stack/README.md +0 -91
- package/node_modules/@smithy/middleware-stack/dist-cjs/index.js +0 -285
- package/node_modules/@smithy/middleware-stack/dist-es/index.js +0 -1
- package/node_modules/@smithy/middleware-stack/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/middleware-stack/package.json +0 -63
- package/node_modules/@smithy/node-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/node-config-provider/README.md +0 -17
- package/node_modules/@smithy/node-config-provider/dist-cjs/index.js +0 -62
- package/node_modules/@smithy/node-config-provider/dist-es/configLoader.js +0 -9
- package/node_modules/@smithy/node-config-provider/dist-es/fromEnv.js +0 -14
- package/node_modules/@smithy/node-config-provider/dist-es/fromSharedConfigFiles.js +0 -23
- package/node_modules/@smithy/node-config-provider/dist-es/fromStatic.js +0 -3
- package/node_modules/@smithy/node-config-provider/dist-es/index.js +0 -1
- package/node_modules/@smithy/node-config-provider/dist-types/configLoader.d.ts +0 -31
- package/node_modules/@smithy/node-config-provider/dist-types/fromSharedConfigFiles.d.ts +0 -22
- package/node_modules/@smithy/node-config-provider/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/node-config-provider/package.json +0 -65
- package/node_modules/@smithy/node-http-handler/dist-es/readable.mock.js +0 -21
- package/node_modules/@smithy/node-http-handler/dist-es/server.mock.js +0 -88
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -8
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/readable.mock.js +0 -21
- package/node_modules/@smithy/node-http-handler/dist-types/readable.mock.d.ts +0 -13
- package/node_modules/@smithy/node-http-handler/dist-types/server.mock.d.ts +0 -12
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -6
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/readable.mock.d.ts +0 -13
- package/node_modules/@smithy/property-provider/LICENSE +0 -201
- package/node_modules/@smithy/property-provider/README.md +0 -17
- package/node_modules/@smithy/property-provider/dist-cjs/index.js +0 -117
- package/node_modules/@smithy/property-provider/dist-es/fromStatic.js +0 -1
- package/node_modules/@smithy/property-provider/dist-es/index.js +0 -6
- package/node_modules/@smithy/property-provider/dist-types/CredentialsProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/ProviderError.d.ts +0 -39
- package/node_modules/@smithy/property-provider/dist-types/TokenProviderError.d.ts +0 -31
- package/node_modules/@smithy/property-provider/dist-types/chain.d.ts +0 -13
- package/node_modules/@smithy/property-provider/dist-types/fromStatic.d.ts +0 -5
- package/node_modules/@smithy/property-provider/dist-types/index.d.ts +0 -24
- package/node_modules/@smithy/property-provider/package.json +0 -60
- package/node_modules/@smithy/protocol-http/LICENSE +0 -201
- package/node_modules/@smithy/protocol-http/README.md +0 -17
- package/node_modules/@smithy/protocol-http/dist-cjs/index.js +0 -169
- package/node_modules/@smithy/protocol-http/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/protocol-http/dist-es/index.js +0 -8
- package/node_modules/@smithy/protocol-http/dist-types/Field.d.ts +0 -50
- package/node_modules/@smithy/protocol-http/dist-types/extensions/httpExtensionConfiguration.d.ts +0 -33
- package/node_modules/@smithy/protocol-http/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/protocol-http/dist-types/httpHandler.d.ts +0 -35
- package/node_modules/@smithy/protocol-http/dist-types/httpRequest.d.ts +0 -56
- package/node_modules/@smithy/protocol-http/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/protocol-http/package.json +0 -61
- package/node_modules/@smithy/querystring-builder/LICENSE +0 -201
- package/node_modules/@smithy/querystring-builder/README.md +0 -17
- package/node_modules/@smithy/querystring-builder/dist-cjs/index.js +0 -26
- package/node_modules/@smithy/querystring-builder/dist-es/index.js +0 -21
- package/node_modules/@smithy/querystring-builder/package.json +0 -60
- package/node_modules/@smithy/querystring-parser/LICENSE +0 -201
- package/node_modules/@smithy/querystring-parser/README.md +0 -17
- package/node_modules/@smithy/querystring-parser/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/querystring-parser/package.json +0 -60
- package/node_modules/@smithy/service-error-classification/LICENSE +0 -201
- package/node_modules/@smithy/service-error-classification/README.md +0 -17
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +0 -77
- package/node_modules/@smithy/service-error-classification/dist-es/constants.js +0 -28
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +0 -39
- package/node_modules/@smithy/service-error-classification/dist-types/index.d.ts +0 -24
- package/node_modules/@smithy/service-error-classification/package.json +0 -59
- package/node_modules/@smithy/shared-ini-file-loader/LICENSE +0 -201
- package/node_modules/@smithy/shared-ini-file-loader/README.md +0 -105
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getHomeDir.js +0 -26
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFilepath.js +0 -12
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/getSSOTokenFromFile.js +0 -15
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/index.js +0 -196
- package/node_modules/@smithy/shared-ini-file-loader/dist-cjs/readFile.js +0 -16
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getConfigFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getCredentialsFilepath.js +0 -4
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getHomeDir.js +0 -22
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFilepath.js +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/getSSOTokenFromFile.js +0 -11
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/index.js +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-es/loadSharedConfigFiles.js +0 -39
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getConfigData.d.ts +0 -8
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSSOTokenFromFile.d.ts +0 -52
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/getSsoSessionData.d.ts +0 -6
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/index.d.ts +0 -10
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseIni.d.ts +0 -2
- package/node_modules/@smithy/shared-ini-file-loader/dist-types/parseKnownFiles.d.ts +0 -18
- package/node_modules/@smithy/shared-ini-file-loader/package.json +0 -72
- package/node_modules/@smithy/signature-v4/dist-es/suite.fixture.js +0 -399
- package/node_modules/@smithy/signature-v4/dist-types/suite.fixture.d.ts +0 -14
- package/node_modules/@smithy/smithy-client/LICENSE +0 -201
- package/node_modules/@smithy/smithy-client/README.md +0 -17
- package/node_modules/@smithy/smithy-client/dist-cjs/index.js +0 -635
- package/node_modules/@smithy/smithy-client/dist-es/client.js +0 -51
- package/node_modules/@smithy/smithy-client/dist-es/collect-stream-body.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/command.js +0 -124
- package/node_modules/@smithy/smithy-client/dist-es/extended-encode-uri-component.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/extensions/checksum.js +0 -49
- package/node_modules/@smithy/smithy-client/dist-es/extensions/defaultExtensionConfiguration.js +0 -9
- package/node_modules/@smithy/smithy-client/dist-es/extensions/index.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-es/get-value-from-text-node.js +0 -12
- package/node_modules/@smithy/smithy-client/dist-es/index.js +0 -20
- package/node_modules/@smithy/smithy-client/dist-es/resolve-path.js +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/client.d.ts +0 -87
- package/node_modules/@smithy/smithy-client/dist-types/collect-stream-body.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/command.d.ts +0 -119
- package/node_modules/@smithy/smithy-client/dist-types/create-aggregated-client.d.ts +0 -18
- package/node_modules/@smithy/smithy-client/dist-types/default-error-handler.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/emitWarningIfUnsupportedVersion.d.ts +0 -8
- package/node_modules/@smithy/smithy-client/dist-types/exceptions.d.ts +0 -42
- package/node_modules/@smithy/smithy-client/dist-types/extended-encode-uri-component.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/extensions/checksum.d.ts +0 -26
- package/node_modules/@smithy/smithy-client/dist-types/extensions/defaultExtensionConfiguration.d.ts +0 -38
- package/node_modules/@smithy/smithy-client/dist-types/extensions/index.d.ts +0 -1
- package/node_modules/@smithy/smithy-client/dist-types/get-array-if-single-item.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/get-value-from-text-node.d.ts +0 -7
- package/node_modules/@smithy/smithy-client/dist-types/index.d.ts +0 -21
- package/node_modules/@smithy/smithy-client/dist-types/object-mapping.d.ts +0 -162
- package/node_modules/@smithy/smithy-client/dist-types/resolve-path.d.ts +0 -5
- package/node_modules/@smithy/smithy-client/dist-types/ser-utils.d.ts +0 -15
- package/node_modules/@smithy/smithy-client/dist-types/serde-json.d.ts +0 -12
- package/node_modules/@smithy/smithy-client/package.json +0 -69
- package/node_modules/@smithy/url-parser/LICENSE +0 -201
- package/node_modules/@smithy/url-parser/README.md +0 -17
- package/node_modules/@smithy/url-parser/dist-cjs/index.js +0 -23
- package/node_modules/@smithy/url-parser/dist-es/index.js +0 -18
- package/node_modules/@smithy/url-parser/package.json +0 -61
- package/node_modules/@smithy/util-base64/LICENSE +0 -201
- package/node_modules/@smithy/util-base64/README.md +0 -4
- package/node_modules/@smithy/util-base64/dist-cjs/constants.browser.js +0 -12
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.browser.js +0 -40
- package/node_modules/@smithy/util-base64/dist-cjs/fromBase64.js +0 -16
- package/node_modules/@smithy/util-base64/dist-cjs/index.js +0 -27
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.browser.js +0 -38
- package/node_modules/@smithy/util-base64/dist-cjs/toBase64.js +0 -19
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.browser.js +0 -36
- package/node_modules/@smithy/util-base64/dist-es/fromBase64.js +0 -12
- package/node_modules/@smithy/util-base64/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-base64/dist-es/toBase64.browser.js +0 -35
- package/node_modules/@smithy/util-base64/dist-es/toBase64.js +0 -15
- package/node_modules/@smithy/util-base64/dist-types/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/constants.browser.d.ts +0 -5
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.browser.d.ts +0 -8
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/fromBase64.d.ts +0 -7
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.browser.d.ts +0 -9
- package/node_modules/@smithy/util-base64/dist-types/ts3.4/toBase64.d.ts +0 -8
- package/node_modules/@smithy/util-base64/package.json +0 -74
- package/node_modules/@smithy/util-body-length-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-browser/README.md +0 -12
- package/node_modules/@smithy/util-body-length-browser/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-body-length-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-browser/package.json +0 -61
- package/node_modules/@smithy/util-body-length-node/LICENSE +0 -201
- package/node_modules/@smithy/util-body-length-node/README.md +0 -12
- package/node_modules/@smithy/util-body-length-node/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/util-body-length-node/dist-es/calculateBodyLength.js +0 -27
- package/node_modules/@smithy/util-body-length-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-body-length-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/calculateBodyLength.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/util-body-length-node/package.json +0 -62
- package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -20
- package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/package.json +0 -62
- package/node_modules/@smithy/util-config-provider/LICENSE +0 -201
- package/node_modules/@smithy/util-config-provider/README.md +0 -4
- package/node_modules/@smithy/util-config-provider/dist-cjs/index.js +0 -30
- package/node_modules/@smithy/util-config-provider/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/booleanSelector.d.ts +0 -10
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/numberSelector.d.ts +0 -9
- package/node_modules/@smithy/util-config-provider/dist-types/ts3.4/types.d.ts +0 -4
- package/node_modules/@smithy/util-config-provider/package.json +0 -63
- package/node_modules/@smithy/util-defaults-mode-browser/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-browser/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/constants.js +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/index.js +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.js +0 -34
- package/node_modules/@smithy/util-defaults-mode-browser/dist-cjs/resolveDefaultsModeConfig.native.js +0 -23
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/constants.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.js +0 -30
- package/node_modules/@smithy/util-defaults-mode-browser/dist-es/resolveDefaultsModeConfig.native.js +0 -19
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/constants.d.ts +0 -12
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-browser/dist-types/resolveDefaultsModeConfig.native.d.ts +0 -16
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +0 -65
- package/node_modules/@smithy/util-defaults-mode-node/LICENSE +0 -201
- package/node_modules/@smithy/util-defaults-mode-node/README.md +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/dist-cjs/index.js +0 -74
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/constants.js +0 -6
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/index.js +0 -1
- package/node_modules/@smithy/util-defaults-mode-node/dist-es/resolveDefaultsModeConfig.js +0 -52
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/constants.d.ts +0 -24
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/defaultsModeConfig.d.ts +0 -6
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/util-defaults-mode-node/dist-types/resolveDefaultsModeConfig.d.ts +0 -17
- package/node_modules/@smithy/util-defaults-mode-node/package.json +0 -66
- package/node_modules/@smithy/util-endpoints/LICENSE +0 -201
- package/node_modules/@smithy/util-endpoints/README.md +0 -17
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +0 -472
- package/node_modules/@smithy/util-endpoints/dist-es/debug/index.js +0 -2
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +0 -6
- package/node_modules/@smithy/util-endpoints/dist-es/lib/getAttr.js +0 -11
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +0 -9
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +0 -9
- package/node_modules/@smithy/util-endpoints/dist-es/resolveEndpoint.js +0 -27
- package/node_modules/@smithy/util-endpoints/dist-es/types/index.js +0 -7
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +0 -12
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateCondition.js +0 -14
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateConditions.js +0 -22
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateEndpointRule.js +0 -27
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateErrorRule.js +0 -14
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +0 -29
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateRules.js +0 -42
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +0 -36
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointHeaders.js +0 -12
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getEndpointProperties.js +0 -28
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +0 -7
- package/node_modules/@smithy/util-endpoints/dist-es/utils/index.js +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/cache/EndpointCache.d.ts +0 -34
- package/node_modules/@smithy/util-endpoints/dist-types/debug/index.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/getEndpointUrlConfig.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +0 -9
- package/node_modules/@smithy/util-endpoints/dist-types/lib/parseURL.d.ts +0 -5
- package/node_modules/@smithy/util-endpoints/dist-types/resolveEndpoint.d.ts +0 -6
- package/node_modules/@smithy/util-endpoints/dist-types/types/index.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/types/shared.d.ts +0 -25
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +0 -11
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateCondition.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateConditions.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateErrorRule.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateExpression.d.ts +0 -7
- package/node_modules/@smithy/util-endpoints/dist-types/utils/evaluateRules.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointHeaders.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointProperties.d.ts +0 -8
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getEndpointUrl.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/dist-types/utils/index.d.ts +0 -2
- package/node_modules/@smithy/util-endpoints/package.json +0 -68
- package/node_modules/@smithy/util-hex-encoding/LICENSE +0 -201
- package/node_modules/@smithy/util-hex-encoding/README.md +0 -4
- package/node_modules/@smithy/util-hex-encoding/dist-cjs/index.js +0 -38
- package/node_modules/@smithy/util-hex-encoding/dist-types/ts3.4/index.d.ts +0 -12
- package/node_modules/@smithy/util-hex-encoding/package.json +0 -61
- package/node_modules/@smithy/util-middleware/LICENSE +0 -201
- package/node_modules/@smithy/util-middleware/README.md +0 -17
- package/node_modules/@smithy/util-middleware/dist-cjs/index.js +0 -15
- package/node_modules/@smithy/util-middleware/dist-es/getSmithyContext.js +0 -2
- package/node_modules/@smithy/util-middleware/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-middleware/dist-types/getSmithyContext.d.ts +0 -5
- package/node_modules/@smithy/util-middleware/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-middleware/package.json +0 -66
- package/node_modules/@smithy/util-retry/LICENSE +0 -201
- package/node_modules/@smithy/util-retry/README.md +0 -78
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +0 -333
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +0 -33
- package/node_modules/@smithy/util-retry/dist-es/ConfiguredRetryStrategy.js +0 -19
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +0 -110
- package/node_modules/@smithy/util-retry/dist-es/DefaultRetryToken.js +0 -25
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +0 -83
- package/node_modules/@smithy/util-retry/dist-es/index.js +0 -8
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +0 -38
- package/node_modules/@smithy/util-retry/dist-types/ConfiguredRetryStrategy.d.ts +0 -32
- package/node_modules/@smithy/util-retry/dist-types/DefaultRetryToken.d.ts +0 -15
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +0 -48
- package/node_modules/@smithy/util-retry/dist-types/constants.d.ts +0 -60
- package/node_modules/@smithy/util-retry/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-retry/dist-types/retries-2026-config.d.ts +0 -11
- package/node_modules/@smithy/util-retry/package.json +0 -70
- package/node_modules/@smithy/util-stream/LICENSE +0 -201
- package/node_modules/@smithy/util-stream/README.md +0 -6
- package/node_modules/@smithy/util-stream/dist-cjs/ByteArrayCollector.js +0 -36
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.browser.js +0 -7
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/ChecksumStream.js +0 -64
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.browser.js +0 -39
- package/node_modules/@smithy/util-stream/dist-cjs/checksum/createChecksumStream.js +0 -12
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadable.js +0 -60
- package/node_modules/@smithy/util-stream/dist-cjs/createBufferedReadableStream.js +0 -103
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.browser.js +0 -31
- package/node_modules/@smithy/util-stream/dist-cjs/getAwsChunkedEncodingStream.js +0 -41
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.browser.js +0 -34
- package/node_modules/@smithy/util-stream/dist-cjs/headStream.js +0 -42
- package/node_modules/@smithy/util-stream/dist-cjs/index.js +0 -108
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.browser.js +0 -68
- package/node_modules/@smithy/util-stream/dist-cjs/sdk-stream-mixin.js +0 -54
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.browser.js +0 -10
- package/node_modules/@smithy/util-stream/dist-cjs/splitStream.js +0 -16
- package/node_modules/@smithy/util-stream/dist-cjs/stream-type-check.js +0 -10
- package/node_modules/@smithy/util-stream/dist-es/blob/Uint8ArrayBlobAdapter.js +0 -23
- package/node_modules/@smithy/util-stream/dist-es/checksum/ChecksumStream.js +0 -60
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.browser.js +0 -35
- package/node_modules/@smithy/util-stream/dist-es/checksum/createChecksumStream.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/createBufferedReadable.js +0 -57
- package/node_modules/@smithy/util-stream/dist-es/headStream.js +0 -38
- package/node_modules/@smithy/util-stream/dist-es/index.js +0 -9
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.browser.js +0 -64
- package/node_modules/@smithy/util-stream/dist-es/sdk-stream-mixin.js +0 -50
- package/node_modules/@smithy/util-stream/dist-es/splitStream.js +0 -13
- package/node_modules/@smithy/util-stream/dist-types/blob/Uint8ArrayBlobAdapter.d.ts +0 -22
- package/node_modules/@smithy/util-stream/dist-types/checksum/ChecksumStream.d.ts +0 -61
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.browser.d.ts +0 -14
- package/node_modules/@smithy/util-stream/dist-types/checksum/createChecksumStream.d.ts +0 -13
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadable.d.ts +0 -15
- package/node_modules/@smithy/util-stream/dist-types/createBufferedReadableStream.d.ts +0 -50
- package/node_modules/@smithy/util-stream/dist-types/getAwsChunkedEncodingStream.d.ts +0 -10
- package/node_modules/@smithy/util-stream/dist-types/headStream.d.ts +0 -9
- package/node_modules/@smithy/util-stream/dist-types/index.d.ts +0 -12
- package/node_modules/@smithy/util-stream/dist-types/sdk-stream-mixin.d.ts +0 -8
- package/node_modules/@smithy/util-stream/dist-types/splitStream.d.ts +0 -11
- package/node_modules/@smithy/util-stream/package.json +0 -98
- package/node_modules/@smithy/util-uri-escape/LICENSE +0 -201
- package/node_modules/@smithy/util-uri-escape/README.md +0 -10
- package/node_modules/@smithy/util-uri-escape/dist-cjs/index.js +0 -9
- package/node_modules/@smithy/util-uri-escape/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-uri-escape/dist-types/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri-path.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/escape-uri.d.ts +0 -4
- package/node_modules/@smithy/util-uri-escape/dist-types/ts3.4/index.d.ts +0 -8
- package/node_modules/@smithy/util-uri-escape/package.json +0 -60
- package/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/package.json +0 -67
- package/node_modules/@smithy/util-waiter/LICENSE +0 -201
- package/node_modules/@smithy/util-waiter/README.md +0 -17
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +0 -179
- package/node_modules/@smithy/util-waiter/dist-es/createWaiter.js +0 -48
- package/node_modules/@smithy/util-waiter/dist-es/index.js +0 -2
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +0 -60
- package/node_modules/@smithy/util-waiter/dist-es/utils/index.js +0 -2
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +0 -11
- package/node_modules/@smithy/util-waiter/dist-types/index.d.ts +0 -2
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +0 -10
- package/node_modules/@smithy/util-waiter/dist-types/utils/index.d.ts +0 -8
- package/node_modules/@smithy/util-waiter/dist-types/utils/validate.d.ts +0 -8
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +0 -49
- package/node_modules/@smithy/util-waiter/package.json +0 -62
- package/node_modules/@smithy/uuid/LICENSE +0 -201
- package/node_modules/@smithy/uuid/README.md +0 -10
- package/node_modules/@smithy/uuid/dist-cjs/index.js +0 -36
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.js +0 -6
- package/node_modules/@smithy/uuid/dist-cjs/randomUUID.native.js +0 -4
- package/node_modules/@smithy/uuid/dist-es/index.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.browser.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/randomUUID.js +0 -2
- package/node_modules/@smithy/uuid/dist-es/randomUUID.native.js +0 -1
- package/node_modules/@smithy/uuid/dist-es/v4.js +0 -31
- package/node_modules/@smithy/uuid/dist-types/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.browser.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.d.ts +0 -2
- package/node_modules/@smithy/uuid/dist-types/ts3.4/randomUUID.native.d.ts +0 -1
- package/node_modules/@smithy/uuid/dist-types/ts3.4/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/dist-types/v4.d.ts +0 -19
- package/node_modules/@smithy/uuid/package.json +0 -66
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/CHANGELOG.md +0 -172
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/LICENSE +0 -19
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/README.md +0 -207
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/charset.js +0 -118
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/charsets.js +0 -212
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/get-charset-name.js +0 -227
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/libmime.js +0 -924
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/lib/mimetypes.js +0 -2049
- package/node_modules/@zone-eu/mailsplit/node_modules/libmime/package.json +0 -42
- package/node_modules/async-retry/LICENSE.md +0 -21
- package/node_modules/async-retry/README.md +0 -53
- package/node_modules/async-retry/lib/index.js +0 -61
- package/node_modules/async-retry/package.json +0 -55
- package/node_modules/asynckit/LICENSE +0 -21
- package/node_modules/asynckit/README.md +0 -233
- package/node_modules/asynckit/bench.js +0 -76
- package/node_modules/asynckit/index.js +0 -6
- package/node_modules/asynckit/lib/abort.js +0 -29
- package/node_modules/asynckit/lib/async.js +0 -34
- package/node_modules/asynckit/lib/defer.js +0 -26
- package/node_modules/asynckit/lib/iterate.js +0 -75
- package/node_modules/asynckit/lib/readable_asynckit.js +0 -91
- package/node_modules/asynckit/lib/readable_parallel.js +0 -25
- package/node_modules/asynckit/lib/readable_serial.js +0 -25
- package/node_modules/asynckit/lib/readable_serial_ordered.js +0 -29
- package/node_modules/asynckit/lib/state.js +0 -37
- package/node_modules/asynckit/lib/streamify.js +0 -141
- package/node_modules/asynckit/lib/terminator.js +0 -29
- package/node_modules/asynckit/package.json +0 -63
- package/node_modules/asynckit/parallel.js +0 -43
- package/node_modules/asynckit/serial.js +0 -17
- package/node_modules/asynckit/serialOrdered.js +0 -75
- package/node_modules/asynckit/stream.js +0 -21
- package/node_modules/axios/CHANGELOG.md +0 -1416
- package/node_modules/axios/LICENSE +0 -7
- package/node_modules/axios/MIGRATION_GUIDE.md +0 -877
- package/node_modules/axios/README.md +0 -2019
- package/node_modules/axios/dist/axios.js +0 -4494
- package/node_modules/axios/dist/axios.js.map +0 -1
- package/node_modules/axios/dist/axios.min.js +0 -5
- package/node_modules/axios/dist/axios.min.js.map +0 -1
- package/node_modules/axios/dist/browser/axios.cjs +0 -4273
- package/node_modules/axios/dist/browser/axios.cjs.map +0 -1
- package/node_modules/axios/dist/esm/axios.js +0 -4293
- package/node_modules/axios/dist/esm/axios.js.map +0 -1
- package/node_modules/axios/dist/esm/axios.min.js +0 -3
- package/node_modules/axios/dist/esm/axios.min.js.map +0 -1
- package/node_modules/axios/dist/node/axios.cjs +0 -4811
- package/node_modules/axios/dist/node/axios.cjs.map +0 -1
- package/node_modules/axios/index.d.cts +0 -716
- package/node_modules/axios/index.d.ts +0 -810
- package/node_modules/axios/index.js +0 -43
- package/node_modules/axios/lib/adapters/README.md +0 -36
- package/node_modules/axios/lib/adapters/adapters.js +0 -130
- package/node_modules/axios/lib/adapters/fetch.js +0 -338
- package/node_modules/axios/lib/adapters/http.js +0 -954
- package/node_modules/axios/lib/adapters/xhr.js +0 -222
- package/node_modules/axios/lib/axios.js +0 -89
- package/node_modules/axios/lib/cancel/CancelToken.js +0 -135
- package/node_modules/axios/lib/cancel/CanceledError.js +0 -22
- package/node_modules/axios/lib/cancel/isCancel.js +0 -5
- package/node_modules/axios/lib/core/Axios.js +0 -277
- package/node_modules/axios/lib/core/AxiosError.js +0 -90
- package/node_modules/axios/lib/core/AxiosHeaders.js +0 -378
- package/node_modules/axios/lib/core/InterceptorManager.js +0 -72
- package/node_modules/axios/lib/core/README.md +0 -8
- package/node_modules/axios/lib/core/buildFullPath.js +0 -22
- package/node_modules/axios/lib/core/dispatchRequest.js +0 -77
- package/node_modules/axios/lib/core/mergeConfig.js +0 -107
- package/node_modules/axios/lib/core/settle.js +0 -31
- package/node_modules/axios/lib/core/transformData.js +0 -28
- package/node_modules/axios/lib/defaults/index.js +0 -172
- package/node_modules/axios/lib/defaults/transitional.js +0 -8
- package/node_modules/axios/lib/env/README.md +0 -3
- package/node_modules/axios/lib/env/classes/FormData.js +0 -2
- package/node_modules/axios/lib/env/data.js +0 -1
- package/node_modules/axios/lib/helpers/AxiosTransformStream.js +0 -156
- package/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +0 -62
- package/node_modules/axios/lib/helpers/HttpStatusCode.js +0 -77
- package/node_modules/axios/lib/helpers/README.md +0 -7
- package/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +0 -29
- package/node_modules/axios/lib/helpers/bind.js +0 -14
- package/node_modules/axios/lib/helpers/buildURL.js +0 -66
- package/node_modules/axios/lib/helpers/callbackify.js +0 -18
- package/node_modules/axios/lib/helpers/combineURLs.js +0 -15
- package/node_modules/axios/lib/helpers/composeSignals.js +0 -56
- package/node_modules/axios/lib/helpers/cookies.js +0 -48
- package/node_modules/axios/lib/helpers/deprecatedMethod.js +0 -31
- package/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +0 -73
- package/node_modules/axios/lib/helpers/formDataToJSON.js +0 -95
- package/node_modules/axios/lib/helpers/formDataToStream.js +0 -118
- package/node_modules/axios/lib/helpers/fromDataURI.js +0 -53
- package/node_modules/axios/lib/helpers/isAbsoluteURL.js +0 -19
- package/node_modules/axios/lib/helpers/isAxiosError.js +0 -14
- package/node_modules/axios/lib/helpers/isURLSameOrigin.js +0 -16
- package/node_modules/axios/lib/helpers/null.js +0 -2
- package/node_modules/axios/lib/helpers/parseHeaders.js +0 -69
- package/node_modules/axios/lib/helpers/parseProtocol.js +0 -6
- package/node_modules/axios/lib/helpers/progressEventReducer.js +0 -51
- package/node_modules/axios/lib/helpers/readBlob.js +0 -15
- package/node_modules/axios/lib/helpers/resolveConfig.js +0 -70
- package/node_modules/axios/lib/helpers/shouldBypassProxy.js +0 -106
- package/node_modules/axios/lib/helpers/speedometer.js +0 -55
- package/node_modules/axios/lib/helpers/spread.js +0 -28
- package/node_modules/axios/lib/helpers/throttle.js +0 -44
- package/node_modules/axios/lib/helpers/toFormData.js +0 -241
- package/node_modules/axios/lib/helpers/toURLEncodedForm.js +0 -19
- package/node_modules/axios/lib/helpers/trackStream.js +0 -89
- package/node_modules/axios/lib/helpers/validator.js +0 -110
- package/node_modules/axios/lib/platform/browser/classes/Blob.js +0 -3
- package/node_modules/axios/lib/platform/browser/classes/FormData.js +0 -3
- package/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +0 -4
- package/node_modules/axios/lib/platform/browser/index.js +0 -13
- package/node_modules/axios/lib/platform/common/utils.js +0 -52
- package/node_modules/axios/lib/platform/index.js +0 -7
- package/node_modules/axios/lib/platform/node/classes/FormData.js +0 -3
- package/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +0 -4
- package/node_modules/axios/lib/platform/node/index.js +0 -37
- package/node_modules/axios/lib/utils.js +0 -919
- package/node_modules/axios/package.json +0 -190
- package/node_modules/call-bind-apply-helpers/.eslintrc +0 -17
- package/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +0 -12
- package/node_modules/call-bind-apply-helpers/.nycrc +0 -9
- package/node_modules/call-bind-apply-helpers/CHANGELOG.md +0 -30
- package/node_modules/call-bind-apply-helpers/LICENSE +0 -21
- package/node_modules/call-bind-apply-helpers/README.md +0 -62
- package/node_modules/call-bind-apply-helpers/actualApply.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/actualApply.js +0 -10
- package/node_modules/call-bind-apply-helpers/applyBind.d.ts +0 -19
- package/node_modules/call-bind-apply-helpers/applyBind.js +0 -10
- package/node_modules/call-bind-apply-helpers/functionApply.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/functionApply.js +0 -4
- package/node_modules/call-bind-apply-helpers/functionCall.d.ts +0 -1
- package/node_modules/call-bind-apply-helpers/functionCall.js +0 -4
- package/node_modules/call-bind-apply-helpers/index.d.ts +0 -64
- package/node_modules/call-bind-apply-helpers/index.js +0 -15
- package/node_modules/call-bind-apply-helpers/package.json +0 -85
- package/node_modules/call-bind-apply-helpers/reflectApply.d.ts +0 -3
- package/node_modules/call-bind-apply-helpers/reflectApply.js +0 -4
- package/node_modules/call-bind-apply-helpers/test/index.js +0 -63
- package/node_modules/call-bind-apply-helpers/tsconfig.json +0 -9
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolAdvancedSecurityModeEnforced.d.ts +0 -8
- package/node_modules/cdk-nag/lib/rules/cognito/CognitoUserPoolAdvancedSecurityModeEnforced.js +0 -32
- package/node_modules/combined-stream/License +0 -19
- package/node_modules/combined-stream/Readme.md +0 -138
- package/node_modules/combined-stream/lib/combined_stream.js +0 -208
- package/node_modules/combined-stream/package.json +0 -25
- package/node_modules/deepmerge/.editorconfig +0 -7
- package/node_modules/deepmerge/.eslintcache +0 -1
- package/node_modules/deepmerge/changelog.md +0 -167
- package/node_modules/deepmerge/dist/cjs.js +0 -133
- package/node_modules/deepmerge/dist/umd.js +0 -139
- package/node_modules/deepmerge/index.d.ts +0 -20
- package/node_modules/deepmerge/index.js +0 -106
- package/node_modules/deepmerge/license.txt +0 -21
- package/node_modules/deepmerge/package.json +0 -42
- package/node_modules/deepmerge/readme.md +0 -264
- package/node_modules/deepmerge/rollup.config.js +0 -22
- package/node_modules/delayed-stream/.npmignore +0 -1
- package/node_modules/delayed-stream/License +0 -19
- package/node_modules/delayed-stream/Makefile +0 -7
- package/node_modules/delayed-stream/Readme.md +0 -141
- package/node_modules/delayed-stream/lib/delayed_stream.js +0 -107
- package/node_modules/delayed-stream/package.json +0 -27
- package/node_modules/dunder-proto/.eslintrc +0 -5
- package/node_modules/dunder-proto/.github/FUNDING.yml +0 -12
- package/node_modules/dunder-proto/.nycrc +0 -13
- package/node_modules/dunder-proto/CHANGELOG.md +0 -24
- package/node_modules/dunder-proto/LICENSE +0 -21
- package/node_modules/dunder-proto/README.md +0 -54
- package/node_modules/dunder-proto/get.d.ts +0 -5
- package/node_modules/dunder-proto/get.js +0 -30
- package/node_modules/dunder-proto/package.json +0 -76
- package/node_modules/dunder-proto/set.d.ts +0 -5
- package/node_modules/dunder-proto/set.js +0 -35
- package/node_modules/dunder-proto/test/get.js +0 -34
- package/node_modules/dunder-proto/test/index.js +0 -4
- package/node_modules/dunder-proto/test/set.js +0 -50
- package/node_modules/dunder-proto/tsconfig.json +0 -9
- package/node_modules/es-define-property/.eslintrc +0 -13
- package/node_modules/es-define-property/.github/FUNDING.yml +0 -12
- package/node_modules/es-define-property/.nycrc +0 -9
- package/node_modules/es-define-property/CHANGELOG.md +0 -29
- package/node_modules/es-define-property/LICENSE +0 -21
- package/node_modules/es-define-property/README.md +0 -49
- package/node_modules/es-define-property/index.d.ts +0 -3
- package/node_modules/es-define-property/index.js +0 -14
- package/node_modules/es-define-property/package.json +0 -81
- package/node_modules/es-define-property/test/index.js +0 -56
- package/node_modules/es-define-property/tsconfig.json +0 -10
- package/node_modules/es-errors/.eslintrc +0 -5
- package/node_modules/es-errors/.github/FUNDING.yml +0 -12
- package/node_modules/es-errors/CHANGELOG.md +0 -40
- package/node_modules/es-errors/LICENSE +0 -21
- package/node_modules/es-errors/README.md +0 -55
- package/node_modules/es-errors/eval.d.ts +0 -3
- package/node_modules/es-errors/eval.js +0 -4
- package/node_modules/es-errors/index.d.ts +0 -3
- package/node_modules/es-errors/index.js +0 -4
- package/node_modules/es-errors/package.json +0 -80
- package/node_modules/es-errors/range.d.ts +0 -3
- package/node_modules/es-errors/range.js +0 -4
- package/node_modules/es-errors/ref.d.ts +0 -3
- package/node_modules/es-errors/ref.js +0 -4
- package/node_modules/es-errors/syntax.d.ts +0 -3
- package/node_modules/es-errors/syntax.js +0 -4
- package/node_modules/es-errors/test/index.js +0 -19
- package/node_modules/es-errors/tsconfig.json +0 -49
- package/node_modules/es-errors/type.d.ts +0 -3
- package/node_modules/es-errors/type.js +0 -4
- package/node_modules/es-errors/uri.d.ts +0 -3
- package/node_modules/es-errors/uri.js +0 -4
- package/node_modules/es-object-atoms/.eslintrc +0 -16
- package/node_modules/es-object-atoms/.github/FUNDING.yml +0 -12
- package/node_modules/es-object-atoms/CHANGELOG.md +0 -37
- package/node_modules/es-object-atoms/LICENSE +0 -21
- package/node_modules/es-object-atoms/README.md +0 -63
- package/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +0 -3
- package/node_modules/es-object-atoms/RequireObjectCoercible.js +0 -11
- package/node_modules/es-object-atoms/ToObject.d.ts +0 -7
- package/node_modules/es-object-atoms/ToObject.js +0 -10
- package/node_modules/es-object-atoms/index.d.ts +0 -3
- package/node_modules/es-object-atoms/index.js +0 -4
- package/node_modules/es-object-atoms/isObject.d.ts +0 -3
- package/node_modules/es-object-atoms/isObject.js +0 -6
- package/node_modules/es-object-atoms/package.json +0 -80
- package/node_modules/es-object-atoms/test/index.js +0 -38
- package/node_modules/es-object-atoms/tsconfig.json +0 -6
- package/node_modules/es-set-tostringtag/.eslintrc +0 -13
- package/node_modules/es-set-tostringtag/.nycrc +0 -9
- package/node_modules/es-set-tostringtag/CHANGELOG.md +0 -67
- package/node_modules/es-set-tostringtag/LICENSE +0 -21
- package/node_modules/es-set-tostringtag/README.md +0 -53
- package/node_modules/es-set-tostringtag/index.d.ts +0 -10
- package/node_modules/es-set-tostringtag/index.js +0 -35
- package/node_modules/es-set-tostringtag/package.json +0 -78
- package/node_modules/es-set-tostringtag/test/index.js +0 -85
- package/node_modules/es-set-tostringtag/tsconfig.json +0 -9
- package/node_modules/fast-xml-builder/CHANGELOG.md +0 -16
- package/node_modules/fast-xml-builder/LICENSE +0 -21
- package/node_modules/fast-xml-builder/README.md +0 -23
- package/node_modules/fast-xml-builder/lib/fxb.cjs +0 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +0 -180
- package/node_modules/fast-xml-builder/lib/fxb.min.js +0 -2
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +0 -1
- package/node_modules/fast-xml-builder/package.json +0 -80
- package/node_modules/fast-xml-builder/src/fxb.d.ts +0 -180
- package/node_modules/fast-xml-builder/src/fxb.js +0 -529
- package/node_modules/fast-xml-builder/src/ignoreAttributes.js +0 -18
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +0 -292
- package/node_modules/fast-xml-builder/src/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-parser/CHANGELOG.md +0 -759
- package/node_modules/fast-xml-parser/LICENSE +0 -21
- package/node_modules/fast-xml-parser/README.md +0 -225
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
- package/node_modules/fast-xml-parser/lib/fxp.d.cts +0 -603
- package/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js +0 -2
- package/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +0 -1
- package/node_modules/fast-xml-parser/lib/pem.d.cts +0 -148
- package/node_modules/fast-xml-parser/package.json +0 -94
- package/node_modules/fast-xml-parser/src/cli/cli.js +0 -97
- package/node_modules/fast-xml-parser/src/cli/man.js +0 -17
- package/node_modules/fast-xml-parser/src/cli/read.js +0 -43
- package/node_modules/fast-xml-parser/src/fxp.d.ts +0 -579
- package/node_modules/fast-xml-parser/src/fxp.js +0 -14
- package/node_modules/fast-xml-parser/src/ignoreAttributes.js +0 -18
- package/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
- package/node_modules/fast-xml-parser/src/util.js +0 -61
- package/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +0 -16
- package/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +0 -106
- package/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +0 -61
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -69
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +0 -103
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -100
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +0 -154
- package/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -94
- package/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/node_modules/fast-xml-parser/src/v6/TagPath.js +0 -81
- package/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +0 -13
- package/node_modules/fast-xml-parser/src/v6/XMLParser.js +0 -83
- package/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +0 -235
- package/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +0 -210
- package/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +0 -111
- package/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +0 -116
- package/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +0 -121
- package/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +0 -105
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +0 -22
- package/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +0 -19
- package/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +0 -38
- package/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +0 -13
- package/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +0 -14
- package/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +0 -6
- package/node_modules/fast-xml-parser/src/validator.js +0 -425
- package/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +0 -6
- package/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +0 -410
- package/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +0 -159
- package/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +0 -911
- package/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +0 -71
- package/node_modules/fast-xml-parser/src/xmlparser/node2json.js +0 -173
- package/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +0 -40
- package/node_modules/follow-redirects/LICENSE +0 -18
- package/node_modules/follow-redirects/README.md +0 -155
- package/node_modules/follow-redirects/debug.js +0 -15
- package/node_modules/follow-redirects/http.js +0 -1
- package/node_modules/follow-redirects/https.js +0 -1
- package/node_modules/follow-redirects/index.js +0 -686
- package/node_modules/follow-redirects/package.json +0 -58
- package/node_modules/form-data/CHANGELOG.md +0 -659
- package/node_modules/form-data/License +0 -19
- package/node_modules/form-data/README.md +0 -355
- package/node_modules/form-data/index.d.ts +0 -62
- package/node_modules/form-data/lib/browser.js +0 -4
- package/node_modules/form-data/lib/form_data.js +0 -494
- package/node_modules/form-data/lib/populate.js +0 -10
- package/node_modules/form-data/package.json +0 -82
- package/node_modules/function-bind/.eslintrc +0 -21
- package/node_modules/function-bind/.github/FUNDING.yml +0 -12
- package/node_modules/function-bind/.github/SECURITY.md +0 -3
- package/node_modules/function-bind/.nycrc +0 -13
- package/node_modules/function-bind/CHANGELOG.md +0 -136
- package/node_modules/function-bind/LICENSE +0 -20
- package/node_modules/function-bind/README.md +0 -46
- package/node_modules/function-bind/implementation.js +0 -84
- package/node_modules/function-bind/index.js +0 -5
- package/node_modules/function-bind/package.json +0 -87
- package/node_modules/function-bind/test/.eslintrc +0 -9
- package/node_modules/function-bind/test/index.js +0 -252
- package/node_modules/get-intrinsic/.eslintrc +0 -42
- package/node_modules/get-intrinsic/.github/FUNDING.yml +0 -12
- package/node_modules/get-intrinsic/.nycrc +0 -9
- package/node_modules/get-intrinsic/CHANGELOG.md +0 -186
- package/node_modules/get-intrinsic/LICENSE +0 -21
- package/node_modules/get-intrinsic/README.md +0 -71
- package/node_modules/get-intrinsic/index.js +0 -378
- package/node_modules/get-intrinsic/package.json +0 -97
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +0 -274
- package/node_modules/get-proto/.eslintrc +0 -10
- package/node_modules/get-proto/.github/FUNDING.yml +0 -12
- package/node_modules/get-proto/.nycrc +0 -9
- package/node_modules/get-proto/CHANGELOG.md +0 -21
- package/node_modules/get-proto/LICENSE +0 -21
- package/node_modules/get-proto/Object.getPrototypeOf.d.ts +0 -5
- package/node_modules/get-proto/Object.getPrototypeOf.js +0 -6
- package/node_modules/get-proto/README.md +0 -50
- package/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +0 -3
- package/node_modules/get-proto/Reflect.getPrototypeOf.js +0 -4
- package/node_modules/get-proto/index.d.ts +0 -5
- package/node_modules/get-proto/index.js +0 -27
- package/node_modules/get-proto/package.json +0 -81
- package/node_modules/get-proto/test/index.js +0 -68
- package/node_modules/get-proto/tsconfig.json +0 -9
- package/node_modules/gopd/.eslintrc +0 -16
- package/node_modules/gopd/.github/FUNDING.yml +0 -12
- package/node_modules/gopd/CHANGELOG.md +0 -45
- package/node_modules/gopd/LICENSE +0 -21
- package/node_modules/gopd/README.md +0 -40
- package/node_modules/gopd/gOPD.d.ts +0 -1
- package/node_modules/gopd/gOPD.js +0 -4
- package/node_modules/gopd/index.d.ts +0 -5
- package/node_modules/gopd/index.js +0 -15
- package/node_modules/gopd/package.json +0 -77
- package/node_modules/gopd/test/index.js +0 -36
- package/node_modules/gopd/tsconfig.json +0 -9
- package/node_modules/has-symbols/.eslintrc +0 -11
- package/node_modules/has-symbols/.github/FUNDING.yml +0 -12
- package/node_modules/has-symbols/.nycrc +0 -9
- package/node_modules/has-symbols/CHANGELOG.md +0 -91
- package/node_modules/has-symbols/LICENSE +0 -21
- package/node_modules/has-symbols/README.md +0 -46
- package/node_modules/has-symbols/index.d.ts +0 -3
- package/node_modules/has-symbols/index.js +0 -14
- package/node_modules/has-symbols/package.json +0 -111
- package/node_modules/has-symbols/shams.d.ts +0 -3
- package/node_modules/has-symbols/shams.js +0 -45
- package/node_modules/has-symbols/test/index.js +0 -22
- package/node_modules/has-symbols/test/shams/core-js.js +0 -29
- package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +0 -29
- package/node_modules/has-symbols/test/tests.js +0 -58
- package/node_modules/has-symbols/tsconfig.json +0 -10
- package/node_modules/has-tostringtag/.eslintrc +0 -5
- package/node_modules/has-tostringtag/.github/FUNDING.yml +0 -12
- package/node_modules/has-tostringtag/.nycrc +0 -13
- package/node_modules/has-tostringtag/CHANGELOG.md +0 -42
- package/node_modules/has-tostringtag/LICENSE +0 -21
- package/node_modules/has-tostringtag/README.md +0 -46
- package/node_modules/has-tostringtag/index.d.ts +0 -3
- package/node_modules/has-tostringtag/index.js +0 -8
- package/node_modules/has-tostringtag/package.json +0 -108
- package/node_modules/has-tostringtag/shams.d.ts +0 -3
- package/node_modules/has-tostringtag/shams.js +0 -8
- package/node_modules/has-tostringtag/test/index.js +0 -21
- package/node_modules/has-tostringtag/test/shams/core-js.js +0 -31
- package/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +0 -30
- package/node_modules/has-tostringtag/test/tests.js +0 -15
- package/node_modules/has-tostringtag/tsconfig.json +0 -49
- package/node_modules/hasown/.eslintrc +0 -5
- package/node_modules/hasown/.github/FUNDING.yml +0 -12
- package/node_modules/hasown/.nycrc +0 -13
- package/node_modules/hasown/CHANGELOG.md +0 -40
- package/node_modules/hasown/LICENSE +0 -21
- package/node_modules/hasown/README.md +0 -40
- package/node_modules/hasown/index.d.ts +0 -3
- package/node_modules/hasown/index.js +0 -8
- package/node_modules/hasown/package.json +0 -92
- package/node_modules/hasown/tsconfig.json +0 -6
- package/node_modules/htmlparser2/lib/Parser.d.ts +0 -190
- package/node_modules/htmlparser2/lib/Parser.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/Parser.js +0 -518
- package/node_modules/htmlparser2/lib/Parser.js.map +0 -1
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts +0 -143
- package/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/Tokenizer.js +0 -938
- package/node_modules/htmlparser2/lib/Tokenizer.js.map +0 -1
- package/node_modules/htmlparser2/lib/WritableStream.d.ts +0 -17
- package/node_modules/htmlparser2/lib/WritableStream.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/WritableStream.js +0 -54
- package/node_modules/htmlparser2/lib/WritableStream.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts +0 -190
- package/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Parser.js +0 -489
- package/node_modules/htmlparser2/lib/esm/Parser.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +0 -143
- package/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js +0 -932
- package/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +0 -17
- package/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/WritableStream.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/index.d.ts +0 -44
- package/node_modules/htmlparser2/lib/esm/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/esm/index.js +0 -62
- package/node_modules/htmlparser2/lib/esm/index.js.map +0 -1
- package/node_modules/htmlparser2/lib/esm/package.json +0 -1
- package/node_modules/htmlparser2/lib/index.d.ts +0 -44
- package/node_modules/htmlparser2/lib/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/lib/index.js +0 -100
- package/node_modules/htmlparser2/lib/index.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts +0 -211
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.js +0 -536
- package/node_modules/htmlparser2/node_modules/entities/lib/decode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts +0 -19
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js +0 -76
- package/node_modules/htmlparser2/node_modules/entities/lib/decode_codepoint.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts +0 -22
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.js +0 -77
- package/node_modules/htmlparser2/node_modules/entities/lib/encode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.d.ts +0 -43
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.js +0 -122
- package/node_modules/htmlparser2/node_modules/entities/lib/escape.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.d.ts +0 -211
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.js +0 -496
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.d.ts +0 -19
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.js +0 -71
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/decode_codepoint.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.d.ts +0 -22
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.js +0 -69
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/encode.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.d.ts +0 -43
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.js +0 -116
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/escape.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.js +0 -7
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.js +0 -7
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.d.ts +0 -8
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.js +0 -10
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/generated/encode-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.d.ts +0 -96
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.js +0 -99
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/index.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/esm/package.json +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js +0 -9
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts +0 -3
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js +0 -9
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/decode-data-xml.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.d.ts +0 -8
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.js +0 -12
- package/node_modules/htmlparser2/node_modules/entities/lib/generated/encode-html.js.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts +0 -96
- package/node_modules/htmlparser2/node_modules/entities/lib/index.d.ts.map +0 -1
- package/node_modules/htmlparser2/node_modules/entities/lib/index.js +0 -126
- package/node_modules/htmlparser2/node_modules/entities/lib/index.js.map +0 -1
- package/node_modules/iconv-lite/.github/dependabot.yml +0 -11
- package/node_modules/iconv-lite/.idea/codeStyles/Project.xml +0 -47
- package/node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/node_modules/iconv-lite/.idea/iconv-lite.iml +0 -12
- package/node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/node_modules/iconv-lite/.idea/modules.xml +0 -8
- package/node_modules/iconv-lite/.idea/vcs.xml +0 -6
- package/node_modules/iconv-lite/Changelog.md +0 -212
- package/node_modules/iconv-lite/LICENSE +0 -21
- package/node_modules/iconv-lite/README.md +0 -130
- package/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -597
- package/node_modules/iconv-lite/encodings/dbcs-data.js +0 -188
- package/node_modules/iconv-lite/encodings/index.js +0 -23
- package/node_modules/iconv-lite/encodings/internal.js +0 -198
- package/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -72
- package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
- package/node_modules/iconv-lite/encodings/sbcs-data.js +0 -179
- package/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
- package/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
- package/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
- package/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
- package/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
- package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
- package/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
- package/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
- package/node_modules/iconv-lite/encodings/utf16.js +0 -197
- package/node_modules/iconv-lite/encodings/utf32.js +0 -319
- package/node_modules/iconv-lite/encodings/utf7.js +0 -290
- package/node_modules/iconv-lite/lib/bom-handling.js +0 -52
- package/node_modules/iconv-lite/lib/index.d.ts +0 -41
- package/node_modules/iconv-lite/lib/index.js +0 -180
- package/node_modules/iconv-lite/lib/streams.js +0 -109
- package/node_modules/iconv-lite/package.json +0 -44
- package/node_modules/leac/lib/leac.d.ts +0 -165
- package/node_modules/mailparser/.github/FUNDING.yml +0 -4
- package/node_modules/mailparser/.github/workflows/release.yaml +0 -36
- package/node_modules/mailparser/.github/workflows/stale.yml +0 -24
- package/node_modules/mailparser/.github/workflows/test.yml +0 -21
- package/node_modules/mailparser/.ncurc.js +0 -6
- package/node_modules/math-intrinsics/.eslintrc +0 -16
- package/node_modules/math-intrinsics/.github/FUNDING.yml +0 -12
- package/node_modules/math-intrinsics/CHANGELOG.md +0 -24
- package/node_modules/math-intrinsics/LICENSE +0 -21
- package/node_modules/math-intrinsics/README.md +0 -50
- package/node_modules/math-intrinsics/abs.d.ts +0 -1
- package/node_modules/math-intrinsics/abs.js +0 -4
- package/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxArrayLength.js +0 -4
- package/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxSafeInteger.js +0 -5
- package/node_modules/math-intrinsics/constants/maxValue.d.ts +0 -3
- package/node_modules/math-intrinsics/constants/maxValue.js +0 -5
- package/node_modules/math-intrinsics/floor.d.ts +0 -1
- package/node_modules/math-intrinsics/floor.js +0 -4
- package/node_modules/math-intrinsics/isFinite.d.ts +0 -3
- package/node_modules/math-intrinsics/isFinite.js +0 -12
- package/node_modules/math-intrinsics/isInteger.d.ts +0 -3
- package/node_modules/math-intrinsics/isInteger.js +0 -16
- package/node_modules/math-intrinsics/isNaN.d.ts +0 -1
- package/node_modules/math-intrinsics/isNaN.js +0 -6
- package/node_modules/math-intrinsics/isNegativeZero.d.ts +0 -3
- package/node_modules/math-intrinsics/isNegativeZero.js +0 -6
- package/node_modules/math-intrinsics/max.d.ts +0 -1
- package/node_modules/math-intrinsics/max.js +0 -4
- package/node_modules/math-intrinsics/min.d.ts +0 -1
- package/node_modules/math-intrinsics/min.js +0 -4
- package/node_modules/math-intrinsics/mod.d.ts +0 -3
- package/node_modules/math-intrinsics/mod.js +0 -9
- package/node_modules/math-intrinsics/package.json +0 -86
- package/node_modules/math-intrinsics/pow.d.ts +0 -1
- package/node_modules/math-intrinsics/pow.js +0 -4
- package/node_modules/math-intrinsics/round.d.ts +0 -1
- package/node_modules/math-intrinsics/round.js +0 -4
- package/node_modules/math-intrinsics/sign.d.ts +0 -3
- package/node_modules/math-intrinsics/sign.js +0 -11
- package/node_modules/math-intrinsics/test/index.js +0 -192
- package/node_modules/math-intrinsics/tsconfig.json +0 -3
- package/node_modules/mime-db/HISTORY.md +0 -507
- package/node_modules/mime-db/LICENSE +0 -23
- package/node_modules/mime-db/README.md +0 -100
- package/node_modules/mime-db/db.json +0 -8519
- package/node_modules/mime-db/index.js +0 -12
- package/node_modules/mime-db/package.json +0 -60
- package/node_modules/mime-types/HISTORY.md +0 -397
- package/node_modules/mime-types/LICENSE +0 -23
- package/node_modules/mime-types/README.md +0 -113
- package/node_modules/mime-types/index.js +0 -188
- package/node_modules/mime-types/package.json +0 -44
- package/node_modules/parseley/lib/ast.d.ts +0 -148
- package/node_modules/parseley/lib/parseley.d.ts +0 -39
- package/node_modules/parseley/lib/parser.d.ts +0 -19
- package/node_modules/path-expression-matcher/LICENSE +0 -21
- package/node_modules/path-expression-matcher/README.md +0 -872
- package/node_modules/path-expression-matcher/lib/pem.cjs +0 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +0 -634
- package/node_modules/path-expression-matcher/lib/pem.min.js +0 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +0 -1
- package/node_modules/path-expression-matcher/package.json +0 -78
- package/node_modules/path-expression-matcher/src/Expression.js +0 -232
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +0 -209
- package/node_modules/path-expression-matcher/src/Matcher.js +0 -570
- package/node_modules/path-expression-matcher/src/index.d.ts +0 -523
- package/node_modules/path-expression-matcher/src/index.js +0 -29
- package/node_modules/peberminta/lib/char.d.ts +0 -154
- package/node_modules/peberminta/lib/core.d.ts +0 -1051
- package/node_modules/peberminta/lib/util.cjs +0 -13
- package/node_modules/proxy-from-env/LICENSE +0 -20
- package/node_modules/proxy-from-env/README.md +0 -163
- package/node_modules/proxy-from-env/index.cjs +0 -105
- package/node_modules/proxy-from-env/index.js +0 -103
- package/node_modules/proxy-from-env/package.json +0 -43
- package/node_modules/retry/License +0 -21
- package/node_modules/retry/README.md +0 -227
- package/node_modules/retry/example/dns.js +0 -31
- package/node_modules/retry/example/stop.js +0 -40
- package/node_modules/retry/index.js +0 -1
- package/node_modules/retry/lib/retry.js +0 -100
- package/node_modules/retry/lib/retry_operation.js +0 -162
- package/node_modules/retry/package.json +0 -36
- package/node_modules/selderee/lib/Ast.d.ts +0 -100
- package/node_modules/selderee/lib/DecisionTree.d.ts +0 -34
- package/node_modules/selderee/lib/Picker.d.ts +0 -49
- package/node_modules/selderee/lib/TreeifyBuilder.d.ts +0 -16
- package/node_modules/selderee/lib/Types.d.ts +0 -20
- package/node_modules/selderee/lib/selderee.d.ts +0 -5
- package/node_modules/strnum/CHANGELOG.md +0 -40
- package/node_modules/strnum/LICENSE +0 -21
- package/node_modules/strnum/README.md +0 -104
- package/node_modules/strnum/package.json +0 -31
- package/node_modules/strnum/strnum.js +0 -161
- package/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/uuid/CONTRIBUTING.md +0 -18
- 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/md5-browser.js +0 -223
- package/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/@aws-sdk/{middleware-host-header → checksums}/LICENSE +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/submodules/crc/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/constants.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksum.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getChecksumLocationName.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/hasHeader.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/stringUnionSelector.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/submodules/flexible-checksums}/types.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/crc/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-es → core/dist-es/submodules/client/middleware-logger}/loggerMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/getRecursionDetectionPlugin.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-es → core/dist-es/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/constants.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-es → core/dist-es/submodules/client/middleware-user-agent}/encode-features.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/extensions/index.js → core/dist-es/submodules/client/region-config-resolver/extensions.js} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.js +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-es/regionConfig → core/dist-es/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/lib/aws/parseArn.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/EndpointRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/ErrorRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/RuleSetObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/TreeRuleObject.js +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-es → core/dist-es/submodules/client/util-endpoints}/types/shared.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es → core/dist-es/submodules/client/util-user-agent-browser}/createUserAgentStringParsingProvider.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.js} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-es/index.native.js → core/dist-es/submodules/client/util-user-agent-browser/defaultUserAgent.native.js} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/crt-availability.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.js +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-es → core/dist-es/submodules/client/util-user-agent-node}/is-crt-available.js +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-es/index.js → core/dist-es/submodules/util/util-arn-parser/arn.js} +0 -0
- /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/index.d.ts → core/dist-types/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-types → core/dist-types/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/getRecursionDetectionPlugin.d.ts → core/dist-types/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types → core/dist-types/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types → core/dist-types/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/extensions/index.d.ts → core/dist-types/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/regionConfig → core/dist-types/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types → core/dist-types/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types → core/dist-types/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/index.native.d.ts → core/dist-types/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types → core/dist-types/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/index.d.ts → core/dist-types/submodules/util/util-arn-parser/arn.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-host-header/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/middleware-host-header/hostHeaderMiddleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-logger/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-logger}/loggerMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4/getRecursionDetectionPlugin.d.ts → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection/getRecursionDetectionPlugin.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-recursion-detection/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-recursion-detection}/recursionDetectionMiddleware.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/check-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/encode-features.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-user-agent/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/middleware-user-agent}/user-agent-middleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/extensions/index.d.ts → core/dist-types/ts3.4/submodules/client/region-config-resolver/extensions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{region-config-resolver/dist-types/ts3.4/regionConfig → core/dist-types/ts3.4/submodules/client/region-config-resolver}/stsRegionDefaultResolver.native.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/isVirtualHostableS3Bucket.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/parseArn.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/lib/aws/partition.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-endpoints/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-endpoints}/resolveDefaultAwsRegionalEndpointsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-browser}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-browser/dist-types/ts3.4/index.native.d.ts → core/dist-types/ts3.4/submodules/client/util-user-agent-browser/defaultUserAgent.native.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/crt-availability.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/defaultUserAgent.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/getRuntimeUserAgentPair.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-user-agent-node/dist-types/ts3.4 → core/dist-types/ts3.4/submodules/client/util-user-agent-node}/is-crt-available.d.ts +0 -0
- /package/node_modules/@aws-sdk/{util-arn-parser/dist-types/ts3.4/index.d.ts → core/dist-types/ts3.4/submodules/util/util-arn-parser/arn.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostname.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint/middleware-location-constraint.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{bucket-endpoint-middleware.js → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-endpoint-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-ssec/middleware-ssec.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemeEndpointRuleSetPlugin.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/getHttpAuthSchemePlugin.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{pagination → legacy-root-exports/pagination}/createPaginator.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/memoizeIdentityProvider.js +0 -0
- /package/node_modules/@smithy/{chunked-blob-reader/dist-es/index.js → core/dist-es/submodules/checksum/chunked-blob-reader/chunked-blob-reader.js} +0 -0
- /package/node_modules/@smithy/{hash-stream-node/dist-es → core/dist-es/submodules/checksum/hash-stream-node}/readableStreamHasher.js +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidFunction.js +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-es → core/dist-es/submodules/client/invalid-dependency}/invalidProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/client/middleware-stack}/MiddlewareStack.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/client/middleware-stack}/types.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/NoOpLogger.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/constants.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/create-aggregated-client.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/default-error-handler.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/defaults-mode.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/emitWarningIfUnsupportedVersion.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/exceptions.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/extensions/retry.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/get-array-if-single-item.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/is-serializable-header-value.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/object-mapping.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/schemaLogFilter.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/ser-utils.js +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-es → core/dist-es/submodules/client/smithy-client}/serde-json.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/circularReplacer.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/sleep.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/utils/validate.js +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-es → core/dist-es/submodules/client/util-waiter}/waiter.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/getRealRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/isFipsRegion.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariant.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/PartitionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/RegionHash.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getRegionInfo.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedHostname.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedPartition.js +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-es → core/dist-es/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.js +0 -0
- /package/node_modules/@smithy/{util-defaults-mode-node/dist-es → core/dist-es/submodules/config/defaults-mode}/defaultsModeConfig.js +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-es → core/dist-es/submodules/config/node-config-provider}/getSelectorName.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/CredentialsProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/ProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/TokenProviderError.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/chain.js +0 -0
- /package/node_modules/@smithy/{property-provider/dist-es → core/dist-es/submodules/config/property-provider}/memoize.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/constants.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/externalDataInterceptor.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getConfigData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getProfileName.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/getSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/loadSsoSessionData.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/mergeConfigFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseIni.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/parseKnownFiles.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/config/shared-ini-file-loader}/readFile.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es/retry-pre-sra-deprecated → core/dist-es/submodules/config/shared-ini-file-loader}/types.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/booleanSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/numberSelector.js +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-es → core/dist-es/submodules/config/util-config-provider}/types.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.js +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-es → core/dist-es/submodules/endpoints/middleware-endpoint}/service-customizations/s3.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/cache/EndpointCache.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/debugId.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/debug/toDebugString.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/getEndpointUrlConfig.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/booleanEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/getAttrPathList.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isIpAddress.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/isSet.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/not.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/parseURL.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/stringEquals.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/lib/uriEncode.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointError.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/RuleSetObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/TreeRuleObject.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/types/shared.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/callFunction.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es → core/dist-es/submodules/endpoints/util-endpoints}/utils/getEndpointUrl.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/Message.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/MessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-es → core/dist-es/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.js +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-es → core/dist-es/submodules/event-streams/eventstream-serde-universal}/getUnmarshalledStream.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Field.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/Fields.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/extensions/httpExtensionConfiguration.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/protocols/protocol-http}/httpHandler.js +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-es → core/dist-es/submodules/protocols/protocol-http}/types.js +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri-path.js +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-es → core/dist-es/submodules/protocols/util-uri-escape}/escape-uri.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/isStreamingPayload/isStreamingPayload.browser.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/longPollMiddleware.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated}/types.js +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-es → core/dist-es/submodules/retry/middleware-retry}/util.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/config.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/constants.js +0 -0
- /package/node_modules/@smithy/{util-retry/dist-es → core/dist-es/submodules/retry/util-retry}/retries-2026-config.js +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-es → core/dist-es/submodules/retry/util-retry}/types.js +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-es/index.js → @smithy/core/dist-es/submodules/serde/is-array-buffer/is-array-buffer.js} +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serdePlugin.js +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-es → core/dist-es/submodules/serde/middleware-serde}/serializerMiddleware.js +0 -0
- /package/node_modules/@smithy/{util-base64/dist-es/constants.browser.js → core/dist-es/submodules/serde/util-base64/constants-for-browser.js} +0 -0
- /package/node_modules/@smithy/{util-body-length-browser/dist-es/calculateBodyLength.js → core/dist-es/submodules/serde/util-body-length/calculateBodyLength.browser.js} +0 -0
- /package/node_modules/@smithy/{util-hex-encoding/dist-es/index.js → core/dist-es/submodules/serde/util-hex-encoding/hex-encoding.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/ByteArrayCollector.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/checksum/ChecksumStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es/createBufferedReadableStream.js → core/dist-es/submodules/serde/util-stream/createBufferedReadable.browser.js} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/getAwsChunkedEncodingStream.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/headStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/splitStream.browser.js +0 -0
- /package/node_modules/@smithy/{util-stream/dist-es → core/dist-es/submodules/serde/util-stream}/stream-type-check.js +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/fromUtf8.browser.js +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-es → @smithy/core/dist-es/submodules/serde/util-utf8}/toUtf8.browser.js +0 -0
- /package/node_modules/@smithy/core/dist-es/{getSmithyContext.js → submodules/transport/getSmithyContext.js} +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/httpRequest.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/httpResponse.js +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-es/lib → core/dist-es/submodules/transport}/isValidHostLabel.js +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-es → core/dist-es/submodules/transport}/isValidHostname.js +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-es → core/dist-es/submodules/transport}/normalizeProvider.js +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-es/index.js → core/dist-es/submodules/transport/parseQueryString.js} +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-auth-scheme → legacy-root-exports/middleware-http-auth-scheme}/resolveAuthOptions.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/getHttpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{middleware-http-signing → legacy-root-exports/middleware-http-signing}/httpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/DefaultIdentityProviderConfig.d.ts +0 -0
- /package/node_modules/@smithy/core/dist-types/{util-identity-and-auth → legacy-root-exports/util-identity-and-auth}/httpAuthSchemes/noAuth.d.ts +0 -0
- /package/node_modules/@smithy/{chunked-blob-reader-native/dist-types/index.d.ts → core/dist-types/submodules/checksum/chunked-blob-reader/chunked-blob-reader.native.d.ts} +0 -0
- /package/node_modules/@smithy/{hash-blob-browser/dist-types/index.d.ts → core/dist-types/submodules/checksum/hash-blob-browser/blobHasher.d.ts} +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidFunction.d.ts +0 -0
- /package/node_modules/@smithy/{invalid-dependency/dist-types → core/dist-types/submodules/client/invalid-dependency}/invalidProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/MiddlewareStack.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-stack/dist-types → core/dist-types/submodules/client/middleware-stack}/types.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/NoOpLogger.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/defaults-mode.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/extensions/retry.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/is-serializable-header-value.d.ts +0 -0
- /package/node_modules/@smithy/{smithy-client/dist-types → core/dist-types/submodules/client/smithy-client}/schemaLogFilter.d.ts +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/circularReplacer.d.ts +0 -0
- /package/node_modules/@smithy/{util-waiter/dist-types → core/dist-types/submodules/client/util-waiter}/utils/sleep.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/resolveCustomEndpointsConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/endpointsConfig/utils/getEndpointFromRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/checkRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/getRealRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/isFipsRegion.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionConfig/resolveRegionConfig.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariant.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/EndpointVariantTag.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/PartitionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/RegionHash.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getHostnameFromVariants.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getRegionInfo.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedHostname.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedPartition.d.ts +0 -0
- /package/node_modules/@smithy/{config-resolver/dist-types → core/dist-types/submodules/config/config-resolver}/regionInfo/getResolvedSigningRegion.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromEnv.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/fromStatic.d.ts +0 -0
- /package/node_modules/@smithy/{node-config-provider/dist-types → core/dist-types/submodules/config/node-config-provider}/getSelectorName.d.ts +0 -0
- /package/node_modules/@smithy/{property-provider/dist-types → core/dist-types/submodules/config/property-provider}/memoize.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/externalDataInterceptor.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getConfigFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getCredentialsFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getHomeDir.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getProfileName.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/getSSOTokenFilepath.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSharedConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/loadSsoSessionData.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/mergeConfigFiles.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/readFile.d.ts +0 -0
- /package/node_modules/@smithy/{shared-ini-file-loader/dist-types → core/dist-types/submodules/config/shared-ini-file-loader}/types.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/booleanSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/numberSelector.d.ts +0 -0
- /package/node_modules/@smithy/{util-config-provider/dist-types → core/dist-types/submodules/config/util-config-provider}/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/createConfigValueProvider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/adaptors/getEndpointFromConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/resolveEndpointRequiredConfig.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types → core/dist-types/submodules/endpoints/middleware-endpoint}/service-customizations/s3.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/debugId.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/debug/toDebugString.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/booleanEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttr.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/getAttrPathList.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isIpAddress.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/isSet.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/not.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/stringEquals.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/substring.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/lib/uriEncode.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointError.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/EndpointRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/ErrorRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/RuleSetObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/types/TreeRuleObject.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/callFunction.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/customEndpointFunctions.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateEndpointRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTemplate.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/evaluateTreeRule.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types → core/dist-types/submodules/endpoints/util-endpoints}/utils/getEndpointProperty.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/HeaderMarshaller.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Int64.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/Message.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/MessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageDecoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/SmithyMessageEncoderStream.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-codec/dist-types → core/dist-types/submodules/event-streams/eventstream-codec}/splitMessage.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-serde-config-resolver/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-config-resolver}/EventStreamSerdeConfig.d.ts +0 -0
- /package/node_modules/@smithy/{eventstream-serde-universal/dist-types → core/dist-types/submodules/event-streams/eventstream-serde-universal}/getChunkedStream.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-content-length/dist-types/index.d.ts → core/dist-types/submodules/protocols/middleware-content-length/contentLengthMiddleware.d.ts} +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/Fields.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/protocols/protocol-http}/types.d.ts +0 -0
- /package/node_modules/@smithy/{querystring-builder/dist-types/index.d.ts → core/dist-types/submodules/protocols/querystring-builder/buildQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri-path.d.ts +0 -0
- /package/node_modules/@smithy/{util-uri-escape/dist-types → core/dist-types/submodules/protocols/util-uri-escape}/escape-uri.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/longPollMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/omitRetryHeadersMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/parseRetryAfterHeader.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/StandardRetryStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/defaultRetryQuota.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/delayDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/retryDecider.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/retry-pre-sra-deprecated/types.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-retry/dist-types → core/dist-types/submodules/retry/middleware-retry}/util.d.ts +0 -0
- /package/node_modules/@smithy/{service-error-classification/dist-types → core/dist-types/submodules/retry/service-error-classification}/constants.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRateLimiter.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/DefaultRetryBackoffStrategy.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/config.d.ts +0 -0
- /package/node_modules/@smithy/{util-retry/dist-types → core/dist-types/submodules/retry/util-retry}/types.d.ts +0 -0
- /package/node_modules/@smithy/{hash-node/dist-types/index.d.ts → core/dist-types/submodules/serde/hash-node/hash-node.d.ts} +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts → @smithy/core/dist-types/submodules/serde/is-array-buffer/is-array-buffer.d.ts} +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/deserializerMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serdePlugin.d.ts +0 -0
- /package/node_modules/@smithy/{middleware-serde/dist-types → core/dist-types/submodules/serde/middleware-serde}/serializerMiddleware.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types/constants.browser.d.ts → core/dist-types/submodules/serde/util-base64/constants-for-browser.d.ts} +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/fromBase64.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-base64/dist-types → core/dist-types/submodules/serde/util-base64}/toBase64.d.ts +0 -0
- /package/node_modules/@smithy/{util-body-length-browser/dist-types/calculateBodyLength.d.ts → core/dist-types/submodules/serde/util-body-length/calculateBodyLength.browser.d.ts} +0 -0
- /package/node_modules/@smithy/{util-body-length-node/dist-types → core/dist-types/submodules/serde/util-body-length}/calculateBodyLength.d.ts +0 -0
- /package/node_modules/@smithy/{util-hex-encoding/dist-types/index.d.ts → core/dist-types/submodules/serde/util-hex-encoding/hex-encoding.d.ts} +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/ByteArrayCollector.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/checksum/ChecksumStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/getAwsChunkedEncodingStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/headStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/sdk-stream-mixin.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/splitStream.browser.d.ts +0 -0
- /package/node_modules/@smithy/{util-stream/dist-types → core/dist-types/submodules/serde/util-stream}/stream-type-check.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.browser.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/fromUtf8.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUint8Array.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.browser.d.ts +0 -0
- /package/node_modules/{@aws-crypto/sha1-browser/node_modules/@smithy/util-utf8/dist-types → @smithy/core/dist-types/submodules/serde/util-utf8}/toUtf8.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/transport}/httpResponse.d.ts +0 -0
- /package/node_modules/@smithy/{util-endpoints/dist-types/lib → core/dist-types/submodules/transport}/isValidHostLabel.d.ts +0 -0
- /package/node_modules/@smithy/{protocol-http/dist-types → core/dist-types/submodules/transport}/isValidHostname.d.ts +0 -0
- /package/node_modules/@smithy/{util-middleware/dist-types → core/dist-types/submodules/transport}/normalizeProvider.d.ts +0 -0
- /package/node_modules/@smithy/{querystring-parser/dist-types/index.d.ts → core/dist-types/submodules/transport/parseQueryString.d.ts} +0 -0
- /package/node_modules/@smithy/{url-parser/dist-types/index.d.ts → core/dist-types/submodules/transport/parseUrl.d.ts} +0 -0
- /package/node_modules/@smithy/core/dist-types/submodules/{endpoints → transport}/toEndpointV1.d.ts +0 -0
- /package/{lib/index-cli-synth.d.ts → node_modules/@smithy/types/dist-es/endpoints/EndpointParameterInstructions.js} +0 -0
- /package/{lib/scripts/publish-assets.d.ts → node_modules/@smithy/types/dist-es/metrics.js} +0 -0
- /package/node_modules/@smithy/{middleware-endpoint/dist-types/types.d.ts → types/dist-types/endpoints/EndpointParameterInstructions.d.ts} +0 -0
- /package/node_modules/htmlparser2/{lib → dist}/esm/WritableStream.js +0 -0
- /package/node_modules/peberminta/lib/{util.mjs → util/util.mjs} +0 -0
- /package/node_modules/{@smithy/eventstream-codec/dist-es/vectorTypes.fixture.js → uuid/dist/types.js} +0 -0
- /package/node_modules/{@smithy/util-retry/dist-es → uuid/dist-node}/types.js +0 -0
|
@@ -1,24 +1,59 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
2
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
4
|
+
const { Command: $Command } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = $Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
13
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
14
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
15
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
16
|
+
const { AwsQueryProtocol } = require("@aws-sdk/core/protocols");
|
|
17
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
18
|
+
|
|
19
|
+
const defaultSESHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
20
|
+
return {
|
|
21
|
+
operation: getSmithyContext(context).operation,
|
|
22
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
23
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
24
|
+
})(),
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
28
|
+
return {
|
|
29
|
+
schemeId: "aws.auth#sigv4",
|
|
30
|
+
signingProperties: {
|
|
31
|
+
name: "ses",
|
|
32
|
+
region: authParameters.region,
|
|
33
|
+
},
|
|
34
|
+
propertiesExtractor: (config, context) => ({
|
|
35
|
+
signingProperties: {
|
|
36
|
+
config,
|
|
37
|
+
context,
|
|
38
|
+
},
|
|
39
|
+
}),
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
const defaultSESHttpAuthSchemeProvider = (authParameters) => {
|
|
43
|
+
const options = [];
|
|
44
|
+
switch (authParameters.operation) {
|
|
45
|
+
default: {
|
|
46
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return options;
|
|
50
|
+
};
|
|
51
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
52
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
53
|
+
return Object.assign(config_0, {
|
|
54
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
55
|
+
});
|
|
56
|
+
};
|
|
22
57
|
|
|
23
58
|
const resolveClientEndpointParameters = (options) => {
|
|
24
59
|
return Object.assign(options, {
|
|
@@ -34,6 +69,2402 @@ const commonParams = {
|
|
|
34
69
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
35
70
|
};
|
|
36
71
|
|
|
72
|
+
var version = "3.1082.0";
|
|
73
|
+
var packageInfo = {
|
|
74
|
+
version: version};
|
|
75
|
+
|
|
76
|
+
const k = "ref";
|
|
77
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
78
|
+
const _data = {
|
|
79
|
+
conditions: [
|
|
80
|
+
[c, [g]],
|
|
81
|
+
[c, j],
|
|
82
|
+
["aws.partition", j, d],
|
|
83
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
84
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
86
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://email-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://email-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
96
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
97
|
+
["https://email.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
98
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
99
|
+
["https://email.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
100
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
101
|
+
]
|
|
102
|
+
};
|
|
103
|
+
const root = 2;
|
|
104
|
+
const r = 100_000_000;
|
|
105
|
+
const nodes = new Int32Array([
|
|
106
|
+
-1, 1, -1,
|
|
107
|
+
0, 12, 3,
|
|
108
|
+
1, 4, r + 11,
|
|
109
|
+
2, 5, r + 11,
|
|
110
|
+
3, 8, 6,
|
|
111
|
+
4, 7, r + 10,
|
|
112
|
+
5, r + 8, r + 9,
|
|
113
|
+
4, 10, 9,
|
|
114
|
+
6, r + 6, r + 7,
|
|
115
|
+
5, 11, r + 5,
|
|
116
|
+
6, r + 4, r + 5,
|
|
117
|
+
3, r + 1, 13,
|
|
118
|
+
4, r + 2, r + 3,
|
|
119
|
+
]);
|
|
120
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
121
|
+
|
|
122
|
+
const cache = new EndpointCache({
|
|
123
|
+
size: 50,
|
|
124
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
125
|
+
});
|
|
126
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
127
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
128
|
+
endpointParams: endpointParams,
|
|
129
|
+
logger: context.logger,
|
|
130
|
+
}));
|
|
131
|
+
};
|
|
132
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
133
|
+
|
|
134
|
+
class SESServiceException extends ServiceException {
|
|
135
|
+
constructor(options) {
|
|
136
|
+
super(options);
|
|
137
|
+
Object.setPrototypeOf(this, SESServiceException.prototype);
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
class AccountSendingPausedException extends SESServiceException {
|
|
142
|
+
name = "AccountSendingPausedException";
|
|
143
|
+
$fault = "client";
|
|
144
|
+
constructor(opts) {
|
|
145
|
+
super({
|
|
146
|
+
name: "AccountSendingPausedException",
|
|
147
|
+
$fault: "client",
|
|
148
|
+
...opts,
|
|
149
|
+
});
|
|
150
|
+
Object.setPrototypeOf(this, AccountSendingPausedException.prototype);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class AlreadyExistsException extends SESServiceException {
|
|
154
|
+
name = "AlreadyExistsException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Name;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "AlreadyExistsException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
164
|
+
this.Name = opts.Name;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class CannotDeleteException extends SESServiceException {
|
|
168
|
+
name = "CannotDeleteException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Name;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "CannotDeleteException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, CannotDeleteException.prototype);
|
|
178
|
+
this.Name = opts.Name;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class LimitExceededException extends SESServiceException {
|
|
182
|
+
name = "LimitExceededException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
constructor(opts) {
|
|
185
|
+
super({
|
|
186
|
+
name: "LimitExceededException",
|
|
187
|
+
$fault: "client",
|
|
188
|
+
...opts,
|
|
189
|
+
});
|
|
190
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
class RuleSetDoesNotExistException extends SESServiceException {
|
|
194
|
+
name = "RuleSetDoesNotExistException";
|
|
195
|
+
$fault = "client";
|
|
196
|
+
Name;
|
|
197
|
+
constructor(opts) {
|
|
198
|
+
super({
|
|
199
|
+
name: "RuleSetDoesNotExistException",
|
|
200
|
+
$fault: "client",
|
|
201
|
+
...opts,
|
|
202
|
+
});
|
|
203
|
+
Object.setPrototypeOf(this, RuleSetDoesNotExistException.prototype);
|
|
204
|
+
this.Name = opts.Name;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
class ConfigurationSetAlreadyExistsException extends SESServiceException {
|
|
208
|
+
name = "ConfigurationSetAlreadyExistsException";
|
|
209
|
+
$fault = "client";
|
|
210
|
+
ConfigurationSetName;
|
|
211
|
+
constructor(opts) {
|
|
212
|
+
super({
|
|
213
|
+
name: "ConfigurationSetAlreadyExistsException",
|
|
214
|
+
$fault: "client",
|
|
215
|
+
...opts,
|
|
216
|
+
});
|
|
217
|
+
Object.setPrototypeOf(this, ConfigurationSetAlreadyExistsException.prototype);
|
|
218
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
class ConfigurationSetDoesNotExistException extends SESServiceException {
|
|
222
|
+
name = "ConfigurationSetDoesNotExistException";
|
|
223
|
+
$fault = "client";
|
|
224
|
+
ConfigurationSetName;
|
|
225
|
+
constructor(opts) {
|
|
226
|
+
super({
|
|
227
|
+
name: "ConfigurationSetDoesNotExistException",
|
|
228
|
+
$fault: "client",
|
|
229
|
+
...opts,
|
|
230
|
+
});
|
|
231
|
+
Object.setPrototypeOf(this, ConfigurationSetDoesNotExistException.prototype);
|
|
232
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class ConfigurationSetSendingPausedException extends SESServiceException {
|
|
236
|
+
name = "ConfigurationSetSendingPausedException";
|
|
237
|
+
$fault = "client";
|
|
238
|
+
ConfigurationSetName;
|
|
239
|
+
constructor(opts) {
|
|
240
|
+
super({
|
|
241
|
+
name: "ConfigurationSetSendingPausedException",
|
|
242
|
+
$fault: "client",
|
|
243
|
+
...opts,
|
|
244
|
+
});
|
|
245
|
+
Object.setPrototypeOf(this, ConfigurationSetSendingPausedException.prototype);
|
|
246
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
class InvalidConfigurationSetException extends SESServiceException {
|
|
250
|
+
name = "InvalidConfigurationSetException";
|
|
251
|
+
$fault = "client";
|
|
252
|
+
constructor(opts) {
|
|
253
|
+
super({
|
|
254
|
+
name: "InvalidConfigurationSetException",
|
|
255
|
+
$fault: "client",
|
|
256
|
+
...opts,
|
|
257
|
+
});
|
|
258
|
+
Object.setPrototypeOf(this, InvalidConfigurationSetException.prototype);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
class EventDestinationAlreadyExistsException extends SESServiceException {
|
|
262
|
+
name = "EventDestinationAlreadyExistsException";
|
|
263
|
+
$fault = "client";
|
|
264
|
+
ConfigurationSetName;
|
|
265
|
+
EventDestinationName;
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "EventDestinationAlreadyExistsException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, EventDestinationAlreadyExistsException.prototype);
|
|
273
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
274
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
class InvalidCloudWatchDestinationException extends SESServiceException {
|
|
278
|
+
name = "InvalidCloudWatchDestinationException";
|
|
279
|
+
$fault = "client";
|
|
280
|
+
ConfigurationSetName;
|
|
281
|
+
EventDestinationName;
|
|
282
|
+
constructor(opts) {
|
|
283
|
+
super({
|
|
284
|
+
name: "InvalidCloudWatchDestinationException",
|
|
285
|
+
$fault: "client",
|
|
286
|
+
...opts,
|
|
287
|
+
});
|
|
288
|
+
Object.setPrototypeOf(this, InvalidCloudWatchDestinationException.prototype);
|
|
289
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
290
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
class InvalidFirehoseDestinationException extends SESServiceException {
|
|
294
|
+
name = "InvalidFirehoseDestinationException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
ConfigurationSetName;
|
|
297
|
+
EventDestinationName;
|
|
298
|
+
constructor(opts) {
|
|
299
|
+
super({
|
|
300
|
+
name: "InvalidFirehoseDestinationException",
|
|
301
|
+
$fault: "client",
|
|
302
|
+
...opts,
|
|
303
|
+
});
|
|
304
|
+
Object.setPrototypeOf(this, InvalidFirehoseDestinationException.prototype);
|
|
305
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
306
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
class InvalidSNSDestinationException extends SESServiceException {
|
|
310
|
+
name = "InvalidSNSDestinationException";
|
|
311
|
+
$fault = "client";
|
|
312
|
+
ConfigurationSetName;
|
|
313
|
+
EventDestinationName;
|
|
314
|
+
constructor(opts) {
|
|
315
|
+
super({
|
|
316
|
+
name: "InvalidSNSDestinationException",
|
|
317
|
+
$fault: "client",
|
|
318
|
+
...opts,
|
|
319
|
+
});
|
|
320
|
+
Object.setPrototypeOf(this, InvalidSNSDestinationException.prototype);
|
|
321
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
322
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
class InvalidTrackingOptionsException extends SESServiceException {
|
|
326
|
+
name = "InvalidTrackingOptionsException";
|
|
327
|
+
$fault = "client";
|
|
328
|
+
constructor(opts) {
|
|
329
|
+
super({
|
|
330
|
+
name: "InvalidTrackingOptionsException",
|
|
331
|
+
$fault: "client",
|
|
332
|
+
...opts,
|
|
333
|
+
});
|
|
334
|
+
Object.setPrototypeOf(this, InvalidTrackingOptionsException.prototype);
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
class TrackingOptionsAlreadyExistsException extends SESServiceException {
|
|
338
|
+
name = "TrackingOptionsAlreadyExistsException";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
ConfigurationSetName;
|
|
341
|
+
constructor(opts) {
|
|
342
|
+
super({
|
|
343
|
+
name: "TrackingOptionsAlreadyExistsException",
|
|
344
|
+
$fault: "client",
|
|
345
|
+
...opts,
|
|
346
|
+
});
|
|
347
|
+
Object.setPrototypeOf(this, TrackingOptionsAlreadyExistsException.prototype);
|
|
348
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
class CustomVerificationEmailInvalidContentException extends SESServiceException {
|
|
352
|
+
name = "CustomVerificationEmailInvalidContentException";
|
|
353
|
+
$fault = "client";
|
|
354
|
+
constructor(opts) {
|
|
355
|
+
super({
|
|
356
|
+
name: "CustomVerificationEmailInvalidContentException",
|
|
357
|
+
$fault: "client",
|
|
358
|
+
...opts,
|
|
359
|
+
});
|
|
360
|
+
Object.setPrototypeOf(this, CustomVerificationEmailInvalidContentException.prototype);
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
class CustomVerificationEmailTemplateAlreadyExistsException extends SESServiceException {
|
|
364
|
+
name = "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
365
|
+
$fault = "client";
|
|
366
|
+
CustomVerificationEmailTemplateName;
|
|
367
|
+
constructor(opts) {
|
|
368
|
+
super({
|
|
369
|
+
name: "CustomVerificationEmailTemplateAlreadyExistsException",
|
|
370
|
+
$fault: "client",
|
|
371
|
+
...opts,
|
|
372
|
+
});
|
|
373
|
+
Object.setPrototypeOf(this, CustomVerificationEmailTemplateAlreadyExistsException.prototype);
|
|
374
|
+
this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
class FromEmailAddressNotVerifiedException extends SESServiceException {
|
|
378
|
+
name = "FromEmailAddressNotVerifiedException";
|
|
379
|
+
$fault = "client";
|
|
380
|
+
FromEmailAddress;
|
|
381
|
+
constructor(opts) {
|
|
382
|
+
super({
|
|
383
|
+
name: "FromEmailAddressNotVerifiedException",
|
|
384
|
+
$fault: "client",
|
|
385
|
+
...opts,
|
|
386
|
+
});
|
|
387
|
+
Object.setPrototypeOf(this, FromEmailAddressNotVerifiedException.prototype);
|
|
388
|
+
this.FromEmailAddress = opts.FromEmailAddress;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
class InvalidLambdaFunctionException extends SESServiceException {
|
|
392
|
+
name = "InvalidLambdaFunctionException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
FunctionArn;
|
|
395
|
+
constructor(opts) {
|
|
396
|
+
super({
|
|
397
|
+
name: "InvalidLambdaFunctionException",
|
|
398
|
+
$fault: "client",
|
|
399
|
+
...opts,
|
|
400
|
+
});
|
|
401
|
+
Object.setPrototypeOf(this, InvalidLambdaFunctionException.prototype);
|
|
402
|
+
this.FunctionArn = opts.FunctionArn;
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
class InvalidS3ConfigurationException extends SESServiceException {
|
|
406
|
+
name = "InvalidS3ConfigurationException";
|
|
407
|
+
$fault = "client";
|
|
408
|
+
Bucket;
|
|
409
|
+
constructor(opts) {
|
|
410
|
+
super({
|
|
411
|
+
name: "InvalidS3ConfigurationException",
|
|
412
|
+
$fault: "client",
|
|
413
|
+
...opts,
|
|
414
|
+
});
|
|
415
|
+
Object.setPrototypeOf(this, InvalidS3ConfigurationException.prototype);
|
|
416
|
+
this.Bucket = opts.Bucket;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
class InvalidSnsTopicException extends SESServiceException {
|
|
420
|
+
name = "InvalidSnsTopicException";
|
|
421
|
+
$fault = "client";
|
|
422
|
+
Topic;
|
|
423
|
+
constructor(opts) {
|
|
424
|
+
super({
|
|
425
|
+
name: "InvalidSnsTopicException",
|
|
426
|
+
$fault: "client",
|
|
427
|
+
...opts,
|
|
428
|
+
});
|
|
429
|
+
Object.setPrototypeOf(this, InvalidSnsTopicException.prototype);
|
|
430
|
+
this.Topic = opts.Topic;
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
class RuleDoesNotExistException extends SESServiceException {
|
|
434
|
+
name = "RuleDoesNotExistException";
|
|
435
|
+
$fault = "client";
|
|
436
|
+
Name;
|
|
437
|
+
constructor(opts) {
|
|
438
|
+
super({
|
|
439
|
+
name: "RuleDoesNotExistException",
|
|
440
|
+
$fault: "client",
|
|
441
|
+
...opts,
|
|
442
|
+
});
|
|
443
|
+
Object.setPrototypeOf(this, RuleDoesNotExistException.prototype);
|
|
444
|
+
this.Name = opts.Name;
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
class InvalidTemplateException extends SESServiceException {
|
|
448
|
+
name = "InvalidTemplateException";
|
|
449
|
+
$fault = "client";
|
|
450
|
+
TemplateName;
|
|
451
|
+
constructor(opts) {
|
|
452
|
+
super({
|
|
453
|
+
name: "InvalidTemplateException",
|
|
454
|
+
$fault: "client",
|
|
455
|
+
...opts,
|
|
456
|
+
});
|
|
457
|
+
Object.setPrototypeOf(this, InvalidTemplateException.prototype);
|
|
458
|
+
this.TemplateName = opts.TemplateName;
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
class CustomVerificationEmailTemplateDoesNotExistException extends SESServiceException {
|
|
462
|
+
name = "CustomVerificationEmailTemplateDoesNotExistException";
|
|
463
|
+
$fault = "client";
|
|
464
|
+
CustomVerificationEmailTemplateName;
|
|
465
|
+
constructor(opts) {
|
|
466
|
+
super({
|
|
467
|
+
name: "CustomVerificationEmailTemplateDoesNotExistException",
|
|
468
|
+
$fault: "client",
|
|
469
|
+
...opts,
|
|
470
|
+
});
|
|
471
|
+
Object.setPrototypeOf(this, CustomVerificationEmailTemplateDoesNotExistException.prototype);
|
|
472
|
+
this.CustomVerificationEmailTemplateName = opts.CustomVerificationEmailTemplateName;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
class EventDestinationDoesNotExistException extends SESServiceException {
|
|
476
|
+
name = "EventDestinationDoesNotExistException";
|
|
477
|
+
$fault = "client";
|
|
478
|
+
ConfigurationSetName;
|
|
479
|
+
EventDestinationName;
|
|
480
|
+
constructor(opts) {
|
|
481
|
+
super({
|
|
482
|
+
name: "EventDestinationDoesNotExistException",
|
|
483
|
+
$fault: "client",
|
|
484
|
+
...opts,
|
|
485
|
+
});
|
|
486
|
+
Object.setPrototypeOf(this, EventDestinationDoesNotExistException.prototype);
|
|
487
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
488
|
+
this.EventDestinationName = opts.EventDestinationName;
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
class TrackingOptionsDoesNotExistException extends SESServiceException {
|
|
492
|
+
name = "TrackingOptionsDoesNotExistException";
|
|
493
|
+
$fault = "client";
|
|
494
|
+
ConfigurationSetName;
|
|
495
|
+
constructor(opts) {
|
|
496
|
+
super({
|
|
497
|
+
name: "TrackingOptionsDoesNotExistException",
|
|
498
|
+
$fault: "client",
|
|
499
|
+
...opts,
|
|
500
|
+
});
|
|
501
|
+
Object.setPrototypeOf(this, TrackingOptionsDoesNotExistException.prototype);
|
|
502
|
+
this.ConfigurationSetName = opts.ConfigurationSetName;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
class TemplateDoesNotExistException extends SESServiceException {
|
|
506
|
+
name = "TemplateDoesNotExistException";
|
|
507
|
+
$fault = "client";
|
|
508
|
+
TemplateName;
|
|
509
|
+
constructor(opts) {
|
|
510
|
+
super({
|
|
511
|
+
name: "TemplateDoesNotExistException",
|
|
512
|
+
$fault: "client",
|
|
513
|
+
...opts,
|
|
514
|
+
});
|
|
515
|
+
Object.setPrototypeOf(this, TemplateDoesNotExistException.prototype);
|
|
516
|
+
this.TemplateName = opts.TemplateName;
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
class InvalidDeliveryOptionsException extends SESServiceException {
|
|
520
|
+
name = "InvalidDeliveryOptionsException";
|
|
521
|
+
$fault = "client";
|
|
522
|
+
constructor(opts) {
|
|
523
|
+
super({
|
|
524
|
+
name: "InvalidDeliveryOptionsException",
|
|
525
|
+
$fault: "client",
|
|
526
|
+
...opts,
|
|
527
|
+
});
|
|
528
|
+
Object.setPrototypeOf(this, InvalidDeliveryOptionsException.prototype);
|
|
529
|
+
}
|
|
530
|
+
}
|
|
531
|
+
class InvalidPolicyException extends SESServiceException {
|
|
532
|
+
name = "InvalidPolicyException";
|
|
533
|
+
$fault = "client";
|
|
534
|
+
constructor(opts) {
|
|
535
|
+
super({
|
|
536
|
+
name: "InvalidPolicyException",
|
|
537
|
+
$fault: "client",
|
|
538
|
+
...opts,
|
|
539
|
+
});
|
|
540
|
+
Object.setPrototypeOf(this, InvalidPolicyException.prototype);
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
class InvalidRenderingParameterException extends SESServiceException {
|
|
544
|
+
name = "InvalidRenderingParameterException";
|
|
545
|
+
$fault = "client";
|
|
546
|
+
TemplateName;
|
|
547
|
+
constructor(opts) {
|
|
548
|
+
super({
|
|
549
|
+
name: "InvalidRenderingParameterException",
|
|
550
|
+
$fault: "client",
|
|
551
|
+
...opts,
|
|
552
|
+
});
|
|
553
|
+
Object.setPrototypeOf(this, InvalidRenderingParameterException.prototype);
|
|
554
|
+
this.TemplateName = opts.TemplateName;
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
class MailFromDomainNotVerifiedException extends SESServiceException {
|
|
558
|
+
name = "MailFromDomainNotVerifiedException";
|
|
559
|
+
$fault = "client";
|
|
560
|
+
constructor(opts) {
|
|
561
|
+
super({
|
|
562
|
+
name: "MailFromDomainNotVerifiedException",
|
|
563
|
+
$fault: "client",
|
|
564
|
+
...opts,
|
|
565
|
+
});
|
|
566
|
+
Object.setPrototypeOf(this, MailFromDomainNotVerifiedException.prototype);
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
class MessageRejected extends SESServiceException {
|
|
570
|
+
name = "MessageRejected";
|
|
571
|
+
$fault = "client";
|
|
572
|
+
constructor(opts) {
|
|
573
|
+
super({
|
|
574
|
+
name: "MessageRejected",
|
|
575
|
+
$fault: "client",
|
|
576
|
+
...opts,
|
|
577
|
+
});
|
|
578
|
+
Object.setPrototypeOf(this, MessageRejected.prototype);
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
class MissingRenderingAttributeException extends SESServiceException {
|
|
582
|
+
name = "MissingRenderingAttributeException";
|
|
583
|
+
$fault = "client";
|
|
584
|
+
TemplateName;
|
|
585
|
+
constructor(opts) {
|
|
586
|
+
super({
|
|
587
|
+
name: "MissingRenderingAttributeException",
|
|
588
|
+
$fault: "client",
|
|
589
|
+
...opts,
|
|
590
|
+
});
|
|
591
|
+
Object.setPrototypeOf(this, MissingRenderingAttributeException.prototype);
|
|
592
|
+
this.TemplateName = opts.TemplateName;
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
class ProductionAccessNotGrantedException extends SESServiceException {
|
|
596
|
+
name = "ProductionAccessNotGrantedException";
|
|
597
|
+
$fault = "client";
|
|
598
|
+
constructor(opts) {
|
|
599
|
+
super({
|
|
600
|
+
name: "ProductionAccessNotGrantedException",
|
|
601
|
+
$fault: "client",
|
|
602
|
+
...opts,
|
|
603
|
+
});
|
|
604
|
+
Object.setPrototypeOf(this, ProductionAccessNotGrantedException.prototype);
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
const _A = "After";
|
|
609
|
+
const _AD = "ArrivalDate";
|
|
610
|
+
const _AEE = "AlreadyExistsException";
|
|
611
|
+
const _AHA = "AddHeaderAction";
|
|
612
|
+
const _ASPE = "AccountSendingPausedException";
|
|
613
|
+
const _Ac = "Actions";
|
|
614
|
+
const _Act = "Action";
|
|
615
|
+
const _B = "Bucket";
|
|
616
|
+
const _BA = "BounceAction";
|
|
617
|
+
const _BAc = "BccAddresses";
|
|
618
|
+
const _BED = "BulkEmailDestination";
|
|
619
|
+
const _BEDL = "BulkEmailDestinationList";
|
|
620
|
+
const _BEDS = "BulkEmailDestinationStatus";
|
|
621
|
+
const _BEDSL = "BulkEmailDestinationStatusList";
|
|
622
|
+
const _BN = "BucketName";
|
|
623
|
+
const _BOMXF = "BehaviorOnMXFailure";
|
|
624
|
+
const _BRI = "BouncedRecipientInfo";
|
|
625
|
+
const _BRIL = "BouncedRecipientInfoList";
|
|
626
|
+
const _BS = "BounceSender";
|
|
627
|
+
const _BSA = "BounceSenderArn";
|
|
628
|
+
const _BT = "BounceType";
|
|
629
|
+
const _BTo = "BounceTopic";
|
|
630
|
+
const _Bo = "Body";
|
|
631
|
+
const _Bou = "Bounces";
|
|
632
|
+
const _C = "Content";
|
|
633
|
+
const _CA = "ConnectAction";
|
|
634
|
+
const _CAc = "CcAddresses";
|
|
635
|
+
const _CCS = "CreateConfigurationSet";
|
|
636
|
+
const _CCSED = "CreateConfigurationSetEventDestination";
|
|
637
|
+
const _CCSEDR = "CreateConfigurationSetEventDestinationRequest";
|
|
638
|
+
const _CCSEDRr = "CreateConfigurationSetEventDestinationResponse";
|
|
639
|
+
const _CCSR = "CreateConfigurationSetRequest";
|
|
640
|
+
const _CCSRr = "CreateConfigurationSetResponse";
|
|
641
|
+
const _CCSTO = "CreateConfigurationSetTrackingOptions";
|
|
642
|
+
const _CCSTOR = "CreateConfigurationSetTrackingOptionsRequest";
|
|
643
|
+
const _CCSTORr = "CreateConfigurationSetTrackingOptionsResponse";
|
|
644
|
+
const _CCVET = "CreateCustomVerificationEmailTemplate";
|
|
645
|
+
const _CCVETR = "CreateCustomVerificationEmailTemplateRequest";
|
|
646
|
+
const _CDE = "CannotDeleteException";
|
|
647
|
+
const _CRD = "CustomRedirectDomain";
|
|
648
|
+
const _CRF = "CreateReceiptFilter";
|
|
649
|
+
const _CRFR = "CreateReceiptFilterRequest";
|
|
650
|
+
const _CRFRr = "CreateReceiptFilterResponse";
|
|
651
|
+
const _CRR = "CreateReceiptRule";
|
|
652
|
+
const _CRRR = "CreateReceiptRuleRequest";
|
|
653
|
+
const _CRRRr = "CreateReceiptRuleResponse";
|
|
654
|
+
const _CRRS = "CloneReceiptRuleSet";
|
|
655
|
+
const _CRRSR = "CloneReceiptRuleSetRequest";
|
|
656
|
+
const _CRRSRl = "CloneReceiptRuleSetResponse";
|
|
657
|
+
const _CRRSRr = "CreateReceiptRuleSetRequest";
|
|
658
|
+
const _CRRSRre = "CreateReceiptRuleSetResponse";
|
|
659
|
+
const _CRRSr = "CreateReceiptRuleSet";
|
|
660
|
+
const _CS = "ConfigurationSet";
|
|
661
|
+
const _CSAEE = "ConfigurationSetAlreadyExistsException";
|
|
662
|
+
const _CSAN = "ConfigurationSetAttributeNames";
|
|
663
|
+
const _CSDNEE = "ConfigurationSetDoesNotExistException";
|
|
664
|
+
const _CSN = "ConfigurationSetName";
|
|
665
|
+
const _CSSPE = "ConfigurationSetSendingPausedException";
|
|
666
|
+
const _CSo = "ConfigurationSets";
|
|
667
|
+
const _CT = "ComplaintTopic";
|
|
668
|
+
const _CTR = "CreateTemplateRequest";
|
|
669
|
+
const _CTRr = "CreateTemplateResponse";
|
|
670
|
+
const _CTr = "CreatedTimestamp";
|
|
671
|
+
const _CTre = "CreateTemplate";
|
|
672
|
+
const _CVEICE = "CustomVerificationEmailInvalidContentException";
|
|
673
|
+
const _CVET = "CustomVerificationEmailTemplate";
|
|
674
|
+
const _CVETAEE = "CustomVerificationEmailTemplateAlreadyExistsException";
|
|
675
|
+
const _CVETDNEE = "CustomVerificationEmailTemplateDoesNotExistException";
|
|
676
|
+
const _CVETN = "CustomVerificationEmailTemplateName";
|
|
677
|
+
const _CVETu = "CustomVerificationEmailTemplates";
|
|
678
|
+
const _CWD = "CloudWatchDestination";
|
|
679
|
+
const _CWDC = "CloudWatchDimensionConfiguration";
|
|
680
|
+
const _CWDCl = "CloudWatchDimensionConfigurations";
|
|
681
|
+
const _Ch = "Charset";
|
|
682
|
+
const _Ci = "Cidr";
|
|
683
|
+
const _Co = "Complaints";
|
|
684
|
+
const _D = "Destination";
|
|
685
|
+
const _DA = "DkimAttributes";
|
|
686
|
+
const _DARRS = "DescribeActiveReceiptRuleSet";
|
|
687
|
+
const _DARRSR = "DescribeActiveReceiptRuleSetRequest";
|
|
688
|
+
const _DARRSRe = "DescribeActiveReceiptRuleSetResponse";
|
|
689
|
+
const _DAe = "DeliveryAttempts";
|
|
690
|
+
const _DC = "DimensionConfigurations";
|
|
691
|
+
const _DCS = "DeleteConfigurationSet";
|
|
692
|
+
const _DCSED = "DeleteConfigurationSetEventDestination";
|
|
693
|
+
const _DCSEDR = "DeleteConfigurationSetEventDestinationRequest";
|
|
694
|
+
const _DCSEDRe = "DeleteConfigurationSetEventDestinationResponse";
|
|
695
|
+
const _DCSR = "DeleteConfigurationSetRequest";
|
|
696
|
+
const _DCSRe = "DeleteConfigurationSetResponse";
|
|
697
|
+
const _DCSRes = "DescribeConfigurationSetRequest";
|
|
698
|
+
const _DCSResc = "DescribeConfigurationSetResponse";
|
|
699
|
+
const _DCSTO = "DeleteConfigurationSetTrackingOptions";
|
|
700
|
+
const _DCSTOR = "DeleteConfigurationSetTrackingOptionsRequest";
|
|
701
|
+
const _DCSTORe = "DeleteConfigurationSetTrackingOptionsResponse";
|
|
702
|
+
const _DCSe = "DescribeConfigurationSet";
|
|
703
|
+
const _DCVET = "DeleteCustomVerificationEmailTemplate";
|
|
704
|
+
const _DCVETR = "DeleteCustomVerificationEmailTemplateRequest";
|
|
705
|
+
const _DCi = "DiagnosticCode";
|
|
706
|
+
const _DDV = "DefaultDimensionValue";
|
|
707
|
+
const _DE = "DkimEnabled";
|
|
708
|
+
const _DI = "DeleteIdentity";
|
|
709
|
+
const _DIP = "DeleteIdentityPolicy";
|
|
710
|
+
const _DIPR = "DeleteIdentityPolicyRequest";
|
|
711
|
+
const _DIPRe = "DeleteIdentityPolicyResponse";
|
|
712
|
+
const _DIR = "DeleteIdentityRequest";
|
|
713
|
+
const _DIRe = "DeleteIdentityResponse";
|
|
714
|
+
const _DN = "DimensionName";
|
|
715
|
+
const _DO = "DeliveryOptions";
|
|
716
|
+
const _DRF = "DeleteReceiptFilter";
|
|
717
|
+
const _DRFR = "DeleteReceiptFilterRequest";
|
|
718
|
+
const _DRFRe = "DeleteReceiptFilterResponse";
|
|
719
|
+
const _DRR = "DeleteReceiptRule";
|
|
720
|
+
const _DRRR = "DeleteReceiptRuleRequest";
|
|
721
|
+
const _DRRRe = "DeleteReceiptRuleResponse";
|
|
722
|
+
const _DRRRes = "DescribeReceiptRuleRequest";
|
|
723
|
+
const _DRRResc = "DescribeReceiptRuleResponse";
|
|
724
|
+
const _DRRS = "DeleteReceiptRuleSet";
|
|
725
|
+
const _DRRSR = "DeleteReceiptRuleSetRequest";
|
|
726
|
+
const _DRRSRe = "DeleteReceiptRuleSetResponse";
|
|
727
|
+
const _DRRSRes = "DescribeReceiptRuleSetRequest";
|
|
728
|
+
const _DRRSResc = "DescribeReceiptRuleSetResponse";
|
|
729
|
+
const _DRRSe = "DescribeReceiptRuleSet";
|
|
730
|
+
const _DRRe = "DescribeReceiptRule";
|
|
731
|
+
const _DSARN = "DeliveryStreamARN";
|
|
732
|
+
const _DT = "DkimTokens";
|
|
733
|
+
const _DTD = "DefaultTemplateData";
|
|
734
|
+
const _DTR = "DeleteTemplateRequest";
|
|
735
|
+
const _DTRe = "DeleteTemplateResponse";
|
|
736
|
+
const _DTe = "DeliveryTopic";
|
|
737
|
+
const _DTef = "DefaultTags";
|
|
738
|
+
const _DTel = "DeleteTemplate";
|
|
739
|
+
const _DVEA = "DeleteVerifiedEmailAddress";
|
|
740
|
+
const _DVEAR = "DeleteVerifiedEmailAddressRequest";
|
|
741
|
+
const _DVS = "DimensionValueSource";
|
|
742
|
+
const _DVSk = "DkimVerificationStatus";
|
|
743
|
+
const _Da = "Data";
|
|
744
|
+
const _De = "Destinations";
|
|
745
|
+
const _Do = "Domain";
|
|
746
|
+
const _E = "Error";
|
|
747
|
+
const _EA = "EmailAddress";
|
|
748
|
+
const _ED = "EventDestination";
|
|
749
|
+
const _EDAEE = "EventDestinationAlreadyExistsException";
|
|
750
|
+
const _EDDNEE = "EventDestinationDoesNotExistException";
|
|
751
|
+
const _EDN = "EventDestinationName";
|
|
752
|
+
const _EDv = "EventDestinations";
|
|
753
|
+
const _EF = "ExtensionField";
|
|
754
|
+
const _EFL = "ExtensionFieldList";
|
|
755
|
+
const _EFx = "ExtensionFields";
|
|
756
|
+
const _En = "Enabled";
|
|
757
|
+
const _Enc = "Encoding";
|
|
758
|
+
const _Ex = "Explanation";
|
|
759
|
+
const _F = "Filter";
|
|
760
|
+
const _FA = "FunctionArn";
|
|
761
|
+
const _FAr = "FromArn";
|
|
762
|
+
const _FE = "ForwardingEnabled";
|
|
763
|
+
const _FEA = "FromEmailAddress";
|
|
764
|
+
const _FEANVE = "FromEmailAddressNotVerifiedException";
|
|
765
|
+
const _FN = "FilterName";
|
|
766
|
+
const _FR = "FinalRecipient";
|
|
767
|
+
const _FRURL = "FailureRedirectionURL";
|
|
768
|
+
const _Fi = "Filters";
|
|
769
|
+
const _GASE = "GetAccountSendingEnabled";
|
|
770
|
+
const _GASER = "GetAccountSendingEnabledResponse";
|
|
771
|
+
const _GCVET = "GetCustomVerificationEmailTemplate";
|
|
772
|
+
const _GCVETR = "GetCustomVerificationEmailTemplateRequest";
|
|
773
|
+
const _GCVETRe = "GetCustomVerificationEmailTemplateResponse";
|
|
774
|
+
const _GIDA = "GetIdentityDkimAttributes";
|
|
775
|
+
const _GIDAR = "GetIdentityDkimAttributesRequest";
|
|
776
|
+
const _GIDARe = "GetIdentityDkimAttributesResponse";
|
|
777
|
+
const _GIMFDA = "GetIdentityMailFromDomainAttributes";
|
|
778
|
+
const _GIMFDAR = "GetIdentityMailFromDomainAttributesRequest";
|
|
779
|
+
const _GIMFDARe = "GetIdentityMailFromDomainAttributesResponse";
|
|
780
|
+
const _GINA = "GetIdentityNotificationAttributes";
|
|
781
|
+
const _GINAR = "GetIdentityNotificationAttributesRequest";
|
|
782
|
+
const _GINARe = "GetIdentityNotificationAttributesResponse";
|
|
783
|
+
const _GIP = "GetIdentityPolicies";
|
|
784
|
+
const _GIPR = "GetIdentityPoliciesRequest";
|
|
785
|
+
const _GIPRe = "GetIdentityPoliciesResponse";
|
|
786
|
+
const _GIVA = "GetIdentityVerificationAttributes";
|
|
787
|
+
const _GIVAR = "GetIdentityVerificationAttributesRequest";
|
|
788
|
+
const _GIVARe = "GetIdentityVerificationAttributesResponse";
|
|
789
|
+
const _GSQ = "GetSendQuota";
|
|
790
|
+
const _GSQR = "GetSendQuotaResponse";
|
|
791
|
+
const _GSS = "GetSendStatistics";
|
|
792
|
+
const _GSSR = "GetSendStatisticsResponse";
|
|
793
|
+
const _GT = "GetTemplate";
|
|
794
|
+
const _GTR = "GetTemplateRequest";
|
|
795
|
+
const _GTRe = "GetTemplateResponse";
|
|
796
|
+
const _H = "Html";
|
|
797
|
+
const _HIBNE = "HeadersInBounceNotificationsEnabled";
|
|
798
|
+
const _HICNE = "HeadersInComplaintNotificationsEnabled";
|
|
799
|
+
const _HIDNE = "HeadersInDeliveryNotificationsEnabled";
|
|
800
|
+
const _HN = "HeaderName";
|
|
801
|
+
const _HP = "HtmlPart";
|
|
802
|
+
const _HV = "HeaderValue";
|
|
803
|
+
const _I = "Identity";
|
|
804
|
+
const _IAMRARN = "IAMRoleARN";
|
|
805
|
+
const _IARN = "InstanceARN";
|
|
806
|
+
const _ICSE = "InvalidConfigurationSetException";
|
|
807
|
+
const _ICWDE = "InvalidCloudWatchDestinationException";
|
|
808
|
+
const _IDA = "IdentityDkimAttributes";
|
|
809
|
+
const _IDOE = "InvalidDeliveryOptionsException";
|
|
810
|
+
const _IF = "IpFilter";
|
|
811
|
+
const _IFDE = "InvalidFirehoseDestinationException";
|
|
812
|
+
const _ILFE = "InvalidLambdaFunctionException";
|
|
813
|
+
const _IMFDA = "IdentityMailFromDomainAttributes";
|
|
814
|
+
const _INA = "IdentityNotificationAttributes";
|
|
815
|
+
const _IPE = "InvalidPolicyException";
|
|
816
|
+
const _IRA = "IamRoleArn";
|
|
817
|
+
const _IRPE = "InvalidRenderingParameterException";
|
|
818
|
+
const _ISCE = "InvalidS3ConfigurationException";
|
|
819
|
+
const _ISNSDE = "InvalidSNSDestinationException";
|
|
820
|
+
const _ISTE = "InvalidSnsTopicException";
|
|
821
|
+
const _IT = "InvocationType";
|
|
822
|
+
const _ITE = "InvalidTemplateException";
|
|
823
|
+
const _ITOE = "InvalidTrackingOptionsException";
|
|
824
|
+
const _ITd = "IdentityType";
|
|
825
|
+
const _IVA = "IdentityVerificationAttributes";
|
|
826
|
+
const _Id = "Identities";
|
|
827
|
+
const _KFD = "KinesisFirehoseDestination";
|
|
828
|
+
const _KKA = "KmsKeyArn";
|
|
829
|
+
const _LA = "LambdaAction";
|
|
830
|
+
const _LAD = "LastAttemptDate";
|
|
831
|
+
const _LCS = "ListConfigurationSets";
|
|
832
|
+
const _LCSR = "ListConfigurationSetsRequest";
|
|
833
|
+
const _LCSRi = "ListConfigurationSetsResponse";
|
|
834
|
+
const _LCVET = "ListCustomVerificationEmailTemplates";
|
|
835
|
+
const _LCVETR = "ListCustomVerificationEmailTemplatesRequest";
|
|
836
|
+
const _LCVETRi = "ListCustomVerificationEmailTemplatesResponse";
|
|
837
|
+
const _LEE = "LimitExceededException";
|
|
838
|
+
const _LFS = "LastFreshStart";
|
|
839
|
+
const _LI = "ListIdentities";
|
|
840
|
+
const _LIP = "ListIdentityPolicies";
|
|
841
|
+
const _LIPR = "ListIdentityPoliciesRequest";
|
|
842
|
+
const _LIPRi = "ListIdentityPoliciesResponse";
|
|
843
|
+
const _LIR = "ListIdentitiesRequest";
|
|
844
|
+
const _LIRi = "ListIdentitiesResponse";
|
|
845
|
+
const _LRF = "ListReceiptFilters";
|
|
846
|
+
const _LRFR = "ListReceiptFiltersRequest";
|
|
847
|
+
const _LRFRi = "ListReceiptFiltersResponse";
|
|
848
|
+
const _LRRS = "ListReceiptRuleSets";
|
|
849
|
+
const _LRRSR = "ListReceiptRuleSetsRequest";
|
|
850
|
+
const _LRRSRi = "ListReceiptRuleSetsResponse";
|
|
851
|
+
const _LT = "ListTemplates";
|
|
852
|
+
const _LTR = "ListTemplatesRequest";
|
|
853
|
+
const _LTRi = "ListTemplatesResponse";
|
|
854
|
+
const _LVEA = "ListVerifiedEmailAddresses";
|
|
855
|
+
const _LVEAR = "ListVerifiedEmailAddressesResponse";
|
|
856
|
+
const _M = "Message";
|
|
857
|
+
const _MD = "MessageDsn";
|
|
858
|
+
const _MET = "MatchingEventTypes";
|
|
859
|
+
const _MFD = "MailFromDomain";
|
|
860
|
+
const _MFDA = "MailFromDomainAttributes";
|
|
861
|
+
const _MFDNVE = "MailFromDomainNotVerifiedException";
|
|
862
|
+
const _MFDS = "MailFromDomainStatus";
|
|
863
|
+
const _MHS = "Max24HourSend";
|
|
864
|
+
const _MI = "MessageId";
|
|
865
|
+
const _MIa = "MaxItems";
|
|
866
|
+
const _MR = "MessageRejected";
|
|
867
|
+
const _MRAE = "MissingRenderingAttributeException";
|
|
868
|
+
const _MRa = "MaxResults";
|
|
869
|
+
const _MSR = "MaxSendRate";
|
|
870
|
+
const _MT = "MessageTag";
|
|
871
|
+
const _MTL = "MessageTagList";
|
|
872
|
+
const _Me = "Metadata";
|
|
873
|
+
const _N = "Name";
|
|
874
|
+
const _NA = "NotificationAttributes";
|
|
875
|
+
const _NT = "NextToken";
|
|
876
|
+
const _NTo = "NotificationType";
|
|
877
|
+
const _OA = "OrganizationArn";
|
|
878
|
+
const _OKP = "ObjectKeyPrefix";
|
|
879
|
+
const _OMI = "OriginalMessageId";
|
|
880
|
+
const _ORSN = "OriginalRuleSetName";
|
|
881
|
+
const _P = "Policies";
|
|
882
|
+
const _PANGE = "ProductionAccessNotGrantedException";
|
|
883
|
+
const _PCSDO = "PutConfigurationSetDeliveryOptions";
|
|
884
|
+
const _PCSDOR = "PutConfigurationSetDeliveryOptionsRequest";
|
|
885
|
+
const _PCSDORu = "PutConfigurationSetDeliveryOptionsResponse";
|
|
886
|
+
const _PIP = "PutIdentityPolicy";
|
|
887
|
+
const _PIPR = "PutIdentityPolicyRequest";
|
|
888
|
+
const _PIPRu = "PutIdentityPolicyResponse";
|
|
889
|
+
const _PN = "PolicyName";
|
|
890
|
+
const _PNo = "PolicyNames";
|
|
891
|
+
const _Po = "Policy";
|
|
892
|
+
const _R = "Recipient";
|
|
893
|
+
const _RA = "RecipientArn";
|
|
894
|
+
const _RAL = "ReceiptActionsList";
|
|
895
|
+
const _RAe = "ReceiptAction";
|
|
896
|
+
const _RDF = "RecipientDsnFields";
|
|
897
|
+
const _RDNEE = "RuleDoesNotExistException";
|
|
898
|
+
const _RF = "ReceiptFilter";
|
|
899
|
+
const _RFL = "ReceiptFilterList";
|
|
900
|
+
const _RIF = "ReceiptIpFilter";
|
|
901
|
+
const _RM = "ReportingMta";
|
|
902
|
+
const _RME = "ReputationMetricsEnabled";
|
|
903
|
+
const _RMa = "RawMessage";
|
|
904
|
+
const _RMe = "RemoteMta";
|
|
905
|
+
const _RN = "RuleName";
|
|
906
|
+
const _RNu = "RuleNames";
|
|
907
|
+
const _RO = "ReputationOptions";
|
|
908
|
+
const _RP = "ReturnPath";
|
|
909
|
+
const _RPA = "ReturnPathArn";
|
|
910
|
+
const _RR = "ReceiptRule";
|
|
911
|
+
const _RRL = "ReceiptRulesList";
|
|
912
|
+
const _RRRS = "ReorderReceiptRuleSet";
|
|
913
|
+
const _RRRSR = "ReorderReceiptRuleSetRequest";
|
|
914
|
+
const _RRRSRe = "ReorderReceiptRuleSetResponse";
|
|
915
|
+
const _RRSL = "ReceiptRuleSetsLists";
|
|
916
|
+
const _RRSM = "ReceiptRuleSetMetadata";
|
|
917
|
+
const _RS = "RuleSets";
|
|
918
|
+
const _RSDNEE = "RuleSetDoesNotExistException";
|
|
919
|
+
const _RSN = "RuleSetName";
|
|
920
|
+
const _RT = "ReplacementTags";
|
|
921
|
+
const _RTA = "ReplyToAddresses";
|
|
922
|
+
const _RTD = "ReplacementTemplateData";
|
|
923
|
+
const _RTe = "RenderedTemplate";
|
|
924
|
+
const _Re = "Recipients";
|
|
925
|
+
const _Rej = "Rejects";
|
|
926
|
+
const _Ru = "Rule";
|
|
927
|
+
const _Rul = "Rules";
|
|
928
|
+
const _S = "Sender";
|
|
929
|
+
const _SA = "S3Action";
|
|
930
|
+
const _SARRS = "SetActiveReceiptRuleSet";
|
|
931
|
+
const _SARRSR = "SetActiveReceiptRuleSetRequest";
|
|
932
|
+
const _SARRSRe = "SetActiveReceiptRuleSetResponse";
|
|
933
|
+
const _SAo = "SourceArn";
|
|
934
|
+
const _SAt = "StopAction";
|
|
935
|
+
const _SB = "SendBounce";
|
|
936
|
+
const _SBR = "SendBounceRequest";
|
|
937
|
+
const _SBRe = "SendBounceResponse";
|
|
938
|
+
const _SBTE = "SendBulkTemplatedEmail";
|
|
939
|
+
const _SBTER = "SendBulkTemplatedEmailRequest";
|
|
940
|
+
const _SBTERe = "SendBulkTemplatedEmailResponse";
|
|
941
|
+
const _SC = "StatusCode";
|
|
942
|
+
const _SCVE = "SendCustomVerificationEmail";
|
|
943
|
+
const _SCVER = "SendCustomVerificationEmailRequest";
|
|
944
|
+
const _SCVERe = "SendCustomVerificationEmailResponse";
|
|
945
|
+
const _SDP = "SendDataPoints";
|
|
946
|
+
const _SDPL = "SendDataPointList";
|
|
947
|
+
const _SDPe = "SendDataPoint";
|
|
948
|
+
const _SE = "ScanEnabled";
|
|
949
|
+
const _SER = "SendEmailRequest";
|
|
950
|
+
const _SERe = "SendEmailResponse";
|
|
951
|
+
const _SEe = "SendingEnabled";
|
|
952
|
+
const _SEen = "SendEmail";
|
|
953
|
+
const _SIDE = "SetIdentityDkimEnabled";
|
|
954
|
+
const _SIDER = "SetIdentityDkimEnabledRequest";
|
|
955
|
+
const _SIDERe = "SetIdentityDkimEnabledResponse";
|
|
956
|
+
const _SIFFE = "SetIdentityFeedbackForwardingEnabled";
|
|
957
|
+
const _SIFFER = "SetIdentityFeedbackForwardingEnabledRequest";
|
|
958
|
+
const _SIFFERe = "SetIdentityFeedbackForwardingEnabledResponse";
|
|
959
|
+
const _SIHINE = "SetIdentityHeadersInNotificationsEnabled";
|
|
960
|
+
const _SIHINER = "SetIdentityHeadersInNotificationsEnabledRequest";
|
|
961
|
+
const _SIHINERe = "SetIdentityHeadersInNotificationsEnabledResponse";
|
|
962
|
+
const _SIMFD = "SetIdentityMailFromDomain";
|
|
963
|
+
const _SIMFDR = "SetIdentityMailFromDomainRequest";
|
|
964
|
+
const _SIMFDRe = "SetIdentityMailFromDomainResponse";
|
|
965
|
+
const _SINT = "SetIdentityNotificationTopic";
|
|
966
|
+
const _SINTR = "SetIdentityNotificationTopicRequest";
|
|
967
|
+
const _SINTRe = "SetIdentityNotificationTopicResponse";
|
|
968
|
+
const _SLH = "SentLast24Hours";
|
|
969
|
+
const _SNSA = "SNSAction";
|
|
970
|
+
const _SNSD = "SNSDestination";
|
|
971
|
+
const _SP = "SubjectPart";
|
|
972
|
+
const _SRC = "SmtpReplyCode";
|
|
973
|
+
const _SRE = "SendRawEmail";
|
|
974
|
+
const _SRER = "SendRawEmailRequest";
|
|
975
|
+
const _SRERe = "SendRawEmailResponse";
|
|
976
|
+
const _SRRP = "SetReceiptRulePosition";
|
|
977
|
+
const _SRRPR = "SetReceiptRulePositionRequest";
|
|
978
|
+
const _SRRPRe = "SetReceiptRulePositionResponse";
|
|
979
|
+
const _SRURL = "SuccessRedirectionURL";
|
|
980
|
+
const _ST = "SnsTopic";
|
|
981
|
+
const _STE = "SendTemplatedEmail";
|
|
982
|
+
const _STER = "SendTemplatedEmailRequest";
|
|
983
|
+
const _STERe = "SendTemplatedEmailResponse";
|
|
984
|
+
const _Sc = "Scope";
|
|
985
|
+
const _So = "Source";
|
|
986
|
+
const _St = "Status";
|
|
987
|
+
const _Su = "Subject";
|
|
988
|
+
const _T = "Topic";
|
|
989
|
+
const _TA = "TopicArn";
|
|
990
|
+
const _TARN = "TopicARN";
|
|
991
|
+
const _TAe = "TemplateArn";
|
|
992
|
+
const _TAo = "ToAddresses";
|
|
993
|
+
const _TC = "TemplateContent";
|
|
994
|
+
const _TD = "TemplateData";
|
|
995
|
+
const _TDNEE = "TemplateDoesNotExistException";
|
|
996
|
+
const _TM = "TemplatesMetadata";
|
|
997
|
+
const _TML = "TemplateMetadataList";
|
|
998
|
+
const _TMe = "TemplateMetadata";
|
|
999
|
+
const _TN = "TemplateName";
|
|
1000
|
+
const _TO = "TrackingOptions";
|
|
1001
|
+
const _TOAEE = "TrackingOptionsAlreadyExistsException";
|
|
1002
|
+
const _TODNEE = "TrackingOptionsDoesNotExistException";
|
|
1003
|
+
const _TP = "TlsPolicy";
|
|
1004
|
+
const _TPe = "TextPart";
|
|
1005
|
+
const _TRT = "TestRenderTemplate";
|
|
1006
|
+
const _TRTR = "TestRenderTemplateRequest";
|
|
1007
|
+
const _TRTRe = "TestRenderTemplateResponse";
|
|
1008
|
+
const _TS = "TemplateSubject";
|
|
1009
|
+
const _Ta = "Tags";
|
|
1010
|
+
const _Te = "Text";
|
|
1011
|
+
const _Tem = "Template";
|
|
1012
|
+
const _Ti = "Timestamp";
|
|
1013
|
+
const _UASE = "UpdateAccountSendingEnabled";
|
|
1014
|
+
const _UASER = "UpdateAccountSendingEnabledRequest";
|
|
1015
|
+
const _UCSED = "UpdateConfigurationSetEventDestination";
|
|
1016
|
+
const _UCSEDR = "UpdateConfigurationSetEventDestinationRequest";
|
|
1017
|
+
const _UCSEDRp = "UpdateConfigurationSetEventDestinationResponse";
|
|
1018
|
+
const _UCSRME = "UpdateConfigurationSetReputationMetricsEnabled";
|
|
1019
|
+
const _UCSRMER = "UpdateConfigurationSetReputationMetricsEnabledRequest";
|
|
1020
|
+
const _UCSSE = "UpdateConfigurationSetSendingEnabled";
|
|
1021
|
+
const _UCSSER = "UpdateConfigurationSetSendingEnabledRequest";
|
|
1022
|
+
const _UCSTO = "UpdateConfigurationSetTrackingOptions";
|
|
1023
|
+
const _UCSTOR = "UpdateConfigurationSetTrackingOptionsRequest";
|
|
1024
|
+
const _UCSTORp = "UpdateConfigurationSetTrackingOptionsResponse";
|
|
1025
|
+
const _UCVET = "UpdateCustomVerificationEmailTemplate";
|
|
1026
|
+
const _UCVETR = "UpdateCustomVerificationEmailTemplateRequest";
|
|
1027
|
+
const _URR = "UpdateReceiptRule";
|
|
1028
|
+
const _URRR = "UpdateReceiptRuleRequest";
|
|
1029
|
+
const _URRRp = "UpdateReceiptRuleResponse";
|
|
1030
|
+
const _UT = "UpdateTemplate";
|
|
1031
|
+
const _UTR = "UpdateTemplateRequest";
|
|
1032
|
+
const _UTRp = "UpdateTemplateResponse";
|
|
1033
|
+
const _V = "Value";
|
|
1034
|
+
const _VA = "VerificationAttributes";
|
|
1035
|
+
const _VDD = "VerifyDomainDkim";
|
|
1036
|
+
const _VDDR = "VerifyDomainDkimRequest";
|
|
1037
|
+
const _VDDRe = "VerifyDomainDkimResponse";
|
|
1038
|
+
const _VDI = "VerifyDomainIdentity";
|
|
1039
|
+
const _VDIR = "VerifyDomainIdentityRequest";
|
|
1040
|
+
const _VDIRe = "VerifyDomainIdentityResponse";
|
|
1041
|
+
const _VEA = "VerifiedEmailAddresses";
|
|
1042
|
+
const _VEAR = "VerifyEmailAddressRequest";
|
|
1043
|
+
const _VEAe = "VerifyEmailAddress";
|
|
1044
|
+
const _VEI = "VerifyEmailIdentity";
|
|
1045
|
+
const _VEIR = "VerifyEmailIdentityRequest";
|
|
1046
|
+
const _VEIRe = "VerifyEmailIdentityResponse";
|
|
1047
|
+
const _VS = "VerificationStatus";
|
|
1048
|
+
const _VT = "VerificationToken";
|
|
1049
|
+
const _WA = "WorkmailAction";
|
|
1050
|
+
const _aQE = "awsQueryError";
|
|
1051
|
+
const _c = "client";
|
|
1052
|
+
const _e = "error";
|
|
1053
|
+
const _hE = "httpError";
|
|
1054
|
+
const _m = "message";
|
|
1055
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.ses";
|
|
1056
|
+
const n0 = "com.amazonaws.ses";
|
|
1057
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1058
|
+
var SESServiceException$ = [-3, _s, "SESServiceException", 0, [], []];
|
|
1059
|
+
_s_registry.registerError(SESServiceException$, SESServiceException);
|
|
1060
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1061
|
+
var AccountSendingPausedException$ = [-3, n0, _ASPE,
|
|
1062
|
+
{ [_aQE]: [`AccountSendingPausedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1063
|
+
[_m],
|
|
1064
|
+
[0]
|
|
1065
|
+
];
|
|
1066
|
+
n0_registry.registerError(AccountSendingPausedException$, AccountSendingPausedException);
|
|
1067
|
+
var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
1068
|
+
{ [_aQE]: [`AlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1069
|
+
[_N, _m],
|
|
1070
|
+
[0, 0]
|
|
1071
|
+
];
|
|
1072
|
+
n0_registry.registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
1073
|
+
var CannotDeleteException$ = [-3, n0, _CDE,
|
|
1074
|
+
{ [_aQE]: [`CannotDelete`, 400], [_e]: _c, [_hE]: 400 },
|
|
1075
|
+
[_N, _m],
|
|
1076
|
+
[0, 0]
|
|
1077
|
+
];
|
|
1078
|
+
n0_registry.registerError(CannotDeleteException$, CannotDeleteException);
|
|
1079
|
+
var ConfigurationSetAlreadyExistsException$ = [-3, n0, _CSAEE,
|
|
1080
|
+
{ [_aQE]: [`ConfigurationSetAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1081
|
+
[_CSN, _m],
|
|
1082
|
+
[0, 0]
|
|
1083
|
+
];
|
|
1084
|
+
n0_registry.registerError(ConfigurationSetAlreadyExistsException$, ConfigurationSetAlreadyExistsException);
|
|
1085
|
+
var ConfigurationSetDoesNotExistException$ = [-3, n0, _CSDNEE,
|
|
1086
|
+
{ [_aQE]: [`ConfigurationSetDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1087
|
+
[_CSN, _m],
|
|
1088
|
+
[0, 0]
|
|
1089
|
+
];
|
|
1090
|
+
n0_registry.registerError(ConfigurationSetDoesNotExistException$, ConfigurationSetDoesNotExistException);
|
|
1091
|
+
var ConfigurationSetSendingPausedException$ = [-3, n0, _CSSPE,
|
|
1092
|
+
{ [_aQE]: [`ConfigurationSetSendingPausedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1093
|
+
[_CSN, _m],
|
|
1094
|
+
[0, 0]
|
|
1095
|
+
];
|
|
1096
|
+
n0_registry.registerError(ConfigurationSetSendingPausedException$, ConfigurationSetSendingPausedException);
|
|
1097
|
+
var CustomVerificationEmailInvalidContentException$ = [-3, n0, _CVEICE,
|
|
1098
|
+
{ [_aQE]: [`CustomVerificationEmailInvalidContent`, 400], [_e]: _c, [_hE]: 400 },
|
|
1099
|
+
[_m],
|
|
1100
|
+
[0]
|
|
1101
|
+
];
|
|
1102
|
+
n0_registry.registerError(CustomVerificationEmailInvalidContentException$, CustomVerificationEmailInvalidContentException);
|
|
1103
|
+
var CustomVerificationEmailTemplateAlreadyExistsException$ = [-3, n0, _CVETAEE,
|
|
1104
|
+
{ [_aQE]: [`CustomVerificationEmailTemplateAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1105
|
+
[_CVETN, _m],
|
|
1106
|
+
[0, 0]
|
|
1107
|
+
];
|
|
1108
|
+
n0_registry.registerError(CustomVerificationEmailTemplateAlreadyExistsException$, CustomVerificationEmailTemplateAlreadyExistsException);
|
|
1109
|
+
var CustomVerificationEmailTemplateDoesNotExistException$ = [-3, n0, _CVETDNEE,
|
|
1110
|
+
{ [_aQE]: [`CustomVerificationEmailTemplateDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1111
|
+
[_CVETN, _m],
|
|
1112
|
+
[0, 0]
|
|
1113
|
+
];
|
|
1114
|
+
n0_registry.registerError(CustomVerificationEmailTemplateDoesNotExistException$, CustomVerificationEmailTemplateDoesNotExistException);
|
|
1115
|
+
var EventDestinationAlreadyExistsException$ = [-3, n0, _EDAEE,
|
|
1116
|
+
{ [_aQE]: [`EventDestinationAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
1117
|
+
[_CSN, _EDN, _m],
|
|
1118
|
+
[0, 0, 0]
|
|
1119
|
+
];
|
|
1120
|
+
n0_registry.registerError(EventDestinationAlreadyExistsException$, EventDestinationAlreadyExistsException);
|
|
1121
|
+
var EventDestinationDoesNotExistException$ = [-3, n0, _EDDNEE,
|
|
1122
|
+
{ [_aQE]: [`EventDestinationDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1123
|
+
[_CSN, _EDN, _m],
|
|
1124
|
+
[0, 0, 0]
|
|
1125
|
+
];
|
|
1126
|
+
n0_registry.registerError(EventDestinationDoesNotExistException$, EventDestinationDoesNotExistException);
|
|
1127
|
+
var FromEmailAddressNotVerifiedException$ = [-3, n0, _FEANVE,
|
|
1128
|
+
{ [_aQE]: [`FromEmailAddressNotVerified`, 400], [_e]: _c, [_hE]: 400 },
|
|
1129
|
+
[_FEA, _m],
|
|
1130
|
+
[0, 0]
|
|
1131
|
+
];
|
|
1132
|
+
n0_registry.registerError(FromEmailAddressNotVerifiedException$, FromEmailAddressNotVerifiedException);
|
|
1133
|
+
var InvalidCloudWatchDestinationException$ = [-3, n0, _ICWDE,
|
|
1134
|
+
{ [_aQE]: [`InvalidCloudWatchDestination`, 400], [_e]: _c, [_hE]: 400 },
|
|
1135
|
+
[_CSN, _EDN, _m],
|
|
1136
|
+
[0, 0, 0]
|
|
1137
|
+
];
|
|
1138
|
+
n0_registry.registerError(InvalidCloudWatchDestinationException$, InvalidCloudWatchDestinationException);
|
|
1139
|
+
var InvalidConfigurationSetException$ = [-3, n0, _ICSE,
|
|
1140
|
+
{ [_aQE]: [`InvalidConfigurationSet`, 400], [_e]: _c, [_hE]: 400 },
|
|
1141
|
+
[_m],
|
|
1142
|
+
[0]
|
|
1143
|
+
];
|
|
1144
|
+
n0_registry.registerError(InvalidConfigurationSetException$, InvalidConfigurationSetException);
|
|
1145
|
+
var InvalidDeliveryOptionsException$ = [-3, n0, _IDOE,
|
|
1146
|
+
{ [_aQE]: [`InvalidDeliveryOptions`, 400], [_e]: _c, [_hE]: 400 },
|
|
1147
|
+
[_m],
|
|
1148
|
+
[0]
|
|
1149
|
+
];
|
|
1150
|
+
n0_registry.registerError(InvalidDeliveryOptionsException$, InvalidDeliveryOptionsException);
|
|
1151
|
+
var InvalidFirehoseDestinationException$ = [-3, n0, _IFDE,
|
|
1152
|
+
{ [_aQE]: [`InvalidFirehoseDestination`, 400], [_e]: _c, [_hE]: 400 },
|
|
1153
|
+
[_CSN, _EDN, _m],
|
|
1154
|
+
[0, 0, 0]
|
|
1155
|
+
];
|
|
1156
|
+
n0_registry.registerError(InvalidFirehoseDestinationException$, InvalidFirehoseDestinationException);
|
|
1157
|
+
var InvalidLambdaFunctionException$ = [-3, n0, _ILFE,
|
|
1158
|
+
{ [_aQE]: [`InvalidLambdaFunction`, 400], [_e]: _c, [_hE]: 400 },
|
|
1159
|
+
[_FA, _m],
|
|
1160
|
+
[0, 0]
|
|
1161
|
+
];
|
|
1162
|
+
n0_registry.registerError(InvalidLambdaFunctionException$, InvalidLambdaFunctionException);
|
|
1163
|
+
var InvalidPolicyException$ = [-3, n0, _IPE,
|
|
1164
|
+
{ [_aQE]: [`InvalidPolicy`, 400], [_e]: _c, [_hE]: 400 },
|
|
1165
|
+
[_m],
|
|
1166
|
+
[0]
|
|
1167
|
+
];
|
|
1168
|
+
n0_registry.registerError(InvalidPolicyException$, InvalidPolicyException);
|
|
1169
|
+
var InvalidRenderingParameterException$ = [-3, n0, _IRPE,
|
|
1170
|
+
{ [_aQE]: [`InvalidRenderingParameter`, 400], [_e]: _c, [_hE]: 400 },
|
|
1171
|
+
[_TN, _m],
|
|
1172
|
+
[0, 0]
|
|
1173
|
+
];
|
|
1174
|
+
n0_registry.registerError(InvalidRenderingParameterException$, InvalidRenderingParameterException);
|
|
1175
|
+
var InvalidS3ConfigurationException$ = [-3, n0, _ISCE,
|
|
1176
|
+
{ [_aQE]: [`InvalidS3Configuration`, 400], [_e]: _c, [_hE]: 400 },
|
|
1177
|
+
[_B, _m],
|
|
1178
|
+
[0, 0]
|
|
1179
|
+
];
|
|
1180
|
+
n0_registry.registerError(InvalidS3ConfigurationException$, InvalidS3ConfigurationException);
|
|
1181
|
+
var InvalidSNSDestinationException$ = [-3, n0, _ISNSDE,
|
|
1182
|
+
{ [_aQE]: [`InvalidSNSDestination`, 400], [_e]: _c, [_hE]: 400 },
|
|
1183
|
+
[_CSN, _EDN, _m],
|
|
1184
|
+
[0, 0, 0]
|
|
1185
|
+
];
|
|
1186
|
+
n0_registry.registerError(InvalidSNSDestinationException$, InvalidSNSDestinationException);
|
|
1187
|
+
var InvalidSnsTopicException$ = [-3, n0, _ISTE,
|
|
1188
|
+
{ [_aQE]: [`InvalidSnsTopic`, 400], [_e]: _c, [_hE]: 400 },
|
|
1189
|
+
[_T, _m],
|
|
1190
|
+
[0, 0]
|
|
1191
|
+
];
|
|
1192
|
+
n0_registry.registerError(InvalidSnsTopicException$, InvalidSnsTopicException);
|
|
1193
|
+
var InvalidTemplateException$ = [-3, n0, _ITE,
|
|
1194
|
+
{ [_aQE]: [`InvalidTemplate`, 400], [_e]: _c, [_hE]: 400 },
|
|
1195
|
+
[_TN, _m],
|
|
1196
|
+
[0, 0]
|
|
1197
|
+
];
|
|
1198
|
+
n0_registry.registerError(InvalidTemplateException$, InvalidTemplateException);
|
|
1199
|
+
var InvalidTrackingOptionsException$ = [-3, n0, _ITOE,
|
|
1200
|
+
{ [_aQE]: [`InvalidTrackingOptions`, 400], [_e]: _c, [_hE]: 400 },
|
|
1201
|
+
[_m],
|
|
1202
|
+
[0]
|
|
1203
|
+
];
|
|
1204
|
+
n0_registry.registerError(InvalidTrackingOptionsException$, InvalidTrackingOptionsException);
|
|
1205
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1206
|
+
{ [_aQE]: [`LimitExceeded`, 400], [_e]: _c, [_hE]: 400 },
|
|
1207
|
+
[_m],
|
|
1208
|
+
[0]
|
|
1209
|
+
];
|
|
1210
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
1211
|
+
var MailFromDomainNotVerifiedException$ = [-3, n0, _MFDNVE,
|
|
1212
|
+
{ [_aQE]: [`MailFromDomainNotVerifiedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1213
|
+
[_m],
|
|
1214
|
+
[0]
|
|
1215
|
+
];
|
|
1216
|
+
n0_registry.registerError(MailFromDomainNotVerifiedException$, MailFromDomainNotVerifiedException);
|
|
1217
|
+
var MessageRejected$ = [-3, n0, _MR,
|
|
1218
|
+
{ [_aQE]: [`MessageRejected`, 400], [_e]: _c, [_hE]: 400 },
|
|
1219
|
+
[_m],
|
|
1220
|
+
[0]
|
|
1221
|
+
];
|
|
1222
|
+
n0_registry.registerError(MessageRejected$, MessageRejected);
|
|
1223
|
+
var MissingRenderingAttributeException$ = [-3, n0, _MRAE,
|
|
1224
|
+
{ [_aQE]: [`MissingRenderingAttribute`, 400], [_e]: _c, [_hE]: 400 },
|
|
1225
|
+
[_TN, _m],
|
|
1226
|
+
[0, 0]
|
|
1227
|
+
];
|
|
1228
|
+
n0_registry.registerError(MissingRenderingAttributeException$, MissingRenderingAttributeException);
|
|
1229
|
+
var ProductionAccessNotGrantedException$ = [-3, n0, _PANGE,
|
|
1230
|
+
{ [_aQE]: [`ProductionAccessNotGranted`, 400], [_e]: _c, [_hE]: 400 },
|
|
1231
|
+
[_m],
|
|
1232
|
+
[0]
|
|
1233
|
+
];
|
|
1234
|
+
n0_registry.registerError(ProductionAccessNotGrantedException$, ProductionAccessNotGrantedException);
|
|
1235
|
+
var RuleDoesNotExistException$ = [-3, n0, _RDNEE,
|
|
1236
|
+
{ [_aQE]: [`RuleDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1237
|
+
[_N, _m],
|
|
1238
|
+
[0, 0]
|
|
1239
|
+
];
|
|
1240
|
+
n0_registry.registerError(RuleDoesNotExistException$, RuleDoesNotExistException);
|
|
1241
|
+
var RuleSetDoesNotExistException$ = [-3, n0, _RSDNEE,
|
|
1242
|
+
{ [_aQE]: [`RuleSetDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1243
|
+
[_N, _m],
|
|
1244
|
+
[0, 0]
|
|
1245
|
+
];
|
|
1246
|
+
n0_registry.registerError(RuleSetDoesNotExistException$, RuleSetDoesNotExistException);
|
|
1247
|
+
var TemplateDoesNotExistException$ = [-3, n0, _TDNEE,
|
|
1248
|
+
{ [_aQE]: [`TemplateDoesNotExist`, 400], [_e]: _c, [_hE]: 400 },
|
|
1249
|
+
[_TN, _m],
|
|
1250
|
+
[0, 0]
|
|
1251
|
+
];
|
|
1252
|
+
n0_registry.registerError(TemplateDoesNotExistException$, TemplateDoesNotExistException);
|
|
1253
|
+
var TrackingOptionsAlreadyExistsException$ = [-3, n0, _TOAEE,
|
|
1254
|
+
{ [_aQE]: [`TrackingOptionsAlreadyExistsException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1255
|
+
[_CSN, _m],
|
|
1256
|
+
[0, 0]
|
|
1257
|
+
];
|
|
1258
|
+
n0_registry.registerError(TrackingOptionsAlreadyExistsException$, TrackingOptionsAlreadyExistsException);
|
|
1259
|
+
var TrackingOptionsDoesNotExistException$ = [-3, n0, _TODNEE,
|
|
1260
|
+
{ [_aQE]: [`TrackingOptionsDoesNotExistException`, 400], [_e]: _c, [_hE]: 400 },
|
|
1261
|
+
[_CSN, _m],
|
|
1262
|
+
[0, 0]
|
|
1263
|
+
];
|
|
1264
|
+
n0_registry.registerError(TrackingOptionsDoesNotExistException$, TrackingOptionsDoesNotExistException);
|
|
1265
|
+
const errorTypeRegistries = [
|
|
1266
|
+
_s_registry,
|
|
1267
|
+
n0_registry,
|
|
1268
|
+
];
|
|
1269
|
+
var AddHeaderAction$ = [3, n0, _AHA,
|
|
1270
|
+
0,
|
|
1271
|
+
[_HN, _HV],
|
|
1272
|
+
[0, 0], 2
|
|
1273
|
+
];
|
|
1274
|
+
var Body$ = [3, n0, _Bo,
|
|
1275
|
+
0,
|
|
1276
|
+
[_Te, _H],
|
|
1277
|
+
[() => Content$, () => Content$]
|
|
1278
|
+
];
|
|
1279
|
+
var BounceAction$ = [3, n0, _BA,
|
|
1280
|
+
0,
|
|
1281
|
+
[_SRC, _M, _S, _TA, _SC],
|
|
1282
|
+
[0, 0, 0, 0, 0], 3
|
|
1283
|
+
];
|
|
1284
|
+
var BouncedRecipientInfo$ = [3, n0, _BRI,
|
|
1285
|
+
0,
|
|
1286
|
+
[_R, _RA, _BT, _RDF],
|
|
1287
|
+
[0, 0, 0, () => RecipientDsnFields$], 1
|
|
1288
|
+
];
|
|
1289
|
+
var BulkEmailDestination$ = [3, n0, _BED,
|
|
1290
|
+
0,
|
|
1291
|
+
[_D, _RT, _RTD],
|
|
1292
|
+
[() => Destination$, () => MessageTagList, 0], 1
|
|
1293
|
+
];
|
|
1294
|
+
var BulkEmailDestinationStatus$ = [3, n0, _BEDS,
|
|
1295
|
+
0,
|
|
1296
|
+
[_St, _E, _MI],
|
|
1297
|
+
[0, 0, 0]
|
|
1298
|
+
];
|
|
1299
|
+
var CloneReceiptRuleSetRequest$ = [3, n0, _CRRSR,
|
|
1300
|
+
0,
|
|
1301
|
+
[_RSN, _ORSN],
|
|
1302
|
+
[0, 0], 2
|
|
1303
|
+
];
|
|
1304
|
+
var CloneReceiptRuleSetResponse$ = [3, n0, _CRRSRl,
|
|
1305
|
+
0,
|
|
1306
|
+
[],
|
|
1307
|
+
[]
|
|
1308
|
+
];
|
|
1309
|
+
var CloudWatchDestination$ = [3, n0, _CWD,
|
|
1310
|
+
0,
|
|
1311
|
+
[_DC],
|
|
1312
|
+
[() => CloudWatchDimensionConfigurations], 1
|
|
1313
|
+
];
|
|
1314
|
+
var CloudWatchDimensionConfiguration$ = [3, n0, _CWDC,
|
|
1315
|
+
0,
|
|
1316
|
+
[_DN, _DVS, _DDV],
|
|
1317
|
+
[0, 0, 0], 3
|
|
1318
|
+
];
|
|
1319
|
+
var ConfigurationSet$ = [3, n0, _CS,
|
|
1320
|
+
0,
|
|
1321
|
+
[_N],
|
|
1322
|
+
[0], 1
|
|
1323
|
+
];
|
|
1324
|
+
var ConnectAction$ = [3, n0, _CA,
|
|
1325
|
+
0,
|
|
1326
|
+
[_IARN, _IAMRARN],
|
|
1327
|
+
[0, 0], 2
|
|
1328
|
+
];
|
|
1329
|
+
var Content$ = [3, n0, _C,
|
|
1330
|
+
0,
|
|
1331
|
+
[_Da, _Ch],
|
|
1332
|
+
[0, 0], 1
|
|
1333
|
+
];
|
|
1334
|
+
var CreateConfigurationSetEventDestinationRequest$ = [3, n0, _CCSEDR,
|
|
1335
|
+
0,
|
|
1336
|
+
[_CSN, _ED],
|
|
1337
|
+
[0, () => EventDestination$], 2
|
|
1338
|
+
];
|
|
1339
|
+
var CreateConfigurationSetEventDestinationResponse$ = [3, n0, _CCSEDRr,
|
|
1340
|
+
0,
|
|
1341
|
+
[],
|
|
1342
|
+
[]
|
|
1343
|
+
];
|
|
1344
|
+
var CreateConfigurationSetRequest$ = [3, n0, _CCSR,
|
|
1345
|
+
0,
|
|
1346
|
+
[_CS],
|
|
1347
|
+
[() => ConfigurationSet$], 1
|
|
1348
|
+
];
|
|
1349
|
+
var CreateConfigurationSetResponse$ = [3, n0, _CCSRr,
|
|
1350
|
+
0,
|
|
1351
|
+
[],
|
|
1352
|
+
[]
|
|
1353
|
+
];
|
|
1354
|
+
var CreateConfigurationSetTrackingOptionsRequest$ = [3, n0, _CCSTOR,
|
|
1355
|
+
0,
|
|
1356
|
+
[_CSN, _TO],
|
|
1357
|
+
[0, () => TrackingOptions$], 2
|
|
1358
|
+
];
|
|
1359
|
+
var CreateConfigurationSetTrackingOptionsResponse$ = [3, n0, _CCSTORr,
|
|
1360
|
+
0,
|
|
1361
|
+
[],
|
|
1362
|
+
[]
|
|
1363
|
+
];
|
|
1364
|
+
var CreateCustomVerificationEmailTemplateRequest$ = [3, n0, _CCVETR,
|
|
1365
|
+
0,
|
|
1366
|
+
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL],
|
|
1367
|
+
[0, 0, 0, 0, 0, 0], 6
|
|
1368
|
+
];
|
|
1369
|
+
var CreateReceiptFilterRequest$ = [3, n0, _CRFR,
|
|
1370
|
+
0,
|
|
1371
|
+
[_F],
|
|
1372
|
+
[() => ReceiptFilter$], 1
|
|
1373
|
+
];
|
|
1374
|
+
var CreateReceiptFilterResponse$ = [3, n0, _CRFRr,
|
|
1375
|
+
0,
|
|
1376
|
+
[],
|
|
1377
|
+
[]
|
|
1378
|
+
];
|
|
1379
|
+
var CreateReceiptRuleRequest$ = [3, n0, _CRRR,
|
|
1380
|
+
0,
|
|
1381
|
+
[_RSN, _Ru, _A],
|
|
1382
|
+
[0, () => ReceiptRule$, 0], 2
|
|
1383
|
+
];
|
|
1384
|
+
var CreateReceiptRuleResponse$ = [3, n0, _CRRRr,
|
|
1385
|
+
0,
|
|
1386
|
+
[],
|
|
1387
|
+
[]
|
|
1388
|
+
];
|
|
1389
|
+
var CreateReceiptRuleSetRequest$ = [3, n0, _CRRSRr,
|
|
1390
|
+
0,
|
|
1391
|
+
[_RSN],
|
|
1392
|
+
[0], 1
|
|
1393
|
+
];
|
|
1394
|
+
var CreateReceiptRuleSetResponse$ = [3, n0, _CRRSRre,
|
|
1395
|
+
0,
|
|
1396
|
+
[],
|
|
1397
|
+
[]
|
|
1398
|
+
];
|
|
1399
|
+
var CreateTemplateRequest$ = [3, n0, _CTR,
|
|
1400
|
+
0,
|
|
1401
|
+
[_Tem],
|
|
1402
|
+
[() => Template$], 1
|
|
1403
|
+
];
|
|
1404
|
+
var CreateTemplateResponse$ = [3, n0, _CTRr,
|
|
1405
|
+
0,
|
|
1406
|
+
[],
|
|
1407
|
+
[]
|
|
1408
|
+
];
|
|
1409
|
+
var CustomVerificationEmailTemplate$ = [3, n0, _CVET,
|
|
1410
|
+
0,
|
|
1411
|
+
[_TN, _FEA, _TS, _SRURL, _FRURL],
|
|
1412
|
+
[0, 0, 0, 0, 0]
|
|
1413
|
+
];
|
|
1414
|
+
var DeleteConfigurationSetEventDestinationRequest$ = [3, n0, _DCSEDR,
|
|
1415
|
+
0,
|
|
1416
|
+
[_CSN, _EDN],
|
|
1417
|
+
[0, 0], 2
|
|
1418
|
+
];
|
|
1419
|
+
var DeleteConfigurationSetEventDestinationResponse$ = [3, n0, _DCSEDRe,
|
|
1420
|
+
0,
|
|
1421
|
+
[],
|
|
1422
|
+
[]
|
|
1423
|
+
];
|
|
1424
|
+
var DeleteConfigurationSetRequest$ = [3, n0, _DCSR,
|
|
1425
|
+
0,
|
|
1426
|
+
[_CSN],
|
|
1427
|
+
[0], 1
|
|
1428
|
+
];
|
|
1429
|
+
var DeleteConfigurationSetResponse$ = [3, n0, _DCSRe,
|
|
1430
|
+
0,
|
|
1431
|
+
[],
|
|
1432
|
+
[]
|
|
1433
|
+
];
|
|
1434
|
+
var DeleteConfigurationSetTrackingOptionsRequest$ = [3, n0, _DCSTOR,
|
|
1435
|
+
0,
|
|
1436
|
+
[_CSN],
|
|
1437
|
+
[0], 1
|
|
1438
|
+
];
|
|
1439
|
+
var DeleteConfigurationSetTrackingOptionsResponse$ = [3, n0, _DCSTORe,
|
|
1440
|
+
0,
|
|
1441
|
+
[],
|
|
1442
|
+
[]
|
|
1443
|
+
];
|
|
1444
|
+
var DeleteCustomVerificationEmailTemplateRequest$ = [3, n0, _DCVETR,
|
|
1445
|
+
0,
|
|
1446
|
+
[_TN],
|
|
1447
|
+
[0], 1
|
|
1448
|
+
];
|
|
1449
|
+
var DeleteIdentityPolicyRequest$ = [3, n0, _DIPR,
|
|
1450
|
+
0,
|
|
1451
|
+
[_I, _PN],
|
|
1452
|
+
[0, 0], 2
|
|
1453
|
+
];
|
|
1454
|
+
var DeleteIdentityPolicyResponse$ = [3, n0, _DIPRe,
|
|
1455
|
+
0,
|
|
1456
|
+
[],
|
|
1457
|
+
[]
|
|
1458
|
+
];
|
|
1459
|
+
var DeleteIdentityRequest$ = [3, n0, _DIR,
|
|
1460
|
+
0,
|
|
1461
|
+
[_I],
|
|
1462
|
+
[0], 1
|
|
1463
|
+
];
|
|
1464
|
+
var DeleteIdentityResponse$ = [3, n0, _DIRe,
|
|
1465
|
+
0,
|
|
1466
|
+
[],
|
|
1467
|
+
[]
|
|
1468
|
+
];
|
|
1469
|
+
var DeleteReceiptFilterRequest$ = [3, n0, _DRFR,
|
|
1470
|
+
0,
|
|
1471
|
+
[_FN],
|
|
1472
|
+
[0], 1
|
|
1473
|
+
];
|
|
1474
|
+
var DeleteReceiptFilterResponse$ = [3, n0, _DRFRe,
|
|
1475
|
+
0,
|
|
1476
|
+
[],
|
|
1477
|
+
[]
|
|
1478
|
+
];
|
|
1479
|
+
var DeleteReceiptRuleRequest$ = [3, n0, _DRRR,
|
|
1480
|
+
0,
|
|
1481
|
+
[_RSN, _RN],
|
|
1482
|
+
[0, 0], 2
|
|
1483
|
+
];
|
|
1484
|
+
var DeleteReceiptRuleResponse$ = [3, n0, _DRRRe,
|
|
1485
|
+
0,
|
|
1486
|
+
[],
|
|
1487
|
+
[]
|
|
1488
|
+
];
|
|
1489
|
+
var DeleteReceiptRuleSetRequest$ = [3, n0, _DRRSR,
|
|
1490
|
+
0,
|
|
1491
|
+
[_RSN],
|
|
1492
|
+
[0], 1
|
|
1493
|
+
];
|
|
1494
|
+
var DeleteReceiptRuleSetResponse$ = [3, n0, _DRRSRe,
|
|
1495
|
+
0,
|
|
1496
|
+
[],
|
|
1497
|
+
[]
|
|
1498
|
+
];
|
|
1499
|
+
var DeleteTemplateRequest$ = [3, n0, _DTR,
|
|
1500
|
+
0,
|
|
1501
|
+
[_TN],
|
|
1502
|
+
[0], 1
|
|
1503
|
+
];
|
|
1504
|
+
var DeleteTemplateResponse$ = [3, n0, _DTRe,
|
|
1505
|
+
0,
|
|
1506
|
+
[],
|
|
1507
|
+
[]
|
|
1508
|
+
];
|
|
1509
|
+
var DeleteVerifiedEmailAddressRequest$ = [3, n0, _DVEAR,
|
|
1510
|
+
0,
|
|
1511
|
+
[_EA],
|
|
1512
|
+
[0], 1
|
|
1513
|
+
];
|
|
1514
|
+
var DeliveryOptions$ = [3, n0, _DO,
|
|
1515
|
+
0,
|
|
1516
|
+
[_TP],
|
|
1517
|
+
[0]
|
|
1518
|
+
];
|
|
1519
|
+
var DescribeActiveReceiptRuleSetRequest$ = [3, n0, _DARRSR,
|
|
1520
|
+
0,
|
|
1521
|
+
[],
|
|
1522
|
+
[]
|
|
1523
|
+
];
|
|
1524
|
+
var DescribeActiveReceiptRuleSetResponse$ = [3, n0, _DARRSRe,
|
|
1525
|
+
0,
|
|
1526
|
+
[_Me, _Rul],
|
|
1527
|
+
[() => ReceiptRuleSetMetadata$, () => ReceiptRulesList]
|
|
1528
|
+
];
|
|
1529
|
+
var DescribeConfigurationSetRequest$ = [3, n0, _DCSRes,
|
|
1530
|
+
0,
|
|
1531
|
+
[_CSN, _CSAN],
|
|
1532
|
+
[0, 64 | 0], 1
|
|
1533
|
+
];
|
|
1534
|
+
var DescribeConfigurationSetResponse$ = [3, n0, _DCSResc,
|
|
1535
|
+
0,
|
|
1536
|
+
[_CS, _EDv, _TO, _DO, _RO],
|
|
1537
|
+
[() => ConfigurationSet$, () => EventDestinations, () => TrackingOptions$, () => DeliveryOptions$, () => ReputationOptions$]
|
|
1538
|
+
];
|
|
1539
|
+
var DescribeReceiptRuleRequest$ = [3, n0, _DRRRes,
|
|
1540
|
+
0,
|
|
1541
|
+
[_RSN, _RN],
|
|
1542
|
+
[0, 0], 2
|
|
1543
|
+
];
|
|
1544
|
+
var DescribeReceiptRuleResponse$ = [3, n0, _DRRResc,
|
|
1545
|
+
0,
|
|
1546
|
+
[_Ru],
|
|
1547
|
+
[() => ReceiptRule$]
|
|
1548
|
+
];
|
|
1549
|
+
var DescribeReceiptRuleSetRequest$ = [3, n0, _DRRSRes,
|
|
1550
|
+
0,
|
|
1551
|
+
[_RSN],
|
|
1552
|
+
[0], 1
|
|
1553
|
+
];
|
|
1554
|
+
var DescribeReceiptRuleSetResponse$ = [3, n0, _DRRSResc,
|
|
1555
|
+
0,
|
|
1556
|
+
[_Me, _Rul],
|
|
1557
|
+
[() => ReceiptRuleSetMetadata$, () => ReceiptRulesList]
|
|
1558
|
+
];
|
|
1559
|
+
var Destination$ = [3, n0, _D,
|
|
1560
|
+
0,
|
|
1561
|
+
[_TAo, _CAc, _BAc],
|
|
1562
|
+
[64 | 0, 64 | 0, 64 | 0]
|
|
1563
|
+
];
|
|
1564
|
+
var EventDestination$ = [3, n0, _ED,
|
|
1565
|
+
0,
|
|
1566
|
+
[_N, _MET, _En, _KFD, _CWD, _SNSD],
|
|
1567
|
+
[0, 64 | 0, 2, () => KinesisFirehoseDestination$, () => CloudWatchDestination$, () => SNSDestination$], 2
|
|
1568
|
+
];
|
|
1569
|
+
var ExtensionField$ = [3, n0, _EF,
|
|
1570
|
+
0,
|
|
1571
|
+
[_N, _V],
|
|
1572
|
+
[0, 0], 2
|
|
1573
|
+
];
|
|
1574
|
+
var GetAccountSendingEnabledResponse$ = [3, n0, _GASER,
|
|
1575
|
+
0,
|
|
1576
|
+
[_En],
|
|
1577
|
+
[2]
|
|
1578
|
+
];
|
|
1579
|
+
var GetCustomVerificationEmailTemplateRequest$ = [3, n0, _GCVETR,
|
|
1580
|
+
0,
|
|
1581
|
+
[_TN],
|
|
1582
|
+
[0], 1
|
|
1583
|
+
];
|
|
1584
|
+
var GetCustomVerificationEmailTemplateResponse$ = [3, n0, _GCVETRe,
|
|
1585
|
+
0,
|
|
1586
|
+
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL],
|
|
1587
|
+
[0, 0, 0, 0, 0, 0]
|
|
1588
|
+
];
|
|
1589
|
+
var GetIdentityDkimAttributesRequest$ = [3, n0, _GIDAR,
|
|
1590
|
+
0,
|
|
1591
|
+
[_Id],
|
|
1592
|
+
[64 | 0], 1
|
|
1593
|
+
];
|
|
1594
|
+
var GetIdentityDkimAttributesResponse$ = [3, n0, _GIDARe,
|
|
1595
|
+
0,
|
|
1596
|
+
[_DA],
|
|
1597
|
+
[() => DkimAttributes], 1
|
|
1598
|
+
];
|
|
1599
|
+
var GetIdentityMailFromDomainAttributesRequest$ = [3, n0, _GIMFDAR,
|
|
1600
|
+
0,
|
|
1601
|
+
[_Id],
|
|
1602
|
+
[64 | 0], 1
|
|
1603
|
+
];
|
|
1604
|
+
var GetIdentityMailFromDomainAttributesResponse$ = [3, n0, _GIMFDARe,
|
|
1605
|
+
0,
|
|
1606
|
+
[_MFDA],
|
|
1607
|
+
[() => MailFromDomainAttributes], 1
|
|
1608
|
+
];
|
|
1609
|
+
var GetIdentityNotificationAttributesRequest$ = [3, n0, _GINAR,
|
|
1610
|
+
0,
|
|
1611
|
+
[_Id],
|
|
1612
|
+
[64 | 0], 1
|
|
1613
|
+
];
|
|
1614
|
+
var GetIdentityNotificationAttributesResponse$ = [3, n0, _GINARe,
|
|
1615
|
+
0,
|
|
1616
|
+
[_NA],
|
|
1617
|
+
[() => NotificationAttributes], 1
|
|
1618
|
+
];
|
|
1619
|
+
var GetIdentityPoliciesRequest$ = [3, n0, _GIPR,
|
|
1620
|
+
0,
|
|
1621
|
+
[_I, _PNo],
|
|
1622
|
+
[0, 64 | 0], 2
|
|
1623
|
+
];
|
|
1624
|
+
var GetIdentityPoliciesResponse$ = [3, n0, _GIPRe,
|
|
1625
|
+
0,
|
|
1626
|
+
[_P],
|
|
1627
|
+
[128 | 0], 1
|
|
1628
|
+
];
|
|
1629
|
+
var GetIdentityVerificationAttributesRequest$ = [3, n0, _GIVAR,
|
|
1630
|
+
0,
|
|
1631
|
+
[_Id],
|
|
1632
|
+
[64 | 0], 1
|
|
1633
|
+
];
|
|
1634
|
+
var GetIdentityVerificationAttributesResponse$ = [3, n0, _GIVARe,
|
|
1635
|
+
0,
|
|
1636
|
+
[_VA],
|
|
1637
|
+
[() => VerificationAttributes], 1
|
|
1638
|
+
];
|
|
1639
|
+
var GetSendQuotaResponse$ = [3, n0, _GSQR,
|
|
1640
|
+
0,
|
|
1641
|
+
[_MHS, _MSR, _SLH],
|
|
1642
|
+
[1, 1, 1]
|
|
1643
|
+
];
|
|
1644
|
+
var GetSendStatisticsResponse$ = [3, n0, _GSSR,
|
|
1645
|
+
0,
|
|
1646
|
+
[_SDP],
|
|
1647
|
+
[() => SendDataPointList]
|
|
1648
|
+
];
|
|
1649
|
+
var GetTemplateRequest$ = [3, n0, _GTR,
|
|
1650
|
+
0,
|
|
1651
|
+
[_TN],
|
|
1652
|
+
[0], 1
|
|
1653
|
+
];
|
|
1654
|
+
var GetTemplateResponse$ = [3, n0, _GTRe,
|
|
1655
|
+
0,
|
|
1656
|
+
[_Tem],
|
|
1657
|
+
[() => Template$]
|
|
1658
|
+
];
|
|
1659
|
+
var IdentityDkimAttributes$ = [3, n0, _IDA,
|
|
1660
|
+
0,
|
|
1661
|
+
[_DE, _DVSk, _DT],
|
|
1662
|
+
[2, 0, 64 | 0], 2
|
|
1663
|
+
];
|
|
1664
|
+
var IdentityMailFromDomainAttributes$ = [3, n0, _IMFDA,
|
|
1665
|
+
0,
|
|
1666
|
+
[_MFD, _MFDS, _BOMXF],
|
|
1667
|
+
[0, 0, 0], 3
|
|
1668
|
+
];
|
|
1669
|
+
var IdentityNotificationAttributes$ = [3, n0, _INA,
|
|
1670
|
+
0,
|
|
1671
|
+
[_BTo, _CT, _DTe, _FE, _HIBNE, _HICNE, _HIDNE],
|
|
1672
|
+
[0, 0, 0, 2, 2, 2, 2], 4
|
|
1673
|
+
];
|
|
1674
|
+
var IdentityVerificationAttributes$ = [3, n0, _IVA,
|
|
1675
|
+
0,
|
|
1676
|
+
[_VS, _VT],
|
|
1677
|
+
[0, 0], 1
|
|
1678
|
+
];
|
|
1679
|
+
var KinesisFirehoseDestination$ = [3, n0, _KFD,
|
|
1680
|
+
0,
|
|
1681
|
+
[_IAMRARN, _DSARN],
|
|
1682
|
+
[0, 0], 2
|
|
1683
|
+
];
|
|
1684
|
+
var LambdaAction$ = [3, n0, _LA,
|
|
1685
|
+
0,
|
|
1686
|
+
[_FA, _TA, _IT],
|
|
1687
|
+
[0, 0, 0], 1
|
|
1688
|
+
];
|
|
1689
|
+
var ListConfigurationSetsRequest$ = [3, n0, _LCSR,
|
|
1690
|
+
0,
|
|
1691
|
+
[_NT, _MIa],
|
|
1692
|
+
[0, 1]
|
|
1693
|
+
];
|
|
1694
|
+
var ListConfigurationSetsResponse$ = [3, n0, _LCSRi,
|
|
1695
|
+
0,
|
|
1696
|
+
[_CSo, _NT],
|
|
1697
|
+
[() => ConfigurationSets, 0]
|
|
1698
|
+
];
|
|
1699
|
+
var ListCustomVerificationEmailTemplatesRequest$ = [3, n0, _LCVETR,
|
|
1700
|
+
0,
|
|
1701
|
+
[_NT, _MRa],
|
|
1702
|
+
[0, 1]
|
|
1703
|
+
];
|
|
1704
|
+
var ListCustomVerificationEmailTemplatesResponse$ = [3, n0, _LCVETRi,
|
|
1705
|
+
0,
|
|
1706
|
+
[_CVETu, _NT],
|
|
1707
|
+
[() => CustomVerificationEmailTemplates, 0]
|
|
1708
|
+
];
|
|
1709
|
+
var ListIdentitiesRequest$ = [3, n0, _LIR,
|
|
1710
|
+
0,
|
|
1711
|
+
[_ITd, _NT, _MIa],
|
|
1712
|
+
[0, 0, 1]
|
|
1713
|
+
];
|
|
1714
|
+
var ListIdentitiesResponse$ = [3, n0, _LIRi,
|
|
1715
|
+
0,
|
|
1716
|
+
[_Id, _NT],
|
|
1717
|
+
[64 | 0, 0], 1
|
|
1718
|
+
];
|
|
1719
|
+
var ListIdentityPoliciesRequest$ = [3, n0, _LIPR,
|
|
1720
|
+
0,
|
|
1721
|
+
[_I],
|
|
1722
|
+
[0], 1
|
|
1723
|
+
];
|
|
1724
|
+
var ListIdentityPoliciesResponse$ = [3, n0, _LIPRi,
|
|
1725
|
+
0,
|
|
1726
|
+
[_PNo],
|
|
1727
|
+
[64 | 0], 1
|
|
1728
|
+
];
|
|
1729
|
+
var ListReceiptFiltersRequest$ = [3, n0, _LRFR,
|
|
1730
|
+
0,
|
|
1731
|
+
[],
|
|
1732
|
+
[]
|
|
1733
|
+
];
|
|
1734
|
+
var ListReceiptFiltersResponse$ = [3, n0, _LRFRi,
|
|
1735
|
+
0,
|
|
1736
|
+
[_Fi],
|
|
1737
|
+
[() => ReceiptFilterList]
|
|
1738
|
+
];
|
|
1739
|
+
var ListReceiptRuleSetsRequest$ = [3, n0, _LRRSR,
|
|
1740
|
+
0,
|
|
1741
|
+
[_NT],
|
|
1742
|
+
[0]
|
|
1743
|
+
];
|
|
1744
|
+
var ListReceiptRuleSetsResponse$ = [3, n0, _LRRSRi,
|
|
1745
|
+
0,
|
|
1746
|
+
[_RS, _NT],
|
|
1747
|
+
[() => ReceiptRuleSetsLists, 0]
|
|
1748
|
+
];
|
|
1749
|
+
var ListTemplatesRequest$ = [3, n0, _LTR,
|
|
1750
|
+
0,
|
|
1751
|
+
[_NT, _MIa],
|
|
1752
|
+
[0, 1]
|
|
1753
|
+
];
|
|
1754
|
+
var ListTemplatesResponse$ = [3, n0, _LTRi,
|
|
1755
|
+
0,
|
|
1756
|
+
[_TM, _NT],
|
|
1757
|
+
[() => TemplateMetadataList, 0]
|
|
1758
|
+
];
|
|
1759
|
+
var ListVerifiedEmailAddressesResponse$ = [3, n0, _LVEAR,
|
|
1760
|
+
0,
|
|
1761
|
+
[_VEA],
|
|
1762
|
+
[64 | 0]
|
|
1763
|
+
];
|
|
1764
|
+
var Message$ = [3, n0, _M,
|
|
1765
|
+
0,
|
|
1766
|
+
[_Su, _Bo],
|
|
1767
|
+
[() => Content$, () => Body$], 2
|
|
1768
|
+
];
|
|
1769
|
+
var MessageDsn$ = [3, n0, _MD,
|
|
1770
|
+
0,
|
|
1771
|
+
[_RM, _AD, _EFx],
|
|
1772
|
+
[0, 4, () => ExtensionFieldList], 1
|
|
1773
|
+
];
|
|
1774
|
+
var MessageTag$ = [3, n0, _MT,
|
|
1775
|
+
0,
|
|
1776
|
+
[_N, _V],
|
|
1777
|
+
[0, 0], 2
|
|
1778
|
+
];
|
|
1779
|
+
var PutConfigurationSetDeliveryOptionsRequest$ = [3, n0, _PCSDOR,
|
|
1780
|
+
0,
|
|
1781
|
+
[_CSN, _DO],
|
|
1782
|
+
[0, () => DeliveryOptions$], 1
|
|
1783
|
+
];
|
|
1784
|
+
var PutConfigurationSetDeliveryOptionsResponse$ = [3, n0, _PCSDORu,
|
|
1785
|
+
0,
|
|
1786
|
+
[],
|
|
1787
|
+
[]
|
|
1788
|
+
];
|
|
1789
|
+
var PutIdentityPolicyRequest$ = [3, n0, _PIPR,
|
|
1790
|
+
0,
|
|
1791
|
+
[_I, _PN, _Po],
|
|
1792
|
+
[0, 0, 0], 3
|
|
1793
|
+
];
|
|
1794
|
+
var PutIdentityPolicyResponse$ = [3, n0, _PIPRu,
|
|
1795
|
+
0,
|
|
1796
|
+
[],
|
|
1797
|
+
[]
|
|
1798
|
+
];
|
|
1799
|
+
var RawMessage$ = [3, n0, _RMa,
|
|
1800
|
+
0,
|
|
1801
|
+
[_Da],
|
|
1802
|
+
[21], 1
|
|
1803
|
+
];
|
|
1804
|
+
var ReceiptAction$ = [3, n0, _RAe,
|
|
1805
|
+
0,
|
|
1806
|
+
[_SA, _BA, _WA, _LA, _SAt, _AHA, _SNSA, _CA],
|
|
1807
|
+
[() => S3Action$, () => BounceAction$, () => WorkmailAction$, () => LambdaAction$, () => StopAction$, () => AddHeaderAction$, () => SNSAction$, () => ConnectAction$]
|
|
1808
|
+
];
|
|
1809
|
+
var ReceiptFilter$ = [3, n0, _RF,
|
|
1810
|
+
0,
|
|
1811
|
+
[_N, _IF],
|
|
1812
|
+
[0, () => ReceiptIpFilter$], 2
|
|
1813
|
+
];
|
|
1814
|
+
var ReceiptIpFilter$ = [3, n0, _RIF,
|
|
1815
|
+
0,
|
|
1816
|
+
[_Po, _Ci],
|
|
1817
|
+
[0, 0], 2
|
|
1818
|
+
];
|
|
1819
|
+
var ReceiptRule$ = [3, n0, _RR,
|
|
1820
|
+
0,
|
|
1821
|
+
[_N, _En, _TP, _Re, _Ac, _SE],
|
|
1822
|
+
[0, 2, 0, 64 | 0, () => ReceiptActionsList, 2], 1
|
|
1823
|
+
];
|
|
1824
|
+
var ReceiptRuleSetMetadata$ = [3, n0, _RRSM,
|
|
1825
|
+
0,
|
|
1826
|
+
[_N, _CTr],
|
|
1827
|
+
[0, 4]
|
|
1828
|
+
];
|
|
1829
|
+
var RecipientDsnFields$ = [3, n0, _RDF,
|
|
1830
|
+
0,
|
|
1831
|
+
[_Act, _St, _FR, _RMe, _DCi, _LAD, _EFx],
|
|
1832
|
+
[0, 0, 0, 0, 0, 4, () => ExtensionFieldList], 2
|
|
1833
|
+
];
|
|
1834
|
+
var ReorderReceiptRuleSetRequest$ = [3, n0, _RRRSR,
|
|
1835
|
+
0,
|
|
1836
|
+
[_RSN, _RNu],
|
|
1837
|
+
[0, 64 | 0], 2
|
|
1838
|
+
];
|
|
1839
|
+
var ReorderReceiptRuleSetResponse$ = [3, n0, _RRRSRe,
|
|
1840
|
+
0,
|
|
1841
|
+
[],
|
|
1842
|
+
[]
|
|
1843
|
+
];
|
|
1844
|
+
var ReputationOptions$ = [3, n0, _RO,
|
|
1845
|
+
0,
|
|
1846
|
+
[_SEe, _RME, _LFS],
|
|
1847
|
+
[2, 2, 4]
|
|
1848
|
+
];
|
|
1849
|
+
var S3Action$ = [3, n0, _SA,
|
|
1850
|
+
0,
|
|
1851
|
+
[_BN, _TA, _OKP, _KKA, _IRA],
|
|
1852
|
+
[0, 0, 0, 0, 0], 1
|
|
1853
|
+
];
|
|
1854
|
+
var SendBounceRequest$ = [3, n0, _SBR,
|
|
1855
|
+
0,
|
|
1856
|
+
[_OMI, _BS, _BRIL, _Ex, _MD, _BSA],
|
|
1857
|
+
[0, 0, () => BouncedRecipientInfoList, 0, () => MessageDsn$, 0], 3
|
|
1858
|
+
];
|
|
1859
|
+
var SendBounceResponse$ = [3, n0, _SBRe,
|
|
1860
|
+
0,
|
|
1861
|
+
[_MI],
|
|
1862
|
+
[0]
|
|
1863
|
+
];
|
|
1864
|
+
var SendBulkTemplatedEmailRequest$ = [3, n0, _SBTER,
|
|
1865
|
+
0,
|
|
1866
|
+
[_So, _Tem, _DTD, _De, _SAo, _RTA, _RP, _RPA, _CSN, _DTef, _TAe],
|
|
1867
|
+
[0, 0, 0, () => BulkEmailDestinationList, 0, 64 | 0, 0, 0, 0, () => MessageTagList, 0], 4
|
|
1868
|
+
];
|
|
1869
|
+
var SendBulkTemplatedEmailResponse$ = [3, n0, _SBTERe,
|
|
1870
|
+
0,
|
|
1871
|
+
[_St],
|
|
1872
|
+
[() => BulkEmailDestinationStatusList], 1
|
|
1873
|
+
];
|
|
1874
|
+
var SendCustomVerificationEmailRequest$ = [3, n0, _SCVER,
|
|
1875
|
+
0,
|
|
1876
|
+
[_EA, _TN, _CSN],
|
|
1877
|
+
[0, 0, 0], 2
|
|
1878
|
+
];
|
|
1879
|
+
var SendCustomVerificationEmailResponse$ = [3, n0, _SCVERe,
|
|
1880
|
+
0,
|
|
1881
|
+
[_MI],
|
|
1882
|
+
[0]
|
|
1883
|
+
];
|
|
1884
|
+
var SendDataPoint$ = [3, n0, _SDPe,
|
|
1885
|
+
0,
|
|
1886
|
+
[_Ti, _DAe, _Bou, _Co, _Rej],
|
|
1887
|
+
[4, 1, 1, 1, 1]
|
|
1888
|
+
];
|
|
1889
|
+
var SendEmailRequest$ = [3, n0, _SER,
|
|
1890
|
+
0,
|
|
1891
|
+
[_So, _D, _M, _RTA, _RP, _SAo, _RPA, _Ta, _CSN],
|
|
1892
|
+
[0, () => Destination$, () => Message$, 64 | 0, 0, 0, 0, () => MessageTagList, 0], 3
|
|
1893
|
+
];
|
|
1894
|
+
var SendEmailResponse$ = [3, n0, _SERe,
|
|
1895
|
+
0,
|
|
1896
|
+
[_MI],
|
|
1897
|
+
[0], 1
|
|
1898
|
+
];
|
|
1899
|
+
var SendRawEmailRequest$ = [3, n0, _SRER,
|
|
1900
|
+
0,
|
|
1901
|
+
[_RMa, _So, _De, _FAr, _SAo, _RPA, _Ta, _CSN],
|
|
1902
|
+
[() => RawMessage$, 0, 64 | 0, 0, 0, 0, () => MessageTagList, 0], 1
|
|
1903
|
+
];
|
|
1904
|
+
var SendRawEmailResponse$ = [3, n0, _SRERe,
|
|
1905
|
+
0,
|
|
1906
|
+
[_MI],
|
|
1907
|
+
[0], 1
|
|
1908
|
+
];
|
|
1909
|
+
var SendTemplatedEmailRequest$ = [3, n0, _STER,
|
|
1910
|
+
0,
|
|
1911
|
+
[_So, _D, _Tem, _TD, _RTA, _RP, _SAo, _RPA, _Ta, _CSN, _TAe],
|
|
1912
|
+
[0, () => Destination$, 0, 0, 64 | 0, 0, 0, 0, () => MessageTagList, 0, 0], 4
|
|
1913
|
+
];
|
|
1914
|
+
var SendTemplatedEmailResponse$ = [3, n0, _STERe,
|
|
1915
|
+
0,
|
|
1916
|
+
[_MI],
|
|
1917
|
+
[0], 1
|
|
1918
|
+
];
|
|
1919
|
+
var SetActiveReceiptRuleSetRequest$ = [3, n0, _SARRSR,
|
|
1920
|
+
0,
|
|
1921
|
+
[_RSN],
|
|
1922
|
+
[0]
|
|
1923
|
+
];
|
|
1924
|
+
var SetActiveReceiptRuleSetResponse$ = [3, n0, _SARRSRe,
|
|
1925
|
+
0,
|
|
1926
|
+
[],
|
|
1927
|
+
[]
|
|
1928
|
+
];
|
|
1929
|
+
var SetIdentityDkimEnabledRequest$ = [3, n0, _SIDER,
|
|
1930
|
+
0,
|
|
1931
|
+
[_I, _DE],
|
|
1932
|
+
[0, 2], 2
|
|
1933
|
+
];
|
|
1934
|
+
var SetIdentityDkimEnabledResponse$ = [3, n0, _SIDERe,
|
|
1935
|
+
0,
|
|
1936
|
+
[],
|
|
1937
|
+
[]
|
|
1938
|
+
];
|
|
1939
|
+
var SetIdentityFeedbackForwardingEnabledRequest$ = [3, n0, _SIFFER,
|
|
1940
|
+
0,
|
|
1941
|
+
[_I, _FE],
|
|
1942
|
+
[0, 2], 2
|
|
1943
|
+
];
|
|
1944
|
+
var SetIdentityFeedbackForwardingEnabledResponse$ = [3, n0, _SIFFERe,
|
|
1945
|
+
0,
|
|
1946
|
+
[],
|
|
1947
|
+
[]
|
|
1948
|
+
];
|
|
1949
|
+
var SetIdentityHeadersInNotificationsEnabledRequest$ = [3, n0, _SIHINER,
|
|
1950
|
+
0,
|
|
1951
|
+
[_I, _NTo, _En],
|
|
1952
|
+
[0, 0, 2], 3
|
|
1953
|
+
];
|
|
1954
|
+
var SetIdentityHeadersInNotificationsEnabledResponse$ = [3, n0, _SIHINERe,
|
|
1955
|
+
0,
|
|
1956
|
+
[],
|
|
1957
|
+
[]
|
|
1958
|
+
];
|
|
1959
|
+
var SetIdentityMailFromDomainRequest$ = [3, n0, _SIMFDR,
|
|
1960
|
+
0,
|
|
1961
|
+
[_I, _MFD, _BOMXF],
|
|
1962
|
+
[0, 0, 0], 1
|
|
1963
|
+
];
|
|
1964
|
+
var SetIdentityMailFromDomainResponse$ = [3, n0, _SIMFDRe,
|
|
1965
|
+
0,
|
|
1966
|
+
[],
|
|
1967
|
+
[]
|
|
1968
|
+
];
|
|
1969
|
+
var SetIdentityNotificationTopicRequest$ = [3, n0, _SINTR,
|
|
1970
|
+
0,
|
|
1971
|
+
[_I, _NTo, _ST],
|
|
1972
|
+
[0, 0, 0], 2
|
|
1973
|
+
];
|
|
1974
|
+
var SetIdentityNotificationTopicResponse$ = [3, n0, _SINTRe,
|
|
1975
|
+
0,
|
|
1976
|
+
[],
|
|
1977
|
+
[]
|
|
1978
|
+
];
|
|
1979
|
+
var SetReceiptRulePositionRequest$ = [3, n0, _SRRPR,
|
|
1980
|
+
0,
|
|
1981
|
+
[_RSN, _RN, _A],
|
|
1982
|
+
[0, 0, 0], 2
|
|
1983
|
+
];
|
|
1984
|
+
var SetReceiptRulePositionResponse$ = [3, n0, _SRRPRe,
|
|
1985
|
+
0,
|
|
1986
|
+
[],
|
|
1987
|
+
[]
|
|
1988
|
+
];
|
|
1989
|
+
var SNSAction$ = [3, n0, _SNSA,
|
|
1990
|
+
0,
|
|
1991
|
+
[_TA, _Enc],
|
|
1992
|
+
[0, 0], 1
|
|
1993
|
+
];
|
|
1994
|
+
var SNSDestination$ = [3, n0, _SNSD,
|
|
1995
|
+
0,
|
|
1996
|
+
[_TARN],
|
|
1997
|
+
[0], 1
|
|
1998
|
+
];
|
|
1999
|
+
var StopAction$ = [3, n0, _SAt,
|
|
2000
|
+
0,
|
|
2001
|
+
[_Sc, _TA],
|
|
2002
|
+
[0, 0], 1
|
|
2003
|
+
];
|
|
2004
|
+
var Template$ = [3, n0, _Tem,
|
|
2005
|
+
0,
|
|
2006
|
+
[_TN, _SP, _TPe, _HP],
|
|
2007
|
+
[0, 0, 0, 0], 1
|
|
2008
|
+
];
|
|
2009
|
+
var TemplateMetadata$ = [3, n0, _TMe,
|
|
2010
|
+
0,
|
|
2011
|
+
[_N, _CTr],
|
|
2012
|
+
[0, 4]
|
|
2013
|
+
];
|
|
2014
|
+
var TestRenderTemplateRequest$ = [3, n0, _TRTR,
|
|
2015
|
+
0,
|
|
2016
|
+
[_TN, _TD],
|
|
2017
|
+
[0, 0], 2
|
|
2018
|
+
];
|
|
2019
|
+
var TestRenderTemplateResponse$ = [3, n0, _TRTRe,
|
|
2020
|
+
0,
|
|
2021
|
+
[_RTe],
|
|
2022
|
+
[0]
|
|
2023
|
+
];
|
|
2024
|
+
var TrackingOptions$ = [3, n0, _TO,
|
|
2025
|
+
0,
|
|
2026
|
+
[_CRD],
|
|
2027
|
+
[0]
|
|
2028
|
+
];
|
|
2029
|
+
var UpdateAccountSendingEnabledRequest$ = [3, n0, _UASER,
|
|
2030
|
+
0,
|
|
2031
|
+
[_En],
|
|
2032
|
+
[2]
|
|
2033
|
+
];
|
|
2034
|
+
var UpdateConfigurationSetEventDestinationRequest$ = [3, n0, _UCSEDR,
|
|
2035
|
+
0,
|
|
2036
|
+
[_CSN, _ED],
|
|
2037
|
+
[0, () => EventDestination$], 2
|
|
2038
|
+
];
|
|
2039
|
+
var UpdateConfigurationSetEventDestinationResponse$ = [3, n0, _UCSEDRp,
|
|
2040
|
+
0,
|
|
2041
|
+
[],
|
|
2042
|
+
[]
|
|
2043
|
+
];
|
|
2044
|
+
var UpdateConfigurationSetReputationMetricsEnabledRequest$ = [3, n0, _UCSRMER,
|
|
2045
|
+
0,
|
|
2046
|
+
[_CSN, _En],
|
|
2047
|
+
[0, 2], 2
|
|
2048
|
+
];
|
|
2049
|
+
var UpdateConfigurationSetSendingEnabledRequest$ = [3, n0, _UCSSER,
|
|
2050
|
+
0,
|
|
2051
|
+
[_CSN, _En],
|
|
2052
|
+
[0, 2], 2
|
|
2053
|
+
];
|
|
2054
|
+
var UpdateConfigurationSetTrackingOptionsRequest$ = [3, n0, _UCSTOR,
|
|
2055
|
+
0,
|
|
2056
|
+
[_CSN, _TO],
|
|
2057
|
+
[0, () => TrackingOptions$], 2
|
|
2058
|
+
];
|
|
2059
|
+
var UpdateConfigurationSetTrackingOptionsResponse$ = [3, n0, _UCSTORp,
|
|
2060
|
+
0,
|
|
2061
|
+
[],
|
|
2062
|
+
[]
|
|
2063
|
+
];
|
|
2064
|
+
var UpdateCustomVerificationEmailTemplateRequest$ = [3, n0, _UCVETR,
|
|
2065
|
+
0,
|
|
2066
|
+
[_TN, _FEA, _TS, _TC, _SRURL, _FRURL],
|
|
2067
|
+
[0, 0, 0, 0, 0, 0], 1
|
|
2068
|
+
];
|
|
2069
|
+
var UpdateReceiptRuleRequest$ = [3, n0, _URRR,
|
|
2070
|
+
0,
|
|
2071
|
+
[_RSN, _Ru],
|
|
2072
|
+
[0, () => ReceiptRule$], 2
|
|
2073
|
+
];
|
|
2074
|
+
var UpdateReceiptRuleResponse$ = [3, n0, _URRRp,
|
|
2075
|
+
0,
|
|
2076
|
+
[],
|
|
2077
|
+
[]
|
|
2078
|
+
];
|
|
2079
|
+
var UpdateTemplateRequest$ = [3, n0, _UTR,
|
|
2080
|
+
0,
|
|
2081
|
+
[_Tem],
|
|
2082
|
+
[() => Template$], 1
|
|
2083
|
+
];
|
|
2084
|
+
var UpdateTemplateResponse$ = [3, n0, _UTRp,
|
|
2085
|
+
0,
|
|
2086
|
+
[],
|
|
2087
|
+
[]
|
|
2088
|
+
];
|
|
2089
|
+
var VerifyDomainDkimRequest$ = [3, n0, _VDDR,
|
|
2090
|
+
0,
|
|
2091
|
+
[_Do],
|
|
2092
|
+
[0], 1
|
|
2093
|
+
];
|
|
2094
|
+
var VerifyDomainDkimResponse$ = [3, n0, _VDDRe,
|
|
2095
|
+
0,
|
|
2096
|
+
[_DT],
|
|
2097
|
+
[64 | 0], 1
|
|
2098
|
+
];
|
|
2099
|
+
var VerifyDomainIdentityRequest$ = [3, n0, _VDIR,
|
|
2100
|
+
0,
|
|
2101
|
+
[_Do],
|
|
2102
|
+
[0], 1
|
|
2103
|
+
];
|
|
2104
|
+
var VerifyDomainIdentityResponse$ = [3, n0, _VDIRe,
|
|
2105
|
+
0,
|
|
2106
|
+
[_VT],
|
|
2107
|
+
[0], 1
|
|
2108
|
+
];
|
|
2109
|
+
var VerifyEmailAddressRequest$ = [3, n0, _VEAR,
|
|
2110
|
+
0,
|
|
2111
|
+
[_EA],
|
|
2112
|
+
[0], 1
|
|
2113
|
+
];
|
|
2114
|
+
var VerifyEmailIdentityRequest$ = [3, n0, _VEIR,
|
|
2115
|
+
0,
|
|
2116
|
+
[_EA],
|
|
2117
|
+
[0], 1
|
|
2118
|
+
];
|
|
2119
|
+
var VerifyEmailIdentityResponse$ = [3, n0, _VEIRe,
|
|
2120
|
+
0,
|
|
2121
|
+
[],
|
|
2122
|
+
[]
|
|
2123
|
+
];
|
|
2124
|
+
var WorkmailAction$ = [3, n0, _WA,
|
|
2125
|
+
0,
|
|
2126
|
+
[_OA, _TA],
|
|
2127
|
+
[0, 0], 1
|
|
2128
|
+
];
|
|
2129
|
+
var __Unit = "unit";
|
|
2130
|
+
var BouncedRecipientInfoList = [1, n0, _BRIL,
|
|
2131
|
+
0, () => BouncedRecipientInfo$
|
|
2132
|
+
];
|
|
2133
|
+
var BulkEmailDestinationList = [1, n0, _BEDL,
|
|
2134
|
+
0, () => BulkEmailDestination$
|
|
2135
|
+
];
|
|
2136
|
+
var BulkEmailDestinationStatusList = [1, n0, _BEDSL,
|
|
2137
|
+
0, () => BulkEmailDestinationStatus$
|
|
2138
|
+
];
|
|
2139
|
+
var CloudWatchDimensionConfigurations = [1, n0, _CWDCl,
|
|
2140
|
+
0, () => CloudWatchDimensionConfiguration$
|
|
2141
|
+
];
|
|
2142
|
+
var ConfigurationSets = [1, n0, _CSo,
|
|
2143
|
+
0, () => ConfigurationSet$
|
|
2144
|
+
];
|
|
2145
|
+
var CustomVerificationEmailTemplates = [1, n0, _CVETu,
|
|
2146
|
+
0, () => CustomVerificationEmailTemplate$
|
|
2147
|
+
];
|
|
2148
|
+
var EventDestinations = [1, n0, _EDv,
|
|
2149
|
+
0, () => EventDestination$
|
|
2150
|
+
];
|
|
2151
|
+
var ExtensionFieldList = [1, n0, _EFL,
|
|
2152
|
+
0, () => ExtensionField$
|
|
2153
|
+
];
|
|
2154
|
+
var MessageTagList = [1, n0, _MTL,
|
|
2155
|
+
0, () => MessageTag$
|
|
2156
|
+
];
|
|
2157
|
+
var ReceiptActionsList = [1, n0, _RAL,
|
|
2158
|
+
0, () => ReceiptAction$
|
|
2159
|
+
];
|
|
2160
|
+
var ReceiptFilterList = [1, n0, _RFL,
|
|
2161
|
+
0, () => ReceiptFilter$
|
|
2162
|
+
];
|
|
2163
|
+
var ReceiptRuleSetsLists = [1, n0, _RRSL,
|
|
2164
|
+
0, () => ReceiptRuleSetMetadata$
|
|
2165
|
+
];
|
|
2166
|
+
var ReceiptRulesList = [1, n0, _RRL,
|
|
2167
|
+
0, () => ReceiptRule$
|
|
2168
|
+
];
|
|
2169
|
+
var SendDataPointList = [1, n0, _SDPL,
|
|
2170
|
+
0, () => SendDataPoint$
|
|
2171
|
+
];
|
|
2172
|
+
var TemplateMetadataList = [1, n0, _TML,
|
|
2173
|
+
0, () => TemplateMetadata$
|
|
2174
|
+
];
|
|
2175
|
+
var DkimAttributes = [2, n0, _DA,
|
|
2176
|
+
0, 0, () => IdentityDkimAttributes$
|
|
2177
|
+
];
|
|
2178
|
+
var MailFromDomainAttributes = [2, n0, _MFDA,
|
|
2179
|
+
0, 0, () => IdentityMailFromDomainAttributes$
|
|
2180
|
+
];
|
|
2181
|
+
var NotificationAttributes = [2, n0, _NA,
|
|
2182
|
+
0, 0, () => IdentityNotificationAttributes$
|
|
2183
|
+
];
|
|
2184
|
+
var VerificationAttributes = [2, n0, _VA,
|
|
2185
|
+
0, 0, () => IdentityVerificationAttributes$
|
|
2186
|
+
];
|
|
2187
|
+
var CloneReceiptRuleSet$ = [9, n0, _CRRS,
|
|
2188
|
+
0, () => CloneReceiptRuleSetRequest$, () => CloneReceiptRuleSetResponse$
|
|
2189
|
+
];
|
|
2190
|
+
var CreateConfigurationSet$ = [9, n0, _CCS,
|
|
2191
|
+
0, () => CreateConfigurationSetRequest$, () => CreateConfigurationSetResponse$
|
|
2192
|
+
];
|
|
2193
|
+
var CreateConfigurationSetEventDestination$ = [9, n0, _CCSED,
|
|
2194
|
+
0, () => CreateConfigurationSetEventDestinationRequest$, () => CreateConfigurationSetEventDestinationResponse$
|
|
2195
|
+
];
|
|
2196
|
+
var CreateConfigurationSetTrackingOptions$ = [9, n0, _CCSTO,
|
|
2197
|
+
0, () => CreateConfigurationSetTrackingOptionsRequest$, () => CreateConfigurationSetTrackingOptionsResponse$
|
|
2198
|
+
];
|
|
2199
|
+
var CreateCustomVerificationEmailTemplate$ = [9, n0, _CCVET,
|
|
2200
|
+
0, () => CreateCustomVerificationEmailTemplateRequest$, () => __Unit
|
|
2201
|
+
];
|
|
2202
|
+
var CreateReceiptFilter$ = [9, n0, _CRF,
|
|
2203
|
+
0, () => CreateReceiptFilterRequest$, () => CreateReceiptFilterResponse$
|
|
2204
|
+
];
|
|
2205
|
+
var CreateReceiptRule$ = [9, n0, _CRR,
|
|
2206
|
+
0, () => CreateReceiptRuleRequest$, () => CreateReceiptRuleResponse$
|
|
2207
|
+
];
|
|
2208
|
+
var CreateReceiptRuleSet$ = [9, n0, _CRRSr,
|
|
2209
|
+
0, () => CreateReceiptRuleSetRequest$, () => CreateReceiptRuleSetResponse$
|
|
2210
|
+
];
|
|
2211
|
+
var CreateTemplate$ = [9, n0, _CTre,
|
|
2212
|
+
0, () => CreateTemplateRequest$, () => CreateTemplateResponse$
|
|
2213
|
+
];
|
|
2214
|
+
var DeleteConfigurationSet$ = [9, n0, _DCS,
|
|
2215
|
+
0, () => DeleteConfigurationSetRequest$, () => DeleteConfigurationSetResponse$
|
|
2216
|
+
];
|
|
2217
|
+
var DeleteConfigurationSetEventDestination$ = [9, n0, _DCSED,
|
|
2218
|
+
0, () => DeleteConfigurationSetEventDestinationRequest$, () => DeleteConfigurationSetEventDestinationResponse$
|
|
2219
|
+
];
|
|
2220
|
+
var DeleteConfigurationSetTrackingOptions$ = [9, n0, _DCSTO,
|
|
2221
|
+
0, () => DeleteConfigurationSetTrackingOptionsRequest$, () => DeleteConfigurationSetTrackingOptionsResponse$
|
|
2222
|
+
];
|
|
2223
|
+
var DeleteCustomVerificationEmailTemplate$ = [9, n0, _DCVET,
|
|
2224
|
+
0, () => DeleteCustomVerificationEmailTemplateRequest$, () => __Unit
|
|
2225
|
+
];
|
|
2226
|
+
var DeleteIdentity$ = [9, n0, _DI,
|
|
2227
|
+
0, () => DeleteIdentityRequest$, () => DeleteIdentityResponse$
|
|
2228
|
+
];
|
|
2229
|
+
var DeleteIdentityPolicy$ = [9, n0, _DIP,
|
|
2230
|
+
0, () => DeleteIdentityPolicyRequest$, () => DeleteIdentityPolicyResponse$
|
|
2231
|
+
];
|
|
2232
|
+
var DeleteReceiptFilter$ = [9, n0, _DRF,
|
|
2233
|
+
0, () => DeleteReceiptFilterRequest$, () => DeleteReceiptFilterResponse$
|
|
2234
|
+
];
|
|
2235
|
+
var DeleteReceiptRule$ = [9, n0, _DRR,
|
|
2236
|
+
0, () => DeleteReceiptRuleRequest$, () => DeleteReceiptRuleResponse$
|
|
2237
|
+
];
|
|
2238
|
+
var DeleteReceiptRuleSet$ = [9, n0, _DRRS,
|
|
2239
|
+
0, () => DeleteReceiptRuleSetRequest$, () => DeleteReceiptRuleSetResponse$
|
|
2240
|
+
];
|
|
2241
|
+
var DeleteTemplate$ = [9, n0, _DTel,
|
|
2242
|
+
0, () => DeleteTemplateRequest$, () => DeleteTemplateResponse$
|
|
2243
|
+
];
|
|
2244
|
+
var DeleteVerifiedEmailAddress$ = [9, n0, _DVEA,
|
|
2245
|
+
0, () => DeleteVerifiedEmailAddressRequest$, () => __Unit
|
|
2246
|
+
];
|
|
2247
|
+
var DescribeActiveReceiptRuleSet$ = [9, n0, _DARRS,
|
|
2248
|
+
0, () => DescribeActiveReceiptRuleSetRequest$, () => DescribeActiveReceiptRuleSetResponse$
|
|
2249
|
+
];
|
|
2250
|
+
var DescribeConfigurationSet$ = [9, n0, _DCSe,
|
|
2251
|
+
0, () => DescribeConfigurationSetRequest$, () => DescribeConfigurationSetResponse$
|
|
2252
|
+
];
|
|
2253
|
+
var DescribeReceiptRule$ = [9, n0, _DRRe,
|
|
2254
|
+
0, () => DescribeReceiptRuleRequest$, () => DescribeReceiptRuleResponse$
|
|
2255
|
+
];
|
|
2256
|
+
var DescribeReceiptRuleSet$ = [9, n0, _DRRSe,
|
|
2257
|
+
0, () => DescribeReceiptRuleSetRequest$, () => DescribeReceiptRuleSetResponse$
|
|
2258
|
+
];
|
|
2259
|
+
var GetAccountSendingEnabled$ = [9, n0, _GASE,
|
|
2260
|
+
0, () => __Unit, () => GetAccountSendingEnabledResponse$
|
|
2261
|
+
];
|
|
2262
|
+
var GetCustomVerificationEmailTemplate$ = [9, n0, _GCVET,
|
|
2263
|
+
0, () => GetCustomVerificationEmailTemplateRequest$, () => GetCustomVerificationEmailTemplateResponse$
|
|
2264
|
+
];
|
|
2265
|
+
var GetIdentityDkimAttributes$ = [9, n0, _GIDA,
|
|
2266
|
+
0, () => GetIdentityDkimAttributesRequest$, () => GetIdentityDkimAttributesResponse$
|
|
2267
|
+
];
|
|
2268
|
+
var GetIdentityMailFromDomainAttributes$ = [9, n0, _GIMFDA,
|
|
2269
|
+
0, () => GetIdentityMailFromDomainAttributesRequest$, () => GetIdentityMailFromDomainAttributesResponse$
|
|
2270
|
+
];
|
|
2271
|
+
var GetIdentityNotificationAttributes$ = [9, n0, _GINA,
|
|
2272
|
+
0, () => GetIdentityNotificationAttributesRequest$, () => GetIdentityNotificationAttributesResponse$
|
|
2273
|
+
];
|
|
2274
|
+
var GetIdentityPolicies$ = [9, n0, _GIP,
|
|
2275
|
+
0, () => GetIdentityPoliciesRequest$, () => GetIdentityPoliciesResponse$
|
|
2276
|
+
];
|
|
2277
|
+
var GetIdentityVerificationAttributes$ = [9, n0, _GIVA,
|
|
2278
|
+
0, () => GetIdentityVerificationAttributesRequest$, () => GetIdentityVerificationAttributesResponse$
|
|
2279
|
+
];
|
|
2280
|
+
var GetSendQuota$ = [9, n0, _GSQ,
|
|
2281
|
+
0, () => __Unit, () => GetSendQuotaResponse$
|
|
2282
|
+
];
|
|
2283
|
+
var GetSendStatistics$ = [9, n0, _GSS,
|
|
2284
|
+
0, () => __Unit, () => GetSendStatisticsResponse$
|
|
2285
|
+
];
|
|
2286
|
+
var GetTemplate$ = [9, n0, _GT,
|
|
2287
|
+
0, () => GetTemplateRequest$, () => GetTemplateResponse$
|
|
2288
|
+
];
|
|
2289
|
+
var ListConfigurationSets$ = [9, n0, _LCS,
|
|
2290
|
+
0, () => ListConfigurationSetsRequest$, () => ListConfigurationSetsResponse$
|
|
2291
|
+
];
|
|
2292
|
+
var ListCustomVerificationEmailTemplates$ = [9, n0, _LCVET,
|
|
2293
|
+
0, () => ListCustomVerificationEmailTemplatesRequest$, () => ListCustomVerificationEmailTemplatesResponse$
|
|
2294
|
+
];
|
|
2295
|
+
var ListIdentities$ = [9, n0, _LI,
|
|
2296
|
+
0, () => ListIdentitiesRequest$, () => ListIdentitiesResponse$
|
|
2297
|
+
];
|
|
2298
|
+
var ListIdentityPolicies$ = [9, n0, _LIP,
|
|
2299
|
+
0, () => ListIdentityPoliciesRequest$, () => ListIdentityPoliciesResponse$
|
|
2300
|
+
];
|
|
2301
|
+
var ListReceiptFilters$ = [9, n0, _LRF,
|
|
2302
|
+
0, () => ListReceiptFiltersRequest$, () => ListReceiptFiltersResponse$
|
|
2303
|
+
];
|
|
2304
|
+
var ListReceiptRuleSets$ = [9, n0, _LRRS,
|
|
2305
|
+
0, () => ListReceiptRuleSetsRequest$, () => ListReceiptRuleSetsResponse$
|
|
2306
|
+
];
|
|
2307
|
+
var ListTemplates$ = [9, n0, _LT,
|
|
2308
|
+
0, () => ListTemplatesRequest$, () => ListTemplatesResponse$
|
|
2309
|
+
];
|
|
2310
|
+
var ListVerifiedEmailAddresses$ = [9, n0, _LVEA,
|
|
2311
|
+
0, () => __Unit, () => ListVerifiedEmailAddressesResponse$
|
|
2312
|
+
];
|
|
2313
|
+
var PutConfigurationSetDeliveryOptions$ = [9, n0, _PCSDO,
|
|
2314
|
+
0, () => PutConfigurationSetDeliveryOptionsRequest$, () => PutConfigurationSetDeliveryOptionsResponse$
|
|
2315
|
+
];
|
|
2316
|
+
var PutIdentityPolicy$ = [9, n0, _PIP,
|
|
2317
|
+
0, () => PutIdentityPolicyRequest$, () => PutIdentityPolicyResponse$
|
|
2318
|
+
];
|
|
2319
|
+
var ReorderReceiptRuleSet$ = [9, n0, _RRRS,
|
|
2320
|
+
0, () => ReorderReceiptRuleSetRequest$, () => ReorderReceiptRuleSetResponse$
|
|
2321
|
+
];
|
|
2322
|
+
var SendBounce$ = [9, n0, _SB,
|
|
2323
|
+
0, () => SendBounceRequest$, () => SendBounceResponse$
|
|
2324
|
+
];
|
|
2325
|
+
var SendBulkTemplatedEmail$ = [9, n0, _SBTE,
|
|
2326
|
+
0, () => SendBulkTemplatedEmailRequest$, () => SendBulkTemplatedEmailResponse$
|
|
2327
|
+
];
|
|
2328
|
+
var SendCustomVerificationEmail$ = [9, n0, _SCVE,
|
|
2329
|
+
0, () => SendCustomVerificationEmailRequest$, () => SendCustomVerificationEmailResponse$
|
|
2330
|
+
];
|
|
2331
|
+
var SendEmail$ = [9, n0, _SEen,
|
|
2332
|
+
0, () => SendEmailRequest$, () => SendEmailResponse$
|
|
2333
|
+
];
|
|
2334
|
+
var SendRawEmail$ = [9, n0, _SRE,
|
|
2335
|
+
0, () => SendRawEmailRequest$, () => SendRawEmailResponse$
|
|
2336
|
+
];
|
|
2337
|
+
var SendTemplatedEmail$ = [9, n0, _STE,
|
|
2338
|
+
0, () => SendTemplatedEmailRequest$, () => SendTemplatedEmailResponse$
|
|
2339
|
+
];
|
|
2340
|
+
var SetActiveReceiptRuleSet$ = [9, n0, _SARRS,
|
|
2341
|
+
0, () => SetActiveReceiptRuleSetRequest$, () => SetActiveReceiptRuleSetResponse$
|
|
2342
|
+
];
|
|
2343
|
+
var SetIdentityDkimEnabled$ = [9, n0, _SIDE,
|
|
2344
|
+
0, () => SetIdentityDkimEnabledRequest$, () => SetIdentityDkimEnabledResponse$
|
|
2345
|
+
];
|
|
2346
|
+
var SetIdentityFeedbackForwardingEnabled$ = [9, n0, _SIFFE,
|
|
2347
|
+
0, () => SetIdentityFeedbackForwardingEnabledRequest$, () => SetIdentityFeedbackForwardingEnabledResponse$
|
|
2348
|
+
];
|
|
2349
|
+
var SetIdentityHeadersInNotificationsEnabled$ = [9, n0, _SIHINE,
|
|
2350
|
+
0, () => SetIdentityHeadersInNotificationsEnabledRequest$, () => SetIdentityHeadersInNotificationsEnabledResponse$
|
|
2351
|
+
];
|
|
2352
|
+
var SetIdentityMailFromDomain$ = [9, n0, _SIMFD,
|
|
2353
|
+
0, () => SetIdentityMailFromDomainRequest$, () => SetIdentityMailFromDomainResponse$
|
|
2354
|
+
];
|
|
2355
|
+
var SetIdentityNotificationTopic$ = [9, n0, _SINT,
|
|
2356
|
+
0, () => SetIdentityNotificationTopicRequest$, () => SetIdentityNotificationTopicResponse$
|
|
2357
|
+
];
|
|
2358
|
+
var SetReceiptRulePosition$ = [9, n0, _SRRP,
|
|
2359
|
+
0, () => SetReceiptRulePositionRequest$, () => SetReceiptRulePositionResponse$
|
|
2360
|
+
];
|
|
2361
|
+
var TestRenderTemplate$ = [9, n0, _TRT,
|
|
2362
|
+
0, () => TestRenderTemplateRequest$, () => TestRenderTemplateResponse$
|
|
2363
|
+
];
|
|
2364
|
+
var UpdateAccountSendingEnabled$ = [9, n0, _UASE,
|
|
2365
|
+
0, () => UpdateAccountSendingEnabledRequest$, () => __Unit
|
|
2366
|
+
];
|
|
2367
|
+
var UpdateConfigurationSetEventDestination$ = [9, n0, _UCSED,
|
|
2368
|
+
0, () => UpdateConfigurationSetEventDestinationRequest$, () => UpdateConfigurationSetEventDestinationResponse$
|
|
2369
|
+
];
|
|
2370
|
+
var UpdateConfigurationSetReputationMetricsEnabled$ = [9, n0, _UCSRME,
|
|
2371
|
+
0, () => UpdateConfigurationSetReputationMetricsEnabledRequest$, () => __Unit
|
|
2372
|
+
];
|
|
2373
|
+
var UpdateConfigurationSetSendingEnabled$ = [9, n0, _UCSSE,
|
|
2374
|
+
0, () => UpdateConfigurationSetSendingEnabledRequest$, () => __Unit
|
|
2375
|
+
];
|
|
2376
|
+
var UpdateConfigurationSetTrackingOptions$ = [9, n0, _UCSTO,
|
|
2377
|
+
0, () => UpdateConfigurationSetTrackingOptionsRequest$, () => UpdateConfigurationSetTrackingOptionsResponse$
|
|
2378
|
+
];
|
|
2379
|
+
var UpdateCustomVerificationEmailTemplate$ = [9, n0, _UCVET,
|
|
2380
|
+
0, () => UpdateCustomVerificationEmailTemplateRequest$, () => __Unit
|
|
2381
|
+
];
|
|
2382
|
+
var UpdateReceiptRule$ = [9, n0, _URR,
|
|
2383
|
+
0, () => UpdateReceiptRuleRequest$, () => UpdateReceiptRuleResponse$
|
|
2384
|
+
];
|
|
2385
|
+
var UpdateTemplate$ = [9, n0, _UT,
|
|
2386
|
+
0, () => UpdateTemplateRequest$, () => UpdateTemplateResponse$
|
|
2387
|
+
];
|
|
2388
|
+
var VerifyDomainDkim$ = [9, n0, _VDD,
|
|
2389
|
+
0, () => VerifyDomainDkimRequest$, () => VerifyDomainDkimResponse$
|
|
2390
|
+
];
|
|
2391
|
+
var VerifyDomainIdentity$ = [9, n0, _VDI,
|
|
2392
|
+
0, () => VerifyDomainIdentityRequest$, () => VerifyDomainIdentityResponse$
|
|
2393
|
+
];
|
|
2394
|
+
var VerifyEmailAddress$ = [9, n0, _VEAe,
|
|
2395
|
+
0, () => VerifyEmailAddressRequest$, () => __Unit
|
|
2396
|
+
];
|
|
2397
|
+
var VerifyEmailIdentity$ = [9, n0, _VEI,
|
|
2398
|
+
0, () => VerifyEmailIdentityRequest$, () => VerifyEmailIdentityResponse$
|
|
2399
|
+
];
|
|
2400
|
+
|
|
2401
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2402
|
+
return {
|
|
2403
|
+
apiVersion: "2010-12-01",
|
|
2404
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2405
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2406
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2407
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2408
|
+
extensions: config?.extensions ?? [],
|
|
2409
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSESHttpAuthSchemeProvider,
|
|
2410
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2411
|
+
{
|
|
2412
|
+
schemeId: "aws.auth#sigv4",
|
|
2413
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2414
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2415
|
+
},
|
|
2416
|
+
],
|
|
2417
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2418
|
+
protocol: config?.protocol ?? AwsQueryProtocol,
|
|
2419
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2420
|
+
defaultNamespace: "com.amazonaws.ses",
|
|
2421
|
+
errorTypeRegistries,
|
|
2422
|
+
xmlNamespace: "http://ses.amazonaws.com/doc/2010-12-01/",
|
|
2423
|
+
version: "2010-12-01",
|
|
2424
|
+
serviceTarget: "SimpleEmailService",
|
|
2425
|
+
},
|
|
2426
|
+
serviceId: config?.serviceId ?? "SES",
|
|
2427
|
+
sha256: config?.sha256 ?? Sha256,
|
|
2428
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2429
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2430
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2431
|
+
};
|
|
2432
|
+
};
|
|
2433
|
+
|
|
2434
|
+
const getRuntimeConfig = (config) => {
|
|
2435
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2436
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2437
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2438
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2439
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2440
|
+
const loaderConfig = {
|
|
2441
|
+
profile: config?.profile,
|
|
2442
|
+
logger: clientSharedValues.logger,
|
|
2443
|
+
};
|
|
2444
|
+
return {
|
|
2445
|
+
...clientSharedValues,
|
|
2446
|
+
...config,
|
|
2447
|
+
runtime: "node",
|
|
2448
|
+
defaultsMode,
|
|
2449
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2450
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2451
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2452
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2453
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2454
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2455
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2456
|
+
retryMode: config?.retryMode ??
|
|
2457
|
+
loadConfig({
|
|
2458
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2459
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2460
|
+
}, config),
|
|
2461
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2462
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2463
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2464
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2465
|
+
};
|
|
2466
|
+
};
|
|
2467
|
+
|
|
37
2468
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
38
2469
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
39
2470
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -74,901 +2505,266 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
74
2505
|
};
|
|
75
2506
|
|
|
76
2507
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
77
|
-
const extensionConfiguration = Object.assign(
|
|
2508
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
78
2509
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
79
|
-
return Object.assign(runtimeConfig,
|
|
2510
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
80
2511
|
};
|
|
81
2512
|
|
|
82
|
-
class SESClient extends
|
|
2513
|
+
class SESClient extends Client {
|
|
83
2514
|
config;
|
|
84
2515
|
constructor(...[configuration]) {
|
|
85
|
-
const _config_0 =
|
|
2516
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
86
2517
|
super(_config_0);
|
|
87
2518
|
this.initConfig = _config_0;
|
|
88
2519
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
89
|
-
const _config_2 =
|
|
90
|
-
const _config_3 =
|
|
91
|
-
const _config_4 =
|
|
92
|
-
const _config_5 =
|
|
93
|
-
const _config_6 =
|
|
94
|
-
const _config_7 =
|
|
2520
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
2521
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
2522
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
2523
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
2524
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
2525
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
95
2526
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
96
2527
|
this.config = _config_8;
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
this.middlewareStack.use(
|
|
100
|
-
this.middlewareStack.use(
|
|
101
|
-
this.middlewareStack.use(
|
|
102
|
-
this.middlewareStack.use(
|
|
103
|
-
this.middlewareStack.use(
|
|
104
|
-
this.middlewareStack.use(
|
|
105
|
-
httpAuthSchemeParametersProvider:
|
|
106
|
-
identityProviderConfigProvider: async (config) => new
|
|
2528
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
2529
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
2530
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
2531
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
2532
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
2533
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
2534
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
2535
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
2536
|
+
httpAuthSchemeParametersProvider: defaultSESHttpAuthSchemeParametersProvider,
|
|
2537
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
107
2538
|
"aws.auth#sigv4": config.credentials,
|
|
108
2539
|
}),
|
|
109
2540
|
}));
|
|
110
|
-
this.middlewareStack.use(
|
|
2541
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
111
2542
|
}
|
|
112
2543
|
destroy() {
|
|
113
2544
|
super.destroy();
|
|
114
2545
|
}
|
|
115
2546
|
}
|
|
116
2547
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
338
|
-
})
|
|
339
|
-
.s("SimpleEmailService", "DeleteTemplate", {})
|
|
340
|
-
.n("SESClient", "DeleteTemplateCommand")
|
|
341
|
-
.sc(schemas_0.DeleteTemplate$)
|
|
342
|
-
.build() {
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
class DeleteVerifiedEmailAddressCommand extends smithyClient.Command
|
|
346
|
-
.classBuilder()
|
|
347
|
-
.ep(commonParams)
|
|
348
|
-
.m(function (Command, cs, config, o) {
|
|
349
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
350
|
-
})
|
|
351
|
-
.s("SimpleEmailService", "DeleteVerifiedEmailAddress", {})
|
|
352
|
-
.n("SESClient", "DeleteVerifiedEmailAddressCommand")
|
|
353
|
-
.sc(schemas_0.DeleteVerifiedEmailAddress$)
|
|
354
|
-
.build() {
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
class DescribeActiveReceiptRuleSetCommand extends smithyClient.Command
|
|
358
|
-
.classBuilder()
|
|
359
|
-
.ep(commonParams)
|
|
360
|
-
.m(function (Command, cs, config, o) {
|
|
361
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
362
|
-
})
|
|
363
|
-
.s("SimpleEmailService", "DescribeActiveReceiptRuleSet", {})
|
|
364
|
-
.n("SESClient", "DescribeActiveReceiptRuleSetCommand")
|
|
365
|
-
.sc(schemas_0.DescribeActiveReceiptRuleSet$)
|
|
366
|
-
.build() {
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
class DescribeConfigurationSetCommand extends smithyClient.Command
|
|
370
|
-
.classBuilder()
|
|
371
|
-
.ep(commonParams)
|
|
372
|
-
.m(function (Command, cs, config, o) {
|
|
373
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
374
|
-
})
|
|
375
|
-
.s("SimpleEmailService", "DescribeConfigurationSet", {})
|
|
376
|
-
.n("SESClient", "DescribeConfigurationSetCommand")
|
|
377
|
-
.sc(schemas_0.DescribeConfigurationSet$)
|
|
378
|
-
.build() {
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
class DescribeReceiptRuleCommand extends smithyClient.Command
|
|
382
|
-
.classBuilder()
|
|
383
|
-
.ep(commonParams)
|
|
384
|
-
.m(function (Command, cs, config, o) {
|
|
385
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
386
|
-
})
|
|
387
|
-
.s("SimpleEmailService", "DescribeReceiptRule", {})
|
|
388
|
-
.n("SESClient", "DescribeReceiptRuleCommand")
|
|
389
|
-
.sc(schemas_0.DescribeReceiptRule$)
|
|
390
|
-
.build() {
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
class DescribeReceiptRuleSetCommand extends smithyClient.Command
|
|
394
|
-
.classBuilder()
|
|
395
|
-
.ep(commonParams)
|
|
396
|
-
.m(function (Command, cs, config, o) {
|
|
397
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
398
|
-
})
|
|
399
|
-
.s("SimpleEmailService", "DescribeReceiptRuleSet", {})
|
|
400
|
-
.n("SESClient", "DescribeReceiptRuleSetCommand")
|
|
401
|
-
.sc(schemas_0.DescribeReceiptRuleSet$)
|
|
402
|
-
.build() {
|
|
403
|
-
}
|
|
404
|
-
|
|
405
|
-
class GetAccountSendingEnabledCommand extends smithyClient.Command
|
|
406
|
-
.classBuilder()
|
|
407
|
-
.ep(commonParams)
|
|
408
|
-
.m(function (Command, cs, config, o) {
|
|
409
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
410
|
-
})
|
|
411
|
-
.s("SimpleEmailService", "GetAccountSendingEnabled", {})
|
|
412
|
-
.n("SESClient", "GetAccountSendingEnabledCommand")
|
|
413
|
-
.sc(schemas_0.GetAccountSendingEnabled$)
|
|
414
|
-
.build() {
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
class GetCustomVerificationEmailTemplateCommand extends smithyClient.Command
|
|
418
|
-
.classBuilder()
|
|
419
|
-
.ep(commonParams)
|
|
420
|
-
.m(function (Command, cs, config, o) {
|
|
421
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
422
|
-
})
|
|
423
|
-
.s("SimpleEmailService", "GetCustomVerificationEmailTemplate", {})
|
|
424
|
-
.n("SESClient", "GetCustomVerificationEmailTemplateCommand")
|
|
425
|
-
.sc(schemas_0.GetCustomVerificationEmailTemplate$)
|
|
426
|
-
.build() {
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
class GetIdentityDkimAttributesCommand extends smithyClient.Command
|
|
430
|
-
.classBuilder()
|
|
431
|
-
.ep(commonParams)
|
|
432
|
-
.m(function (Command, cs, config, o) {
|
|
433
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
434
|
-
})
|
|
435
|
-
.s("SimpleEmailService", "GetIdentityDkimAttributes", {})
|
|
436
|
-
.n("SESClient", "GetIdentityDkimAttributesCommand")
|
|
437
|
-
.sc(schemas_0.GetIdentityDkimAttributes$)
|
|
438
|
-
.build() {
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
class GetIdentityMailFromDomainAttributesCommand extends smithyClient.Command
|
|
442
|
-
.classBuilder()
|
|
443
|
-
.ep(commonParams)
|
|
444
|
-
.m(function (Command, cs, config, o) {
|
|
445
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
446
|
-
})
|
|
447
|
-
.s("SimpleEmailService", "GetIdentityMailFromDomainAttributes", {})
|
|
448
|
-
.n("SESClient", "GetIdentityMailFromDomainAttributesCommand")
|
|
449
|
-
.sc(schemas_0.GetIdentityMailFromDomainAttributes$)
|
|
450
|
-
.build() {
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
class GetIdentityNotificationAttributesCommand extends smithyClient.Command
|
|
454
|
-
.classBuilder()
|
|
455
|
-
.ep(commonParams)
|
|
456
|
-
.m(function (Command, cs, config, o) {
|
|
457
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
458
|
-
})
|
|
459
|
-
.s("SimpleEmailService", "GetIdentityNotificationAttributes", {})
|
|
460
|
-
.n("SESClient", "GetIdentityNotificationAttributesCommand")
|
|
461
|
-
.sc(schemas_0.GetIdentityNotificationAttributes$)
|
|
462
|
-
.build() {
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
class GetIdentityPoliciesCommand extends smithyClient.Command
|
|
466
|
-
.classBuilder()
|
|
467
|
-
.ep(commonParams)
|
|
468
|
-
.m(function (Command, cs, config, o) {
|
|
469
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
470
|
-
})
|
|
471
|
-
.s("SimpleEmailService", "GetIdentityPolicies", {})
|
|
472
|
-
.n("SESClient", "GetIdentityPoliciesCommand")
|
|
473
|
-
.sc(schemas_0.GetIdentityPolicies$)
|
|
474
|
-
.build() {
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
class GetIdentityVerificationAttributesCommand extends smithyClient.Command
|
|
478
|
-
.classBuilder()
|
|
479
|
-
.ep(commonParams)
|
|
480
|
-
.m(function (Command, cs, config, o) {
|
|
481
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
482
|
-
})
|
|
483
|
-
.s("SimpleEmailService", "GetIdentityVerificationAttributes", {})
|
|
484
|
-
.n("SESClient", "GetIdentityVerificationAttributesCommand")
|
|
485
|
-
.sc(schemas_0.GetIdentityVerificationAttributes$)
|
|
486
|
-
.build() {
|
|
487
|
-
}
|
|
488
|
-
|
|
489
|
-
class GetSendQuotaCommand extends smithyClient.Command
|
|
490
|
-
.classBuilder()
|
|
491
|
-
.ep(commonParams)
|
|
492
|
-
.m(function (Command, cs, config, o) {
|
|
493
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
494
|
-
})
|
|
495
|
-
.s("SimpleEmailService", "GetSendQuota", {})
|
|
496
|
-
.n("SESClient", "GetSendQuotaCommand")
|
|
497
|
-
.sc(schemas_0.GetSendQuota$)
|
|
498
|
-
.build() {
|
|
499
|
-
}
|
|
500
|
-
|
|
501
|
-
class GetSendStatisticsCommand extends smithyClient.Command
|
|
502
|
-
.classBuilder()
|
|
503
|
-
.ep(commonParams)
|
|
504
|
-
.m(function (Command, cs, config, o) {
|
|
505
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
506
|
-
})
|
|
507
|
-
.s("SimpleEmailService", "GetSendStatistics", {})
|
|
508
|
-
.n("SESClient", "GetSendStatisticsCommand")
|
|
509
|
-
.sc(schemas_0.GetSendStatistics$)
|
|
510
|
-
.build() {
|
|
511
|
-
}
|
|
512
|
-
|
|
513
|
-
class GetTemplateCommand extends smithyClient.Command
|
|
514
|
-
.classBuilder()
|
|
515
|
-
.ep(commonParams)
|
|
516
|
-
.m(function (Command, cs, config, o) {
|
|
517
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
518
|
-
})
|
|
519
|
-
.s("SimpleEmailService", "GetTemplate", {})
|
|
520
|
-
.n("SESClient", "GetTemplateCommand")
|
|
521
|
-
.sc(schemas_0.GetTemplate$)
|
|
522
|
-
.build() {
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
class ListConfigurationSetsCommand extends smithyClient.Command
|
|
526
|
-
.classBuilder()
|
|
527
|
-
.ep(commonParams)
|
|
528
|
-
.m(function (Command, cs, config, o) {
|
|
529
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
530
|
-
})
|
|
531
|
-
.s("SimpleEmailService", "ListConfigurationSets", {})
|
|
532
|
-
.n("SESClient", "ListConfigurationSetsCommand")
|
|
533
|
-
.sc(schemas_0.ListConfigurationSets$)
|
|
534
|
-
.build() {
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
class ListCustomVerificationEmailTemplatesCommand extends smithyClient.Command
|
|
538
|
-
.classBuilder()
|
|
539
|
-
.ep(commonParams)
|
|
540
|
-
.m(function (Command, cs, config, o) {
|
|
541
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
542
|
-
})
|
|
543
|
-
.s("SimpleEmailService", "ListCustomVerificationEmailTemplates", {})
|
|
544
|
-
.n("SESClient", "ListCustomVerificationEmailTemplatesCommand")
|
|
545
|
-
.sc(schemas_0.ListCustomVerificationEmailTemplates$)
|
|
546
|
-
.build() {
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
class ListIdentitiesCommand extends smithyClient.Command
|
|
550
|
-
.classBuilder()
|
|
551
|
-
.ep(commonParams)
|
|
552
|
-
.m(function (Command, cs, config, o) {
|
|
553
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
554
|
-
})
|
|
555
|
-
.s("SimpleEmailService", "ListIdentities", {})
|
|
556
|
-
.n("SESClient", "ListIdentitiesCommand")
|
|
557
|
-
.sc(schemas_0.ListIdentities$)
|
|
558
|
-
.build() {
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
class ListIdentityPoliciesCommand extends smithyClient.Command
|
|
562
|
-
.classBuilder()
|
|
563
|
-
.ep(commonParams)
|
|
564
|
-
.m(function (Command, cs, config, o) {
|
|
565
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
566
|
-
})
|
|
567
|
-
.s("SimpleEmailService", "ListIdentityPolicies", {})
|
|
568
|
-
.n("SESClient", "ListIdentityPoliciesCommand")
|
|
569
|
-
.sc(schemas_0.ListIdentityPolicies$)
|
|
570
|
-
.build() {
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
class ListReceiptFiltersCommand extends smithyClient.Command
|
|
574
|
-
.classBuilder()
|
|
575
|
-
.ep(commonParams)
|
|
576
|
-
.m(function (Command, cs, config, o) {
|
|
577
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
578
|
-
})
|
|
579
|
-
.s("SimpleEmailService", "ListReceiptFilters", {})
|
|
580
|
-
.n("SESClient", "ListReceiptFiltersCommand")
|
|
581
|
-
.sc(schemas_0.ListReceiptFilters$)
|
|
582
|
-
.build() {
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
class ListReceiptRuleSetsCommand extends smithyClient.Command
|
|
586
|
-
.classBuilder()
|
|
587
|
-
.ep(commonParams)
|
|
588
|
-
.m(function (Command, cs, config, o) {
|
|
589
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
590
|
-
})
|
|
591
|
-
.s("SimpleEmailService", "ListReceiptRuleSets", {})
|
|
592
|
-
.n("SESClient", "ListReceiptRuleSetsCommand")
|
|
593
|
-
.sc(schemas_0.ListReceiptRuleSets$)
|
|
594
|
-
.build() {
|
|
595
|
-
}
|
|
596
|
-
|
|
597
|
-
class ListTemplatesCommand extends smithyClient.Command
|
|
598
|
-
.classBuilder()
|
|
599
|
-
.ep(commonParams)
|
|
600
|
-
.m(function (Command, cs, config, o) {
|
|
601
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
602
|
-
})
|
|
603
|
-
.s("SimpleEmailService", "ListTemplates", {})
|
|
604
|
-
.n("SESClient", "ListTemplatesCommand")
|
|
605
|
-
.sc(schemas_0.ListTemplates$)
|
|
606
|
-
.build() {
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
class ListVerifiedEmailAddressesCommand extends smithyClient.Command
|
|
610
|
-
.classBuilder()
|
|
611
|
-
.ep(commonParams)
|
|
612
|
-
.m(function (Command, cs, config, o) {
|
|
613
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
614
|
-
})
|
|
615
|
-
.s("SimpleEmailService", "ListVerifiedEmailAddresses", {})
|
|
616
|
-
.n("SESClient", "ListVerifiedEmailAddressesCommand")
|
|
617
|
-
.sc(schemas_0.ListVerifiedEmailAddresses$)
|
|
618
|
-
.build() {
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
class PutConfigurationSetDeliveryOptionsCommand extends smithyClient.Command
|
|
622
|
-
.classBuilder()
|
|
623
|
-
.ep(commonParams)
|
|
624
|
-
.m(function (Command, cs, config, o) {
|
|
625
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
626
|
-
})
|
|
627
|
-
.s("SimpleEmailService", "PutConfigurationSetDeliveryOptions", {})
|
|
628
|
-
.n("SESClient", "PutConfigurationSetDeliveryOptionsCommand")
|
|
629
|
-
.sc(schemas_0.PutConfigurationSetDeliveryOptions$)
|
|
630
|
-
.build() {
|
|
631
|
-
}
|
|
632
|
-
|
|
633
|
-
class PutIdentityPolicyCommand extends smithyClient.Command
|
|
634
|
-
.classBuilder()
|
|
635
|
-
.ep(commonParams)
|
|
636
|
-
.m(function (Command, cs, config, o) {
|
|
637
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
638
|
-
})
|
|
639
|
-
.s("SimpleEmailService", "PutIdentityPolicy", {})
|
|
640
|
-
.n("SESClient", "PutIdentityPolicyCommand")
|
|
641
|
-
.sc(schemas_0.PutIdentityPolicy$)
|
|
642
|
-
.build() {
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
class ReorderReceiptRuleSetCommand extends smithyClient.Command
|
|
646
|
-
.classBuilder()
|
|
647
|
-
.ep(commonParams)
|
|
648
|
-
.m(function (Command, cs, config, o) {
|
|
649
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
650
|
-
})
|
|
651
|
-
.s("SimpleEmailService", "ReorderReceiptRuleSet", {})
|
|
652
|
-
.n("SESClient", "ReorderReceiptRuleSetCommand")
|
|
653
|
-
.sc(schemas_0.ReorderReceiptRuleSet$)
|
|
654
|
-
.build() {
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
class SendBounceCommand extends smithyClient.Command
|
|
658
|
-
.classBuilder()
|
|
659
|
-
.ep(commonParams)
|
|
660
|
-
.m(function (Command, cs, config, o) {
|
|
661
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
662
|
-
})
|
|
663
|
-
.s("SimpleEmailService", "SendBounce", {})
|
|
664
|
-
.n("SESClient", "SendBounceCommand")
|
|
665
|
-
.sc(schemas_0.SendBounce$)
|
|
666
|
-
.build() {
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
class SendBulkTemplatedEmailCommand extends smithyClient.Command
|
|
670
|
-
.classBuilder()
|
|
671
|
-
.ep(commonParams)
|
|
672
|
-
.m(function (Command, cs, config, o) {
|
|
673
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
674
|
-
})
|
|
675
|
-
.s("SimpleEmailService", "SendBulkTemplatedEmail", {})
|
|
676
|
-
.n("SESClient", "SendBulkTemplatedEmailCommand")
|
|
677
|
-
.sc(schemas_0.SendBulkTemplatedEmail$)
|
|
678
|
-
.build() {
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
class SendCustomVerificationEmailCommand extends smithyClient.Command
|
|
682
|
-
.classBuilder()
|
|
683
|
-
.ep(commonParams)
|
|
684
|
-
.m(function (Command, cs, config, o) {
|
|
685
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
686
|
-
})
|
|
687
|
-
.s("SimpleEmailService", "SendCustomVerificationEmail", {})
|
|
688
|
-
.n("SESClient", "SendCustomVerificationEmailCommand")
|
|
689
|
-
.sc(schemas_0.SendCustomVerificationEmail$)
|
|
690
|
-
.build() {
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
class SendEmailCommand extends smithyClient.Command
|
|
694
|
-
.classBuilder()
|
|
695
|
-
.ep(commonParams)
|
|
696
|
-
.m(function (Command, cs, config, o) {
|
|
697
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
698
|
-
})
|
|
699
|
-
.s("SimpleEmailService", "SendEmail", {})
|
|
700
|
-
.n("SESClient", "SendEmailCommand")
|
|
701
|
-
.sc(schemas_0.SendEmail$)
|
|
702
|
-
.build() {
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
class SendRawEmailCommand extends smithyClient.Command
|
|
706
|
-
.classBuilder()
|
|
707
|
-
.ep(commonParams)
|
|
708
|
-
.m(function (Command, cs, config, o) {
|
|
709
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
710
|
-
})
|
|
711
|
-
.s("SimpleEmailService", "SendRawEmail", {})
|
|
712
|
-
.n("SESClient", "SendRawEmailCommand")
|
|
713
|
-
.sc(schemas_0.SendRawEmail$)
|
|
714
|
-
.build() {
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
class SendTemplatedEmailCommand extends smithyClient.Command
|
|
718
|
-
.classBuilder()
|
|
719
|
-
.ep(commonParams)
|
|
720
|
-
.m(function (Command, cs, config, o) {
|
|
721
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
722
|
-
})
|
|
723
|
-
.s("SimpleEmailService", "SendTemplatedEmail", {})
|
|
724
|
-
.n("SESClient", "SendTemplatedEmailCommand")
|
|
725
|
-
.sc(schemas_0.SendTemplatedEmail$)
|
|
726
|
-
.build() {
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
class SetActiveReceiptRuleSetCommand extends smithyClient.Command
|
|
730
|
-
.classBuilder()
|
|
731
|
-
.ep(commonParams)
|
|
732
|
-
.m(function (Command, cs, config, o) {
|
|
733
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
734
|
-
})
|
|
735
|
-
.s("SimpleEmailService", "SetActiveReceiptRuleSet", {})
|
|
736
|
-
.n("SESClient", "SetActiveReceiptRuleSetCommand")
|
|
737
|
-
.sc(schemas_0.SetActiveReceiptRuleSet$)
|
|
738
|
-
.build() {
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
class SetIdentityDkimEnabledCommand extends smithyClient.Command
|
|
742
|
-
.classBuilder()
|
|
743
|
-
.ep(commonParams)
|
|
744
|
-
.m(function (Command, cs, config, o) {
|
|
745
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
746
|
-
})
|
|
747
|
-
.s("SimpleEmailService", "SetIdentityDkimEnabled", {})
|
|
748
|
-
.n("SESClient", "SetIdentityDkimEnabledCommand")
|
|
749
|
-
.sc(schemas_0.SetIdentityDkimEnabled$)
|
|
750
|
-
.build() {
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
class SetIdentityFeedbackForwardingEnabledCommand extends smithyClient.Command
|
|
754
|
-
.classBuilder()
|
|
755
|
-
.ep(commonParams)
|
|
756
|
-
.m(function (Command, cs, config, o) {
|
|
757
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
758
|
-
})
|
|
759
|
-
.s("SimpleEmailService", "SetIdentityFeedbackForwardingEnabled", {})
|
|
760
|
-
.n("SESClient", "SetIdentityFeedbackForwardingEnabledCommand")
|
|
761
|
-
.sc(schemas_0.SetIdentityFeedbackForwardingEnabled$)
|
|
762
|
-
.build() {
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
class SetIdentityHeadersInNotificationsEnabledCommand extends smithyClient.Command
|
|
766
|
-
.classBuilder()
|
|
767
|
-
.ep(commonParams)
|
|
768
|
-
.m(function (Command, cs, config, o) {
|
|
769
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
770
|
-
})
|
|
771
|
-
.s("SimpleEmailService", "SetIdentityHeadersInNotificationsEnabled", {})
|
|
772
|
-
.n("SESClient", "SetIdentityHeadersInNotificationsEnabledCommand")
|
|
773
|
-
.sc(schemas_0.SetIdentityHeadersInNotificationsEnabled$)
|
|
774
|
-
.build() {
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
class SetIdentityMailFromDomainCommand extends smithyClient.Command
|
|
778
|
-
.classBuilder()
|
|
779
|
-
.ep(commonParams)
|
|
780
|
-
.m(function (Command, cs, config, o) {
|
|
781
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
782
|
-
})
|
|
783
|
-
.s("SimpleEmailService", "SetIdentityMailFromDomain", {})
|
|
784
|
-
.n("SESClient", "SetIdentityMailFromDomainCommand")
|
|
785
|
-
.sc(schemas_0.SetIdentityMailFromDomain$)
|
|
786
|
-
.build() {
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
class SetIdentityNotificationTopicCommand extends smithyClient.Command
|
|
790
|
-
.classBuilder()
|
|
791
|
-
.ep(commonParams)
|
|
792
|
-
.m(function (Command, cs, config, o) {
|
|
793
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
794
|
-
})
|
|
795
|
-
.s("SimpleEmailService", "SetIdentityNotificationTopic", {})
|
|
796
|
-
.n("SESClient", "SetIdentityNotificationTopicCommand")
|
|
797
|
-
.sc(schemas_0.SetIdentityNotificationTopic$)
|
|
798
|
-
.build() {
|
|
799
|
-
}
|
|
800
|
-
|
|
801
|
-
class SetReceiptRulePositionCommand extends smithyClient.Command
|
|
802
|
-
.classBuilder()
|
|
803
|
-
.ep(commonParams)
|
|
804
|
-
.m(function (Command, cs, config, o) {
|
|
805
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
806
|
-
})
|
|
807
|
-
.s("SimpleEmailService", "SetReceiptRulePosition", {})
|
|
808
|
-
.n("SESClient", "SetReceiptRulePositionCommand")
|
|
809
|
-
.sc(schemas_0.SetReceiptRulePosition$)
|
|
810
|
-
.build() {
|
|
811
|
-
}
|
|
812
|
-
|
|
813
|
-
class TestRenderTemplateCommand extends smithyClient.Command
|
|
814
|
-
.classBuilder()
|
|
815
|
-
.ep(commonParams)
|
|
816
|
-
.m(function (Command, cs, config, o) {
|
|
817
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
818
|
-
})
|
|
819
|
-
.s("SimpleEmailService", "TestRenderTemplate", {})
|
|
820
|
-
.n("SESClient", "TestRenderTemplateCommand")
|
|
821
|
-
.sc(schemas_0.TestRenderTemplate$)
|
|
822
|
-
.build() {
|
|
823
|
-
}
|
|
824
|
-
|
|
825
|
-
class UpdateAccountSendingEnabledCommand extends smithyClient.Command
|
|
826
|
-
.classBuilder()
|
|
827
|
-
.ep(commonParams)
|
|
828
|
-
.m(function (Command, cs, config, o) {
|
|
829
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
830
|
-
})
|
|
831
|
-
.s("SimpleEmailService", "UpdateAccountSendingEnabled", {})
|
|
832
|
-
.n("SESClient", "UpdateAccountSendingEnabledCommand")
|
|
833
|
-
.sc(schemas_0.UpdateAccountSendingEnabled$)
|
|
834
|
-
.build() {
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
class UpdateConfigurationSetEventDestinationCommand extends smithyClient.Command
|
|
838
|
-
.classBuilder()
|
|
839
|
-
.ep(commonParams)
|
|
840
|
-
.m(function (Command, cs, config, o) {
|
|
841
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
842
|
-
})
|
|
843
|
-
.s("SimpleEmailService", "UpdateConfigurationSetEventDestination", {})
|
|
844
|
-
.n("SESClient", "UpdateConfigurationSetEventDestinationCommand")
|
|
845
|
-
.sc(schemas_0.UpdateConfigurationSetEventDestination$)
|
|
846
|
-
.build() {
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
class UpdateConfigurationSetReputationMetricsEnabledCommand extends smithyClient.Command
|
|
850
|
-
.classBuilder()
|
|
851
|
-
.ep(commonParams)
|
|
852
|
-
.m(function (Command, cs, config, o) {
|
|
853
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
854
|
-
})
|
|
855
|
-
.s("SimpleEmailService", "UpdateConfigurationSetReputationMetricsEnabled", {})
|
|
856
|
-
.n("SESClient", "UpdateConfigurationSetReputationMetricsEnabledCommand")
|
|
857
|
-
.sc(schemas_0.UpdateConfigurationSetReputationMetricsEnabled$)
|
|
858
|
-
.build() {
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
class UpdateConfigurationSetSendingEnabledCommand extends smithyClient.Command
|
|
862
|
-
.classBuilder()
|
|
863
|
-
.ep(commonParams)
|
|
864
|
-
.m(function (Command, cs, config, o) {
|
|
865
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
866
|
-
})
|
|
867
|
-
.s("SimpleEmailService", "UpdateConfigurationSetSendingEnabled", {})
|
|
868
|
-
.n("SESClient", "UpdateConfigurationSetSendingEnabledCommand")
|
|
869
|
-
.sc(schemas_0.UpdateConfigurationSetSendingEnabled$)
|
|
870
|
-
.build() {
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
class UpdateConfigurationSetTrackingOptionsCommand extends smithyClient.Command
|
|
874
|
-
.classBuilder()
|
|
875
|
-
.ep(commonParams)
|
|
876
|
-
.m(function (Command, cs, config, o) {
|
|
877
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
878
|
-
})
|
|
879
|
-
.s("SimpleEmailService", "UpdateConfigurationSetTrackingOptions", {})
|
|
880
|
-
.n("SESClient", "UpdateConfigurationSetTrackingOptionsCommand")
|
|
881
|
-
.sc(schemas_0.UpdateConfigurationSetTrackingOptions$)
|
|
882
|
-
.build() {
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
class UpdateCustomVerificationEmailTemplateCommand extends smithyClient.Command
|
|
886
|
-
.classBuilder()
|
|
887
|
-
.ep(commonParams)
|
|
888
|
-
.m(function (Command, cs, config, o) {
|
|
889
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
890
|
-
})
|
|
891
|
-
.s("SimpleEmailService", "UpdateCustomVerificationEmailTemplate", {})
|
|
892
|
-
.n("SESClient", "UpdateCustomVerificationEmailTemplateCommand")
|
|
893
|
-
.sc(schemas_0.UpdateCustomVerificationEmailTemplate$)
|
|
894
|
-
.build() {
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
class UpdateReceiptRuleCommand extends smithyClient.Command
|
|
898
|
-
.classBuilder()
|
|
899
|
-
.ep(commonParams)
|
|
900
|
-
.m(function (Command, cs, config, o) {
|
|
901
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
902
|
-
})
|
|
903
|
-
.s("SimpleEmailService", "UpdateReceiptRule", {})
|
|
904
|
-
.n("SESClient", "UpdateReceiptRuleCommand")
|
|
905
|
-
.sc(schemas_0.UpdateReceiptRule$)
|
|
906
|
-
.build() {
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
class UpdateTemplateCommand extends smithyClient.Command
|
|
910
|
-
.classBuilder()
|
|
911
|
-
.ep(commonParams)
|
|
912
|
-
.m(function (Command, cs, config, o) {
|
|
913
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
914
|
-
})
|
|
915
|
-
.s("SimpleEmailService", "UpdateTemplate", {})
|
|
916
|
-
.n("SESClient", "UpdateTemplateCommand")
|
|
917
|
-
.sc(schemas_0.UpdateTemplate$)
|
|
918
|
-
.build() {
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
class VerifyDomainDkimCommand extends smithyClient.Command
|
|
922
|
-
.classBuilder()
|
|
923
|
-
.ep(commonParams)
|
|
924
|
-
.m(function (Command, cs, config, o) {
|
|
925
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
926
|
-
})
|
|
927
|
-
.s("SimpleEmailService", "VerifyDomainDkim", {})
|
|
928
|
-
.n("SESClient", "VerifyDomainDkimCommand")
|
|
929
|
-
.sc(schemas_0.VerifyDomainDkim$)
|
|
930
|
-
.build() {
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
class VerifyDomainIdentityCommand extends smithyClient.Command
|
|
934
|
-
.classBuilder()
|
|
935
|
-
.ep(commonParams)
|
|
936
|
-
.m(function (Command, cs, config, o) {
|
|
937
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
938
|
-
})
|
|
939
|
-
.s("SimpleEmailService", "VerifyDomainIdentity", {})
|
|
940
|
-
.n("SESClient", "VerifyDomainIdentityCommand")
|
|
941
|
-
.sc(schemas_0.VerifyDomainIdentity$)
|
|
942
|
-
.build() {
|
|
943
|
-
}
|
|
944
|
-
|
|
945
|
-
class VerifyEmailAddressCommand extends smithyClient.Command
|
|
946
|
-
.classBuilder()
|
|
947
|
-
.ep(commonParams)
|
|
948
|
-
.m(function (Command, cs, config, o) {
|
|
949
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
950
|
-
})
|
|
951
|
-
.s("SimpleEmailService", "VerifyEmailAddress", {})
|
|
952
|
-
.n("SESClient", "VerifyEmailAddressCommand")
|
|
953
|
-
.sc(schemas_0.VerifyEmailAddress$)
|
|
954
|
-
.build() {
|
|
955
|
-
}
|
|
956
|
-
|
|
957
|
-
class VerifyEmailIdentityCommand extends smithyClient.Command
|
|
958
|
-
.classBuilder()
|
|
959
|
-
.ep(commonParams)
|
|
960
|
-
.m(function (Command, cs, config, o) {
|
|
961
|
-
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
962
|
-
})
|
|
963
|
-
.s("SimpleEmailService", "VerifyEmailIdentity", {})
|
|
964
|
-
.n("SESClient", "VerifyEmailIdentityCommand")
|
|
965
|
-
.sc(schemas_0.VerifyEmailIdentity$)
|
|
966
|
-
.build() {
|
|
967
|
-
}
|
|
968
|
-
|
|
969
|
-
const paginateListCustomVerificationEmailTemplates = core.createPaginator(SESClient, ListCustomVerificationEmailTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
970
|
-
|
|
971
|
-
const paginateListIdentities = core.createPaginator(SESClient, ListIdentitiesCommand, "NextToken", "NextToken", "MaxItems");
|
|
2548
|
+
const command = makeBuilder(commonParams, "SimpleEmailService", "SESClient", getEndpointPlugin);
|
|
2549
|
+
const _ep0 = {};
|
|
2550
|
+
const _mw0 = (Command, cs, config, o) => [];
|
|
2551
|
+
|
|
2552
|
+
class CloneReceiptRuleSetCommand extends command(_ep0, _mw0, "CloneReceiptRuleSet", CloneReceiptRuleSet$) {
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
class CreateConfigurationSetCommand extends command(_ep0, _mw0, "CreateConfigurationSet", CreateConfigurationSet$) {
|
|
2556
|
+
}
|
|
2557
|
+
|
|
2558
|
+
class CreateConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "CreateConfigurationSetEventDestination", CreateConfigurationSetEventDestination$) {
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
class CreateConfigurationSetTrackingOptionsCommand extends command(_ep0, _mw0, "CreateConfigurationSetTrackingOptions", CreateConfigurationSetTrackingOptions$) {
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
class CreateCustomVerificationEmailTemplateCommand extends command(_ep0, _mw0, "CreateCustomVerificationEmailTemplate", CreateCustomVerificationEmailTemplate$) {
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
class CreateReceiptFilterCommand extends command(_ep0, _mw0, "CreateReceiptFilter", CreateReceiptFilter$) {
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
class CreateReceiptRuleCommand extends command(_ep0, _mw0, "CreateReceiptRule", CreateReceiptRule$) {
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
class CreateReceiptRuleSetCommand extends command(_ep0, _mw0, "CreateReceiptRuleSet", CreateReceiptRuleSet$) {
|
|
2574
|
+
}
|
|
2575
|
+
|
|
2576
|
+
class CreateTemplateCommand extends command(_ep0, _mw0, "CreateTemplate", CreateTemplate$) {
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
class DeleteConfigurationSetCommand extends command(_ep0, _mw0, "DeleteConfigurationSet", DeleteConfigurationSet$) {
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2582
|
+
class DeleteConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "DeleteConfigurationSetEventDestination", DeleteConfigurationSetEventDestination$) {
|
|
2583
|
+
}
|
|
2584
|
+
|
|
2585
|
+
class DeleteConfigurationSetTrackingOptionsCommand extends command(_ep0, _mw0, "DeleteConfigurationSetTrackingOptions", DeleteConfigurationSetTrackingOptions$) {
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2588
|
+
class DeleteCustomVerificationEmailTemplateCommand extends command(_ep0, _mw0, "DeleteCustomVerificationEmailTemplate", DeleteCustomVerificationEmailTemplate$) {
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
class DeleteIdentityCommand extends command(_ep0, _mw0, "DeleteIdentity", DeleteIdentity$) {
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
class DeleteIdentityPolicyCommand extends command(_ep0, _mw0, "DeleteIdentityPolicy", DeleteIdentityPolicy$) {
|
|
2595
|
+
}
|
|
2596
|
+
|
|
2597
|
+
class DeleteReceiptFilterCommand extends command(_ep0, _mw0, "DeleteReceiptFilter", DeleteReceiptFilter$) {
|
|
2598
|
+
}
|
|
2599
|
+
|
|
2600
|
+
class DeleteReceiptRuleCommand extends command(_ep0, _mw0, "DeleteReceiptRule", DeleteReceiptRule$) {
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2603
|
+
class DeleteReceiptRuleSetCommand extends command(_ep0, _mw0, "DeleteReceiptRuleSet", DeleteReceiptRuleSet$) {
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
class DeleteTemplateCommand extends command(_ep0, _mw0, "DeleteTemplate", DeleteTemplate$) {
|
|
2607
|
+
}
|
|
2608
|
+
|
|
2609
|
+
class DeleteVerifiedEmailAddressCommand extends command(_ep0, _mw0, "DeleteVerifiedEmailAddress", DeleteVerifiedEmailAddress$) {
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
class DescribeActiveReceiptRuleSetCommand extends command(_ep0, _mw0, "DescribeActiveReceiptRuleSet", DescribeActiveReceiptRuleSet$) {
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
class DescribeConfigurationSetCommand extends command(_ep0, _mw0, "DescribeConfigurationSet", DescribeConfigurationSet$) {
|
|
2616
|
+
}
|
|
2617
|
+
|
|
2618
|
+
class DescribeReceiptRuleCommand extends command(_ep0, _mw0, "DescribeReceiptRule", DescribeReceiptRule$) {
|
|
2619
|
+
}
|
|
2620
|
+
|
|
2621
|
+
class DescribeReceiptRuleSetCommand extends command(_ep0, _mw0, "DescribeReceiptRuleSet", DescribeReceiptRuleSet$) {
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
class GetAccountSendingEnabledCommand extends command(_ep0, _mw0, "GetAccountSendingEnabled", GetAccountSendingEnabled$) {
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
class GetCustomVerificationEmailTemplateCommand extends command(_ep0, _mw0, "GetCustomVerificationEmailTemplate", GetCustomVerificationEmailTemplate$) {
|
|
2628
|
+
}
|
|
2629
|
+
|
|
2630
|
+
class GetIdentityDkimAttributesCommand extends command(_ep0, _mw0, "GetIdentityDkimAttributes", GetIdentityDkimAttributes$) {
|
|
2631
|
+
}
|
|
2632
|
+
|
|
2633
|
+
class GetIdentityMailFromDomainAttributesCommand extends command(_ep0, _mw0, "GetIdentityMailFromDomainAttributes", GetIdentityMailFromDomainAttributes$) {
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
class GetIdentityNotificationAttributesCommand extends command(_ep0, _mw0, "GetIdentityNotificationAttributes", GetIdentityNotificationAttributes$) {
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
class GetIdentityPoliciesCommand extends command(_ep0, _mw0, "GetIdentityPolicies", GetIdentityPolicies$) {
|
|
2640
|
+
}
|
|
2641
|
+
|
|
2642
|
+
class GetIdentityVerificationAttributesCommand extends command(_ep0, _mw0, "GetIdentityVerificationAttributes", GetIdentityVerificationAttributes$) {
|
|
2643
|
+
}
|
|
2644
|
+
|
|
2645
|
+
class GetSendQuotaCommand extends command(_ep0, _mw0, "GetSendQuota", GetSendQuota$) {
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2648
|
+
class GetSendStatisticsCommand extends command(_ep0, _mw0, "GetSendStatistics", GetSendStatistics$) {
|
|
2649
|
+
}
|
|
2650
|
+
|
|
2651
|
+
class GetTemplateCommand extends command(_ep0, _mw0, "GetTemplate", GetTemplate$) {
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
class ListConfigurationSetsCommand extends command(_ep0, _mw0, "ListConfigurationSets", ListConfigurationSets$) {
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
class ListCustomVerificationEmailTemplatesCommand extends command(_ep0, _mw0, "ListCustomVerificationEmailTemplates", ListCustomVerificationEmailTemplates$) {
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
class ListIdentitiesCommand extends command(_ep0, _mw0, "ListIdentities", ListIdentities$) {
|
|
2661
|
+
}
|
|
2662
|
+
|
|
2663
|
+
class ListIdentityPoliciesCommand extends command(_ep0, _mw0, "ListIdentityPolicies", ListIdentityPolicies$) {
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
class ListReceiptFiltersCommand extends command(_ep0, _mw0, "ListReceiptFilters", ListReceiptFilters$) {
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2669
|
+
class ListReceiptRuleSetsCommand extends command(_ep0, _mw0, "ListReceiptRuleSets", ListReceiptRuleSets$) {
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
class ListTemplatesCommand extends command(_ep0, _mw0, "ListTemplates", ListTemplates$) {
|
|
2673
|
+
}
|
|
2674
|
+
|
|
2675
|
+
class ListVerifiedEmailAddressesCommand extends command(_ep0, _mw0, "ListVerifiedEmailAddresses", ListVerifiedEmailAddresses$) {
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
class PutConfigurationSetDeliveryOptionsCommand extends command(_ep0, _mw0, "PutConfigurationSetDeliveryOptions", PutConfigurationSetDeliveryOptions$) {
|
|
2679
|
+
}
|
|
2680
|
+
|
|
2681
|
+
class PutIdentityPolicyCommand extends command(_ep0, _mw0, "PutIdentityPolicy", PutIdentityPolicy$) {
|
|
2682
|
+
}
|
|
2683
|
+
|
|
2684
|
+
class ReorderReceiptRuleSetCommand extends command(_ep0, _mw0, "ReorderReceiptRuleSet", ReorderReceiptRuleSet$) {
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
class SendBounceCommand extends command(_ep0, _mw0, "SendBounce", SendBounce$) {
|
|
2688
|
+
}
|
|
2689
|
+
|
|
2690
|
+
class SendBulkTemplatedEmailCommand extends command(_ep0, _mw0, "SendBulkTemplatedEmail", SendBulkTemplatedEmail$) {
|
|
2691
|
+
}
|
|
2692
|
+
|
|
2693
|
+
class SendCustomVerificationEmailCommand extends command(_ep0, _mw0, "SendCustomVerificationEmail", SendCustomVerificationEmail$) {
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
class SendEmailCommand extends command(_ep0, _mw0, "SendEmail", SendEmail$) {
|
|
2697
|
+
}
|
|
2698
|
+
|
|
2699
|
+
class SendRawEmailCommand extends command(_ep0, _mw0, "SendRawEmail", SendRawEmail$) {
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
class SendTemplatedEmailCommand extends command(_ep0, _mw0, "SendTemplatedEmail", SendTemplatedEmail$) {
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2705
|
+
class SetActiveReceiptRuleSetCommand extends command(_ep0, _mw0, "SetActiveReceiptRuleSet", SetActiveReceiptRuleSet$) {
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2708
|
+
class SetIdentityDkimEnabledCommand extends command(_ep0, _mw0, "SetIdentityDkimEnabled", SetIdentityDkimEnabled$) {
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
class SetIdentityFeedbackForwardingEnabledCommand extends command(_ep0, _mw0, "SetIdentityFeedbackForwardingEnabled", SetIdentityFeedbackForwardingEnabled$) {
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
class SetIdentityHeadersInNotificationsEnabledCommand extends command(_ep0, _mw0, "SetIdentityHeadersInNotificationsEnabled", SetIdentityHeadersInNotificationsEnabled$) {
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
class SetIdentityMailFromDomainCommand extends command(_ep0, _mw0, "SetIdentityMailFromDomain", SetIdentityMailFromDomain$) {
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
class SetIdentityNotificationTopicCommand extends command(_ep0, _mw0, "SetIdentityNotificationTopic", SetIdentityNotificationTopic$) {
|
|
2721
|
+
}
|
|
2722
|
+
|
|
2723
|
+
class SetReceiptRulePositionCommand extends command(_ep0, _mw0, "SetReceiptRulePosition", SetReceiptRulePosition$) {
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
class TestRenderTemplateCommand extends command(_ep0, _mw0, "TestRenderTemplate", TestRenderTemplate$) {
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
class UpdateAccountSendingEnabledCommand extends command(_ep0, _mw0, "UpdateAccountSendingEnabled", UpdateAccountSendingEnabled$) {
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2732
|
+
class UpdateConfigurationSetEventDestinationCommand extends command(_ep0, _mw0, "UpdateConfigurationSetEventDestination", UpdateConfigurationSetEventDestination$) {
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
class UpdateConfigurationSetReputationMetricsEnabledCommand extends command(_ep0, _mw0, "UpdateConfigurationSetReputationMetricsEnabled", UpdateConfigurationSetReputationMetricsEnabled$) {
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
class UpdateConfigurationSetSendingEnabledCommand extends command(_ep0, _mw0, "UpdateConfigurationSetSendingEnabled", UpdateConfigurationSetSendingEnabled$) {
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
class UpdateConfigurationSetTrackingOptionsCommand extends command(_ep0, _mw0, "UpdateConfigurationSetTrackingOptions", UpdateConfigurationSetTrackingOptions$) {
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2744
|
+
class UpdateCustomVerificationEmailTemplateCommand extends command(_ep0, _mw0, "UpdateCustomVerificationEmailTemplate", UpdateCustomVerificationEmailTemplate$) {
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
class UpdateReceiptRuleCommand extends command(_ep0, _mw0, "UpdateReceiptRule", UpdateReceiptRule$) {
|
|
2748
|
+
}
|
|
2749
|
+
|
|
2750
|
+
class UpdateTemplateCommand extends command(_ep0, _mw0, "UpdateTemplate", UpdateTemplate$) {
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2753
|
+
class VerifyDomainDkimCommand extends command(_ep0, _mw0, "VerifyDomainDkim", VerifyDomainDkim$) {
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
class VerifyDomainIdentityCommand extends command(_ep0, _mw0, "VerifyDomainIdentity", VerifyDomainIdentity$) {
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
class VerifyEmailAddressCommand extends command(_ep0, _mw0, "VerifyEmailAddress", VerifyEmailAddress$) {
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
class VerifyEmailIdentityCommand extends command(_ep0, _mw0, "VerifyEmailIdentity", VerifyEmailIdentity$) {
|
|
2763
|
+
}
|
|
2764
|
+
|
|
2765
|
+
const paginateListCustomVerificationEmailTemplates = createPaginator(SESClient, ListCustomVerificationEmailTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2766
|
+
|
|
2767
|
+
const paginateListIdentities = createPaginator(SESClient, ListIdentitiesCommand, "NextToken", "NextToken", "MaxItems");
|
|
972
2768
|
|
|
973
2769
|
const checkState = async (client, input) => {
|
|
974
2770
|
let reason;
|
|
@@ -987,7 +2783,7 @@ const checkState = async (client, input) => {
|
|
|
987
2783
|
allStringEq_4 = allStringEq_4 && (element_3 == "Success");
|
|
988
2784
|
}
|
|
989
2785
|
if (allStringEq_4) {
|
|
990
|
-
return { state:
|
|
2786
|
+
return { state: WaiterState.SUCCESS, reason };
|
|
991
2787
|
}
|
|
992
2788
|
}
|
|
993
2789
|
catch (e) { }
|
|
@@ -995,16 +2791,16 @@ const checkState = async (client, input) => {
|
|
|
995
2791
|
catch (exception) {
|
|
996
2792
|
reason = exception;
|
|
997
2793
|
}
|
|
998
|
-
return { state:
|
|
2794
|
+
return { state: WaiterState.RETRY, reason };
|
|
999
2795
|
};
|
|
1000
2796
|
const waitForIdentityExists = async (params, input) => {
|
|
1001
2797
|
const serviceDefaults = { minDelay: 3, maxDelay: 120 };
|
|
1002
|
-
return
|
|
2798
|
+
return createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1003
2799
|
};
|
|
1004
2800
|
const waitUntilIdentityExists = async (params, input) => {
|
|
1005
2801
|
const serviceDefaults = { minDelay: 3, maxDelay: 120 };
|
|
1006
|
-
const result = await
|
|
1007
|
-
return
|
|
2802
|
+
const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
2803
|
+
return checkExceptions(result);
|
|
1008
2804
|
};
|
|
1009
2805
|
|
|
1010
2806
|
const commands = {
|
|
@@ -1089,7 +2885,7 @@ const waiters = {
|
|
|
1089
2885
|
};
|
|
1090
2886
|
class SES extends SESClient {
|
|
1091
2887
|
}
|
|
1092
|
-
|
|
2888
|
+
createAggregatedClient(commands, SES, { paginators, waiters });
|
|
1093
2889
|
|
|
1094
2890
|
const BehaviorOnMXFailure = {
|
|
1095
2891
|
RejectMessage: "RejectMessage",
|
|
@@ -1189,119 +2985,410 @@ const NotificationType = {
|
|
|
1189
2985
|
Delivery: "Delivery",
|
|
1190
2986
|
};
|
|
1191
2987
|
|
|
1192
|
-
exports
|
|
1193
|
-
exports.
|
|
1194
|
-
exports.
|
|
2988
|
+
exports.AccountSendingPausedException = AccountSendingPausedException;
|
|
2989
|
+
exports.AccountSendingPausedException$ = AccountSendingPausedException$;
|
|
2990
|
+
exports.AddHeaderAction$ = AddHeaderAction$;
|
|
2991
|
+
exports.AlreadyExistsException = AlreadyExistsException;
|
|
2992
|
+
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
1195
2993
|
exports.BehaviorOnMXFailure = BehaviorOnMXFailure;
|
|
2994
|
+
exports.Body$ = Body$;
|
|
2995
|
+
exports.BounceAction$ = BounceAction$;
|
|
1196
2996
|
exports.BounceType = BounceType;
|
|
2997
|
+
exports.BouncedRecipientInfo$ = BouncedRecipientInfo$;
|
|
2998
|
+
exports.BulkEmailDestination$ = BulkEmailDestination$;
|
|
2999
|
+
exports.BulkEmailDestinationStatus$ = BulkEmailDestinationStatus$;
|
|
1197
3000
|
exports.BulkEmailStatus = BulkEmailStatus;
|
|
3001
|
+
exports.CannotDeleteException = CannotDeleteException;
|
|
3002
|
+
exports.CannotDeleteException$ = CannotDeleteException$;
|
|
3003
|
+
exports.CloneReceiptRuleSet$ = CloneReceiptRuleSet$;
|
|
1198
3004
|
exports.CloneReceiptRuleSetCommand = CloneReceiptRuleSetCommand;
|
|
3005
|
+
exports.CloneReceiptRuleSetRequest$ = CloneReceiptRuleSetRequest$;
|
|
3006
|
+
exports.CloneReceiptRuleSetResponse$ = CloneReceiptRuleSetResponse$;
|
|
3007
|
+
exports.CloudWatchDestination$ = CloudWatchDestination$;
|
|
3008
|
+
exports.CloudWatchDimensionConfiguration$ = CloudWatchDimensionConfiguration$;
|
|
3009
|
+
exports.ConfigurationSet$ = ConfigurationSet$;
|
|
3010
|
+
exports.ConfigurationSetAlreadyExistsException = ConfigurationSetAlreadyExistsException;
|
|
3011
|
+
exports.ConfigurationSetAlreadyExistsException$ = ConfigurationSetAlreadyExistsException$;
|
|
1199
3012
|
exports.ConfigurationSetAttribute = ConfigurationSetAttribute;
|
|
3013
|
+
exports.ConfigurationSetDoesNotExistException = ConfigurationSetDoesNotExistException;
|
|
3014
|
+
exports.ConfigurationSetDoesNotExistException$ = ConfigurationSetDoesNotExistException$;
|
|
3015
|
+
exports.ConfigurationSetSendingPausedException = ConfigurationSetSendingPausedException;
|
|
3016
|
+
exports.ConfigurationSetSendingPausedException$ = ConfigurationSetSendingPausedException$;
|
|
3017
|
+
exports.ConnectAction$ = ConnectAction$;
|
|
3018
|
+
exports.Content$ = Content$;
|
|
3019
|
+
exports.CreateConfigurationSet$ = CreateConfigurationSet$;
|
|
1200
3020
|
exports.CreateConfigurationSetCommand = CreateConfigurationSetCommand;
|
|
3021
|
+
exports.CreateConfigurationSetEventDestination$ = CreateConfigurationSetEventDestination$;
|
|
1201
3022
|
exports.CreateConfigurationSetEventDestinationCommand = CreateConfigurationSetEventDestinationCommand;
|
|
3023
|
+
exports.CreateConfigurationSetEventDestinationRequest$ = CreateConfigurationSetEventDestinationRequest$;
|
|
3024
|
+
exports.CreateConfigurationSetEventDestinationResponse$ = CreateConfigurationSetEventDestinationResponse$;
|
|
3025
|
+
exports.CreateConfigurationSetRequest$ = CreateConfigurationSetRequest$;
|
|
3026
|
+
exports.CreateConfigurationSetResponse$ = CreateConfigurationSetResponse$;
|
|
3027
|
+
exports.CreateConfigurationSetTrackingOptions$ = CreateConfigurationSetTrackingOptions$;
|
|
1202
3028
|
exports.CreateConfigurationSetTrackingOptionsCommand = CreateConfigurationSetTrackingOptionsCommand;
|
|
3029
|
+
exports.CreateConfigurationSetTrackingOptionsRequest$ = CreateConfigurationSetTrackingOptionsRequest$;
|
|
3030
|
+
exports.CreateConfigurationSetTrackingOptionsResponse$ = CreateConfigurationSetTrackingOptionsResponse$;
|
|
3031
|
+
exports.CreateCustomVerificationEmailTemplate$ = CreateCustomVerificationEmailTemplate$;
|
|
1203
3032
|
exports.CreateCustomVerificationEmailTemplateCommand = CreateCustomVerificationEmailTemplateCommand;
|
|
3033
|
+
exports.CreateCustomVerificationEmailTemplateRequest$ = CreateCustomVerificationEmailTemplateRequest$;
|
|
3034
|
+
exports.CreateReceiptFilter$ = CreateReceiptFilter$;
|
|
1204
3035
|
exports.CreateReceiptFilterCommand = CreateReceiptFilterCommand;
|
|
3036
|
+
exports.CreateReceiptFilterRequest$ = CreateReceiptFilterRequest$;
|
|
3037
|
+
exports.CreateReceiptFilterResponse$ = CreateReceiptFilterResponse$;
|
|
3038
|
+
exports.CreateReceiptRule$ = CreateReceiptRule$;
|
|
1205
3039
|
exports.CreateReceiptRuleCommand = CreateReceiptRuleCommand;
|
|
3040
|
+
exports.CreateReceiptRuleRequest$ = CreateReceiptRuleRequest$;
|
|
3041
|
+
exports.CreateReceiptRuleResponse$ = CreateReceiptRuleResponse$;
|
|
3042
|
+
exports.CreateReceiptRuleSet$ = CreateReceiptRuleSet$;
|
|
1206
3043
|
exports.CreateReceiptRuleSetCommand = CreateReceiptRuleSetCommand;
|
|
3044
|
+
exports.CreateReceiptRuleSetRequest$ = CreateReceiptRuleSetRequest$;
|
|
3045
|
+
exports.CreateReceiptRuleSetResponse$ = CreateReceiptRuleSetResponse$;
|
|
3046
|
+
exports.CreateTemplate$ = CreateTemplate$;
|
|
1207
3047
|
exports.CreateTemplateCommand = CreateTemplateCommand;
|
|
3048
|
+
exports.CreateTemplateRequest$ = CreateTemplateRequest$;
|
|
3049
|
+
exports.CreateTemplateResponse$ = CreateTemplateResponse$;
|
|
1208
3050
|
exports.CustomMailFromStatus = CustomMailFromStatus;
|
|
3051
|
+
exports.CustomVerificationEmailInvalidContentException = CustomVerificationEmailInvalidContentException;
|
|
3052
|
+
exports.CustomVerificationEmailInvalidContentException$ = CustomVerificationEmailInvalidContentException$;
|
|
3053
|
+
exports.CustomVerificationEmailTemplate$ = CustomVerificationEmailTemplate$;
|
|
3054
|
+
exports.CustomVerificationEmailTemplateAlreadyExistsException = CustomVerificationEmailTemplateAlreadyExistsException;
|
|
3055
|
+
exports.CustomVerificationEmailTemplateAlreadyExistsException$ = CustomVerificationEmailTemplateAlreadyExistsException$;
|
|
3056
|
+
exports.CustomVerificationEmailTemplateDoesNotExistException = CustomVerificationEmailTemplateDoesNotExistException;
|
|
3057
|
+
exports.CustomVerificationEmailTemplateDoesNotExistException$ = CustomVerificationEmailTemplateDoesNotExistException$;
|
|
3058
|
+
exports.DeleteConfigurationSet$ = DeleteConfigurationSet$;
|
|
1209
3059
|
exports.DeleteConfigurationSetCommand = DeleteConfigurationSetCommand;
|
|
3060
|
+
exports.DeleteConfigurationSetEventDestination$ = DeleteConfigurationSetEventDestination$;
|
|
1210
3061
|
exports.DeleteConfigurationSetEventDestinationCommand = DeleteConfigurationSetEventDestinationCommand;
|
|
3062
|
+
exports.DeleteConfigurationSetEventDestinationRequest$ = DeleteConfigurationSetEventDestinationRequest$;
|
|
3063
|
+
exports.DeleteConfigurationSetEventDestinationResponse$ = DeleteConfigurationSetEventDestinationResponse$;
|
|
3064
|
+
exports.DeleteConfigurationSetRequest$ = DeleteConfigurationSetRequest$;
|
|
3065
|
+
exports.DeleteConfigurationSetResponse$ = DeleteConfigurationSetResponse$;
|
|
3066
|
+
exports.DeleteConfigurationSetTrackingOptions$ = DeleteConfigurationSetTrackingOptions$;
|
|
1211
3067
|
exports.DeleteConfigurationSetTrackingOptionsCommand = DeleteConfigurationSetTrackingOptionsCommand;
|
|
3068
|
+
exports.DeleteConfigurationSetTrackingOptionsRequest$ = DeleteConfigurationSetTrackingOptionsRequest$;
|
|
3069
|
+
exports.DeleteConfigurationSetTrackingOptionsResponse$ = DeleteConfigurationSetTrackingOptionsResponse$;
|
|
3070
|
+
exports.DeleteCustomVerificationEmailTemplate$ = DeleteCustomVerificationEmailTemplate$;
|
|
1212
3071
|
exports.DeleteCustomVerificationEmailTemplateCommand = DeleteCustomVerificationEmailTemplateCommand;
|
|
3072
|
+
exports.DeleteCustomVerificationEmailTemplateRequest$ = DeleteCustomVerificationEmailTemplateRequest$;
|
|
3073
|
+
exports.DeleteIdentity$ = DeleteIdentity$;
|
|
1213
3074
|
exports.DeleteIdentityCommand = DeleteIdentityCommand;
|
|
3075
|
+
exports.DeleteIdentityPolicy$ = DeleteIdentityPolicy$;
|
|
1214
3076
|
exports.DeleteIdentityPolicyCommand = DeleteIdentityPolicyCommand;
|
|
3077
|
+
exports.DeleteIdentityPolicyRequest$ = DeleteIdentityPolicyRequest$;
|
|
3078
|
+
exports.DeleteIdentityPolicyResponse$ = DeleteIdentityPolicyResponse$;
|
|
3079
|
+
exports.DeleteIdentityRequest$ = DeleteIdentityRequest$;
|
|
3080
|
+
exports.DeleteIdentityResponse$ = DeleteIdentityResponse$;
|
|
3081
|
+
exports.DeleteReceiptFilter$ = DeleteReceiptFilter$;
|
|
1215
3082
|
exports.DeleteReceiptFilterCommand = DeleteReceiptFilterCommand;
|
|
3083
|
+
exports.DeleteReceiptFilterRequest$ = DeleteReceiptFilterRequest$;
|
|
3084
|
+
exports.DeleteReceiptFilterResponse$ = DeleteReceiptFilterResponse$;
|
|
3085
|
+
exports.DeleteReceiptRule$ = DeleteReceiptRule$;
|
|
1216
3086
|
exports.DeleteReceiptRuleCommand = DeleteReceiptRuleCommand;
|
|
3087
|
+
exports.DeleteReceiptRuleRequest$ = DeleteReceiptRuleRequest$;
|
|
3088
|
+
exports.DeleteReceiptRuleResponse$ = DeleteReceiptRuleResponse$;
|
|
3089
|
+
exports.DeleteReceiptRuleSet$ = DeleteReceiptRuleSet$;
|
|
1217
3090
|
exports.DeleteReceiptRuleSetCommand = DeleteReceiptRuleSetCommand;
|
|
3091
|
+
exports.DeleteReceiptRuleSetRequest$ = DeleteReceiptRuleSetRequest$;
|
|
3092
|
+
exports.DeleteReceiptRuleSetResponse$ = DeleteReceiptRuleSetResponse$;
|
|
3093
|
+
exports.DeleteTemplate$ = DeleteTemplate$;
|
|
1218
3094
|
exports.DeleteTemplateCommand = DeleteTemplateCommand;
|
|
3095
|
+
exports.DeleteTemplateRequest$ = DeleteTemplateRequest$;
|
|
3096
|
+
exports.DeleteTemplateResponse$ = DeleteTemplateResponse$;
|
|
3097
|
+
exports.DeleteVerifiedEmailAddress$ = DeleteVerifiedEmailAddress$;
|
|
1219
3098
|
exports.DeleteVerifiedEmailAddressCommand = DeleteVerifiedEmailAddressCommand;
|
|
3099
|
+
exports.DeleteVerifiedEmailAddressRequest$ = DeleteVerifiedEmailAddressRequest$;
|
|
3100
|
+
exports.DeliveryOptions$ = DeliveryOptions$;
|
|
3101
|
+
exports.DescribeActiveReceiptRuleSet$ = DescribeActiveReceiptRuleSet$;
|
|
1220
3102
|
exports.DescribeActiveReceiptRuleSetCommand = DescribeActiveReceiptRuleSetCommand;
|
|
3103
|
+
exports.DescribeActiveReceiptRuleSetRequest$ = DescribeActiveReceiptRuleSetRequest$;
|
|
3104
|
+
exports.DescribeActiveReceiptRuleSetResponse$ = DescribeActiveReceiptRuleSetResponse$;
|
|
3105
|
+
exports.DescribeConfigurationSet$ = DescribeConfigurationSet$;
|
|
1221
3106
|
exports.DescribeConfigurationSetCommand = DescribeConfigurationSetCommand;
|
|
3107
|
+
exports.DescribeConfigurationSetRequest$ = DescribeConfigurationSetRequest$;
|
|
3108
|
+
exports.DescribeConfigurationSetResponse$ = DescribeConfigurationSetResponse$;
|
|
3109
|
+
exports.DescribeReceiptRule$ = DescribeReceiptRule$;
|
|
1222
3110
|
exports.DescribeReceiptRuleCommand = DescribeReceiptRuleCommand;
|
|
3111
|
+
exports.DescribeReceiptRuleRequest$ = DescribeReceiptRuleRequest$;
|
|
3112
|
+
exports.DescribeReceiptRuleResponse$ = DescribeReceiptRuleResponse$;
|
|
3113
|
+
exports.DescribeReceiptRuleSet$ = DescribeReceiptRuleSet$;
|
|
1223
3114
|
exports.DescribeReceiptRuleSetCommand = DescribeReceiptRuleSetCommand;
|
|
3115
|
+
exports.DescribeReceiptRuleSetRequest$ = DescribeReceiptRuleSetRequest$;
|
|
3116
|
+
exports.DescribeReceiptRuleSetResponse$ = DescribeReceiptRuleSetResponse$;
|
|
3117
|
+
exports.Destination$ = Destination$;
|
|
1224
3118
|
exports.DimensionValueSource = DimensionValueSource;
|
|
1225
3119
|
exports.DsnAction = DsnAction;
|
|
3120
|
+
exports.EventDestination$ = EventDestination$;
|
|
3121
|
+
exports.EventDestinationAlreadyExistsException = EventDestinationAlreadyExistsException;
|
|
3122
|
+
exports.EventDestinationAlreadyExistsException$ = EventDestinationAlreadyExistsException$;
|
|
3123
|
+
exports.EventDestinationDoesNotExistException = EventDestinationDoesNotExistException;
|
|
3124
|
+
exports.EventDestinationDoesNotExistException$ = EventDestinationDoesNotExistException$;
|
|
1226
3125
|
exports.EventType = EventType;
|
|
3126
|
+
exports.ExtensionField$ = ExtensionField$;
|
|
3127
|
+
exports.FromEmailAddressNotVerifiedException = FromEmailAddressNotVerifiedException;
|
|
3128
|
+
exports.FromEmailAddressNotVerifiedException$ = FromEmailAddressNotVerifiedException$;
|
|
3129
|
+
exports.GetAccountSendingEnabled$ = GetAccountSendingEnabled$;
|
|
1227
3130
|
exports.GetAccountSendingEnabledCommand = GetAccountSendingEnabledCommand;
|
|
3131
|
+
exports.GetAccountSendingEnabledResponse$ = GetAccountSendingEnabledResponse$;
|
|
3132
|
+
exports.GetCustomVerificationEmailTemplate$ = GetCustomVerificationEmailTemplate$;
|
|
1228
3133
|
exports.GetCustomVerificationEmailTemplateCommand = GetCustomVerificationEmailTemplateCommand;
|
|
3134
|
+
exports.GetCustomVerificationEmailTemplateRequest$ = GetCustomVerificationEmailTemplateRequest$;
|
|
3135
|
+
exports.GetCustomVerificationEmailTemplateResponse$ = GetCustomVerificationEmailTemplateResponse$;
|
|
3136
|
+
exports.GetIdentityDkimAttributes$ = GetIdentityDkimAttributes$;
|
|
1229
3137
|
exports.GetIdentityDkimAttributesCommand = GetIdentityDkimAttributesCommand;
|
|
3138
|
+
exports.GetIdentityDkimAttributesRequest$ = GetIdentityDkimAttributesRequest$;
|
|
3139
|
+
exports.GetIdentityDkimAttributesResponse$ = GetIdentityDkimAttributesResponse$;
|
|
3140
|
+
exports.GetIdentityMailFromDomainAttributes$ = GetIdentityMailFromDomainAttributes$;
|
|
1230
3141
|
exports.GetIdentityMailFromDomainAttributesCommand = GetIdentityMailFromDomainAttributesCommand;
|
|
3142
|
+
exports.GetIdentityMailFromDomainAttributesRequest$ = GetIdentityMailFromDomainAttributesRequest$;
|
|
3143
|
+
exports.GetIdentityMailFromDomainAttributesResponse$ = GetIdentityMailFromDomainAttributesResponse$;
|
|
3144
|
+
exports.GetIdentityNotificationAttributes$ = GetIdentityNotificationAttributes$;
|
|
1231
3145
|
exports.GetIdentityNotificationAttributesCommand = GetIdentityNotificationAttributesCommand;
|
|
3146
|
+
exports.GetIdentityNotificationAttributesRequest$ = GetIdentityNotificationAttributesRequest$;
|
|
3147
|
+
exports.GetIdentityNotificationAttributesResponse$ = GetIdentityNotificationAttributesResponse$;
|
|
3148
|
+
exports.GetIdentityPolicies$ = GetIdentityPolicies$;
|
|
1232
3149
|
exports.GetIdentityPoliciesCommand = GetIdentityPoliciesCommand;
|
|
3150
|
+
exports.GetIdentityPoliciesRequest$ = GetIdentityPoliciesRequest$;
|
|
3151
|
+
exports.GetIdentityPoliciesResponse$ = GetIdentityPoliciesResponse$;
|
|
3152
|
+
exports.GetIdentityVerificationAttributes$ = GetIdentityVerificationAttributes$;
|
|
1233
3153
|
exports.GetIdentityVerificationAttributesCommand = GetIdentityVerificationAttributesCommand;
|
|
3154
|
+
exports.GetIdentityVerificationAttributesRequest$ = GetIdentityVerificationAttributesRequest$;
|
|
3155
|
+
exports.GetIdentityVerificationAttributesResponse$ = GetIdentityVerificationAttributesResponse$;
|
|
3156
|
+
exports.GetSendQuota$ = GetSendQuota$;
|
|
1234
3157
|
exports.GetSendQuotaCommand = GetSendQuotaCommand;
|
|
3158
|
+
exports.GetSendQuotaResponse$ = GetSendQuotaResponse$;
|
|
3159
|
+
exports.GetSendStatistics$ = GetSendStatistics$;
|
|
1235
3160
|
exports.GetSendStatisticsCommand = GetSendStatisticsCommand;
|
|
3161
|
+
exports.GetSendStatisticsResponse$ = GetSendStatisticsResponse$;
|
|
3162
|
+
exports.GetTemplate$ = GetTemplate$;
|
|
1236
3163
|
exports.GetTemplateCommand = GetTemplateCommand;
|
|
3164
|
+
exports.GetTemplateRequest$ = GetTemplateRequest$;
|
|
3165
|
+
exports.GetTemplateResponse$ = GetTemplateResponse$;
|
|
3166
|
+
exports.IdentityDkimAttributes$ = IdentityDkimAttributes$;
|
|
3167
|
+
exports.IdentityMailFromDomainAttributes$ = IdentityMailFromDomainAttributes$;
|
|
3168
|
+
exports.IdentityNotificationAttributes$ = IdentityNotificationAttributes$;
|
|
1237
3169
|
exports.IdentityType = IdentityType;
|
|
3170
|
+
exports.IdentityVerificationAttributes$ = IdentityVerificationAttributes$;
|
|
3171
|
+
exports.InvalidCloudWatchDestinationException = InvalidCloudWatchDestinationException;
|
|
3172
|
+
exports.InvalidCloudWatchDestinationException$ = InvalidCloudWatchDestinationException$;
|
|
3173
|
+
exports.InvalidConfigurationSetException = InvalidConfigurationSetException;
|
|
3174
|
+
exports.InvalidConfigurationSetException$ = InvalidConfigurationSetException$;
|
|
3175
|
+
exports.InvalidDeliveryOptionsException = InvalidDeliveryOptionsException;
|
|
3176
|
+
exports.InvalidDeliveryOptionsException$ = InvalidDeliveryOptionsException$;
|
|
3177
|
+
exports.InvalidFirehoseDestinationException = InvalidFirehoseDestinationException;
|
|
3178
|
+
exports.InvalidFirehoseDestinationException$ = InvalidFirehoseDestinationException$;
|
|
3179
|
+
exports.InvalidLambdaFunctionException = InvalidLambdaFunctionException;
|
|
3180
|
+
exports.InvalidLambdaFunctionException$ = InvalidLambdaFunctionException$;
|
|
3181
|
+
exports.InvalidPolicyException = InvalidPolicyException;
|
|
3182
|
+
exports.InvalidPolicyException$ = InvalidPolicyException$;
|
|
3183
|
+
exports.InvalidRenderingParameterException = InvalidRenderingParameterException;
|
|
3184
|
+
exports.InvalidRenderingParameterException$ = InvalidRenderingParameterException$;
|
|
3185
|
+
exports.InvalidS3ConfigurationException = InvalidS3ConfigurationException;
|
|
3186
|
+
exports.InvalidS3ConfigurationException$ = InvalidS3ConfigurationException$;
|
|
3187
|
+
exports.InvalidSNSDestinationException = InvalidSNSDestinationException;
|
|
3188
|
+
exports.InvalidSNSDestinationException$ = InvalidSNSDestinationException$;
|
|
3189
|
+
exports.InvalidSnsTopicException = InvalidSnsTopicException;
|
|
3190
|
+
exports.InvalidSnsTopicException$ = InvalidSnsTopicException$;
|
|
3191
|
+
exports.InvalidTemplateException = InvalidTemplateException;
|
|
3192
|
+
exports.InvalidTemplateException$ = InvalidTemplateException$;
|
|
3193
|
+
exports.InvalidTrackingOptionsException = InvalidTrackingOptionsException;
|
|
3194
|
+
exports.InvalidTrackingOptionsException$ = InvalidTrackingOptionsException$;
|
|
1238
3195
|
exports.InvocationType = InvocationType;
|
|
3196
|
+
exports.KinesisFirehoseDestination$ = KinesisFirehoseDestination$;
|
|
3197
|
+
exports.LambdaAction$ = LambdaAction$;
|
|
3198
|
+
exports.LimitExceededException = LimitExceededException;
|
|
3199
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
3200
|
+
exports.ListConfigurationSets$ = ListConfigurationSets$;
|
|
1239
3201
|
exports.ListConfigurationSetsCommand = ListConfigurationSetsCommand;
|
|
3202
|
+
exports.ListConfigurationSetsRequest$ = ListConfigurationSetsRequest$;
|
|
3203
|
+
exports.ListConfigurationSetsResponse$ = ListConfigurationSetsResponse$;
|
|
3204
|
+
exports.ListCustomVerificationEmailTemplates$ = ListCustomVerificationEmailTemplates$;
|
|
1240
3205
|
exports.ListCustomVerificationEmailTemplatesCommand = ListCustomVerificationEmailTemplatesCommand;
|
|
3206
|
+
exports.ListCustomVerificationEmailTemplatesRequest$ = ListCustomVerificationEmailTemplatesRequest$;
|
|
3207
|
+
exports.ListCustomVerificationEmailTemplatesResponse$ = ListCustomVerificationEmailTemplatesResponse$;
|
|
3208
|
+
exports.ListIdentities$ = ListIdentities$;
|
|
1241
3209
|
exports.ListIdentitiesCommand = ListIdentitiesCommand;
|
|
3210
|
+
exports.ListIdentitiesRequest$ = ListIdentitiesRequest$;
|
|
3211
|
+
exports.ListIdentitiesResponse$ = ListIdentitiesResponse$;
|
|
3212
|
+
exports.ListIdentityPolicies$ = ListIdentityPolicies$;
|
|
1242
3213
|
exports.ListIdentityPoliciesCommand = ListIdentityPoliciesCommand;
|
|
3214
|
+
exports.ListIdentityPoliciesRequest$ = ListIdentityPoliciesRequest$;
|
|
3215
|
+
exports.ListIdentityPoliciesResponse$ = ListIdentityPoliciesResponse$;
|
|
3216
|
+
exports.ListReceiptFilters$ = ListReceiptFilters$;
|
|
1243
3217
|
exports.ListReceiptFiltersCommand = ListReceiptFiltersCommand;
|
|
3218
|
+
exports.ListReceiptFiltersRequest$ = ListReceiptFiltersRequest$;
|
|
3219
|
+
exports.ListReceiptFiltersResponse$ = ListReceiptFiltersResponse$;
|
|
3220
|
+
exports.ListReceiptRuleSets$ = ListReceiptRuleSets$;
|
|
1244
3221
|
exports.ListReceiptRuleSetsCommand = ListReceiptRuleSetsCommand;
|
|
3222
|
+
exports.ListReceiptRuleSetsRequest$ = ListReceiptRuleSetsRequest$;
|
|
3223
|
+
exports.ListReceiptRuleSetsResponse$ = ListReceiptRuleSetsResponse$;
|
|
3224
|
+
exports.ListTemplates$ = ListTemplates$;
|
|
1245
3225
|
exports.ListTemplatesCommand = ListTemplatesCommand;
|
|
3226
|
+
exports.ListTemplatesRequest$ = ListTemplatesRequest$;
|
|
3227
|
+
exports.ListTemplatesResponse$ = ListTemplatesResponse$;
|
|
3228
|
+
exports.ListVerifiedEmailAddresses$ = ListVerifiedEmailAddresses$;
|
|
1246
3229
|
exports.ListVerifiedEmailAddressesCommand = ListVerifiedEmailAddressesCommand;
|
|
3230
|
+
exports.ListVerifiedEmailAddressesResponse$ = ListVerifiedEmailAddressesResponse$;
|
|
3231
|
+
exports.MailFromDomainNotVerifiedException = MailFromDomainNotVerifiedException;
|
|
3232
|
+
exports.MailFromDomainNotVerifiedException$ = MailFromDomainNotVerifiedException$;
|
|
3233
|
+
exports.Message$ = Message$;
|
|
3234
|
+
exports.MessageDsn$ = MessageDsn$;
|
|
3235
|
+
exports.MessageRejected = MessageRejected;
|
|
3236
|
+
exports.MessageRejected$ = MessageRejected$;
|
|
3237
|
+
exports.MessageTag$ = MessageTag$;
|
|
3238
|
+
exports.MissingRenderingAttributeException = MissingRenderingAttributeException;
|
|
3239
|
+
exports.MissingRenderingAttributeException$ = MissingRenderingAttributeException$;
|
|
1247
3240
|
exports.NotificationType = NotificationType;
|
|
3241
|
+
exports.ProductionAccessNotGrantedException = ProductionAccessNotGrantedException;
|
|
3242
|
+
exports.ProductionAccessNotGrantedException$ = ProductionAccessNotGrantedException$;
|
|
3243
|
+
exports.PutConfigurationSetDeliveryOptions$ = PutConfigurationSetDeliveryOptions$;
|
|
1248
3244
|
exports.PutConfigurationSetDeliveryOptionsCommand = PutConfigurationSetDeliveryOptionsCommand;
|
|
3245
|
+
exports.PutConfigurationSetDeliveryOptionsRequest$ = PutConfigurationSetDeliveryOptionsRequest$;
|
|
3246
|
+
exports.PutConfigurationSetDeliveryOptionsResponse$ = PutConfigurationSetDeliveryOptionsResponse$;
|
|
3247
|
+
exports.PutIdentityPolicy$ = PutIdentityPolicy$;
|
|
1249
3248
|
exports.PutIdentityPolicyCommand = PutIdentityPolicyCommand;
|
|
3249
|
+
exports.PutIdentityPolicyRequest$ = PutIdentityPolicyRequest$;
|
|
3250
|
+
exports.PutIdentityPolicyResponse$ = PutIdentityPolicyResponse$;
|
|
3251
|
+
exports.RawMessage$ = RawMessage$;
|
|
3252
|
+
exports.ReceiptAction$ = ReceiptAction$;
|
|
3253
|
+
exports.ReceiptFilter$ = ReceiptFilter$;
|
|
1250
3254
|
exports.ReceiptFilterPolicy = ReceiptFilterPolicy;
|
|
3255
|
+
exports.ReceiptIpFilter$ = ReceiptIpFilter$;
|
|
3256
|
+
exports.ReceiptRule$ = ReceiptRule$;
|
|
3257
|
+
exports.ReceiptRuleSetMetadata$ = ReceiptRuleSetMetadata$;
|
|
3258
|
+
exports.RecipientDsnFields$ = RecipientDsnFields$;
|
|
3259
|
+
exports.ReorderReceiptRuleSet$ = ReorderReceiptRuleSet$;
|
|
1251
3260
|
exports.ReorderReceiptRuleSetCommand = ReorderReceiptRuleSetCommand;
|
|
3261
|
+
exports.ReorderReceiptRuleSetRequest$ = ReorderReceiptRuleSetRequest$;
|
|
3262
|
+
exports.ReorderReceiptRuleSetResponse$ = ReorderReceiptRuleSetResponse$;
|
|
3263
|
+
exports.ReputationOptions$ = ReputationOptions$;
|
|
3264
|
+
exports.RuleDoesNotExistException = RuleDoesNotExistException;
|
|
3265
|
+
exports.RuleDoesNotExistException$ = RuleDoesNotExistException$;
|
|
3266
|
+
exports.RuleSetDoesNotExistException = RuleSetDoesNotExistException;
|
|
3267
|
+
exports.RuleSetDoesNotExistException$ = RuleSetDoesNotExistException$;
|
|
3268
|
+
exports.S3Action$ = S3Action$;
|
|
1252
3269
|
exports.SES = SES;
|
|
1253
3270
|
exports.SESClient = SESClient;
|
|
3271
|
+
exports.SESServiceException = SESServiceException;
|
|
3272
|
+
exports.SESServiceException$ = SESServiceException$;
|
|
3273
|
+
exports.SNSAction$ = SNSAction$;
|
|
1254
3274
|
exports.SNSActionEncoding = SNSActionEncoding;
|
|
3275
|
+
exports.SNSDestination$ = SNSDestination$;
|
|
3276
|
+
exports.SendBounce$ = SendBounce$;
|
|
1255
3277
|
exports.SendBounceCommand = SendBounceCommand;
|
|
3278
|
+
exports.SendBounceRequest$ = SendBounceRequest$;
|
|
3279
|
+
exports.SendBounceResponse$ = SendBounceResponse$;
|
|
3280
|
+
exports.SendBulkTemplatedEmail$ = SendBulkTemplatedEmail$;
|
|
1256
3281
|
exports.SendBulkTemplatedEmailCommand = SendBulkTemplatedEmailCommand;
|
|
3282
|
+
exports.SendBulkTemplatedEmailRequest$ = SendBulkTemplatedEmailRequest$;
|
|
3283
|
+
exports.SendBulkTemplatedEmailResponse$ = SendBulkTemplatedEmailResponse$;
|
|
3284
|
+
exports.SendCustomVerificationEmail$ = SendCustomVerificationEmail$;
|
|
1257
3285
|
exports.SendCustomVerificationEmailCommand = SendCustomVerificationEmailCommand;
|
|
3286
|
+
exports.SendCustomVerificationEmailRequest$ = SendCustomVerificationEmailRequest$;
|
|
3287
|
+
exports.SendCustomVerificationEmailResponse$ = SendCustomVerificationEmailResponse$;
|
|
3288
|
+
exports.SendDataPoint$ = SendDataPoint$;
|
|
3289
|
+
exports.SendEmail$ = SendEmail$;
|
|
1258
3290
|
exports.SendEmailCommand = SendEmailCommand;
|
|
3291
|
+
exports.SendEmailRequest$ = SendEmailRequest$;
|
|
3292
|
+
exports.SendEmailResponse$ = SendEmailResponse$;
|
|
3293
|
+
exports.SendRawEmail$ = SendRawEmail$;
|
|
1259
3294
|
exports.SendRawEmailCommand = SendRawEmailCommand;
|
|
3295
|
+
exports.SendRawEmailRequest$ = SendRawEmailRequest$;
|
|
3296
|
+
exports.SendRawEmailResponse$ = SendRawEmailResponse$;
|
|
3297
|
+
exports.SendTemplatedEmail$ = SendTemplatedEmail$;
|
|
1260
3298
|
exports.SendTemplatedEmailCommand = SendTemplatedEmailCommand;
|
|
3299
|
+
exports.SendTemplatedEmailRequest$ = SendTemplatedEmailRequest$;
|
|
3300
|
+
exports.SendTemplatedEmailResponse$ = SendTemplatedEmailResponse$;
|
|
3301
|
+
exports.SetActiveReceiptRuleSet$ = SetActiveReceiptRuleSet$;
|
|
1261
3302
|
exports.SetActiveReceiptRuleSetCommand = SetActiveReceiptRuleSetCommand;
|
|
3303
|
+
exports.SetActiveReceiptRuleSetRequest$ = SetActiveReceiptRuleSetRequest$;
|
|
3304
|
+
exports.SetActiveReceiptRuleSetResponse$ = SetActiveReceiptRuleSetResponse$;
|
|
3305
|
+
exports.SetIdentityDkimEnabled$ = SetIdentityDkimEnabled$;
|
|
1262
3306
|
exports.SetIdentityDkimEnabledCommand = SetIdentityDkimEnabledCommand;
|
|
3307
|
+
exports.SetIdentityDkimEnabledRequest$ = SetIdentityDkimEnabledRequest$;
|
|
3308
|
+
exports.SetIdentityDkimEnabledResponse$ = SetIdentityDkimEnabledResponse$;
|
|
3309
|
+
exports.SetIdentityFeedbackForwardingEnabled$ = SetIdentityFeedbackForwardingEnabled$;
|
|
1263
3310
|
exports.SetIdentityFeedbackForwardingEnabledCommand = SetIdentityFeedbackForwardingEnabledCommand;
|
|
3311
|
+
exports.SetIdentityFeedbackForwardingEnabledRequest$ = SetIdentityFeedbackForwardingEnabledRequest$;
|
|
3312
|
+
exports.SetIdentityFeedbackForwardingEnabledResponse$ = SetIdentityFeedbackForwardingEnabledResponse$;
|
|
3313
|
+
exports.SetIdentityHeadersInNotificationsEnabled$ = SetIdentityHeadersInNotificationsEnabled$;
|
|
1264
3314
|
exports.SetIdentityHeadersInNotificationsEnabledCommand = SetIdentityHeadersInNotificationsEnabledCommand;
|
|
3315
|
+
exports.SetIdentityHeadersInNotificationsEnabledRequest$ = SetIdentityHeadersInNotificationsEnabledRequest$;
|
|
3316
|
+
exports.SetIdentityHeadersInNotificationsEnabledResponse$ = SetIdentityHeadersInNotificationsEnabledResponse$;
|
|
3317
|
+
exports.SetIdentityMailFromDomain$ = SetIdentityMailFromDomain$;
|
|
1265
3318
|
exports.SetIdentityMailFromDomainCommand = SetIdentityMailFromDomainCommand;
|
|
3319
|
+
exports.SetIdentityMailFromDomainRequest$ = SetIdentityMailFromDomainRequest$;
|
|
3320
|
+
exports.SetIdentityMailFromDomainResponse$ = SetIdentityMailFromDomainResponse$;
|
|
3321
|
+
exports.SetIdentityNotificationTopic$ = SetIdentityNotificationTopic$;
|
|
1266
3322
|
exports.SetIdentityNotificationTopicCommand = SetIdentityNotificationTopicCommand;
|
|
3323
|
+
exports.SetIdentityNotificationTopicRequest$ = SetIdentityNotificationTopicRequest$;
|
|
3324
|
+
exports.SetIdentityNotificationTopicResponse$ = SetIdentityNotificationTopicResponse$;
|
|
3325
|
+
exports.SetReceiptRulePosition$ = SetReceiptRulePosition$;
|
|
1267
3326
|
exports.SetReceiptRulePositionCommand = SetReceiptRulePositionCommand;
|
|
3327
|
+
exports.SetReceiptRulePositionRequest$ = SetReceiptRulePositionRequest$;
|
|
3328
|
+
exports.SetReceiptRulePositionResponse$ = SetReceiptRulePositionResponse$;
|
|
3329
|
+
exports.StopAction$ = StopAction$;
|
|
1268
3330
|
exports.StopScope = StopScope;
|
|
3331
|
+
exports.Template$ = Template$;
|
|
3332
|
+
exports.TemplateDoesNotExistException = TemplateDoesNotExistException;
|
|
3333
|
+
exports.TemplateDoesNotExistException$ = TemplateDoesNotExistException$;
|
|
3334
|
+
exports.TemplateMetadata$ = TemplateMetadata$;
|
|
3335
|
+
exports.TestRenderTemplate$ = TestRenderTemplate$;
|
|
1269
3336
|
exports.TestRenderTemplateCommand = TestRenderTemplateCommand;
|
|
3337
|
+
exports.TestRenderTemplateRequest$ = TestRenderTemplateRequest$;
|
|
3338
|
+
exports.TestRenderTemplateResponse$ = TestRenderTemplateResponse$;
|
|
1270
3339
|
exports.TlsPolicy = TlsPolicy;
|
|
3340
|
+
exports.TrackingOptions$ = TrackingOptions$;
|
|
3341
|
+
exports.TrackingOptionsAlreadyExistsException = TrackingOptionsAlreadyExistsException;
|
|
3342
|
+
exports.TrackingOptionsAlreadyExistsException$ = TrackingOptionsAlreadyExistsException$;
|
|
3343
|
+
exports.TrackingOptionsDoesNotExistException = TrackingOptionsDoesNotExistException;
|
|
3344
|
+
exports.TrackingOptionsDoesNotExistException$ = TrackingOptionsDoesNotExistException$;
|
|
3345
|
+
exports.UpdateAccountSendingEnabled$ = UpdateAccountSendingEnabled$;
|
|
1271
3346
|
exports.UpdateAccountSendingEnabledCommand = UpdateAccountSendingEnabledCommand;
|
|
3347
|
+
exports.UpdateAccountSendingEnabledRequest$ = UpdateAccountSendingEnabledRequest$;
|
|
3348
|
+
exports.UpdateConfigurationSetEventDestination$ = UpdateConfigurationSetEventDestination$;
|
|
1272
3349
|
exports.UpdateConfigurationSetEventDestinationCommand = UpdateConfigurationSetEventDestinationCommand;
|
|
3350
|
+
exports.UpdateConfigurationSetEventDestinationRequest$ = UpdateConfigurationSetEventDestinationRequest$;
|
|
3351
|
+
exports.UpdateConfigurationSetEventDestinationResponse$ = UpdateConfigurationSetEventDestinationResponse$;
|
|
3352
|
+
exports.UpdateConfigurationSetReputationMetricsEnabled$ = UpdateConfigurationSetReputationMetricsEnabled$;
|
|
1273
3353
|
exports.UpdateConfigurationSetReputationMetricsEnabledCommand = UpdateConfigurationSetReputationMetricsEnabledCommand;
|
|
3354
|
+
exports.UpdateConfigurationSetReputationMetricsEnabledRequest$ = UpdateConfigurationSetReputationMetricsEnabledRequest$;
|
|
3355
|
+
exports.UpdateConfigurationSetSendingEnabled$ = UpdateConfigurationSetSendingEnabled$;
|
|
1274
3356
|
exports.UpdateConfigurationSetSendingEnabledCommand = UpdateConfigurationSetSendingEnabledCommand;
|
|
3357
|
+
exports.UpdateConfigurationSetSendingEnabledRequest$ = UpdateConfigurationSetSendingEnabledRequest$;
|
|
3358
|
+
exports.UpdateConfigurationSetTrackingOptions$ = UpdateConfigurationSetTrackingOptions$;
|
|
1275
3359
|
exports.UpdateConfigurationSetTrackingOptionsCommand = UpdateConfigurationSetTrackingOptionsCommand;
|
|
3360
|
+
exports.UpdateConfigurationSetTrackingOptionsRequest$ = UpdateConfigurationSetTrackingOptionsRequest$;
|
|
3361
|
+
exports.UpdateConfigurationSetTrackingOptionsResponse$ = UpdateConfigurationSetTrackingOptionsResponse$;
|
|
3362
|
+
exports.UpdateCustomVerificationEmailTemplate$ = UpdateCustomVerificationEmailTemplate$;
|
|
1276
3363
|
exports.UpdateCustomVerificationEmailTemplateCommand = UpdateCustomVerificationEmailTemplateCommand;
|
|
3364
|
+
exports.UpdateCustomVerificationEmailTemplateRequest$ = UpdateCustomVerificationEmailTemplateRequest$;
|
|
3365
|
+
exports.UpdateReceiptRule$ = UpdateReceiptRule$;
|
|
1277
3366
|
exports.UpdateReceiptRuleCommand = UpdateReceiptRuleCommand;
|
|
3367
|
+
exports.UpdateReceiptRuleRequest$ = UpdateReceiptRuleRequest$;
|
|
3368
|
+
exports.UpdateReceiptRuleResponse$ = UpdateReceiptRuleResponse$;
|
|
3369
|
+
exports.UpdateTemplate$ = UpdateTemplate$;
|
|
1278
3370
|
exports.UpdateTemplateCommand = UpdateTemplateCommand;
|
|
3371
|
+
exports.UpdateTemplateRequest$ = UpdateTemplateRequest$;
|
|
3372
|
+
exports.UpdateTemplateResponse$ = UpdateTemplateResponse$;
|
|
1279
3373
|
exports.VerificationStatus = VerificationStatus;
|
|
3374
|
+
exports.VerifyDomainDkim$ = VerifyDomainDkim$;
|
|
1280
3375
|
exports.VerifyDomainDkimCommand = VerifyDomainDkimCommand;
|
|
3376
|
+
exports.VerifyDomainDkimRequest$ = VerifyDomainDkimRequest$;
|
|
3377
|
+
exports.VerifyDomainDkimResponse$ = VerifyDomainDkimResponse$;
|
|
3378
|
+
exports.VerifyDomainIdentity$ = VerifyDomainIdentity$;
|
|
1281
3379
|
exports.VerifyDomainIdentityCommand = VerifyDomainIdentityCommand;
|
|
3380
|
+
exports.VerifyDomainIdentityRequest$ = VerifyDomainIdentityRequest$;
|
|
3381
|
+
exports.VerifyDomainIdentityResponse$ = VerifyDomainIdentityResponse$;
|
|
3382
|
+
exports.VerifyEmailAddress$ = VerifyEmailAddress$;
|
|
1282
3383
|
exports.VerifyEmailAddressCommand = VerifyEmailAddressCommand;
|
|
3384
|
+
exports.VerifyEmailAddressRequest$ = VerifyEmailAddressRequest$;
|
|
3385
|
+
exports.VerifyEmailIdentity$ = VerifyEmailIdentity$;
|
|
1283
3386
|
exports.VerifyEmailIdentityCommand = VerifyEmailIdentityCommand;
|
|
3387
|
+
exports.VerifyEmailIdentityRequest$ = VerifyEmailIdentityRequest$;
|
|
3388
|
+
exports.VerifyEmailIdentityResponse$ = VerifyEmailIdentityResponse$;
|
|
3389
|
+
exports.WorkmailAction$ = WorkmailAction$;
|
|
3390
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1284
3391
|
exports.paginateListCustomVerificationEmailTemplates = paginateListCustomVerificationEmailTemplates;
|
|
1285
3392
|
exports.paginateListIdentities = paginateListIdentities;
|
|
1286
3393
|
exports.waitForIdentityExists = waitForIdentityExists;
|
|
1287
3394
|
exports.waitUntilIdentityExists = waitUntilIdentityExists;
|
|
1288
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
1289
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1290
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1291
|
-
enumerable: true,
|
|
1292
|
-
value: schemas_0['__proto__']
|
|
1293
|
-
});
|
|
1294
|
-
|
|
1295
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
1296
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
1297
|
-
});
|
|
1298
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
1299
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
1300
|
-
Object.defineProperty(exports, '__proto__', {
|
|
1301
|
-
enumerable: true,
|
|
1302
|
-
value: errors['__proto__']
|
|
1303
|
-
});
|
|
1304
|
-
|
|
1305
|
-
Object.keys(errors).forEach(function (k) {
|
|
1306
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
1307
|
-
});
|