@cdklabs/cdk-ssm-documents 0.0.65 → 0.0.66
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 -11
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +2 -6
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +6 -11
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +56 -56
- package/node_modules/@aws-sdk/checksums/package.json +6 -6
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +449 -469
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +59 -91
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +814 -533
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +222 -242
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +35 -55
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +25 -29
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +33 -37
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +419 -275
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +9 -9
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +2875 -2885
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +6885 -4554
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
- package/node_modules/@aws-sdk/client-ec2/package.json +11 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +634 -654
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +71 -109
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +1006 -665
- package/node_modules/@aws-sdk/client-iam/package.json +10 -10
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +368 -386
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +229 -145
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +32 -36
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +959 -581
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +134 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +100 -31
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +5 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +28 -28
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +14 -14
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +72 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +21 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +32 -32
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -12
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +9 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +173 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +158 -158
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +88 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +33 -33
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +12 -12
- package/node_modules/@aws-sdk/client-s3/README.md +35 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +646 -535
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +106 -52
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +29 -33
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +43 -47
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +25 -29
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +1256 -740
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +12 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +12 -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/schemas/schemas_0.js +260 -100
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +42 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +29 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +925 -549
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +380 -2
- 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/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +98 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +30 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
- 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/models/enums.d.ts +18 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +41 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +138 -64
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +75 -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/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/package.json +20 -20
- package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +174 -194
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +69 -106
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +331 -218
- package/node_modules/@aws-sdk/client-sns/package.json +9 -9
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +118 -138
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +57 -88
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +31 -35
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +222 -150
- package/node_modules/@aws-sdk/client-sqs/package.json +15 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +543 -563
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +279 -423
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +1693 -1109
- package/node_modules/@aws-sdk/client-ssm/package.json +9 -9
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +45 -50
- 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.browser.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +327 -52
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +19 -21
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +107 -109
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
- package/node_modules/@aws-sdk/core/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +3 -7
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +12 -16
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +16 -21
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +14 -18
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +1 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +2 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +2 -7
- package/node_modules/@aws-sdk/credential-provider-http/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -41
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
- package/node_modules/@aws-sdk/credential-provider-login/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +22 -24
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +10 -14
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +2 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +3 -27
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -518
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +31 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +37 -39
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +14 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -5
- 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 +82 -84
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +158 -119
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +99 -101
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +70 -35
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.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-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- 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/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- 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/package.json +9 -8
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/package.json +4 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +4 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +2 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +4 -7
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +2 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +7 -10
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/package.json +5 -4
- package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +518 -371
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +10 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +326 -269
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +192 -103
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/package.json +1 -1
- package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +2 -2
- package/node_modules/anynum/package.json +2 -2
- package/node_modules/path-expression-matcher/README.md +82 -7
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
- package/node_modules/path-expression-matcher/package.json +3 -2
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
- package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
- package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
- package/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +0 -34
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +0 -39
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetQueueUrlRequest$ = exports.GetQueueAttributesResult$ = exports.GetQueueAttributesRequest$ = exports.DeleteQueueRequest$ = exports.DeleteMessageRequest$ = exports.DeleteMessageBatchResultEntry$ = exports.DeleteMessageBatchResult$ = exports.DeleteMessageBatchRequestEntry$ = exports.DeleteMessageBatchRequest$ = exports.CreateQueueResult$ = exports.CreateQueueRequest$ = exports.ChangeMessageVisibilityRequest$ = exports.ChangeMessageVisibilityBatchResultEntry$ = exports.ChangeMessageVisibilityBatchResult$ = exports.ChangeMessageVisibilityBatchRequestEntry$ = exports.ChangeMessageVisibilityBatchRequest$ = exports.CancelMessageMoveTaskResult$ = exports.CancelMessageMoveTaskRequest$ = exports.BatchResultErrorEntry$ = exports.AddPermissionRequest$ = exports.errorTypeRegistries = exports.UnsupportedOperation$ = exports.TooManyEntriesInBatchRequest$ = exports.ResourceNotFoundException$ = exports.RequestThrottled$ = exports.ReceiptHandleIsInvalid$ = exports.QueueNameExists$ = exports.QueueDoesNotExist$ = exports.QueueDeletedRecently$ = exports.PurgeQueueInProgress$ = exports.OverLimit$ = exports.MessageNotInflight$ = exports.KmsThrottled$ = exports.KmsOptInRequired$ = exports.KmsNotFound$ = exports.KmsInvalidState$ = exports.KmsInvalidKeyUsage$ = exports.KmsDisabled$ = exports.KmsAccessDenied$ = exports.InvalidSecurity$ = exports.InvalidMessageContents$ = exports.InvalidIdFormat$ = exports.InvalidBatchEntryId$ = exports.InvalidAttributeValue$ = exports.InvalidAttributeName$ = exports.InvalidAddress$ = exports.EmptyBatchRequest$ = exports.BatchRequestTooLong$ = exports.BatchEntryIdsNotDistinct$ = exports.SQSServiceException$ = void 0;
|
|
4
|
-
exports.TagQueue$ = exports.StartMessageMoveTask$ = exports.SetQueueAttributes$ = exports.SendMessageBatch$ = exports.SendMessage$ = exports.RemovePermission$ = exports.ReceiveMessage$ = exports.PurgeQueue$ = exports.ListQueueTags$ = exports.ListQueues$ = exports.ListMessageMoveTasks$ = exports.ListDeadLetterSourceQueues$ = exports.GetQueueUrl$ = exports.GetQueueAttributes$ = exports.DeleteQueue$ = exports.DeleteMessageBatch$ = exports.DeleteMessage$ = exports.CreateQueue$ = exports.ChangeMessageVisibilityBatch$ = exports.ChangeMessageVisibility$ = exports.CancelMessageMoveTask$ = exports.AddPermission$ = exports.UntagQueueRequest$ = exports.TagQueueRequest$ = exports.StartMessageMoveTaskResult$ = exports.StartMessageMoveTaskRequest$ = exports.SetQueueAttributesRequest$ = exports.SendMessageResult$ = exports.SendMessageRequest$ = exports.SendMessageBatchResultEntry$ = exports.SendMessageBatchResult$ = exports.SendMessageBatchRequestEntry$ = exports.SendMessageBatchRequest$ = exports.RemovePermissionRequest$ = exports.ReceiveMessageResult$ = exports.ReceiveMessageRequest$ = exports.PurgeQueueRequest$ = exports.MessageSystemAttributeValue$ = exports.MessageAttributeValue$ = exports.Message$ = exports.ListQueueTagsResult$ = exports.ListQueueTagsRequest$ = exports.ListQueuesResult$ = exports.ListQueuesRequest$ = exports.ListMessageMoveTasksResultEntry$ = exports.ListMessageMoveTasksResult$ = exports.ListMessageMoveTasksRequest$ = exports.ListDeadLetterSourceQueuesResult$ = exports.ListDeadLetterSourceQueuesRequest$ = exports.GetQueueUrlResult$ = void 0;
|
|
5
|
-
exports.UntagQueue$ = void 0;
|
|
6
1
|
const _A = "Actions";
|
|
7
2
|
const _AN = "ActionName";
|
|
8
3
|
const _ANOMM = "ApproximateNumberOfMessagesMoved";
|
|
@@ -199,464 +194,541 @@ const _t = "tags";
|
|
|
199
194
|
const _xF = "xmlFlattened";
|
|
200
195
|
const _xN = "xmlName";
|
|
201
196
|
const n0 = "com.amazonaws.sqs";
|
|
202
|
-
const
|
|
203
|
-
const
|
|
204
|
-
const
|
|
205
|
-
const _s_registry =
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
197
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
198
|
+
const { BatchEntryIdsNotDistinct, BatchRequestTooLong, EmptyBatchRequest, InvalidAddress, InvalidAttributeName, InvalidAttributeValue, InvalidBatchEntryId, InvalidIdFormat, InvalidMessageContents, InvalidSecurity, KmsAccessDenied, KmsDisabled, KmsInvalidKeyUsage, KmsInvalidState, KmsNotFound, KmsOptInRequired, KmsThrottled, MessageNotInflight, OverLimit, PurgeQueueInProgress, QueueDeletedRecently, QueueDoesNotExist, QueueNameExists, ReceiptHandleIsInvalid, RequestThrottled, ResourceNotFoundException, TooManyEntriesInBatchRequest, UnsupportedOperation } = require("../models/errors");
|
|
199
|
+
const { SQSServiceException } = require("../models/SQSServiceException");
|
|
200
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
201
|
+
const SQSServiceException$ = [-3, _s, "SQSServiceException", 0, [], []];
|
|
202
|
+
exports.SQSServiceException$ = SQSServiceException$;
|
|
203
|
+
_s_registry.registerError(SQSServiceException$, SQSServiceException);
|
|
204
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
205
|
+
const BatchEntryIdsNotDistinct$ = [-3, n0, _BEIND,
|
|
210
206
|
{ [_aQE]: [`AWS.SimpleQueueService.BatchEntryIdsNotDistinct`, 400], [_e]: _c, [_hE]: 400 },
|
|
211
207
|
[_m],
|
|
212
208
|
[0]
|
|
213
209
|
];
|
|
214
|
-
|
|
215
|
-
|
|
210
|
+
exports.BatchEntryIdsNotDistinct$ = BatchEntryIdsNotDistinct$;
|
|
211
|
+
n0_registry.registerError(BatchEntryIdsNotDistinct$, BatchEntryIdsNotDistinct);
|
|
212
|
+
const BatchRequestTooLong$ = [-3, n0, _BRTL,
|
|
216
213
|
{ [_aQE]: [`AWS.SimpleQueueService.BatchRequestTooLong`, 400], [_e]: _c, [_hE]: 400 },
|
|
217
214
|
[_m],
|
|
218
215
|
[0]
|
|
219
216
|
];
|
|
220
|
-
|
|
221
|
-
|
|
217
|
+
exports.BatchRequestTooLong$ = BatchRequestTooLong$;
|
|
218
|
+
n0_registry.registerError(BatchRequestTooLong$, BatchRequestTooLong);
|
|
219
|
+
const EmptyBatchRequest$ = [-3, n0, _EBR,
|
|
222
220
|
{ [_aQE]: [`AWS.SimpleQueueService.EmptyBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
223
221
|
[_m],
|
|
224
222
|
[0]
|
|
225
223
|
];
|
|
226
|
-
|
|
227
|
-
|
|
224
|
+
exports.EmptyBatchRequest$ = EmptyBatchRequest$;
|
|
225
|
+
n0_registry.registerError(EmptyBatchRequest$, EmptyBatchRequest);
|
|
226
|
+
const InvalidAddress$ = [-3, n0, _IA,
|
|
228
227
|
{ [_aQE]: [`InvalidAddress`, 404], [_e]: _c, [_hE]: 404 },
|
|
229
228
|
[_m],
|
|
230
229
|
[0]
|
|
231
230
|
];
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
exports.InvalidAddress$ = InvalidAddress$;
|
|
232
|
+
n0_registry.registerError(InvalidAddress$, InvalidAddress);
|
|
233
|
+
const InvalidAttributeName$ = [-3, n0, _IAN,
|
|
234
234
|
{ [_e]: _c },
|
|
235
235
|
[_m],
|
|
236
236
|
[0]
|
|
237
237
|
];
|
|
238
|
-
|
|
239
|
-
|
|
238
|
+
exports.InvalidAttributeName$ = InvalidAttributeName$;
|
|
239
|
+
n0_registry.registerError(InvalidAttributeName$, InvalidAttributeName);
|
|
240
|
+
const InvalidAttributeValue$ = [-3, n0, _IAV,
|
|
240
241
|
{ [_e]: _c },
|
|
241
242
|
[_m],
|
|
242
243
|
[0]
|
|
243
244
|
];
|
|
244
|
-
|
|
245
|
-
|
|
245
|
+
exports.InvalidAttributeValue$ = InvalidAttributeValue$;
|
|
246
|
+
n0_registry.registerError(InvalidAttributeValue$, InvalidAttributeValue);
|
|
247
|
+
const InvalidBatchEntryId$ = [-3, n0, _IBEI,
|
|
246
248
|
{ [_aQE]: [`AWS.SimpleQueueService.InvalidBatchEntryId`, 400], [_e]: _c, [_hE]: 400 },
|
|
247
249
|
[_m],
|
|
248
250
|
[0]
|
|
249
251
|
];
|
|
250
|
-
|
|
251
|
-
|
|
252
|
+
exports.InvalidBatchEntryId$ = InvalidBatchEntryId$;
|
|
253
|
+
n0_registry.registerError(InvalidBatchEntryId$, InvalidBatchEntryId);
|
|
254
|
+
const InvalidIdFormat$ = [-3, n0, _IIF,
|
|
252
255
|
{ [_e]: _c },
|
|
253
256
|
[],
|
|
254
257
|
[]
|
|
255
258
|
];
|
|
256
|
-
|
|
257
|
-
|
|
259
|
+
exports.InvalidIdFormat$ = InvalidIdFormat$;
|
|
260
|
+
n0_registry.registerError(InvalidIdFormat$, InvalidIdFormat);
|
|
261
|
+
const InvalidMessageContents$ = [-3, n0, _IMC,
|
|
258
262
|
{ [_e]: _c },
|
|
259
263
|
[_m],
|
|
260
264
|
[0]
|
|
261
265
|
];
|
|
262
|
-
|
|
263
|
-
|
|
266
|
+
exports.InvalidMessageContents$ = InvalidMessageContents$;
|
|
267
|
+
n0_registry.registerError(InvalidMessageContents$, InvalidMessageContents);
|
|
268
|
+
const InvalidSecurity$ = [-3, n0, _IS,
|
|
264
269
|
{ [_aQE]: [`InvalidSecurity`, 403], [_e]: _c, [_hE]: 403 },
|
|
265
270
|
[_m],
|
|
266
271
|
[0]
|
|
267
272
|
];
|
|
268
|
-
|
|
269
|
-
|
|
273
|
+
exports.InvalidSecurity$ = InvalidSecurity$;
|
|
274
|
+
n0_registry.registerError(InvalidSecurity$, InvalidSecurity);
|
|
275
|
+
const KmsAccessDenied$ = [-3, n0, _KAD,
|
|
270
276
|
{ [_aQE]: [`KMS.AccessDeniedException`, 400], [_e]: _c, [_hE]: 400 },
|
|
271
277
|
[_m],
|
|
272
278
|
[0]
|
|
273
279
|
];
|
|
274
|
-
|
|
275
|
-
|
|
280
|
+
exports.KmsAccessDenied$ = KmsAccessDenied$;
|
|
281
|
+
n0_registry.registerError(KmsAccessDenied$, KmsAccessDenied);
|
|
282
|
+
const KmsDisabled$ = [-3, n0, _KD,
|
|
276
283
|
{ [_aQE]: [`KMS.DisabledException`, 400], [_e]: _c, [_hE]: 400 },
|
|
277
284
|
[_m],
|
|
278
285
|
[0]
|
|
279
286
|
];
|
|
280
|
-
|
|
281
|
-
|
|
287
|
+
exports.KmsDisabled$ = KmsDisabled$;
|
|
288
|
+
n0_registry.registerError(KmsDisabled$, KmsDisabled);
|
|
289
|
+
const KmsInvalidKeyUsage$ = [-3, n0, _KIKU,
|
|
282
290
|
{ [_aQE]: [`KMS.InvalidKeyUsageException`, 400], [_e]: _c, [_hE]: 400 },
|
|
283
291
|
[_m],
|
|
284
292
|
[0]
|
|
285
293
|
];
|
|
286
|
-
|
|
287
|
-
|
|
294
|
+
exports.KmsInvalidKeyUsage$ = KmsInvalidKeyUsage$;
|
|
295
|
+
n0_registry.registerError(KmsInvalidKeyUsage$, KmsInvalidKeyUsage);
|
|
296
|
+
const KmsInvalidState$ = [-3, n0, _KIS,
|
|
288
297
|
{ [_aQE]: [`KMS.InvalidStateException`, 400], [_e]: _c, [_hE]: 400 },
|
|
289
298
|
[_m],
|
|
290
299
|
[0]
|
|
291
300
|
];
|
|
292
|
-
|
|
293
|
-
|
|
301
|
+
exports.KmsInvalidState$ = KmsInvalidState$;
|
|
302
|
+
n0_registry.registerError(KmsInvalidState$, KmsInvalidState);
|
|
303
|
+
const KmsNotFound$ = [-3, n0, _KNF,
|
|
294
304
|
{ [_aQE]: [`KMS.NotFoundException`, 400], [_e]: _c, [_hE]: 400 },
|
|
295
305
|
[_m],
|
|
296
306
|
[0]
|
|
297
307
|
];
|
|
298
|
-
|
|
299
|
-
|
|
308
|
+
exports.KmsNotFound$ = KmsNotFound$;
|
|
309
|
+
n0_registry.registerError(KmsNotFound$, KmsNotFound);
|
|
310
|
+
const KmsOptInRequired$ = [-3, n0, _KOIR,
|
|
300
311
|
{ [_aQE]: [`KMS.OptInRequired`, 403], [_e]: _c, [_hE]: 403 },
|
|
301
312
|
[_m],
|
|
302
313
|
[0]
|
|
303
314
|
];
|
|
304
|
-
|
|
305
|
-
|
|
315
|
+
exports.KmsOptInRequired$ = KmsOptInRequired$;
|
|
316
|
+
n0_registry.registerError(KmsOptInRequired$, KmsOptInRequired);
|
|
317
|
+
const KmsThrottled$ = [-3, n0, _KT,
|
|
306
318
|
{ [_aQE]: [`KMS.ThrottlingException`, 400], [_e]: _c, [_hE]: 400 },
|
|
307
319
|
[_m],
|
|
308
320
|
[0]
|
|
309
321
|
];
|
|
310
|
-
|
|
311
|
-
|
|
322
|
+
exports.KmsThrottled$ = KmsThrottled$;
|
|
323
|
+
n0_registry.registerError(KmsThrottled$, KmsThrottled);
|
|
324
|
+
const MessageNotInflight$ = [-3, n0, _MNI,
|
|
312
325
|
{ [_aQE]: [`AWS.SimpleQueueService.MessageNotInflight`, 400], [_e]: _c, [_hE]: 400 },
|
|
313
326
|
[],
|
|
314
327
|
[]
|
|
315
328
|
];
|
|
316
|
-
|
|
317
|
-
|
|
329
|
+
exports.MessageNotInflight$ = MessageNotInflight$;
|
|
330
|
+
n0_registry.registerError(MessageNotInflight$, MessageNotInflight);
|
|
331
|
+
const OverLimit$ = [-3, n0, _OL,
|
|
318
332
|
{ [_aQE]: [`OverLimit`, 403], [_e]: _c, [_hE]: 403 },
|
|
319
333
|
[_m],
|
|
320
334
|
[0]
|
|
321
335
|
];
|
|
322
|
-
|
|
323
|
-
|
|
336
|
+
exports.OverLimit$ = OverLimit$;
|
|
337
|
+
n0_registry.registerError(OverLimit$, OverLimit);
|
|
338
|
+
const PurgeQueueInProgress$ = [-3, n0, _PQIP,
|
|
324
339
|
{ [_aQE]: [`AWS.SimpleQueueService.PurgeQueueInProgress`, 403], [_e]: _c, [_hE]: 403 },
|
|
325
340
|
[_m],
|
|
326
341
|
[0]
|
|
327
342
|
];
|
|
328
|
-
|
|
329
|
-
|
|
343
|
+
exports.PurgeQueueInProgress$ = PurgeQueueInProgress$;
|
|
344
|
+
n0_registry.registerError(PurgeQueueInProgress$, PurgeQueueInProgress);
|
|
345
|
+
const QueueDeletedRecently$ = [-3, n0, _QDR,
|
|
330
346
|
{ [_aQE]: [`AWS.SimpleQueueService.QueueDeletedRecently`, 400], [_e]: _c, [_hE]: 400 },
|
|
331
347
|
[_m],
|
|
332
348
|
[0]
|
|
333
349
|
];
|
|
334
|
-
|
|
335
|
-
|
|
350
|
+
exports.QueueDeletedRecently$ = QueueDeletedRecently$;
|
|
351
|
+
n0_registry.registerError(QueueDeletedRecently$, QueueDeletedRecently);
|
|
352
|
+
const QueueDoesNotExist$ = [-3, n0, _QDNE,
|
|
336
353
|
{ [_aQE]: [`AWS.SimpleQueueService.NonExistentQueue`, 400], [_e]: _c, [_hE]: 400 },
|
|
337
354
|
[_m],
|
|
338
355
|
[0]
|
|
339
356
|
];
|
|
340
|
-
|
|
341
|
-
|
|
357
|
+
exports.QueueDoesNotExist$ = QueueDoesNotExist$;
|
|
358
|
+
n0_registry.registerError(QueueDoesNotExist$, QueueDoesNotExist);
|
|
359
|
+
const QueueNameExists$ = [-3, n0, _QNE,
|
|
342
360
|
{ [_aQE]: [`QueueAlreadyExists`, 400], [_e]: _c, [_hE]: 400 },
|
|
343
361
|
[_m],
|
|
344
362
|
[0]
|
|
345
363
|
];
|
|
346
|
-
|
|
347
|
-
|
|
364
|
+
exports.QueueNameExists$ = QueueNameExists$;
|
|
365
|
+
n0_registry.registerError(QueueNameExists$, QueueNameExists);
|
|
366
|
+
const ReceiptHandleIsInvalid$ = [-3, n0, _RHII,
|
|
348
367
|
{ [_aQE]: [`ReceiptHandleIsInvalid`, 404], [_e]: _c, [_hE]: 404 },
|
|
349
368
|
[_m],
|
|
350
369
|
[0]
|
|
351
370
|
];
|
|
352
|
-
|
|
353
|
-
|
|
371
|
+
exports.ReceiptHandleIsInvalid$ = ReceiptHandleIsInvalid$;
|
|
372
|
+
n0_registry.registerError(ReceiptHandleIsInvalid$, ReceiptHandleIsInvalid);
|
|
373
|
+
const RequestThrottled$ = [-3, n0, _RT,
|
|
354
374
|
{ [_aQE]: [`RequestThrottled`, 403], [_e]: _c, [_hE]: 403 },
|
|
355
375
|
[_m],
|
|
356
376
|
[0]
|
|
357
377
|
];
|
|
358
|
-
|
|
359
|
-
|
|
378
|
+
exports.RequestThrottled$ = RequestThrottled$;
|
|
379
|
+
n0_registry.registerError(RequestThrottled$, RequestThrottled);
|
|
380
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
360
381
|
{ [_aQE]: [`ResourceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
361
382
|
[_m],
|
|
362
383
|
[0]
|
|
363
384
|
];
|
|
364
|
-
|
|
365
|
-
|
|
385
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
386
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
387
|
+
const TooManyEntriesInBatchRequest$ = [-3, n0, _TMEIBR,
|
|
366
388
|
{ [_aQE]: [`AWS.SimpleQueueService.TooManyEntriesInBatchRequest`, 400], [_e]: _c, [_hE]: 400 },
|
|
367
389
|
[_m],
|
|
368
390
|
[0]
|
|
369
391
|
];
|
|
370
|
-
|
|
371
|
-
|
|
392
|
+
exports.TooManyEntriesInBatchRequest$ = TooManyEntriesInBatchRequest$;
|
|
393
|
+
n0_registry.registerError(TooManyEntriesInBatchRequest$, TooManyEntriesInBatchRequest);
|
|
394
|
+
const UnsupportedOperation$ = [-3, n0, _UO,
|
|
372
395
|
{ [_aQE]: [`AWS.SimpleQueueService.UnsupportedOperation`, 400], [_e]: _c, [_hE]: 400 },
|
|
373
396
|
[_m],
|
|
374
397
|
[0]
|
|
375
398
|
];
|
|
376
|
-
|
|
399
|
+
exports.UnsupportedOperation$ = UnsupportedOperation$;
|
|
400
|
+
n0_registry.registerError(UnsupportedOperation$, UnsupportedOperation);
|
|
377
401
|
exports.errorTypeRegistries = [
|
|
378
402
|
_s_registry,
|
|
379
403
|
n0_registry,
|
|
380
404
|
];
|
|
381
|
-
|
|
405
|
+
const AddPermissionRequest$ = [3, n0, _APR,
|
|
382
406
|
0,
|
|
383
407
|
[_QU, _L, _AWSAI, _A],
|
|
384
408
|
[0, 0, [64 | 0, { [_xF]: 1, [_xN]: _AWSAIc }], [64 | 0, { [_xF]: 1, [_xN]: _AN }]], 4
|
|
385
409
|
];
|
|
386
|
-
exports.
|
|
410
|
+
exports.AddPermissionRequest$ = AddPermissionRequest$;
|
|
411
|
+
const BatchResultErrorEntry$ = [3, n0, _BREE,
|
|
387
412
|
0,
|
|
388
413
|
[_I, _SF, _C, _M],
|
|
389
414
|
[0, 2, 0, 0], 3
|
|
390
415
|
];
|
|
391
|
-
exports.
|
|
416
|
+
exports.BatchResultErrorEntry$ = BatchResultErrorEntry$;
|
|
417
|
+
const CancelMessageMoveTaskRequest$ = [3, n0, _CMMTR,
|
|
392
418
|
0,
|
|
393
419
|
[_TH],
|
|
394
420
|
[0], 1
|
|
395
421
|
];
|
|
396
|
-
exports.
|
|
422
|
+
exports.CancelMessageMoveTaskRequest$ = CancelMessageMoveTaskRequest$;
|
|
423
|
+
const CancelMessageMoveTaskResult$ = [3, n0, _CMMTRa,
|
|
397
424
|
0,
|
|
398
425
|
[_ANOMM],
|
|
399
426
|
[1]
|
|
400
427
|
];
|
|
401
|
-
exports.
|
|
428
|
+
exports.CancelMessageMoveTaskResult$ = CancelMessageMoveTaskResult$;
|
|
429
|
+
const ChangeMessageVisibilityBatchRequest$ = [3, n0, _CMVBR,
|
|
402
430
|
0,
|
|
403
431
|
[_QU, _E],
|
|
404
432
|
[0, [() => ChangeMessageVisibilityBatchRequestEntryList, { [_xF]: 1, [_xN]: _CMVBRE }]], 2
|
|
405
433
|
];
|
|
406
|
-
exports.
|
|
434
|
+
exports.ChangeMessageVisibilityBatchRequest$ = ChangeMessageVisibilityBatchRequest$;
|
|
435
|
+
const ChangeMessageVisibilityBatchRequestEntry$ = [3, n0, _CMVBRE,
|
|
407
436
|
0,
|
|
408
437
|
[_I, _RH, _VT],
|
|
409
438
|
[0, 0, 1], 2
|
|
410
439
|
];
|
|
411
|
-
exports.
|
|
440
|
+
exports.ChangeMessageVisibilityBatchRequestEntry$ = ChangeMessageVisibilityBatchRequestEntry$;
|
|
441
|
+
const ChangeMessageVisibilityBatchResult$ = [3, n0, _CMVBRh,
|
|
412
442
|
0,
|
|
413
443
|
[_S, _F],
|
|
414
444
|
[[() => ChangeMessageVisibilityBatchResultEntryList, { [_xF]: 1, [_xN]: _CMVBREh }], [() => BatchResultErrorEntryList, { [_xF]: 1, [_xN]: _BREE }]], 2
|
|
415
445
|
];
|
|
416
|
-
exports.
|
|
446
|
+
exports.ChangeMessageVisibilityBatchResult$ = ChangeMessageVisibilityBatchResult$;
|
|
447
|
+
const ChangeMessageVisibilityBatchResultEntry$ = [3, n0, _CMVBREh,
|
|
417
448
|
0,
|
|
418
449
|
[_I],
|
|
419
450
|
[0], 1
|
|
420
451
|
];
|
|
421
|
-
exports.
|
|
452
|
+
exports.ChangeMessageVisibilityBatchResultEntry$ = ChangeMessageVisibilityBatchResultEntry$;
|
|
453
|
+
const ChangeMessageVisibilityRequest$ = [3, n0, _CMVR,
|
|
422
454
|
0,
|
|
423
455
|
[_QU, _RH, _VT],
|
|
424
456
|
[0, 0, 1], 3
|
|
425
457
|
];
|
|
426
|
-
exports.
|
|
458
|
+
exports.ChangeMessageVisibilityRequest$ = ChangeMessageVisibilityRequest$;
|
|
459
|
+
const CreateQueueRequest$ = [3, n0, _CQR,
|
|
427
460
|
0,
|
|
428
461
|
[_QN, _At, _t],
|
|
429
462
|
[0, [() => QueueAttributeMap, { [_xF]: 1, [_xN]: _Att }], [() => TagMap, { [_xF]: 1, [_xN]: _T }]], 1
|
|
430
463
|
];
|
|
431
|
-
exports.
|
|
464
|
+
exports.CreateQueueRequest$ = CreateQueueRequest$;
|
|
465
|
+
const CreateQueueResult$ = [3, n0, _CQRr,
|
|
432
466
|
0,
|
|
433
467
|
[_QU],
|
|
434
468
|
[0]
|
|
435
469
|
];
|
|
436
|
-
exports.
|
|
470
|
+
exports.CreateQueueResult$ = CreateQueueResult$;
|
|
471
|
+
const DeleteMessageBatchRequest$ = [3, n0, _DMBR,
|
|
437
472
|
0,
|
|
438
473
|
[_QU, _E],
|
|
439
474
|
[0, [() => DeleteMessageBatchRequestEntryList, { [_xF]: 1, [_xN]: _DMBRE }]], 2
|
|
440
475
|
];
|
|
441
|
-
exports.
|
|
476
|
+
exports.DeleteMessageBatchRequest$ = DeleteMessageBatchRequest$;
|
|
477
|
+
const DeleteMessageBatchRequestEntry$ = [3, n0, _DMBRE,
|
|
442
478
|
0,
|
|
443
479
|
[_I, _RH],
|
|
444
480
|
[0, 0], 2
|
|
445
481
|
];
|
|
446
|
-
exports.
|
|
482
|
+
exports.DeleteMessageBatchRequestEntry$ = DeleteMessageBatchRequestEntry$;
|
|
483
|
+
const DeleteMessageBatchResult$ = [3, n0, _DMBRe,
|
|
447
484
|
0,
|
|
448
485
|
[_S, _F],
|
|
449
486
|
[[() => DeleteMessageBatchResultEntryList, { [_xF]: 1, [_xN]: _DMBREe }], [() => BatchResultErrorEntryList, { [_xF]: 1, [_xN]: _BREE }]], 2
|
|
450
487
|
];
|
|
451
|
-
exports.
|
|
488
|
+
exports.DeleteMessageBatchResult$ = DeleteMessageBatchResult$;
|
|
489
|
+
const DeleteMessageBatchResultEntry$ = [3, n0, _DMBREe,
|
|
452
490
|
0,
|
|
453
491
|
[_I],
|
|
454
492
|
[0], 1
|
|
455
493
|
];
|
|
456
|
-
exports.
|
|
494
|
+
exports.DeleteMessageBatchResultEntry$ = DeleteMessageBatchResultEntry$;
|
|
495
|
+
const DeleteMessageRequest$ = [3, n0, _DMR,
|
|
457
496
|
0,
|
|
458
497
|
[_QU, _RH],
|
|
459
498
|
[0, 0], 2
|
|
460
499
|
];
|
|
461
|
-
exports.
|
|
500
|
+
exports.DeleteMessageRequest$ = DeleteMessageRequest$;
|
|
501
|
+
const DeleteQueueRequest$ = [3, n0, _DQR,
|
|
462
502
|
0,
|
|
463
503
|
[_QU],
|
|
464
504
|
[0], 1
|
|
465
505
|
];
|
|
466
|
-
exports.
|
|
506
|
+
exports.DeleteQueueRequest$ = DeleteQueueRequest$;
|
|
507
|
+
const GetQueueAttributesRequest$ = [3, n0, _GQAR,
|
|
467
508
|
0,
|
|
468
509
|
[_QU, _ANt],
|
|
469
510
|
[0, [64 | 0, { [_xF]: 1, [_xN]: _ANtt }]], 1
|
|
470
511
|
];
|
|
471
|
-
exports.
|
|
512
|
+
exports.GetQueueAttributesRequest$ = GetQueueAttributesRequest$;
|
|
513
|
+
const GetQueueAttributesResult$ = [3, n0, _GQARe,
|
|
472
514
|
0,
|
|
473
515
|
[_At],
|
|
474
516
|
[[() => QueueAttributeMap, { [_xF]: 1, [_xN]: _Att }]]
|
|
475
517
|
];
|
|
476
|
-
exports.
|
|
518
|
+
exports.GetQueueAttributesResult$ = GetQueueAttributesResult$;
|
|
519
|
+
const GetQueueUrlRequest$ = [3, n0, _GQUR,
|
|
477
520
|
0,
|
|
478
521
|
[_QN, _QOAWSAI],
|
|
479
522
|
[0, 0], 1
|
|
480
523
|
];
|
|
481
|
-
exports.
|
|
524
|
+
exports.GetQueueUrlRequest$ = GetQueueUrlRequest$;
|
|
525
|
+
const GetQueueUrlResult$ = [3, n0, _GQURe,
|
|
482
526
|
0,
|
|
483
527
|
[_QU],
|
|
484
528
|
[0]
|
|
485
529
|
];
|
|
486
|
-
exports.
|
|
530
|
+
exports.GetQueueUrlResult$ = GetQueueUrlResult$;
|
|
531
|
+
const ListDeadLetterSourceQueuesRequest$ = [3, n0, _LDLSQR,
|
|
487
532
|
0,
|
|
488
533
|
[_QU, _NT, _MR],
|
|
489
534
|
[0, 0, 1], 1
|
|
490
535
|
];
|
|
491
|
-
exports.
|
|
536
|
+
exports.ListDeadLetterSourceQueuesRequest$ = ListDeadLetterSourceQueuesRequest$;
|
|
537
|
+
const ListDeadLetterSourceQueuesResult$ = [3, n0, _LDLSQRi,
|
|
492
538
|
0,
|
|
493
539
|
[_qU, _NT],
|
|
494
540
|
[[64 | 0, { [_xF]: 1, [_xN]: _QU }], 0], 1
|
|
495
541
|
];
|
|
496
|
-
exports.
|
|
542
|
+
exports.ListDeadLetterSourceQueuesResult$ = ListDeadLetterSourceQueuesResult$;
|
|
543
|
+
const ListMessageMoveTasksRequest$ = [3, n0, _LMMTR,
|
|
497
544
|
0,
|
|
498
545
|
[_SA, _MR],
|
|
499
546
|
[0, 1], 1
|
|
500
547
|
];
|
|
501
|
-
exports.
|
|
548
|
+
exports.ListMessageMoveTasksRequest$ = ListMessageMoveTasksRequest$;
|
|
549
|
+
const ListMessageMoveTasksResult$ = [3, n0, _LMMTRi,
|
|
502
550
|
{ [_xN]: _LMMTRi },
|
|
503
551
|
[_R],
|
|
504
552
|
[[() => ListMessageMoveTasksResultEntryList, { [_xF]: 1, [_xN]: _LMMTRE }]]
|
|
505
553
|
];
|
|
506
|
-
exports.
|
|
554
|
+
exports.ListMessageMoveTasksResult$ = ListMessageMoveTasksResult$;
|
|
555
|
+
const ListMessageMoveTasksResultEntry$ = [3, n0, _LMMTRE,
|
|
507
556
|
0,
|
|
508
557
|
[_TH, _St, _SA, _DA, _MNOMPS, _ANOMM, _ANOMTM, _FR, _ST],
|
|
509
558
|
[0, 0, 0, 0, 1, 1, 1, 0, 1]
|
|
510
559
|
];
|
|
511
|
-
exports.
|
|
560
|
+
exports.ListMessageMoveTasksResultEntry$ = ListMessageMoveTasksResultEntry$;
|
|
561
|
+
const ListQueuesRequest$ = [3, n0, _LQR,
|
|
512
562
|
0,
|
|
513
563
|
[_QNP, _NT, _MR],
|
|
514
564
|
[0, 0, 1]
|
|
515
565
|
];
|
|
516
|
-
exports.
|
|
566
|
+
exports.ListQueuesRequest$ = ListQueuesRequest$;
|
|
567
|
+
const ListQueuesResult$ = [3, n0, _LQRi,
|
|
517
568
|
0,
|
|
518
569
|
[_QUu, _NT],
|
|
519
570
|
[[64 | 0, { [_xF]: 1, [_xN]: _QU }], 0]
|
|
520
571
|
];
|
|
521
|
-
exports.
|
|
572
|
+
exports.ListQueuesResult$ = ListQueuesResult$;
|
|
573
|
+
const ListQueueTagsRequest$ = [3, n0, _LQTR,
|
|
522
574
|
0,
|
|
523
575
|
[_QU],
|
|
524
576
|
[0], 1
|
|
525
577
|
];
|
|
526
|
-
exports.
|
|
578
|
+
exports.ListQueueTagsRequest$ = ListQueueTagsRequest$;
|
|
579
|
+
const ListQueueTagsResult$ = [3, n0, _LQTRi,
|
|
527
580
|
0,
|
|
528
581
|
[_Ta],
|
|
529
582
|
[[() => TagMap, { [_xF]: 1, [_xN]: _T }]]
|
|
530
583
|
];
|
|
531
|
-
exports.
|
|
584
|
+
exports.ListQueueTagsResult$ = ListQueueTagsResult$;
|
|
585
|
+
const Message$ = [3, n0, _M,
|
|
532
586
|
0,
|
|
533
587
|
[_MI, _RH, _MDOB, _B, _At, _MDOMA, _MA],
|
|
534
588
|
[0, 0, 0, 0, [() => MessageSystemAttributeMap, { [_xF]: 1, [_xN]: _Att }], 0, [() => MessageBodyAttributeMap, { [_xF]: 1, [_xN]: _MAe }]]
|
|
535
589
|
];
|
|
536
|
-
exports.
|
|
590
|
+
exports.Message$ = Message$;
|
|
591
|
+
const MessageAttributeValue$ = [3, n0, _MAV,
|
|
537
592
|
0,
|
|
538
593
|
[_DT, _SV, _BV, _SLV, _BLV],
|
|
539
594
|
[0, 0, 21, [() => StringList, { [_xF]: 1, [_xN]: _SLVt }], [() => BinaryList, { [_xF]: 1, [_xN]: _BLVi }]], 1
|
|
540
595
|
];
|
|
541
|
-
exports.
|
|
596
|
+
exports.MessageAttributeValue$ = MessageAttributeValue$;
|
|
597
|
+
const MessageSystemAttributeValue$ = [3, n0, _MSAV,
|
|
542
598
|
0,
|
|
543
599
|
[_DT, _SV, _BV, _SLV, _BLV],
|
|
544
600
|
[0, 0, 21, [() => StringList, { [_xF]: 1, [_xN]: _SLVt }], [() => BinaryList, { [_xF]: 1, [_xN]: _BLVi }]], 1
|
|
545
601
|
];
|
|
546
|
-
exports.
|
|
602
|
+
exports.MessageSystemAttributeValue$ = MessageSystemAttributeValue$;
|
|
603
|
+
const PurgeQueueRequest$ = [3, n0, _PQR,
|
|
547
604
|
0,
|
|
548
605
|
[_QU],
|
|
549
606
|
[0], 1
|
|
550
607
|
];
|
|
551
|
-
exports.
|
|
608
|
+
exports.PurgeQueueRequest$ = PurgeQueueRequest$;
|
|
609
|
+
const ReceiveMessageRequest$ = [3, n0, _RMR,
|
|
552
610
|
0,
|
|
553
611
|
[_QU, _ANt, _MSAN, _MAN, _MNOM, _VT, _WTS, _RRAI],
|
|
554
612
|
[0, [64 | 0, { [_xF]: 1, [_xN]: _ANtt }], [64 | 0, { [_xF]: 1, [_xN]: _ANtt }], [64 | 0, { [_xF]: 1, [_xN]: _MANe }], 1, 1, 1, 0], 1
|
|
555
613
|
];
|
|
556
|
-
exports.
|
|
614
|
+
exports.ReceiveMessageRequest$ = ReceiveMessageRequest$;
|
|
615
|
+
const ReceiveMessageResult$ = [3, n0, _RMRe,
|
|
557
616
|
0,
|
|
558
617
|
[_Me],
|
|
559
618
|
[[() => MessageList, { [_xF]: 1, [_xN]: _M }]]
|
|
560
619
|
];
|
|
561
|
-
exports.
|
|
620
|
+
exports.ReceiveMessageResult$ = ReceiveMessageResult$;
|
|
621
|
+
const RemovePermissionRequest$ = [3, n0, _RPR,
|
|
562
622
|
0,
|
|
563
623
|
[_QU, _L],
|
|
564
624
|
[0, 0], 2
|
|
565
625
|
];
|
|
566
|
-
exports.
|
|
626
|
+
exports.RemovePermissionRequest$ = RemovePermissionRequest$;
|
|
627
|
+
const SendMessageBatchRequest$ = [3, n0, _SMBR,
|
|
567
628
|
0,
|
|
568
629
|
[_QU, _E],
|
|
569
630
|
[0, [() => SendMessageBatchRequestEntryList, { [_xF]: 1, [_xN]: _SMBRE }]], 2
|
|
570
631
|
];
|
|
571
|
-
exports.
|
|
632
|
+
exports.SendMessageBatchRequest$ = SendMessageBatchRequest$;
|
|
633
|
+
const SendMessageBatchRequestEntry$ = [3, n0, _SMBRE,
|
|
572
634
|
0,
|
|
573
635
|
[_I, _MB, _DS, _MA, _MSA, _MDI, _MGI],
|
|
574
636
|
[0, 0, 1, [() => MessageBodyAttributeMap, { [_xF]: 1, [_xN]: _MAe }], [() => MessageBodySystemAttributeMap, { [_xF]: 1, [_xN]: _MSAe }], 0, 0], 2
|
|
575
637
|
];
|
|
576
|
-
exports.
|
|
638
|
+
exports.SendMessageBatchRequestEntry$ = SendMessageBatchRequestEntry$;
|
|
639
|
+
const SendMessageBatchResult$ = [3, n0, _SMBRe,
|
|
577
640
|
0,
|
|
578
641
|
[_S, _F],
|
|
579
642
|
[[() => SendMessageBatchResultEntryList, { [_xF]: 1, [_xN]: _SMBREe }], [() => BatchResultErrorEntryList, { [_xF]: 1, [_xN]: _BREE }]], 2
|
|
580
643
|
];
|
|
581
|
-
exports.
|
|
644
|
+
exports.SendMessageBatchResult$ = SendMessageBatchResult$;
|
|
645
|
+
const SendMessageBatchResultEntry$ = [3, n0, _SMBREe,
|
|
582
646
|
0,
|
|
583
647
|
[_I, _MI, _MDOMB, _MDOMA, _MDOMSA, _SN],
|
|
584
648
|
[0, 0, 0, 0, 0, 0], 3
|
|
585
649
|
];
|
|
586
|
-
exports.
|
|
650
|
+
exports.SendMessageBatchResultEntry$ = SendMessageBatchResultEntry$;
|
|
651
|
+
const SendMessageRequest$ = [3, n0, _SMR,
|
|
587
652
|
0,
|
|
588
653
|
[_QU, _MB, _DS, _MA, _MSA, _MDI, _MGI],
|
|
589
654
|
[0, 0, 1, [() => MessageBodyAttributeMap, { [_xF]: 1, [_xN]: _MAe }], [() => MessageBodySystemAttributeMap, { [_xF]: 1, [_xN]: _MSAe }], 0, 0], 2
|
|
590
655
|
];
|
|
591
|
-
exports.
|
|
656
|
+
exports.SendMessageRequest$ = SendMessageRequest$;
|
|
657
|
+
const SendMessageResult$ = [3, n0, _SMRe,
|
|
592
658
|
0,
|
|
593
659
|
[_MDOMB, _MDOMA, _MDOMSA, _MI, _SN],
|
|
594
660
|
[0, 0, 0, 0, 0]
|
|
595
661
|
];
|
|
596
|
-
exports.
|
|
662
|
+
exports.SendMessageResult$ = SendMessageResult$;
|
|
663
|
+
const SetQueueAttributesRequest$ = [3, n0, _SQAR,
|
|
597
664
|
0,
|
|
598
665
|
[_QU, _At],
|
|
599
666
|
[0, [() => QueueAttributeMap, { [_xF]: 1, [_xN]: _Att }]], 2
|
|
600
667
|
];
|
|
601
|
-
exports.
|
|
668
|
+
exports.SetQueueAttributesRequest$ = SetQueueAttributesRequest$;
|
|
669
|
+
const StartMessageMoveTaskRequest$ = [3, n0, _SMMTR,
|
|
602
670
|
0,
|
|
603
671
|
[_SA, _DA, _MNOMPS],
|
|
604
672
|
[0, 0, 1], 1
|
|
605
673
|
];
|
|
606
|
-
exports.
|
|
674
|
+
exports.StartMessageMoveTaskRequest$ = StartMessageMoveTaskRequest$;
|
|
675
|
+
const StartMessageMoveTaskResult$ = [3, n0, _SMMTRt,
|
|
607
676
|
0,
|
|
608
677
|
[_TH],
|
|
609
678
|
[0]
|
|
610
679
|
];
|
|
611
|
-
exports.
|
|
680
|
+
exports.StartMessageMoveTaskResult$ = StartMessageMoveTaskResult$;
|
|
681
|
+
const TagQueueRequest$ = [3, n0, _TQR,
|
|
612
682
|
0,
|
|
613
683
|
[_QU, _Ta],
|
|
614
684
|
[0, [() => TagMap, { [_xF]: 1, [_xN]: _T }]], 2
|
|
615
685
|
];
|
|
616
|
-
exports.
|
|
686
|
+
exports.TagQueueRequest$ = TagQueueRequest$;
|
|
687
|
+
const UntagQueueRequest$ = [3, n0, _UQR,
|
|
617
688
|
0,
|
|
618
689
|
[_QU, _TK],
|
|
619
690
|
[0, [64 | 0, { [_xF]: 1, [_xN]: _TKa }]], 2
|
|
620
691
|
];
|
|
692
|
+
exports.UntagQueueRequest$ = UntagQueueRequest$;
|
|
621
693
|
var __Unit = "unit";
|
|
622
694
|
var ActionNameList = 64 | 0;
|
|
623
695
|
var AttributeNameList = 64 | 0;
|
|
624
696
|
var AWSAccountIdList = 64 | 0;
|
|
625
697
|
var BatchResultErrorEntryList = [1, n0, _BREEL,
|
|
626
|
-
0, () =>
|
|
698
|
+
0, () => BatchResultErrorEntry$
|
|
627
699
|
];
|
|
628
700
|
var BinaryList = [1, n0, _BL,
|
|
629
701
|
0, [21,
|
|
630
702
|
{ [_xN]: _BLVi }]
|
|
631
703
|
];
|
|
632
704
|
var ChangeMessageVisibilityBatchRequestEntryList = [1, n0, _CMVBREL,
|
|
633
|
-
0, () =>
|
|
705
|
+
0, () => ChangeMessageVisibilityBatchRequestEntry$
|
|
634
706
|
];
|
|
635
707
|
var ChangeMessageVisibilityBatchResultEntryList = [1, n0, _CMVBRELh,
|
|
636
|
-
0, () =>
|
|
708
|
+
0, () => ChangeMessageVisibilityBatchResultEntry$
|
|
637
709
|
];
|
|
638
710
|
var DeleteMessageBatchRequestEntryList = [1, n0, _DMBREL,
|
|
639
|
-
0, () =>
|
|
711
|
+
0, () => DeleteMessageBatchRequestEntry$
|
|
640
712
|
];
|
|
641
713
|
var DeleteMessageBatchResultEntryList = [1, n0, _DMBRELe,
|
|
642
|
-
0, () =>
|
|
714
|
+
0, () => DeleteMessageBatchResultEntry$
|
|
643
715
|
];
|
|
644
716
|
var ListMessageMoveTasksResultEntryList = [1, n0, _LMMTREL,
|
|
645
|
-
0, () =>
|
|
717
|
+
0, () => ListMessageMoveTasksResultEntry$
|
|
646
718
|
];
|
|
647
719
|
var MessageAttributeNameList = 64 | 0;
|
|
648
720
|
var MessageList = [1, n0, _ML,
|
|
649
|
-
0, [() =>
|
|
721
|
+
0, [() => Message$,
|
|
650
722
|
0]
|
|
651
723
|
];
|
|
652
724
|
var MessageSystemAttributeList = 64 | 0;
|
|
653
725
|
var QueueUrlList = 64 | 0;
|
|
654
726
|
var SendMessageBatchRequestEntryList = [1, n0, _SMBREL,
|
|
655
|
-
0, [() =>
|
|
727
|
+
0, [() => SendMessageBatchRequestEntry$,
|
|
656
728
|
0]
|
|
657
729
|
];
|
|
658
730
|
var SendMessageBatchResultEntryList = [1, n0, _SMBRELe,
|
|
659
|
-
0, () =>
|
|
731
|
+
0, () => SendMessageBatchResultEntry$
|
|
660
732
|
];
|
|
661
733
|
var StringList = [1, n0, _SL,
|
|
662
734
|
0, [0,
|
|
@@ -666,13 +738,13 @@ var TagKeyList = 64 | 0;
|
|
|
666
738
|
var MessageBodyAttributeMap = [2, n0, _MBAM,
|
|
667
739
|
0, [0,
|
|
668
740
|
{ [_xN]: _N }],
|
|
669
|
-
[() =>
|
|
741
|
+
[() => MessageAttributeValue$,
|
|
670
742
|
{ [_xN]: _V }]
|
|
671
743
|
];
|
|
672
744
|
var MessageBodySystemAttributeMap = [2, n0, _MBSAM,
|
|
673
745
|
0, [0,
|
|
674
746
|
{ [_xN]: _N }],
|
|
675
|
-
[() =>
|
|
747
|
+
[() => MessageSystemAttributeValue$,
|
|
676
748
|
{ [_xN]: _V }]
|
|
677
749
|
];
|
|
678
750
|
var MessageSystemAttributeMap = [2, n0, _MSAM,
|
|
@@ -694,71 +766,71 @@ var TagMap = [2, n0, _TM,
|
|
|
694
766
|
{ [_xN]: _V }]
|
|
695
767
|
];
|
|
696
768
|
exports.AddPermission$ = [9, n0, _AP,
|
|
697
|
-
0, () =>
|
|
769
|
+
0, () => AddPermissionRequest$, () => __Unit
|
|
698
770
|
];
|
|
699
771
|
exports.CancelMessageMoveTask$ = [9, n0, _CMMT,
|
|
700
|
-
0, () =>
|
|
772
|
+
0, () => CancelMessageMoveTaskRequest$, () => CancelMessageMoveTaskResult$
|
|
701
773
|
];
|
|
702
774
|
exports.ChangeMessageVisibility$ = [9, n0, _CMV,
|
|
703
|
-
0, () =>
|
|
775
|
+
0, () => ChangeMessageVisibilityRequest$, () => __Unit
|
|
704
776
|
];
|
|
705
777
|
exports.ChangeMessageVisibilityBatch$ = [9, n0, _CMVB,
|
|
706
|
-
0, () =>
|
|
778
|
+
0, () => ChangeMessageVisibilityBatchRequest$, () => ChangeMessageVisibilityBatchResult$
|
|
707
779
|
];
|
|
708
780
|
exports.CreateQueue$ = [9, n0, _CQ,
|
|
709
|
-
0, () =>
|
|
781
|
+
0, () => CreateQueueRequest$, () => CreateQueueResult$
|
|
710
782
|
];
|
|
711
783
|
exports.DeleteMessage$ = [9, n0, _DM,
|
|
712
|
-
0, () =>
|
|
784
|
+
0, () => DeleteMessageRequest$, () => __Unit
|
|
713
785
|
];
|
|
714
786
|
exports.DeleteMessageBatch$ = [9, n0, _DMB,
|
|
715
|
-
0, () =>
|
|
787
|
+
0, () => DeleteMessageBatchRequest$, () => DeleteMessageBatchResult$
|
|
716
788
|
];
|
|
717
789
|
exports.DeleteQueue$ = [9, n0, _DQ,
|
|
718
|
-
0, () =>
|
|
790
|
+
0, () => DeleteQueueRequest$, () => __Unit
|
|
719
791
|
];
|
|
720
792
|
exports.GetQueueAttributes$ = [9, n0, _GQA,
|
|
721
|
-
0, () =>
|
|
793
|
+
0, () => GetQueueAttributesRequest$, () => GetQueueAttributesResult$
|
|
722
794
|
];
|
|
723
795
|
exports.GetQueueUrl$ = [9, n0, _GQU,
|
|
724
|
-
0, () =>
|
|
796
|
+
0, () => GetQueueUrlRequest$, () => GetQueueUrlResult$
|
|
725
797
|
];
|
|
726
798
|
exports.ListDeadLetterSourceQueues$ = [9, n0, _LDLSQ,
|
|
727
|
-
0, () =>
|
|
799
|
+
0, () => ListDeadLetterSourceQueuesRequest$, () => ListDeadLetterSourceQueuesResult$
|
|
728
800
|
];
|
|
729
801
|
exports.ListMessageMoveTasks$ = [9, n0, _LMMT,
|
|
730
|
-
0, () =>
|
|
802
|
+
0, () => ListMessageMoveTasksRequest$, () => ListMessageMoveTasksResult$
|
|
731
803
|
];
|
|
732
804
|
exports.ListQueues$ = [9, n0, _LQ,
|
|
733
|
-
0, () =>
|
|
805
|
+
0, () => ListQueuesRequest$, () => ListQueuesResult$
|
|
734
806
|
];
|
|
735
807
|
exports.ListQueueTags$ = [9, n0, _LQT,
|
|
736
|
-
0, () =>
|
|
808
|
+
0, () => ListQueueTagsRequest$, () => ListQueueTagsResult$
|
|
737
809
|
];
|
|
738
810
|
exports.PurgeQueue$ = [9, n0, _PQ,
|
|
739
|
-
0, () =>
|
|
811
|
+
0, () => PurgeQueueRequest$, () => __Unit
|
|
740
812
|
];
|
|
741
813
|
exports.ReceiveMessage$ = [9, n0, _RM,
|
|
742
|
-
0, () =>
|
|
814
|
+
0, () => ReceiveMessageRequest$, () => ReceiveMessageResult$
|
|
743
815
|
];
|
|
744
816
|
exports.RemovePermission$ = [9, n0, _RP,
|
|
745
|
-
0, () =>
|
|
817
|
+
0, () => RemovePermissionRequest$, () => __Unit
|
|
746
818
|
];
|
|
747
819
|
exports.SendMessage$ = [9, n0, _SM,
|
|
748
|
-
0, () =>
|
|
820
|
+
0, () => SendMessageRequest$, () => SendMessageResult$
|
|
749
821
|
];
|
|
750
822
|
exports.SendMessageBatch$ = [9, n0, _SMB,
|
|
751
|
-
0, () =>
|
|
823
|
+
0, () => SendMessageBatchRequest$, () => SendMessageBatchResult$
|
|
752
824
|
];
|
|
753
825
|
exports.SetQueueAttributes$ = [9, n0, _SQA,
|
|
754
|
-
0, () =>
|
|
826
|
+
0, () => SetQueueAttributesRequest$, () => __Unit
|
|
755
827
|
];
|
|
756
828
|
exports.StartMessageMoveTask$ = [9, n0, _SMMT,
|
|
757
|
-
0, () =>
|
|
829
|
+
0, () => StartMessageMoveTaskRequest$, () => StartMessageMoveTaskResult$
|
|
758
830
|
];
|
|
759
831
|
exports.TagQueue$ = [9, n0, _TQ,
|
|
760
|
-
0, () =>
|
|
832
|
+
0, () => TagQueueRequest$, () => __Unit
|
|
761
833
|
];
|
|
762
834
|
exports.UntagQueue$ = [9, n0, _UQ,
|
|
763
|
-
0, () =>
|
|
835
|
+
0, () => UntagQueueRequest$, () => __Unit
|
|
764
836
|
];
|