@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
|
@@ -97,6 +97,10 @@ import {
|
|
|
97
97
|
DeleteBucketWebsiteCommandInput,
|
|
98
98
|
DeleteBucketWebsiteCommandOutput,
|
|
99
99
|
} from "./commands/DeleteBucketWebsiteCommand";
|
|
100
|
+
import {
|
|
101
|
+
DeleteObjectAnnotationCommandInput,
|
|
102
|
+
DeleteObjectAnnotationCommandOutput,
|
|
103
|
+
} from "./commands/DeleteObjectAnnotationCommand";
|
|
100
104
|
import {
|
|
101
105
|
DeleteObjectCommandInput,
|
|
102
106
|
DeleteObjectCommandOutput,
|
|
@@ -209,6 +213,10 @@ import {
|
|
|
209
213
|
GetObjectAclCommandInput,
|
|
210
214
|
GetObjectAclCommandOutput,
|
|
211
215
|
} from "./commands/GetObjectAclCommand";
|
|
216
|
+
import {
|
|
217
|
+
GetObjectAnnotationCommandInput,
|
|
218
|
+
GetObjectAnnotationCommandOutput,
|
|
219
|
+
} from "./commands/GetObjectAnnotationCommand";
|
|
212
220
|
import {
|
|
213
221
|
GetObjectAttributesCommandInput,
|
|
214
222
|
GetObjectAttributesCommandOutput,
|
|
@@ -277,6 +285,10 @@ import {
|
|
|
277
285
|
ListMultipartUploadsCommandInput,
|
|
278
286
|
ListMultipartUploadsCommandOutput,
|
|
279
287
|
} from "./commands/ListMultipartUploadsCommand";
|
|
288
|
+
import {
|
|
289
|
+
ListObjectAnnotationsCommandInput,
|
|
290
|
+
ListObjectAnnotationsCommandOutput,
|
|
291
|
+
} from "./commands/ListObjectAnnotationsCommand";
|
|
280
292
|
import {
|
|
281
293
|
ListObjectsCommandInput,
|
|
282
294
|
ListObjectsCommandOutput,
|
|
@@ -373,6 +385,10 @@ import {
|
|
|
373
385
|
PutObjectAclCommandInput,
|
|
374
386
|
PutObjectAclCommandOutput,
|
|
375
387
|
} from "./commands/PutObjectAclCommand";
|
|
388
|
+
import {
|
|
389
|
+
PutObjectAnnotationCommandInput,
|
|
390
|
+
PutObjectAnnotationCommandOutput,
|
|
391
|
+
} from "./commands/PutObjectAnnotationCommand";
|
|
376
392
|
import {
|
|
377
393
|
PutObjectCommandInput,
|
|
378
394
|
PutObjectCommandOutput,
|
|
@@ -409,6 +425,10 @@ import {
|
|
|
409
425
|
SelectObjectContentCommandInput,
|
|
410
426
|
SelectObjectContentCommandOutput,
|
|
411
427
|
} from "./commands/SelectObjectContentCommand";
|
|
428
|
+
import {
|
|
429
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandInput,
|
|
430
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandOutput,
|
|
431
|
+
} from "./commands/UpdateBucketMetadataAnnotationTableConfigurationCommand";
|
|
412
432
|
import {
|
|
413
433
|
UpdateBucketMetadataInventoryTableConfigurationCommandInput,
|
|
414
434
|
UpdateBucketMetadataInventoryTableConfigurationCommandOutput,
|
|
@@ -790,6 +810,19 @@ export interface S3 {
|
|
|
790
810
|
options: __HttpHandlerOptions,
|
|
791
811
|
cb: (err: any, data?: DeleteObjectCommandOutput) => void
|
|
792
812
|
): void;
|
|
813
|
+
deleteObjectAnnotation(
|
|
814
|
+
args: DeleteObjectAnnotationCommandInput,
|
|
815
|
+
options?: __HttpHandlerOptions
|
|
816
|
+
): Promise<DeleteObjectAnnotationCommandOutput>;
|
|
817
|
+
deleteObjectAnnotation(
|
|
818
|
+
args: DeleteObjectAnnotationCommandInput,
|
|
819
|
+
cb: (err: any, data?: DeleteObjectAnnotationCommandOutput) => void
|
|
820
|
+
): void;
|
|
821
|
+
deleteObjectAnnotation(
|
|
822
|
+
args: DeleteObjectAnnotationCommandInput,
|
|
823
|
+
options: __HttpHandlerOptions,
|
|
824
|
+
cb: (err: any, data?: DeleteObjectAnnotationCommandOutput) => void
|
|
825
|
+
): void;
|
|
793
826
|
deleteObjects(
|
|
794
827
|
args: DeleteObjectsCommandInput,
|
|
795
828
|
options?: __HttpHandlerOptions
|
|
@@ -1172,6 +1205,19 @@ export interface S3 {
|
|
|
1172
1205
|
options: __HttpHandlerOptions,
|
|
1173
1206
|
cb: (err: any, data?: GetObjectAclCommandOutput) => void
|
|
1174
1207
|
): void;
|
|
1208
|
+
getObjectAnnotation(
|
|
1209
|
+
args: GetObjectAnnotationCommandInput,
|
|
1210
|
+
options?: __HttpHandlerOptions
|
|
1211
|
+
): Promise<GetObjectAnnotationCommandOutput>;
|
|
1212
|
+
getObjectAnnotation(
|
|
1213
|
+
args: GetObjectAnnotationCommandInput,
|
|
1214
|
+
cb: (err: any, data?: GetObjectAnnotationCommandOutput) => void
|
|
1215
|
+
): void;
|
|
1216
|
+
getObjectAnnotation(
|
|
1217
|
+
args: GetObjectAnnotationCommandInput,
|
|
1218
|
+
options: __HttpHandlerOptions,
|
|
1219
|
+
cb: (err: any, data?: GetObjectAnnotationCommandOutput) => void
|
|
1220
|
+
): void;
|
|
1175
1221
|
getObjectAttributes(
|
|
1176
1222
|
args: GetObjectAttributesCommandInput,
|
|
1177
1223
|
options?: __HttpHandlerOptions
|
|
@@ -1400,6 +1446,19 @@ export interface S3 {
|
|
|
1400
1446
|
options: __HttpHandlerOptions,
|
|
1401
1447
|
cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void
|
|
1402
1448
|
): void;
|
|
1449
|
+
listObjectAnnotations(
|
|
1450
|
+
args: ListObjectAnnotationsCommandInput,
|
|
1451
|
+
options?: __HttpHandlerOptions
|
|
1452
|
+
): Promise<ListObjectAnnotationsCommandOutput>;
|
|
1453
|
+
listObjectAnnotations(
|
|
1454
|
+
args: ListObjectAnnotationsCommandInput,
|
|
1455
|
+
cb: (err: any, data?: ListObjectAnnotationsCommandOutput) => void
|
|
1456
|
+
): void;
|
|
1457
|
+
listObjectAnnotations(
|
|
1458
|
+
args: ListObjectAnnotationsCommandInput,
|
|
1459
|
+
options: __HttpHandlerOptions,
|
|
1460
|
+
cb: (err: any, data?: ListObjectAnnotationsCommandOutput) => void
|
|
1461
|
+
): void;
|
|
1403
1462
|
listObjects(
|
|
1404
1463
|
args: ListObjectsCommandInput,
|
|
1405
1464
|
options?: __HttpHandlerOptions
|
|
@@ -1737,6 +1796,19 @@ export interface S3 {
|
|
|
1737
1796
|
options: __HttpHandlerOptions,
|
|
1738
1797
|
cb: (err: any, data?: PutObjectAclCommandOutput) => void
|
|
1739
1798
|
): void;
|
|
1799
|
+
putObjectAnnotation(
|
|
1800
|
+
args: PutObjectAnnotationCommandInput,
|
|
1801
|
+
options?: __HttpHandlerOptions
|
|
1802
|
+
): Promise<PutObjectAnnotationCommandOutput>;
|
|
1803
|
+
putObjectAnnotation(
|
|
1804
|
+
args: PutObjectAnnotationCommandInput,
|
|
1805
|
+
cb: (err: any, data?: PutObjectAnnotationCommandOutput) => void
|
|
1806
|
+
): void;
|
|
1807
|
+
putObjectAnnotation(
|
|
1808
|
+
args: PutObjectAnnotationCommandInput,
|
|
1809
|
+
options: __HttpHandlerOptions,
|
|
1810
|
+
cb: (err: any, data?: PutObjectAnnotationCommandOutput) => void
|
|
1811
|
+
): void;
|
|
1740
1812
|
putObjectLegalHold(
|
|
1741
1813
|
args: PutObjectLegalHoldCommandInput,
|
|
1742
1814
|
options?: __HttpHandlerOptions
|
|
@@ -1841,6 +1913,25 @@ export interface S3 {
|
|
|
1841
1913
|
options: __HttpHandlerOptions,
|
|
1842
1914
|
cb: (err: any, data?: SelectObjectContentCommandOutput) => void
|
|
1843
1915
|
): void;
|
|
1916
|
+
updateBucketMetadataAnnotationTableConfiguration(
|
|
1917
|
+
args: UpdateBucketMetadataAnnotationTableConfigurationCommandInput,
|
|
1918
|
+
options?: __HttpHandlerOptions
|
|
1919
|
+
): Promise<UpdateBucketMetadataAnnotationTableConfigurationCommandOutput>;
|
|
1920
|
+
updateBucketMetadataAnnotationTableConfiguration(
|
|
1921
|
+
args: UpdateBucketMetadataAnnotationTableConfigurationCommandInput,
|
|
1922
|
+
cb: (
|
|
1923
|
+
err: any,
|
|
1924
|
+
data?: UpdateBucketMetadataAnnotationTableConfigurationCommandOutput
|
|
1925
|
+
) => void
|
|
1926
|
+
): void;
|
|
1927
|
+
updateBucketMetadataAnnotationTableConfiguration(
|
|
1928
|
+
args: UpdateBucketMetadataAnnotationTableConfigurationCommandInput,
|
|
1929
|
+
options: __HttpHandlerOptions,
|
|
1930
|
+
cb: (
|
|
1931
|
+
err: any,
|
|
1932
|
+
data?: UpdateBucketMetadataAnnotationTableConfigurationCommandOutput
|
|
1933
|
+
) => void
|
|
1934
|
+
): void;
|
|
1844
1935
|
updateBucketMetadataInventoryTableConfiguration(
|
|
1845
1936
|
args: UpdateBucketMetadataInventoryTableConfigurationCommandInput,
|
|
1846
1937
|
options?: __HttpHandlerOptions
|
|
@@ -1945,6 +2036,13 @@ export interface S3 {
|
|
|
1945
2036
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1946
2037
|
>
|
|
1947
2038
|
): Paginator<ListDirectoryBucketsCommandOutput>;
|
|
2039
|
+
paginateListObjectAnnotations(
|
|
2040
|
+
args: ListObjectAnnotationsCommandInput,
|
|
2041
|
+
paginationConfig?: Pick<
|
|
2042
|
+
PaginationConfiguration,
|
|
2043
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
2044
|
+
>
|
|
2045
|
+
): Paginator<ListObjectAnnotationsCommandOutput>;
|
|
1948
2046
|
paginateListObjectsV2(
|
|
1949
2047
|
args: ListObjectsV2CommandInput,
|
|
1950
2048
|
paginationConfig?: Pick<
|
|
@@ -142,6 +142,10 @@ import {
|
|
|
142
142
|
DeleteBucketWebsiteCommandInput,
|
|
143
143
|
DeleteBucketWebsiteCommandOutput,
|
|
144
144
|
} from "./commands/DeleteBucketWebsiteCommand";
|
|
145
|
+
import {
|
|
146
|
+
DeleteObjectAnnotationCommandInput,
|
|
147
|
+
DeleteObjectAnnotationCommandOutput,
|
|
148
|
+
} from "./commands/DeleteObjectAnnotationCommand";
|
|
145
149
|
import {
|
|
146
150
|
DeleteObjectCommandInput,
|
|
147
151
|
DeleteObjectCommandOutput,
|
|
@@ -254,6 +258,10 @@ import {
|
|
|
254
258
|
GetObjectAclCommandInput,
|
|
255
259
|
GetObjectAclCommandOutput,
|
|
256
260
|
} from "./commands/GetObjectAclCommand";
|
|
261
|
+
import {
|
|
262
|
+
GetObjectAnnotationCommandInput,
|
|
263
|
+
GetObjectAnnotationCommandOutput,
|
|
264
|
+
} from "./commands/GetObjectAnnotationCommand";
|
|
257
265
|
import {
|
|
258
266
|
GetObjectAttributesCommandInput,
|
|
259
267
|
GetObjectAttributesCommandOutput,
|
|
@@ -322,6 +330,10 @@ import {
|
|
|
322
330
|
ListMultipartUploadsCommandInput,
|
|
323
331
|
ListMultipartUploadsCommandOutput,
|
|
324
332
|
} from "./commands/ListMultipartUploadsCommand";
|
|
333
|
+
import {
|
|
334
|
+
ListObjectAnnotationsCommandInput,
|
|
335
|
+
ListObjectAnnotationsCommandOutput,
|
|
336
|
+
} from "./commands/ListObjectAnnotationsCommand";
|
|
325
337
|
import {
|
|
326
338
|
ListObjectsCommandInput,
|
|
327
339
|
ListObjectsCommandOutput,
|
|
@@ -418,6 +430,10 @@ import {
|
|
|
418
430
|
PutObjectAclCommandInput,
|
|
419
431
|
PutObjectAclCommandOutput,
|
|
420
432
|
} from "./commands/PutObjectAclCommand";
|
|
433
|
+
import {
|
|
434
|
+
PutObjectAnnotationCommandInput,
|
|
435
|
+
PutObjectAnnotationCommandOutput,
|
|
436
|
+
} from "./commands/PutObjectAnnotationCommand";
|
|
421
437
|
import {
|
|
422
438
|
PutObjectCommandInput,
|
|
423
439
|
PutObjectCommandOutput,
|
|
@@ -454,6 +470,10 @@ import {
|
|
|
454
470
|
SelectObjectContentCommandInput,
|
|
455
471
|
SelectObjectContentCommandOutput,
|
|
456
472
|
} from "./commands/SelectObjectContentCommand";
|
|
473
|
+
import {
|
|
474
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandInput,
|
|
475
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandOutput,
|
|
476
|
+
} from "./commands/UpdateBucketMetadataAnnotationTableConfigurationCommand";
|
|
457
477
|
import {
|
|
458
478
|
UpdateBucketMetadataInventoryTableConfigurationCommandInput,
|
|
459
479
|
UpdateBucketMetadataInventoryTableConfigurationCommandOutput,
|
|
@@ -509,6 +529,7 @@ export type ServiceInputTypes =
|
|
|
509
529
|
| DeleteBucketReplicationCommandInput
|
|
510
530
|
| DeleteBucketTaggingCommandInput
|
|
511
531
|
| DeleteBucketWebsiteCommandInput
|
|
532
|
+
| DeleteObjectAnnotationCommandInput
|
|
512
533
|
| DeleteObjectCommandInput
|
|
513
534
|
| DeleteObjectTaggingCommandInput
|
|
514
535
|
| DeleteObjectsCommandInput
|
|
@@ -537,6 +558,7 @@ export type ServiceInputTypes =
|
|
|
537
558
|
| GetBucketVersioningCommandInput
|
|
538
559
|
| GetBucketWebsiteCommandInput
|
|
539
560
|
| GetObjectAclCommandInput
|
|
561
|
+
| GetObjectAnnotationCommandInput
|
|
540
562
|
| GetObjectAttributesCommandInput
|
|
541
563
|
| GetObjectCommandInput
|
|
542
564
|
| GetObjectLegalHoldCommandInput
|
|
@@ -554,6 +576,7 @@ export type ServiceInputTypes =
|
|
|
554
576
|
| ListBucketsCommandInput
|
|
555
577
|
| ListDirectoryBucketsCommandInput
|
|
556
578
|
| ListMultipartUploadsCommandInput
|
|
579
|
+
| ListObjectAnnotationsCommandInput
|
|
557
580
|
| ListObjectVersionsCommandInput
|
|
558
581
|
| ListObjectsCommandInput
|
|
559
582
|
| ListObjectsV2CommandInput
|
|
@@ -578,6 +601,7 @@ export type ServiceInputTypes =
|
|
|
578
601
|
| PutBucketVersioningCommandInput
|
|
579
602
|
| PutBucketWebsiteCommandInput
|
|
580
603
|
| PutObjectAclCommandInput
|
|
604
|
+
| PutObjectAnnotationCommandInput
|
|
581
605
|
| PutObjectCommandInput
|
|
582
606
|
| PutObjectLegalHoldCommandInput
|
|
583
607
|
| PutObjectLockConfigurationCommandInput
|
|
@@ -587,6 +611,7 @@ export type ServiceInputTypes =
|
|
|
587
611
|
| RenameObjectCommandInput
|
|
588
612
|
| RestoreObjectCommandInput
|
|
589
613
|
| SelectObjectContentCommandInput
|
|
614
|
+
| UpdateBucketMetadataAnnotationTableConfigurationCommandInput
|
|
590
615
|
| UpdateBucketMetadataInventoryTableConfigurationCommandInput
|
|
591
616
|
| UpdateBucketMetadataJournalTableConfigurationCommandInput
|
|
592
617
|
| UpdateObjectEncryptionCommandInput
|
|
@@ -617,6 +642,7 @@ export type ServiceOutputTypes =
|
|
|
617
642
|
| DeleteBucketReplicationCommandOutput
|
|
618
643
|
| DeleteBucketTaggingCommandOutput
|
|
619
644
|
| DeleteBucketWebsiteCommandOutput
|
|
645
|
+
| DeleteObjectAnnotationCommandOutput
|
|
620
646
|
| DeleteObjectCommandOutput
|
|
621
647
|
| DeleteObjectTaggingCommandOutput
|
|
622
648
|
| DeleteObjectsCommandOutput
|
|
@@ -645,6 +671,7 @@ export type ServiceOutputTypes =
|
|
|
645
671
|
| GetBucketVersioningCommandOutput
|
|
646
672
|
| GetBucketWebsiteCommandOutput
|
|
647
673
|
| GetObjectAclCommandOutput
|
|
674
|
+
| GetObjectAnnotationCommandOutput
|
|
648
675
|
| GetObjectAttributesCommandOutput
|
|
649
676
|
| GetObjectCommandOutput
|
|
650
677
|
| GetObjectLegalHoldCommandOutput
|
|
@@ -662,6 +689,7 @@ export type ServiceOutputTypes =
|
|
|
662
689
|
| ListBucketsCommandOutput
|
|
663
690
|
| ListDirectoryBucketsCommandOutput
|
|
664
691
|
| ListMultipartUploadsCommandOutput
|
|
692
|
+
| ListObjectAnnotationsCommandOutput
|
|
665
693
|
| ListObjectVersionsCommandOutput
|
|
666
694
|
| ListObjectsCommandOutput
|
|
667
695
|
| ListObjectsV2CommandOutput
|
|
@@ -686,6 +714,7 @@ export type ServiceOutputTypes =
|
|
|
686
714
|
| PutBucketVersioningCommandOutput
|
|
687
715
|
| PutBucketWebsiteCommandOutput
|
|
688
716
|
| PutObjectAclCommandOutput
|
|
717
|
+
| PutObjectAnnotationCommandOutput
|
|
689
718
|
| PutObjectCommandOutput
|
|
690
719
|
| PutObjectLegalHoldCommandOutput
|
|
691
720
|
| PutObjectLockConfigurationCommandOutput
|
|
@@ -695,6 +724,7 @@ export type ServiceOutputTypes =
|
|
|
695
724
|
| RenameObjectCommandOutput
|
|
696
725
|
| RestoreObjectCommandOutput
|
|
697
726
|
| SelectObjectContentCommandOutput
|
|
727
|
+
| UpdateBucketMetadataAnnotationTableConfigurationCommandOutput
|
|
698
728
|
| UpdateBucketMetadataInventoryTableConfigurationCommandOutput
|
|
699
729
|
| UpdateBucketMetadataJournalTableConfigurationCommandOutput
|
|
700
730
|
| UpdateObjectEncryptionCommandOutput
|
package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteObjectAnnotationOutput,
|
|
5
|
+
DeleteObjectAnnotationRequest,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteObjectAnnotationCommandInput
|
|
15
|
+
extends DeleteObjectAnnotationRequest {}
|
|
16
|
+
export interface DeleteObjectAnnotationCommandOutput
|
|
17
|
+
extends DeleteObjectAnnotationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteObjectAnnotationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteObjectAnnotationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteObjectAnnotationCommandInput,
|
|
24
|
+
DeleteObjectAnnotationCommandOutput,
|
|
25
|
+
S3ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteObjectAnnotationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteObjectAnnotationCommandInput,
|
|
33
|
+
DeleteObjectAnnotationCommandOutput,
|
|
34
|
+
S3ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteObjectAnnotationCommand extends DeleteObjectAnnotationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteObjectAnnotationRequest;
|
|
46
|
+
output: DeleteObjectAnnotationOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteObjectAnnotationCommandInput;
|
|
50
|
+
output: DeleteObjectAnnotationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import {
|
|
3
|
+
MetadataBearer as __MetadataBearer,
|
|
4
|
+
StreamingBlobPayloadOutputTypes,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
GetObjectAnnotationOutput,
|
|
8
|
+
GetObjectAnnotationRequest,
|
|
9
|
+
} from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
S3ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../S3Client";
|
|
15
|
+
export { __MetadataBearer };
|
|
16
|
+
export { $Command };
|
|
17
|
+
export interface GetObjectAnnotationCommandInput
|
|
18
|
+
extends GetObjectAnnotationRequest {}
|
|
19
|
+
export interface GetObjectAnnotationCommandOutput
|
|
20
|
+
extends Pick<
|
|
21
|
+
GetObjectAnnotationOutput,
|
|
22
|
+
Exclude<keyof GetObjectAnnotationOutput, "AnnotationPayload">
|
|
23
|
+
>,
|
|
24
|
+
__MetadataBearer {
|
|
25
|
+
AnnotationPayload?: StreamingBlobPayloadOutputTypes;
|
|
26
|
+
}
|
|
27
|
+
declare const GetObjectAnnotationCommand_base: {
|
|
28
|
+
new (
|
|
29
|
+
input: GetObjectAnnotationCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
GetObjectAnnotationCommandInput,
|
|
32
|
+
GetObjectAnnotationCommandOutput,
|
|
33
|
+
S3ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
new (
|
|
38
|
+
input: GetObjectAnnotationCommandInput
|
|
39
|
+
): import("@smithy/core/client").CommandImpl<
|
|
40
|
+
GetObjectAnnotationCommandInput,
|
|
41
|
+
GetObjectAnnotationCommandOutput,
|
|
42
|
+
S3ClientResolvedConfig,
|
|
43
|
+
ServiceInputTypes,
|
|
44
|
+
ServiceOutputTypes
|
|
45
|
+
>;
|
|
46
|
+
getEndpointParameterInstructions(): {
|
|
47
|
+
[x: string]: unknown;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
export declare class GetObjectAnnotationCommand extends GetObjectAnnotationCommand_base {
|
|
51
|
+
protected static __types: {
|
|
52
|
+
api: {
|
|
53
|
+
input: GetObjectAnnotationRequest;
|
|
54
|
+
output: GetObjectAnnotationOutput;
|
|
55
|
+
};
|
|
56
|
+
sdk: {
|
|
57
|
+
input: GetObjectAnnotationCommandInput;
|
|
58
|
+
output: GetObjectAnnotationCommandOutput;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
}
|
package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListObjectAnnotationsOutput,
|
|
5
|
+
ListObjectAnnotationsRequest,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3ClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3Client";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListObjectAnnotationsCommandInput
|
|
15
|
+
extends ListObjectAnnotationsRequest {}
|
|
16
|
+
export interface ListObjectAnnotationsCommandOutput
|
|
17
|
+
extends ListObjectAnnotationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListObjectAnnotationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListObjectAnnotationsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListObjectAnnotationsCommandInput,
|
|
24
|
+
ListObjectAnnotationsCommandOutput,
|
|
25
|
+
S3ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListObjectAnnotationsCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListObjectAnnotationsCommandInput,
|
|
33
|
+
ListObjectAnnotationsCommandOutput,
|
|
34
|
+
S3ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListObjectAnnotationsCommand extends ListObjectAnnotationsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListObjectAnnotationsRequest;
|
|
46
|
+
output: ListObjectAnnotationsOutput;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListObjectAnnotationsCommandInput;
|
|
50
|
+
output: ListObjectAnnotationsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import {
|
|
3
|
+
MetadataBearer as __MetadataBearer,
|
|
4
|
+
StreamingBlobPayloadInputTypes,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
PutObjectAnnotationOutput,
|
|
8
|
+
PutObjectAnnotationRequest,
|
|
9
|
+
} from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
S3ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../S3Client";
|
|
15
|
+
export { __MetadataBearer };
|
|
16
|
+
export { $Command };
|
|
17
|
+
export interface PutObjectAnnotationCommandInput
|
|
18
|
+
extends Pick<
|
|
19
|
+
PutObjectAnnotationRequest,
|
|
20
|
+
Exclude<keyof PutObjectAnnotationRequest, "AnnotationPayload">
|
|
21
|
+
> {
|
|
22
|
+
AnnotationPayload: StreamingBlobPayloadInputTypes;
|
|
23
|
+
}
|
|
24
|
+
export interface PutObjectAnnotationCommandOutput
|
|
25
|
+
extends PutObjectAnnotationOutput,
|
|
26
|
+
__MetadataBearer {}
|
|
27
|
+
declare const PutObjectAnnotationCommand_base: {
|
|
28
|
+
new (
|
|
29
|
+
input: PutObjectAnnotationCommandInput
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
|
+
PutObjectAnnotationCommandInput,
|
|
32
|
+
PutObjectAnnotationCommandOutput,
|
|
33
|
+
S3ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
new (
|
|
38
|
+
input: PutObjectAnnotationCommandInput
|
|
39
|
+
): import("@smithy/core/client").CommandImpl<
|
|
40
|
+
PutObjectAnnotationCommandInput,
|
|
41
|
+
PutObjectAnnotationCommandOutput,
|
|
42
|
+
S3ClientResolvedConfig,
|
|
43
|
+
ServiceInputTypes,
|
|
44
|
+
ServiceOutputTypes
|
|
45
|
+
>;
|
|
46
|
+
getEndpointParameterInstructions(): {
|
|
47
|
+
[x: string]: unknown;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
export declare class PutObjectAnnotationCommand extends PutObjectAnnotationCommand_base {
|
|
51
|
+
protected static __types: {
|
|
52
|
+
api: {
|
|
53
|
+
input: PutObjectAnnotationRequest;
|
|
54
|
+
output: PutObjectAnnotationOutput;
|
|
55
|
+
};
|
|
56
|
+
sdk: {
|
|
57
|
+
input: PutObjectAnnotationCommandInput;
|
|
58
|
+
output: PutObjectAnnotationCommandOutput;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { RenameObjectOutput, RenameObjectRequest } from "../models/
|
|
3
|
+
import { RenameObjectOutput, RenameObjectRequest } from "../models/models_1";
|
|
4
4
|
import {
|
|
5
5
|
S3ClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { RestoreObjectOutput } from "../models/
|
|
4
|
-
import { RestoreObjectRequest } from "../models/models_1";
|
|
3
|
+
import { RestoreObjectOutput, RestoreObjectRequest } from "../models/models_1";
|
|
5
4
|
import {
|
|
6
5
|
S3ClientResolvedConfig,
|
|
7
6
|
ServiceInputTypes,
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateBucketMetadataAnnotationTableConfigurationRequest } from "../models/models_1";
|
|
4
|
+
import {
|
|
5
|
+
S3ClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3Client";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateBucketMetadataAnnotationTableConfigurationCommandInput
|
|
12
|
+
extends UpdateBucketMetadataAnnotationTableConfigurationRequest {}
|
|
13
|
+
export interface UpdateBucketMetadataAnnotationTableConfigurationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const UpdateBucketMetadataAnnotationTableConfigurationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateBucketMetadataAnnotationTableConfigurationCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandInput,
|
|
20
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandOutput,
|
|
21
|
+
S3ClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: UpdateBucketMetadataAnnotationTableConfigurationCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandInput,
|
|
29
|
+
UpdateBucketMetadataAnnotationTableConfigurationCommandOutput,
|
|
30
|
+
S3ClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class UpdateBucketMetadataAnnotationTableConfigurationCommand extends UpdateBucketMetadataAnnotationTableConfigurationCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: UpdateBucketMetadataAnnotationTableConfigurationRequest;
|
|
42
|
+
output: {};
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: UpdateBucketMetadataAnnotationTableConfigurationCommandInput;
|
|
46
|
+
output: UpdateBucketMetadataAnnotationTableConfigurationCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -21,6 +21,7 @@ export * from "./DeleteBucketPolicyCommand";
|
|
|
21
21
|
export * from "./DeleteBucketReplicationCommand";
|
|
22
22
|
export * from "./DeleteBucketTaggingCommand";
|
|
23
23
|
export * from "./DeleteBucketWebsiteCommand";
|
|
24
|
+
export * from "./DeleteObjectAnnotationCommand";
|
|
24
25
|
export * from "./DeleteObjectCommand";
|
|
25
26
|
export * from "./DeleteObjectTaggingCommand";
|
|
26
27
|
export * from "./DeleteObjectsCommand";
|
|
@@ -49,6 +50,7 @@ export * from "./GetBucketTaggingCommand";
|
|
|
49
50
|
export * from "./GetBucketVersioningCommand";
|
|
50
51
|
export * from "./GetBucketWebsiteCommand";
|
|
51
52
|
export * from "./GetObjectAclCommand";
|
|
53
|
+
export * from "./GetObjectAnnotationCommand";
|
|
52
54
|
export * from "./GetObjectAttributesCommand";
|
|
53
55
|
export * from "./GetObjectCommand";
|
|
54
56
|
export * from "./GetObjectLegalHoldCommand";
|
|
@@ -66,6 +68,7 @@ export * from "./ListBucketMetricsConfigurationsCommand";
|
|
|
66
68
|
export * from "./ListBucketsCommand";
|
|
67
69
|
export * from "./ListDirectoryBucketsCommand";
|
|
68
70
|
export * from "./ListMultipartUploadsCommand";
|
|
71
|
+
export * from "./ListObjectAnnotationsCommand";
|
|
69
72
|
export * from "./ListObjectVersionsCommand";
|
|
70
73
|
export * from "./ListObjectsCommand";
|
|
71
74
|
export * from "./ListObjectsV2Command";
|
|
@@ -90,6 +93,7 @@ export * from "./PutBucketTaggingCommand";
|
|
|
90
93
|
export * from "./PutBucketVersioningCommand";
|
|
91
94
|
export * from "./PutBucketWebsiteCommand";
|
|
92
95
|
export * from "./PutObjectAclCommand";
|
|
96
|
+
export * from "./PutObjectAnnotationCommand";
|
|
93
97
|
export * from "./PutObjectCommand";
|
|
94
98
|
export * from "./PutObjectLegalHoldCommand";
|
|
95
99
|
export * from "./PutObjectLockConfigurationCommand";
|
|
@@ -99,6 +103,7 @@ export * from "./PutPublicAccessBlockCommand";
|
|
|
99
103
|
export * from "./RenameObjectCommand";
|
|
100
104
|
export * from "./RestoreObjectCommand";
|
|
101
105
|
export * from "./SelectObjectContentCommand";
|
|
106
|
+
export * from "./UpdateBucketMetadataAnnotationTableConfigurationCommand";
|
|
102
107
|
export * from "./UpdateBucketMetadataInventoryTableConfigurationCommand";
|
|
103
108
|
export * from "./UpdateBucketMetadataJournalTableConfigurationCommand";
|
|
104
109
|
export * from "./UpdateObjectEncryptionCommand";
|
|
@@ -61,6 +61,12 @@ export declare const ObjectCannedACL: {
|
|
|
61
61
|
};
|
|
62
62
|
export type ObjectCannedACL =
|
|
63
63
|
(typeof ObjectCannedACL)[keyof typeof ObjectCannedACL];
|
|
64
|
+
export declare const AnnotationDirective: {
|
|
65
|
+
readonly COPY: "COPY";
|
|
66
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
67
|
+
};
|
|
68
|
+
export type AnnotationDirective =
|
|
69
|
+
(typeof AnnotationDirective)[keyof typeof AnnotationDirective];
|
|
64
70
|
export declare const ChecksumAlgorithm: {
|
|
65
71
|
readonly CRC32: "CRC32";
|
|
66
72
|
readonly CRC32C: "CRC32C";
|
|
@@ -193,18 +199,24 @@ export declare const ObjectOwnership: {
|
|
|
193
199
|
};
|
|
194
200
|
export type ObjectOwnership =
|
|
195
201
|
(typeof ObjectOwnership)[keyof typeof ObjectOwnership];
|
|
196
|
-
export declare const
|
|
202
|
+
export declare const AnnotationConfigurationState: {
|
|
197
203
|
readonly DISABLED: "DISABLED";
|
|
198
204
|
readonly ENABLED: "ENABLED";
|
|
199
205
|
};
|
|
200
|
-
export type
|
|
201
|
-
(typeof
|
|
206
|
+
export type AnnotationConfigurationState =
|
|
207
|
+
(typeof AnnotationConfigurationState)[keyof typeof AnnotationConfigurationState];
|
|
202
208
|
export declare const TableSseAlgorithm: {
|
|
203
209
|
readonly AES256: "AES256";
|
|
204
210
|
readonly aws_kms: "aws:kms";
|
|
205
211
|
};
|
|
206
212
|
export type TableSseAlgorithm =
|
|
207
213
|
(typeof TableSseAlgorithm)[keyof typeof TableSseAlgorithm];
|
|
214
|
+
export declare const InventoryConfigurationState: {
|
|
215
|
+
readonly DISABLED: "DISABLED";
|
|
216
|
+
readonly ENABLED: "ENABLED";
|
|
217
|
+
};
|
|
218
|
+
export type InventoryConfigurationState =
|
|
219
|
+
(typeof InventoryConfigurationState)[keyof typeof InventoryConfigurationState];
|
|
208
220
|
export declare const ExpirationState: {
|
|
209
221
|
readonly DISABLED: "DISABLED";
|
|
210
222
|
readonly ENABLED: "ENABLED";
|
|
@@ -331,6 +343,9 @@ export declare const Event: {
|
|
|
331
343
|
readonly s3_LifecycleExpiration_DeleteMarkerCreated: "s3:LifecycleExpiration:DeleteMarkerCreated";
|
|
332
344
|
readonly s3_LifecycleTransition: "s3:LifecycleTransition";
|
|
333
345
|
readonly s3_ObjectAcl_Put: "s3:ObjectAcl:Put";
|
|
346
|
+
readonly s3_ObjectAnnotation_: "s3:ObjectAnnotation:*";
|
|
347
|
+
readonly s3_ObjectAnnotation_Delete: "s3:ObjectAnnotation:Delete";
|
|
348
|
+
readonly s3_ObjectAnnotation_Put: "s3:ObjectAnnotation:Put";
|
|
334
349
|
readonly s3_ObjectCreated_: "s3:ObjectCreated:*";
|
|
335
350
|
readonly s3_ObjectCreated_CompleteMultipartUpload: "s3:ObjectCreated:CompleteMultipartUpload";
|
|
336
351
|
readonly s3_ObjectCreated_Copy: "s3:ObjectCreated:Copy";
|