@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,12 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
3
|
export declare var LambdaServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var AliasLimitExceededException$: StaticErrorSchema;
|
|
4
5
|
export declare var CallbackTimeoutException$: StaticErrorSchema;
|
|
5
6
|
export declare var CapacityProviderLimitExceededException$: StaticErrorSchema;
|
|
7
|
+
export declare var CodeArtifactUserDeletedException$: StaticErrorSchema;
|
|
8
|
+
export declare var CodeArtifactUserFailedException$: StaticErrorSchema;
|
|
9
|
+
export declare var CodeArtifactUserPendingException$: StaticErrorSchema;
|
|
6
10
|
export declare var CodeSigningConfigNotFoundException$: StaticErrorSchema;
|
|
7
11
|
export declare var CodeStorageExceededException$: StaticErrorSchema;
|
|
8
12
|
export declare var CodeVerificationFailedException$: StaticErrorSchema;
|
|
@@ -15,6 +19,7 @@ export declare var EFSMountConnectivityException$: StaticErrorSchema;
|
|
|
15
19
|
export declare var EFSMountFailureException$: StaticErrorSchema;
|
|
16
20
|
export declare var EFSMountTimeoutException$: StaticErrorSchema;
|
|
17
21
|
export declare var ENILimitReachedException$: StaticErrorSchema;
|
|
22
|
+
export declare var ENINotReadyException$: StaticErrorSchema;
|
|
18
23
|
export declare var FunctionVersionsPerCapacityProviderLimitExceededException$: StaticErrorSchema;
|
|
19
24
|
export declare var InvalidCodeSignatureException$: StaticErrorSchema;
|
|
20
25
|
export declare var InvalidParameterValueException$: StaticErrorSchema;
|
|
@@ -27,10 +32,12 @@ export declare var KMSAccessDeniedException$: StaticErrorSchema;
|
|
|
27
32
|
export declare var KMSDisabledException$: StaticErrorSchema;
|
|
28
33
|
export declare var KMSInvalidStateException$: StaticErrorSchema;
|
|
29
34
|
export declare var KMSNotFoundException$: StaticErrorSchema;
|
|
35
|
+
export declare var ModeNotSupportedException$: StaticErrorSchema;
|
|
30
36
|
export declare var NoPublishedVersionException$: StaticErrorSchema;
|
|
31
37
|
export declare var PolicyLengthExceededException$: StaticErrorSchema;
|
|
32
38
|
export declare var PreconditionFailedException$: StaticErrorSchema;
|
|
33
39
|
export declare var ProvisionedConcurrencyConfigNotFoundException$: StaticErrorSchema;
|
|
40
|
+
export declare var PublicPolicyException$: StaticErrorSchema;
|
|
34
41
|
export declare var RecursiveInvocationException$: StaticErrorSchema;
|
|
35
42
|
export declare var RequestTooLargeException$: StaticErrorSchema;
|
|
36
43
|
export declare var ResourceConflictException$: StaticErrorSchema;
|
|
@@ -42,8 +49,10 @@ export declare var S3FilesMountFailureException$: StaticErrorSchema;
|
|
|
42
49
|
export declare var S3FilesMountTimeoutException$: StaticErrorSchema;
|
|
43
50
|
export declare var SerializedRequestEntityTooLargeException$: StaticErrorSchema;
|
|
44
51
|
export declare var ServiceException$: StaticErrorSchema;
|
|
52
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
45
53
|
export declare var SnapStartException$: StaticErrorSchema;
|
|
46
54
|
export declare var SnapStartNotReadyException$: StaticErrorSchema;
|
|
55
|
+
export declare var SnapStartRegenerationFailureException$: StaticErrorSchema;
|
|
47
56
|
export declare var SnapStartTimeoutException$: StaticErrorSchema;
|
|
48
57
|
export declare var SubnetIPAddressLimitReachedException$: StaticErrorSchema;
|
|
49
58
|
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
@@ -294,6 +294,7 @@ export declare const LastUpdateStatusReasonCode: {
|
|
|
294
294
|
readonly InvalidZipFileException: "InvalidZipFileException";
|
|
295
295
|
readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
|
|
296
296
|
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
297
|
+
readonly ServiceQuotaExceededException: "ServiceQuotaExceededException";
|
|
297
298
|
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
298
299
|
readonly VcpuLimitExceeded: "VcpuLimitExceeded";
|
|
299
300
|
};
|
|
@@ -342,6 +343,7 @@ export declare const StateReasonCode: {
|
|
|
342
343
|
readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
|
|
343
344
|
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
344
345
|
readonly Restoring: "Restoring";
|
|
346
|
+
readonly ServiceQuotaExceededException: "ServiceQuotaExceededException";
|
|
345
347
|
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
346
348
|
readonly VcpuLimitExceeded: "VcpuLimitExceeded";
|
|
347
349
|
};
|
|
@@ -59,6 +59,23 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
59
59
|
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
60
60
|
);
|
|
61
61
|
}
|
|
62
|
+
export declare class PublicPolicyException extends __BaseException {
|
|
63
|
+
readonly name: "PublicPolicyException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
Type?: string | undefined;
|
|
66
|
+
Message?: string | undefined;
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<PublicPolicyException, __BaseException>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
export declare class AliasLimitExceededException extends __BaseException {
|
|
72
|
+
readonly name: "AliasLimitExceededException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
Type?: string | undefined;
|
|
75
|
+
constructor(
|
|
76
|
+
opts: __ExceptionOptionType<AliasLimitExceededException, __BaseException>
|
|
77
|
+
);
|
|
78
|
+
}
|
|
62
79
|
export declare class CapacityProviderLimitExceededException extends __BaseException {
|
|
63
80
|
readonly name: "CapacityProviderLimitExceededException";
|
|
64
81
|
readonly $fault: "client";
|
|
@@ -131,6 +148,39 @@ export declare class InvalidCodeSignatureException extends __BaseException {
|
|
|
131
148
|
opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>
|
|
132
149
|
);
|
|
133
150
|
}
|
|
151
|
+
export declare class CodeArtifactUserDeletedException extends __BaseException {
|
|
152
|
+
readonly name: "CodeArtifactUserDeletedException";
|
|
153
|
+
readonly $fault: "client";
|
|
154
|
+
Type?: string | undefined;
|
|
155
|
+
constructor(
|
|
156
|
+
opts: __ExceptionOptionType<
|
|
157
|
+
CodeArtifactUserDeletedException,
|
|
158
|
+
__BaseException
|
|
159
|
+
>
|
|
160
|
+
);
|
|
161
|
+
}
|
|
162
|
+
export declare class CodeArtifactUserFailedException extends __BaseException {
|
|
163
|
+
readonly name: "CodeArtifactUserFailedException";
|
|
164
|
+
readonly $fault: "client";
|
|
165
|
+
Type?: string | undefined;
|
|
166
|
+
constructor(
|
|
167
|
+
opts: __ExceptionOptionType<
|
|
168
|
+
CodeArtifactUserFailedException,
|
|
169
|
+
__BaseException
|
|
170
|
+
>
|
|
171
|
+
);
|
|
172
|
+
}
|
|
173
|
+
export declare class CodeArtifactUserPendingException extends __BaseException {
|
|
174
|
+
readonly name: "CodeArtifactUserPendingException";
|
|
175
|
+
readonly $fault: "client";
|
|
176
|
+
Type?: string | undefined;
|
|
177
|
+
constructor(
|
|
178
|
+
opts: __ExceptionOptionType<
|
|
179
|
+
CodeArtifactUserPendingException,
|
|
180
|
+
__BaseException
|
|
181
|
+
>
|
|
182
|
+
);
|
|
183
|
+
}
|
|
134
184
|
export declare class DurableExecutionAlreadyStartedException extends __BaseException {
|
|
135
185
|
readonly name: "DurableExecutionAlreadyStartedException";
|
|
136
186
|
readonly $fault: "client";
|
|
@@ -214,6 +264,15 @@ export declare class ENILimitReachedException extends __BaseException {
|
|
|
214
264
|
opts: __ExceptionOptionType<ENILimitReachedException, __BaseException>
|
|
215
265
|
);
|
|
216
266
|
}
|
|
267
|
+
export declare class ENINotReadyException extends __BaseException {
|
|
268
|
+
readonly name: "ENINotReadyException";
|
|
269
|
+
readonly $fault: "server";
|
|
270
|
+
Type?: string | undefined;
|
|
271
|
+
Message?: string | undefined;
|
|
272
|
+
constructor(
|
|
273
|
+
opts: __ExceptionOptionType<ENINotReadyException, __BaseException>
|
|
274
|
+
);
|
|
275
|
+
}
|
|
217
276
|
export declare class InvalidRequestContentException extends __BaseException {
|
|
218
277
|
readonly name: "InvalidRequestContentException";
|
|
219
278
|
readonly $fault: "client";
|
|
@@ -297,6 +356,14 @@ export declare class KMSNotFoundException extends __BaseException {
|
|
|
297
356
|
opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>
|
|
298
357
|
);
|
|
299
358
|
}
|
|
359
|
+
export declare class ModeNotSupportedException extends __BaseException {
|
|
360
|
+
readonly name: "ModeNotSupportedException";
|
|
361
|
+
readonly $fault: "client";
|
|
362
|
+
Type?: string | undefined;
|
|
363
|
+
constructor(
|
|
364
|
+
opts: __ExceptionOptionType<ModeNotSupportedException, __BaseException>
|
|
365
|
+
);
|
|
366
|
+
}
|
|
300
367
|
export declare class NoPublishedVersionException extends __BaseException {
|
|
301
368
|
readonly name: "NoPublishedVersionException";
|
|
302
369
|
readonly $fault: "client";
|
|
@@ -372,6 +439,15 @@ export declare class SerializedRequestEntityTooLargeException extends __BaseExce
|
|
|
372
439
|
>
|
|
373
440
|
);
|
|
374
441
|
}
|
|
442
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
443
|
+
readonly name: "ServiceQuotaExceededException";
|
|
444
|
+
readonly $fault: "client";
|
|
445
|
+
Type?: string | undefined;
|
|
446
|
+
Message?: string | undefined;
|
|
447
|
+
constructor(
|
|
448
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
449
|
+
);
|
|
450
|
+
}
|
|
375
451
|
export declare class SnapStartException extends __BaseException {
|
|
376
452
|
readonly name: "SnapStartException";
|
|
377
453
|
readonly $fault: "client";
|
|
@@ -388,6 +464,18 @@ export declare class SnapStartNotReadyException extends __BaseException {
|
|
|
388
464
|
opts: __ExceptionOptionType<SnapStartNotReadyException, __BaseException>
|
|
389
465
|
);
|
|
390
466
|
}
|
|
467
|
+
export declare class SnapStartRegenerationFailureException extends __BaseException {
|
|
468
|
+
readonly name: "SnapStartRegenerationFailureException";
|
|
469
|
+
readonly $fault: "client";
|
|
470
|
+
Type?: string | undefined;
|
|
471
|
+
Message?: string | undefined;
|
|
472
|
+
constructor(
|
|
473
|
+
opts: __ExceptionOptionType<
|
|
474
|
+
SnapStartRegenerationFailureException,
|
|
475
|
+
__BaseException
|
|
476
|
+
>
|
|
477
|
+
);
|
|
478
|
+
}
|
|
391
479
|
export declare class SnapStartTimeoutException extends __BaseException {
|
|
392
480
|
readonly name: "SnapStartTimeoutException";
|
|
393
481
|
readonly $fault: "client";
|
|
@@ -75,13 +75,13 @@ export interface AddPermissionRequest {
|
|
|
75
75
|
Action: string | undefined;
|
|
76
76
|
Principal: string | undefined;
|
|
77
77
|
SourceArn?: string | undefined;
|
|
78
|
+
FunctionUrlAuthType?: FunctionUrlAuthType | undefined;
|
|
79
|
+
InvokedViaFunctionUrl?: boolean | undefined;
|
|
78
80
|
SourceAccount?: string | undefined;
|
|
79
81
|
EventSourceToken?: string | undefined;
|
|
80
82
|
Qualifier?: string | undefined;
|
|
81
83
|
RevisionId?: string | undefined;
|
|
82
84
|
PrincipalOrgID?: string | undefined;
|
|
83
|
-
FunctionUrlAuthType?: FunctionUrlAuthType | undefined;
|
|
84
|
-
InvokedViaFunctionUrl?: boolean | undefined;
|
|
85
85
|
}
|
|
86
86
|
export interface AddPermissionResponse {
|
|
87
87
|
Statement?: string | undefined;
|
|
@@ -422,6 +422,10 @@ export interface CreateEventSourceMappingRequest {
|
|
|
422
422
|
Enabled?: boolean | undefined;
|
|
423
423
|
BatchSize?: number | undefined;
|
|
424
424
|
FilterCriteria?: FilterCriteria | undefined;
|
|
425
|
+
KMSKeyArn?: string | undefined;
|
|
426
|
+
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
427
|
+
LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
|
|
428
|
+
ScalingConfig?: ScalingConfig | undefined;
|
|
425
429
|
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
426
430
|
ParallelizationFactor?: number | undefined;
|
|
427
431
|
StartingPosition?: EventSourcePosition | undefined;
|
|
@@ -443,11 +447,7 @@ export interface CreateEventSourceMappingRequest {
|
|
|
443
447
|
SelfManagedKafkaEventSourceConfig?:
|
|
444
448
|
| SelfManagedKafkaEventSourceConfig
|
|
445
449
|
| undefined;
|
|
446
|
-
ScalingConfig?: ScalingConfig | undefined;
|
|
447
450
|
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
|
|
448
|
-
KMSKeyArn?: string | undefined;
|
|
449
|
-
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
450
|
-
LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
|
|
451
451
|
ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
|
|
452
452
|
}
|
|
453
453
|
export interface FilterCriteriaError {
|
|
@@ -463,6 +463,11 @@ export interface EventSourceMappingConfiguration {
|
|
|
463
463
|
ParallelizationFactor?: number | undefined;
|
|
464
464
|
EventSourceArn?: string | undefined;
|
|
465
465
|
FilterCriteria?: FilterCriteria | undefined;
|
|
466
|
+
FilterCriteriaError?: FilterCriteriaError | undefined;
|
|
467
|
+
KMSKeyArn?: string | undefined;
|
|
468
|
+
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
469
|
+
LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
|
|
470
|
+
ScalingConfig?: ScalingConfig | undefined;
|
|
466
471
|
FunctionArn?: string | undefined;
|
|
467
472
|
LastModified?: Date | undefined;
|
|
468
473
|
LastProcessingResult?: string | undefined;
|
|
@@ -484,13 +489,8 @@ export interface EventSourceMappingConfiguration {
|
|
|
484
489
|
SelfManagedKafkaEventSourceConfig?:
|
|
485
490
|
| SelfManagedKafkaEventSourceConfig
|
|
486
491
|
| undefined;
|
|
487
|
-
ScalingConfig?: ScalingConfig | undefined;
|
|
488
492
|
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
|
|
489
|
-
KMSKeyArn?: string | undefined;
|
|
490
|
-
FilterCriteriaError?: FilterCriteriaError | undefined;
|
|
491
493
|
EventSourceMappingArn?: string | undefined;
|
|
492
|
-
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
493
|
-
LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
|
|
494
494
|
ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
|
|
495
495
|
}
|
|
496
496
|
export interface DeleteEventSourceMappingRequest {
|
|
@@ -515,16 +515,19 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
515
515
|
Enabled?: boolean | undefined;
|
|
516
516
|
BatchSize?: number | undefined;
|
|
517
517
|
FilterCriteria?: FilterCriteria | undefined;
|
|
518
|
+
KMSKeyArn?: string | undefined;
|
|
519
|
+
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
520
|
+
LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
|
|
521
|
+
ScalingConfig?: ScalingConfig | undefined;
|
|
518
522
|
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
523
|
+
ParallelizationFactor?: number | undefined;
|
|
519
524
|
DestinationConfig?: DestinationConfig | undefined;
|
|
520
525
|
MaximumRecordAgeInSeconds?: number | undefined;
|
|
521
526
|
BisectBatchOnFunctionError?: boolean | undefined;
|
|
522
527
|
MaximumRetryAttempts?: number | undefined;
|
|
523
|
-
ParallelizationFactor?: number | undefined;
|
|
524
|
-
SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
|
|
525
528
|
TumblingWindowInSeconds?: number | undefined;
|
|
529
|
+
SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
|
|
526
530
|
FunctionResponseTypes?: FunctionResponseType[] | undefined;
|
|
527
|
-
ScalingConfig?: ScalingConfig | undefined;
|
|
528
531
|
AmazonManagedKafkaEventSourceConfig?:
|
|
529
532
|
| AmazonManagedKafkaEventSourceConfig
|
|
530
533
|
| undefined;
|
|
@@ -532,9 +535,6 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
532
535
|
| SelfManagedKafkaEventSourceConfig
|
|
533
536
|
| undefined;
|
|
534
537
|
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
|
|
535
|
-
KMSKeyArn?: string | undefined;
|
|
536
|
-
MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
|
|
537
|
-
LoggingConfig?: EventSourceMappingLoggingConfig | undefined;
|
|
538
538
|
ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
|
|
539
539
|
}
|
|
540
540
|
export interface LambdaManagedInstancesCapacityProviderConfig {
|
|
@@ -607,6 +607,7 @@ export interface CreateFunctionRequest {
|
|
|
607
607
|
Timeout?: number | undefined;
|
|
608
608
|
MemorySize?: number | undefined;
|
|
609
609
|
Publish?: boolean | undefined;
|
|
610
|
+
PublishTo?: FunctionVersionLatestPublished | undefined;
|
|
610
611
|
VpcConfig?: VpcConfig | undefined;
|
|
611
612
|
PackageType?: PackageType | undefined;
|
|
612
613
|
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
@@ -616,16 +617,15 @@ export interface CreateFunctionRequest {
|
|
|
616
617
|
Tags?: Record<string, string> | undefined;
|
|
617
618
|
Layers?: string[] | undefined;
|
|
618
619
|
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
619
|
-
ImageConfig?: ImageConfig | undefined;
|
|
620
620
|
CodeSigningConfigArn?: string | undefined;
|
|
621
|
+
ImageConfig?: ImageConfig | undefined;
|
|
621
622
|
Architectures?: Architecture[] | undefined;
|
|
622
623
|
EphemeralStorage?: EphemeralStorage | undefined;
|
|
623
624
|
SnapStart?: SnapStart | undefined;
|
|
624
625
|
LoggingConfig?: LoggingConfig | undefined;
|
|
626
|
+
TenancyConfig?: TenancyConfig | undefined;
|
|
625
627
|
CapacityProviderConfig?: CapacityProviderConfig | undefined;
|
|
626
|
-
PublishTo?: FunctionVersionLatestPublished | undefined;
|
|
627
628
|
DurableConfig?: DurableConfig | undefined;
|
|
628
|
-
TenancyConfig?: TenancyConfig | undefined;
|
|
629
629
|
}
|
|
630
630
|
export interface EnvironmentError {
|
|
631
631
|
ErrorCode?: string | undefined;
|
|
@@ -698,19 +698,19 @@ export interface FunctionConfiguration {
|
|
|
698
698
|
LastUpdateStatusReason?: string | undefined;
|
|
699
699
|
LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | undefined;
|
|
700
700
|
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
701
|
-
PackageType?: PackageType | undefined;
|
|
702
|
-
ImageConfigResponse?: ImageConfigResponse | undefined;
|
|
703
701
|
SigningProfileVersionArn?: string | undefined;
|
|
704
702
|
SigningJobArn?: string | undefined;
|
|
703
|
+
PackageType?: PackageType | undefined;
|
|
704
|
+
ImageConfigResponse?: ImageConfigResponse | undefined;
|
|
705
705
|
Architectures?: Architecture[] | undefined;
|
|
706
706
|
EphemeralStorage?: EphemeralStorage | undefined;
|
|
707
707
|
SnapStart?: SnapStartResponse | undefined;
|
|
708
708
|
RuntimeVersionConfig?: RuntimeVersionConfig | undefined;
|
|
709
709
|
LoggingConfig?: LoggingConfig | undefined;
|
|
710
|
+
TenancyConfig?: TenancyConfig | undefined;
|
|
710
711
|
CapacityProviderConfig?: CapacityProviderConfig | undefined;
|
|
711
712
|
ConfigSha256?: string | undefined;
|
|
712
713
|
DurableConfig?: DurableConfig | undefined;
|
|
713
|
-
TenancyConfig?: TenancyConfig | undefined;
|
|
714
714
|
}
|
|
715
715
|
export interface Cors {
|
|
716
716
|
AllowCredentials?: boolean | undefined;
|
|
@@ -833,8 +833,8 @@ export interface GetRuntimeManagementConfigRequest {
|
|
|
833
833
|
}
|
|
834
834
|
export interface GetRuntimeManagementConfigResponse {
|
|
835
835
|
UpdateRuntimeOn?: UpdateRuntimeOn | undefined;
|
|
836
|
-
RuntimeVersionArn?: string | undefined;
|
|
837
836
|
FunctionArn?: string | undefined;
|
|
837
|
+
RuntimeVersionArn?: string | undefined;
|
|
838
838
|
}
|
|
839
839
|
export interface InvocationRequest {
|
|
840
840
|
FunctionName: string | undefined;
|
|
@@ -1005,12 +1005,12 @@ export interface UpdateFunctionCodeRequest {
|
|
|
1005
1005
|
S3Key?: string | undefined;
|
|
1006
1006
|
S3ObjectVersion?: string | undefined;
|
|
1007
1007
|
ImageUri?: string | undefined;
|
|
1008
|
+
Architectures?: Architecture[] | undefined;
|
|
1008
1009
|
Publish?: boolean | undefined;
|
|
1010
|
+
PublishTo?: FunctionVersionLatestPublished | undefined;
|
|
1009
1011
|
DryRun?: boolean | undefined;
|
|
1010
1012
|
RevisionId?: string | undefined;
|
|
1011
|
-
Architectures?: Architecture[] | undefined;
|
|
1012
1013
|
SourceKMSKeyArn?: string | undefined;
|
|
1013
|
-
PublishTo?: FunctionVersionLatestPublished | undefined;
|
|
1014
1014
|
}
|
|
1015
1015
|
export interface UpdateFunctionConfigurationRequest {
|
|
1016
1016
|
FunctionName: string | undefined;
|
|
@@ -1287,19 +1287,19 @@ export interface GetFunctionEventInvokeConfigRequest {
|
|
|
1287
1287
|
Qualifier?: string | undefined;
|
|
1288
1288
|
}
|
|
1289
1289
|
export interface ListLayersRequest {
|
|
1290
|
+
CompatibleArchitecture?: Architecture | undefined;
|
|
1290
1291
|
CompatibleRuntime?: Runtime | undefined;
|
|
1291
1292
|
Marker?: string | undefined;
|
|
1292
1293
|
MaxItems?: number | undefined;
|
|
1293
|
-
CompatibleArchitecture?: Architecture | undefined;
|
|
1294
1294
|
}
|
|
1295
1295
|
export interface LayerVersionsListItem {
|
|
1296
1296
|
LayerVersionArn?: string | undefined;
|
|
1297
1297
|
Version?: number | undefined;
|
|
1298
1298
|
Description?: string | undefined;
|
|
1299
1299
|
CreatedDate?: string | undefined;
|
|
1300
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1300
1301
|
CompatibleRuntimes?: Runtime[] | undefined;
|
|
1301
1302
|
LicenseInfo?: string | undefined;
|
|
1302
|
-
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1303
1303
|
}
|
|
1304
1304
|
export interface LayersListItem {
|
|
1305
1305
|
LayerName?: string | undefined;
|
|
@@ -1332,9 +1332,9 @@ export interface GetLayerVersionResponse {
|
|
|
1332
1332
|
Description?: string | undefined;
|
|
1333
1333
|
CreatedDate?: string | undefined;
|
|
1334
1334
|
Version?: number | undefined;
|
|
1335
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1335
1336
|
CompatibleRuntimes?: Runtime[] | undefined;
|
|
1336
1337
|
LicenseInfo?: string | undefined;
|
|
1337
|
-
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1338
1338
|
}
|
|
1339
1339
|
export interface GetLayerVersionByArnRequest {
|
|
1340
1340
|
Arn: string | undefined;
|
|
@@ -1348,11 +1348,11 @@ export interface GetLayerVersionPolicyResponse {
|
|
|
1348
1348
|
RevisionId?: string | undefined;
|
|
1349
1349
|
}
|
|
1350
1350
|
export interface ListLayerVersionsRequest {
|
|
1351
|
+
CompatibleArchitecture?: Architecture | undefined;
|
|
1351
1352
|
CompatibleRuntime?: Runtime | undefined;
|
|
1352
1353
|
LayerName: string | undefined;
|
|
1353
1354
|
Marker?: string | undefined;
|
|
1354
1355
|
MaxItems?: number | undefined;
|
|
1355
|
-
CompatibleArchitecture?: Architecture | undefined;
|
|
1356
1356
|
}
|
|
1357
1357
|
export interface ListLayerVersionsResponse {
|
|
1358
1358
|
NextMarker?: string | undefined;
|
|
@@ -1368,9 +1368,9 @@ export interface PublishLayerVersionRequest {
|
|
|
1368
1368
|
LayerName: string | undefined;
|
|
1369
1369
|
Description?: string | undefined;
|
|
1370
1370
|
Content: LayerVersionContentInput | undefined;
|
|
1371
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1371
1372
|
CompatibleRuntimes?: Runtime[] | undefined;
|
|
1372
1373
|
LicenseInfo?: string | undefined;
|
|
1373
|
-
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1374
1374
|
}
|
|
1375
1375
|
export interface PublishLayerVersionResponse {
|
|
1376
1376
|
Content?: LayerVersionContentOutput | undefined;
|
|
@@ -1379,9 +1379,9 @@ export interface PublishLayerVersionResponse {
|
|
|
1379
1379
|
Description?: string | undefined;
|
|
1380
1380
|
CreatedDate?: string | undefined;
|
|
1381
1381
|
Version?: number | undefined;
|
|
1382
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1382
1383
|
CompatibleRuntimes?: Runtime[] | undefined;
|
|
1383
1384
|
LicenseInfo?: string | undefined;
|
|
1384
|
-
CompatibleArchitectures?: Architecture[] | undefined;
|
|
1385
1385
|
}
|
|
1386
1386
|
export interface RemoveLayerVersionPermissionRequest {
|
|
1387
1387
|
LayerName: string | undefined;
|
|
@@ -1456,8 +1456,8 @@ export interface PutProvisionedConcurrencyConfigRequest {
|
|
|
1456
1456
|
}
|
|
1457
1457
|
export interface PutProvisionedConcurrencyConfigResponse {
|
|
1458
1458
|
RequestedProvisionedConcurrentExecutions?: number | undefined;
|
|
1459
|
-
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
1460
1459
|
AllocatedProvisionedConcurrentExecutions?: number | undefined;
|
|
1460
|
+
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
1461
1461
|
Status?: ProvisionedConcurrencyStatusEnum | undefined;
|
|
1462
1462
|
StatusReason?: string | undefined;
|
|
1463
1463
|
LastModified?: string | undefined;
|
|
@@ -6,8 +6,12 @@ import {
|
|
|
6
6
|
StaticUnionSchema,
|
|
7
7
|
} from "@smithy/types";
|
|
8
8
|
export declare var LambdaServiceException$: StaticErrorSchema;
|
|
9
|
+
export declare var AliasLimitExceededException$: StaticErrorSchema;
|
|
9
10
|
export declare var CallbackTimeoutException$: StaticErrorSchema;
|
|
10
11
|
export declare var CapacityProviderLimitExceededException$: StaticErrorSchema;
|
|
12
|
+
export declare var CodeArtifactUserDeletedException$: StaticErrorSchema;
|
|
13
|
+
export declare var CodeArtifactUserFailedException$: StaticErrorSchema;
|
|
14
|
+
export declare var CodeArtifactUserPendingException$: StaticErrorSchema;
|
|
11
15
|
export declare var CodeSigningConfigNotFoundException$: StaticErrorSchema;
|
|
12
16
|
export declare var CodeStorageExceededException$: StaticErrorSchema;
|
|
13
17
|
export declare var CodeVerificationFailedException$: StaticErrorSchema;
|
|
@@ -20,6 +24,7 @@ export declare var EFSMountConnectivityException$: StaticErrorSchema;
|
|
|
20
24
|
export declare var EFSMountFailureException$: StaticErrorSchema;
|
|
21
25
|
export declare var EFSMountTimeoutException$: StaticErrorSchema;
|
|
22
26
|
export declare var ENILimitReachedException$: StaticErrorSchema;
|
|
27
|
+
export declare var ENINotReadyException$: StaticErrorSchema;
|
|
23
28
|
export declare var FunctionVersionsPerCapacityProviderLimitExceededException$: StaticErrorSchema;
|
|
24
29
|
export declare var InvalidCodeSignatureException$: StaticErrorSchema;
|
|
25
30
|
export declare var InvalidParameterValueException$: StaticErrorSchema;
|
|
@@ -32,10 +37,12 @@ export declare var KMSAccessDeniedException$: StaticErrorSchema;
|
|
|
32
37
|
export declare var KMSDisabledException$: StaticErrorSchema;
|
|
33
38
|
export declare var KMSInvalidStateException$: StaticErrorSchema;
|
|
34
39
|
export declare var KMSNotFoundException$: StaticErrorSchema;
|
|
40
|
+
export declare var ModeNotSupportedException$: StaticErrorSchema;
|
|
35
41
|
export declare var NoPublishedVersionException$: StaticErrorSchema;
|
|
36
42
|
export declare var PolicyLengthExceededException$: StaticErrorSchema;
|
|
37
43
|
export declare var PreconditionFailedException$: StaticErrorSchema;
|
|
38
44
|
export declare var ProvisionedConcurrencyConfigNotFoundException$: StaticErrorSchema;
|
|
45
|
+
export declare var PublicPolicyException$: StaticErrorSchema;
|
|
39
46
|
export declare var RecursiveInvocationException$: StaticErrorSchema;
|
|
40
47
|
export declare var RequestTooLargeException$: StaticErrorSchema;
|
|
41
48
|
export declare var ResourceConflictException$: StaticErrorSchema;
|
|
@@ -47,8 +54,10 @@ export declare var S3FilesMountFailureException$: StaticErrorSchema;
|
|
|
47
54
|
export declare var S3FilesMountTimeoutException$: StaticErrorSchema;
|
|
48
55
|
export declare var SerializedRequestEntityTooLargeException$: StaticErrorSchema;
|
|
49
56
|
export declare var ServiceException$: StaticErrorSchema;
|
|
57
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
50
58
|
export declare var SnapStartException$: StaticErrorSchema;
|
|
51
59
|
export declare var SnapStartNotReadyException$: StaticErrorSchema;
|
|
60
|
+
export declare var SnapStartRegenerationFailureException$: StaticErrorSchema;
|
|
52
61
|
export declare var SnapStartTimeoutException$: StaticErrorSchema;
|
|
53
62
|
export declare var SubnetIPAddressLimitReachedException$: StaticErrorSchema;
|
|
54
63
|
export declare var TooManyRequestsException$: StaticErrorSchema;
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1073.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test": "yarn g:vitest run --passWithNoTests",
|
|
16
|
-
"test:
|
|
17
|
-
"test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
|
|
18
|
-
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs",
|
|
16
|
+
"test:watch": "yarn g:vitest watch --passWithNoTests",
|
|
19
17
|
"test:integration": "yarn g:vitest run --passWithNoTests -c vitest.config.integ.mts",
|
|
20
18
|
"test:integration:watch": "yarn g:vitest watch --passWithNoTests -c vitest.config.integ.mts",
|
|
21
|
-
"test:
|
|
19
|
+
"test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts",
|
|
20
|
+
"test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
|
|
21
|
+
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
22
22
|
},
|
|
23
23
|
"main": "./dist-cjs/index.js",
|
|
24
24
|
"types": "./dist-types/index.d.ts",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
-
"@aws-sdk/types": "^3.973.
|
|
30
|
+
"@aws-sdk/core": "^3.974.22",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.57",
|
|
32
|
+
"@aws-sdk/types": "^3.973.13",
|
|
33
33
|
"@smithy/core": "^3.24.6",
|
|
34
34
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
35
35
|
"@smithy/node-http-handler": "^4.7.6",
|
|
@@ -349,6 +349,13 @@ DeleteObject
|
|
|
349
349
|
</details>
|
|
350
350
|
<details>
|
|
351
351
|
<summary>
|
|
352
|
+
DeleteObjectAnnotation
|
|
353
|
+
</summary>
|
|
354
|
+
|
|
355
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/s3/command/DeleteObjectAnnotationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/DeleteObjectAnnotationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/DeleteObjectAnnotationCommandOutput/)
|
|
356
|
+
</details>
|
|
357
|
+
<details>
|
|
358
|
+
<summary>
|
|
352
359
|
DeleteObjects
|
|
353
360
|
</summary>
|
|
354
361
|
|
|
@@ -545,6 +552,13 @@ GetObjectAcl
|
|
|
545
552
|
</details>
|
|
546
553
|
<details>
|
|
547
554
|
<summary>
|
|
555
|
+
GetObjectAnnotation
|
|
556
|
+
</summary>
|
|
557
|
+
|
|
558
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/s3/command/GetObjectAnnotationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/GetObjectAnnotationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/GetObjectAnnotationCommandOutput/)
|
|
559
|
+
</details>
|
|
560
|
+
<details>
|
|
561
|
+
<summary>
|
|
548
562
|
GetObjectAttributes
|
|
549
563
|
</summary>
|
|
550
564
|
|
|
@@ -657,6 +671,13 @@ ListMultipartUploads
|
|
|
657
671
|
</details>
|
|
658
672
|
<details>
|
|
659
673
|
<summary>
|
|
674
|
+
ListObjectAnnotations
|
|
675
|
+
</summary>
|
|
676
|
+
|
|
677
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/s3/command/ListObjectAnnotationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/ListObjectAnnotationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/ListObjectAnnotationsCommandOutput/)
|
|
678
|
+
</details>
|
|
679
|
+
<details>
|
|
680
|
+
<summary>
|
|
660
681
|
ListObjects
|
|
661
682
|
</summary>
|
|
662
683
|
|
|
@@ -832,6 +853,13 @@ PutObjectAcl
|
|
|
832
853
|
</details>
|
|
833
854
|
<details>
|
|
834
855
|
<summary>
|
|
856
|
+
PutObjectAnnotation
|
|
857
|
+
</summary>
|
|
858
|
+
|
|
859
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/s3/command/PutObjectAnnotationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/PutObjectAnnotationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/PutObjectAnnotationCommandOutput/)
|
|
860
|
+
</details>
|
|
861
|
+
<details>
|
|
862
|
+
<summary>
|
|
835
863
|
PutObjectLegalHold
|
|
836
864
|
</summary>
|
|
837
865
|
|
|
@@ -888,6 +916,13 @@ SelectObjectContent
|
|
|
888
916
|
</details>
|
|
889
917
|
<details>
|
|
890
918
|
<summary>
|
|
919
|
+
UpdateBucketMetadataAnnotationTableConfiguration
|
|
920
|
+
</summary>
|
|
921
|
+
|
|
922
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/s3/command/UpdateBucketMetadataAnnotationTableConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/UpdateBucketMetadataAnnotationTableConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-s3/Interface/UpdateBucketMetadataAnnotationTableConfigurationCommandOutput/)
|
|
923
|
+
</details>
|
|
924
|
+
<details>
|
|
925
|
+
<summary>
|
|
891
926
|
UpdateBucketMetadataInventoryTableConfiguration
|
|
892
927
|
</summary>
|
|
893
928
|
|
|
@@ -1,28 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const client_1 = require("@smithy/core/client");
|
|
7
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
8
|
-
const endpointResolver_1 = require("../endpoint/endpointResolver");
|
|
1
|
+
const { resolveAwsSdkSigV4AConfig, resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { SignatureV4MultiRegion } = require("@aws-sdk/signature-v4-multi-region");
|
|
3
|
+
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
4
|
+
const { resolveParams } = require("@smithy/core/endpoints");
|
|
5
|
+
const { defaultEndpointResolver } = require("../endpoint/endpointResolver");
|
|
9
6
|
const createEndpointRuleSetHttpAuthSchemeParametersProvider = (defaultHttpAuthSchemeParametersProvider) => async (config, context, input) => {
|
|
10
7
|
if (!input) {
|
|
11
8
|
throw new Error("Could not find `input` for `defaultEndpointRuleSetHttpAuthSchemeParametersProvider`");
|
|
12
9
|
}
|
|
13
10
|
const defaultParameters = await defaultHttpAuthSchemeParametersProvider(config, context, input);
|
|
14
|
-
const instructionsFn =
|
|
11
|
+
const instructionsFn = getSmithyContext(context)?.commandInstance?.constructor
|
|
15
12
|
?.getEndpointParameterInstructions;
|
|
16
13
|
if (!instructionsFn) {
|
|
17
14
|
throw new Error(`getEndpointParameterInstructions() is not defined on '${context.commandName}'`);
|
|
18
15
|
}
|
|
19
|
-
const endpointParameters = await
|
|
16
|
+
const endpointParameters = await resolveParams(input, { getEndpointParameterInstructions: instructionsFn }, config);
|
|
20
17
|
return Object.assign(defaultParameters, endpointParameters);
|
|
21
18
|
};
|
|
22
19
|
const _defaultS3HttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
23
20
|
return {
|
|
24
|
-
operation:
|
|
25
|
-
region: await
|
|
21
|
+
operation: getSmithyContext(context).operation,
|
|
22
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
26
23
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
27
24
|
})(),
|
|
28
25
|
};
|
|
@@ -79,7 +76,7 @@ const createEndpointRuleSetHttpAuthSchemeProvider = (defaultEndpointResolver, de
|
|
|
79
76
|
const name = s.name.toLowerCase();
|
|
80
77
|
return name !== "sigv4a" && name.startsWith("sigv4");
|
|
81
78
|
});
|
|
82
|
-
if (
|
|
79
|
+
if (SignatureV4MultiRegion.sigv4aDependency() === "none" && sigv4Present) {
|
|
83
80
|
continue;
|
|
84
81
|
}
|
|
85
82
|
}
|
|
@@ -112,15 +109,14 @@ const _defaultS3HttpAuthSchemeProvider = (authParameters) => {
|
|
|
112
109
|
}
|
|
113
110
|
return options;
|
|
114
111
|
};
|
|
115
|
-
exports.defaultS3HttpAuthSchemeProvider = createEndpointRuleSetHttpAuthSchemeProvider(
|
|
112
|
+
exports.defaultS3HttpAuthSchemeProvider = createEndpointRuleSetHttpAuthSchemeProvider(defaultEndpointResolver, _defaultS3HttpAuthSchemeProvider, {
|
|
116
113
|
"aws.auth#sigv4": createAwsAuthSigv4HttpAuthOption,
|
|
117
114
|
"aws.auth#sigv4a": createAwsAuthSigv4aHttpAuthOption,
|
|
118
115
|
});
|
|
119
|
-
|
|
120
|
-
const config_0 =
|
|
121
|
-
const config_1 =
|
|
116
|
+
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
117
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
118
|
+
const config_1 = resolveAwsSdkSigV4AConfig(config_0);
|
|
122
119
|
return Object.assign(config_1, {
|
|
123
|
-
authSchemePreference:
|
|
120
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
124
121
|
});
|
|
125
122
|
};
|
|
126
|
-
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|