@cdklabs/cdk-ssm-documents 0.0.65 → 0.0.67
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 +13 -13
- 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 +6921 -4557
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +35 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +2 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAllowedImagesSettingsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAwsNetworkPerformanceDataCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +15 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +42 -15
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +17 -35
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +86 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAwsNetworkPerformanceDataCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +7 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +15 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- 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/GetProvisionedConcurrencyConfigCommand.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-parser.browser.js +3 -6
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +233 -46
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.browser.js +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +233 -43
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-parser.d.ts +1 -1
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-parser.d.ts +2 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +7 -7
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +518 -371
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +355 -145
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +456 -142
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +355 -145
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +15 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +30 -36
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +54 -110
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +30 -36
- 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/checksum/crc32/Crc32Js.js +27 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +21 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.browser.js +7 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.js +7 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/index.native.js +7 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Js.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5/Md5Node.js +29 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Js.js +179 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256Node.js +59 -0
- package/node_modules/@smithy/core/dist-es/submodules/checksum/sha256/Sha256WebCrypto.js +71 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +14 -3
- package/node_modules/@smithy/core/dist-es/submodules/serde/concatBytes.js +15 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.browser.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/index.native.js +2 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +4 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/headStream.js +2 -1
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.browser.js +12 -38
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/stream-collector.js +18 -33
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.browser.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-utf8/toUint8Array.js +3 -0
- 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/checksum/crc32/Crc32Js.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.browser.d.ts +7 -1
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.d.ts +7 -1
- package/node_modules/@smithy/core/dist-types/submodules/checksum/index.native.d.ts +7 -1
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Js.d.ts +19 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5/Md5Node.d.ts +17 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Js.d.ts +28 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256Node.d.ts +13 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/sha256/Sha256WebCrypto.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/concatBytes.d.ts +6 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.browser.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/index.native.d.ts +2 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +9 -0
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.browser.d.ts +8 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/stream-collector.d.ts +4 -1
- package/node_modules/@smithy/core/package.json +4 -3
- package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +2 -55
- package/node_modules/@smithy/fetch-http-handler/dist-es/index.js +2 -2
- package/node_modules/@smithy/fetch-http-handler/dist-types/index.d.ts +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/dist-cjs/index.js +3 -51
- package/node_modules/@smithy/node-http-handler/dist-es/index.js +3 -3
- package/node_modules/@smithy/node-http-handler/dist-types/index.d.ts +3 -3
- package/node_modules/@smithy/node-http-handler/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +2 -2
- package/node_modules/immutable/dist/immutable.es.js +161 -15
- package/node_modules/immutable/dist/immutable.js +161 -15
- package/node_modules/immutable/dist/immutable.min.js +33 -32
- package/node_modules/immutable/package.json +1 -1
- package/node_modules/js-yaml/README.md +5 -3
- package/node_modules/js-yaml/dist/js-yaml.js +3009 -2402
- package/node_modules/js-yaml/dist/js-yaml.js.map +1 -1
- package/node_modules/js-yaml/dist/js-yaml.min.js +2 -33
- package/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -1
- package/node_modules/js-yaml/dist/js-yaml.mjs +3073 -2381
- package/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -1
- package/node_modules/js-yaml/lib/loader.js +7 -11
- package/node_modules/js-yaml/lib/type/float.js +1 -1
- package/node_modules/js-yaml/lib/type/int.js +4 -4
- package/node_modules/js-yaml/package.json +10 -4
- package/package.json +12 -12
- 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
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +0 -336
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-external/nodable_entities.js +0 -332
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-external/nodable_entities.d.ts +0 -66
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-external/nodable_entities.d.ts +0 -65
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/CHANGELOG.md +0 -827
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/LICENSE +0 -21
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/README.md +0 -202
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.d.cts +0 -770
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxvalidator.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxvalidator.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/package.json +0 -93
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/cli/cli.js +0 -97
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/cli/man.js +0 -17
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/cli/read.js +0 -43
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/fxp.d.ts +0 -739
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/fxp.js +0 -14
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/ignoreAttributes.js +0 -18
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/util.js +0 -61
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/CharsSymbol.js +0 -16
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/EntitiesParser.js +0 -106
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OptionsBuilder.js +0 -61
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -69
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsArrBuilder.js +0 -103
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -100
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/JsObjBuilder.js +0 -154
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -94
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/Report.js +0 -0
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/TagPath.js +0 -81
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/TagPathMatcher.js +0 -13
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/XMLParser.js +0 -83
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/Xml2JsParser.js +0 -235
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/XmlPartReader.js +0 -210
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/XmlSpecialTagsReader.js +0 -111
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/inputSource/BufferSource.js +0 -116
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/inputSource/StringSource.js +0 -121
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/EntitiesParser.js +0 -105
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js +0 -22
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/booleanParserExt.js +0 -19
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/currency.js +0 -38
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/join.js +0 -13
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/number.js +0 -14
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/v6/valueParsers/trim.js +0 -6
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/validator.js +0 -425
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlbuilder/json2xml.js +0 -6
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/DocTypeReader.js +0 -407
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OptionsBuilder.js +0 -163
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +0 -840
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/XMLParser.js +0 -71
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/node2json.js +0 -177
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/xmlparser/xmlNode.js +0 -40
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/CHANGELOG.md +0 -51
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/LICENSE +0 -21
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/README.md +0 -113
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/package.json +0 -35
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/strnum.js +0 -171
- package/node_modules/@nodable/entities/README.md +0 -41
- package/node_modules/@nodable/entities/package.json +0 -57
- package/node_modules/@nodable/entities/src/EntityDecoder.js +0 -644
- package/node_modules/@nodable/entities/src/EntityEncoder.js +0 -194
- package/node_modules/@nodable/entities/src/entities.js +0 -1159
- package/node_modules/@nodable/entities/src/entityTries.js +0 -49
- package/node_modules/@nodable/entities/src/index.d.ts +0 -341
- package/node_modules/@nodable/entities/src/index.js +0 -29
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/constants.js +0 -3
- package/node_modules/@smithy/core/dist-es/submodules/checksum/md5-js/md5.js +0 -168
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/constants.d.ts +0 -12
- package/node_modules/@smithy/core/dist-types/submodules/checksum/md5-js/md5.d.ts +0 -16
- package/node_modules/@smithy/fetch-http-handler/dist-es/stream-collector.js +0 -53
- package/node_modules/@smithy/fetch-http-handler/dist-types/stream-collector.d.ts +0 -2
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/collector.js +0 -8
- package/node_modules/@smithy/node-http-handler/dist-es/stream-collector/index.js +0 -41
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/collector.d.ts +0 -5
- package/node_modules/@smithy/node-http-handler/dist-types/stream-collector/index.d.ts +0 -7
- package/node_modules/anynum/LICENSE +0 -21
- package/node_modules/anynum/README.md +0 -142
- package/node_modules/anynum/anynum.js +0 -135
- package/node_modules/anynum/digitTable.js +0 -116
- package/node_modules/anynum/package.json +0 -42
- package/node_modules/fast-xml-builder/CHANGELOG.md +0 -40
- package/node_modules/fast-xml-builder/LICENSE +0 -21
- package/node_modules/fast-xml-builder/README.md +0 -74
- package/node_modules/fast-xml-builder/lib/fxb.cjs +0 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +0 -270
- package/node_modules/fast-xml-builder/lib/fxb.min.js +0 -2
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +0 -1
- package/node_modules/fast-xml-builder/package.json +0 -81
- package/node_modules/fast-xml-builder/src/fxb.d.ts +0 -270
- package/node_modules/fast-xml-builder/src/fxb.js +0 -599
- package/node_modules/fast-xml-builder/src/ignoreAttributes.js +0 -18
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +0 -359
- package/node_modules/fast-xml-builder/src/prettifyJs2Xml.js +0 -0
- package/node_modules/fast-xml-builder/src/util.js +0 -16
- package/node_modules/path-expression-matcher/LICENSE +0 -21
- package/node_modules/path-expression-matcher/README.md +0 -872
- package/node_modules/path-expression-matcher/lib/pem.cjs +0 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +0 -634
- package/node_modules/path-expression-matcher/lib/pem.min.js +0 -2
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +0 -1
- package/node_modules/path-expression-matcher/package.json +0 -78
- package/node_modules/path-expression-matcher/src/Expression.js +0 -232
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +0 -209
- package/node_modules/path-expression-matcher/src/Matcher.js +0 -570
- package/node_modules/path-expression-matcher/src/index.d.ts +0 -523
- package/node_modules/path-expression-matcher/src/index.js +0 -29
- package/node_modules/xml-naming/README.md +0 -189
- package/node_modules/xml-naming/package.json +0 -54
- package/node_modules/xml-naming/src/index.d.ts +0 -74
- package/node_modules/xml-naming/src/index.js +0 -270
|
@@ -3520,6 +3520,10 @@ const _IVTD = "ImportVolumeTaskDetails";
|
|
|
3520
3520
|
const _IVk = "IkeVersions";
|
|
3521
3521
|
const _IVm = "ImportVolume";
|
|
3522
3522
|
const _IW = "ImageWatermarks";
|
|
3523
|
+
const _IWFR = "ImageWatermarkFilterRequest";
|
|
3524
|
+
const _IWFRL = "ImageWatermarkFilterRequestList";
|
|
3525
|
+
const _IWFRLm = "ImageWatermarkFilterResponseList";
|
|
3526
|
+
const _IWFRm = "ImageWatermarkFilterResponse";
|
|
3523
3527
|
const _IWL = "ImageWatermarkList";
|
|
3524
3528
|
const _IWm = "ImageWatermark";
|
|
3525
3529
|
const _Ic = "Icmp";
|
|
@@ -3850,6 +3854,8 @@ const _MDRe = "MetricDimensionResults";
|
|
|
3850
3854
|
const _MDRet = "MetricDataResult";
|
|
3851
3855
|
const _MDSC = "MaximumDaysSinceCreated";
|
|
3852
3856
|
const _MDSD = "MaximumDaysSinceDeprecated";
|
|
3857
|
+
const _MDSSIC = "MaximumDaysSinceSourceImageCreated";
|
|
3858
|
+
const _MDSWC = "MaximumDaysSinceWatermarkCreated";
|
|
3853
3859
|
const _MDV = "MetaDataValue";
|
|
3854
3860
|
const _MDa = "MaintenanceDetails";
|
|
3855
3861
|
const _MDe = "MetaData";
|
|
@@ -7213,6 +7219,8 @@ const _mDRS = "metricDataResultSet";
|
|
|
7213
7219
|
const _mDRSe = "metricDimensionResultSet";
|
|
7214
7220
|
const _mDSC = "maximumDaysSinceCreated";
|
|
7215
7221
|
const _mDSD = "maximumDaysSinceDeprecated";
|
|
7222
|
+
const _mDSSIC = "maximumDaysSinceSourceImageCreated";
|
|
7223
|
+
const _mDSWC = "maximumDaysSinceWatermarkCreated";
|
|
7216
7224
|
const _mDV = "metaDataValue";
|
|
7217
7225
|
const _mDe = "metaData";
|
|
7218
7226
|
const _mE = "maxEntries";
|
|
@@ -17917,18 +17925,19 @@ export var ImageAttribute$ = [3, n0, _IAma,
|
|
|
17917
17925
|
];
|
|
17918
17926
|
export var ImageCriterion$ = [3, n0, _ICma,
|
|
17919
17927
|
0,
|
|
17920
|
-
[_IPm, _MPC, _INm, _DTC, _CDC],
|
|
17928
|
+
[_IPm, _MPC, _INm, _DTC, _CDC, _IW],
|
|
17921
17929
|
[[() => ImageProviderList, { [_eQN]: `ImageProviderSet`,
|
|
17922
17930
|
[_xN]: _iPSm }], [() => MarketplaceProductCodeList, { [_eQN]: `MarketplaceProductCodeSet`,
|
|
17923
17931
|
[_xN]: _mPCS }], [() => ImageNameList, { [_eQN]: `ImageNameSet`,
|
|
17924
17932
|
[_xN]: _iNS }], [() => DeprecationTimeCondition$, { [_eQN]: `DeprecationTimeCondition`,
|
|
17925
17933
|
[_xN]: _dTC }], [() => CreationDateCondition$, { [_eQN]: `CreationDateCondition`,
|
|
17926
|
-
[_xN]: _cDC }]]
|
|
17934
|
+
[_xN]: _cDC }], [() => ImageWatermarkFilterResponseList, { [_eQN]: `ImageWatermarkSet`,
|
|
17935
|
+
[_xN]: _iWS }]]
|
|
17927
17936
|
];
|
|
17928
17937
|
export var ImageCriterionRequest$ = [3, n0, _ICR,
|
|
17929
17938
|
0,
|
|
17930
|
-
[_IPm, _MPC, _INm, _DTC, _CDC],
|
|
17931
|
-
[[() => ImageProviderRequestList, { [_xN]: _IPma }], [() => MarketplaceProductCodeRequestList, { [_xN]: _MPCa }], [() => ImageNameCriteriaRequestList, { [_xN]: _INma }], () => DeprecationTimeConditionRequest$, () => CreationDateConditionRequest
|
|
17939
|
+
[_IPm, _MPC, _INm, _DTC, _CDC, _IW],
|
|
17940
|
+
[[() => ImageProviderRequestList, { [_xN]: _IPma }], [() => MarketplaceProductCodeRequestList, { [_xN]: _MPCa }], [() => ImageNameCriteriaRequestList, { [_xN]: _INma }], () => DeprecationTimeConditionRequest$, () => CreationDateConditionRequest$, [() => ImageWatermarkFilterRequestList, { [_xN]: _IWm }]]
|
|
17932
17941
|
];
|
|
17933
17942
|
export var ImageDiskContainer$ = [3, n0, _IDC,
|
|
17934
17943
|
0,
|
|
@@ -18027,6 +18036,20 @@ export var ImageWatermark$ = [3, n0, _IWm,
|
|
|
18027
18036
|
[_xN]: _sICT }], [4, { [_eQN]: `WatermarkCreationTime`,
|
|
18028
18037
|
[_xN]: _wCT }]]
|
|
18029
18038
|
];
|
|
18039
|
+
export var ImageWatermarkFilterRequest$ = [3, n0, _IWFR,
|
|
18040
|
+
0,
|
|
18041
|
+
[_WK, _SIRo, _MDSSIC, _MDSWC],
|
|
18042
|
+
[0, 0, 1, 1]
|
|
18043
|
+
];
|
|
18044
|
+
export var ImageWatermarkFilterResponse$ = [3, n0, _IWFRm,
|
|
18045
|
+
0,
|
|
18046
|
+
[_WK, _SIRo, _MDSSIC, _MDSWC],
|
|
18047
|
+
[[0, { [_eQN]: `WatermarkKey`,
|
|
18048
|
+
[_xN]: _wK }], [0, { [_eQN]: `SourceImageRegion`,
|
|
18049
|
+
[_xN]: _sIR }], [1, { [_eQN]: `MaximumDaysSinceSourceImageCreated`,
|
|
18050
|
+
[_xN]: _mDSSIC }], [1, { [_eQN]: `MaximumDaysSinceWatermarkCreated`,
|
|
18051
|
+
[_xN]: _mDSWC }]]
|
|
18052
|
+
];
|
|
18030
18053
|
export var ImportClientVpnClientCertificateRevocationListRequest$ = [3, n0, _ICVCCRLR,
|
|
18031
18054
|
0,
|
|
18032
18055
|
[_CVEI, _CRL, _DR],
|
|
@@ -26734,6 +26757,14 @@ var ImageUsageResourceTypeRequestList = [1, n0, _IURTRL,
|
|
|
26734
26757
|
0, [() => ImageUsageResourceTypeRequest$,
|
|
26735
26758
|
0]
|
|
26736
26759
|
];
|
|
26760
|
+
var ImageWatermarkFilterRequestList = [1, n0, _IWFRL,
|
|
26761
|
+
0, [() => ImageWatermarkFilterRequest$,
|
|
26762
|
+
{ [_xN]: _it }]
|
|
26763
|
+
];
|
|
26764
|
+
var ImageWatermarkFilterResponseList = [1, n0, _IWFRLm,
|
|
26765
|
+
0, [() => ImageWatermarkFilterResponse$,
|
|
26766
|
+
{ [_xN]: _it }]
|
|
26767
|
+
];
|
|
26737
26768
|
var ImageWatermarkList = [1, n0, _IWL,
|
|
26738
26769
|
0, [() => ImageWatermark$,
|
|
26739
26770
|
{ [_xN]: _it }]
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts
CHANGED
|
@@ -31,9 +31,8 @@ declare const AttachImageWatermarkCommand_base: {
|
|
|
31
31
|
/**
|
|
32
32
|
* <p>Attaches a watermark to a non-public AMI. The watermark is a structured identifier that
|
|
33
33
|
* automatically propagates to all derivative images created through
|
|
34
|
-
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html">CreateImage</a>,
|
|
35
|
-
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CopyImage.html">CopyImage</a
|
|
36
|
-
* and <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateRestoreImageTask.html">CreateRestoreImageTask</a>.</p>
|
|
34
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html">CreateImage</a>, and
|
|
35
|
+
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CopyImage.html">CopyImage</a>.</p>
|
|
37
36
|
* <p>Only the AMI owner can attach watermarks. Watermarks cannot be added to public
|
|
38
37
|
* AMIs.</p>
|
|
39
38
|
* @example
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAllowedImagesSettingsCommand.d.ts
CHANGED
|
@@ -71,6 +71,14 @@ declare const GetAllowedImagesSettingsCommand_base: {
|
|
|
71
71
|
* // CreationDateCondition: { // CreationDateCondition
|
|
72
72
|
* // MaximumDaysSinceCreated: Number("int"),
|
|
73
73
|
* // },
|
|
74
|
+
* // ImageWatermarks: [ // ImageWatermarkFilterResponseList
|
|
75
|
+
* // { // ImageWatermarkFilterResponse
|
|
76
|
+
* // WatermarkKey: "STRING_VALUE",
|
|
77
|
+
* // SourceImageRegion: "STRING_VALUE",
|
|
78
|
+
* // MaximumDaysSinceSourceImageCreated: Number("int"),
|
|
79
|
+
* // MaximumDaysSinceWatermarkCreated: Number("int"),
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
74
82
|
* // },
|
|
75
83
|
* // ],
|
|
76
84
|
* // ManagedBy: "account" || "declarative-policy",
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { GetAwsNetworkPerformanceDataRequest
|
|
4
|
+
import type { GetAwsNetworkPerformanceDataRequest } from "../models/models_5";
|
|
5
|
+
import type { GetAwsNetworkPerformanceDataResult } from "../models/models_6";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyIpamScopeRequest } from "../models/
|
|
5
|
-
import type { ModifyIpamScopeResult } from "../models/models_7";
|
|
4
|
+
import type { ModifyIpamScopeRequest, ModifyIpamScopeResult } from "../models/models_7";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -30,6 +30,13 @@ declare const ReplaceImageCriteriaInAllowedImagesSettingsCommand_base: {
|
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
32
|
* <p>Sets or replaces the criteria for Allowed AMIs.</p>
|
|
33
|
+
* <p>The <code>ImageCriteria</code> can include up to:</p>
|
|
34
|
+
* <ul>
|
|
35
|
+
* <li>
|
|
36
|
+
* <p>10 <code>ImageCriterion</code>
|
|
37
|
+
* </p>
|
|
38
|
+
* </li>
|
|
39
|
+
* </ul>
|
|
33
40
|
* <note>
|
|
34
41
|
* <p>The Allowed AMIs feature does not restrict the AMIs owned by your account. Regardless of
|
|
35
42
|
* the criteria you set, the AMIs created by your account will always be discoverable and
|
|
@@ -64,6 +71,14 @@ declare const ReplaceImageCriteriaInAllowedImagesSettingsCommand_base: {
|
|
|
64
71
|
* CreationDateCondition: { // CreationDateConditionRequest
|
|
65
72
|
* MaximumDaysSinceCreated: Number("int"),
|
|
66
73
|
* },
|
|
74
|
+
* ImageWatermarks: [ // ImageWatermarkFilterRequestList
|
|
75
|
+
* { // ImageWatermarkFilterRequest
|
|
76
|
+
* WatermarkKey: "STRING_VALUE",
|
|
77
|
+
* SourceImageRegion: "STRING_VALUE",
|
|
78
|
+
* MaximumDaysSinceSourceImageCreated: Number("int"),
|
|
79
|
+
* MaximumDaysSinceWatermarkCreated: Number("int"),
|
|
80
|
+
* },
|
|
81
|
+
* ],
|
|
67
82
|
* },
|
|
68
83
|
* ],
|
|
69
84
|
* DryRun: true || false,
|
|
@@ -7759,6 +7759,39 @@ export interface DeprecationTimeCondition {
|
|
|
7759
7759
|
*/
|
|
7760
7760
|
MaximumDaysSinceDeprecated?: number | undefined;
|
|
7761
7761
|
}
|
|
7762
|
+
/**
|
|
7763
|
+
* <p>The watermark filter criteria for an allowed image. Each entry can specify one or more
|
|
7764
|
+
* fields. All specified fields must match the same watermark on the image.</p>
|
|
7765
|
+
* @public
|
|
7766
|
+
*/
|
|
7767
|
+
export interface ImageWatermarkFilterResponse {
|
|
7768
|
+
/**
|
|
7769
|
+
* <p>The <code>accountId:name</code> of the watermark. Supports wildcards (<code>*</code>,
|
|
7770
|
+
* <code>?</code>).</p>
|
|
7771
|
+
* @public
|
|
7772
|
+
*/
|
|
7773
|
+
WatermarkKey?: string | undefined;
|
|
7774
|
+
/**
|
|
7775
|
+
* <p>The Region where the watermark was originally created. Supports wildcards (<code>*</code>,
|
|
7776
|
+
* <code>?</code>).</p>
|
|
7777
|
+
* @public
|
|
7778
|
+
*/
|
|
7779
|
+
SourceImageRegion?: string | undefined;
|
|
7780
|
+
/**
|
|
7781
|
+
* <p>The maximum number of days that have elapsed since the source image was
|
|
7782
|
+
* created.</p>
|
|
7783
|
+
* <p>Constraints: Minimum value of 0. Maximum value of 2147483647.</p>
|
|
7784
|
+
* @public
|
|
7785
|
+
*/
|
|
7786
|
+
MaximumDaysSinceSourceImageCreated?: number | undefined;
|
|
7787
|
+
/**
|
|
7788
|
+
* <p>The maximum number of days that have elapsed since the watermark was attached to the
|
|
7789
|
+
* image.</p>
|
|
7790
|
+
* <p>Constraints: Minimum value of 0. Maximum value of 2147483647.</p>
|
|
7791
|
+
* @public
|
|
7792
|
+
*/
|
|
7793
|
+
MaximumDaysSinceWatermarkCreated?: number | undefined;
|
|
7794
|
+
}
|
|
7762
7795
|
/**
|
|
7763
7796
|
* <p>The criteria that are evaluated to determine which AMIs are discoverable and usable in
|
|
7764
7797
|
* your account for the specified Amazon Web Services Region.</p>
|
|
@@ -7841,6 +7874,15 @@ export interface ImageCriterion {
|
|
|
7841
7874
|
* @public
|
|
7842
7875
|
*/
|
|
7843
7876
|
CreationDateCondition?: CreationDateCondition | undefined;
|
|
7877
|
+
/**
|
|
7878
|
+
* <p>The watermark criteria that an AMI must match to be allowed. An AMI is allowed if it
|
|
7879
|
+
* carries at least one watermark that satisfies an ImageWatermarkFilter. A watermark satisfies a
|
|
7880
|
+
* filter when all specified fields in the ImageWatermarkFilter match the corresponding values on
|
|
7881
|
+
* the watermark of the AMI.</p>
|
|
7882
|
+
* <p>Maximum: 50 values</p>
|
|
7883
|
+
* @public
|
|
7884
|
+
*/
|
|
7885
|
+
ImageWatermarks?: ImageWatermarkFilterResponse[] | undefined;
|
|
7844
7886
|
}
|
|
7845
7887
|
/**
|
|
7846
7888
|
* @public
|
|
@@ -8147,18 +8189,3 @@ export interface DataResponse {
|
|
|
8147
8189
|
*/
|
|
8148
8190
|
MetricPoints?: MetricPoint[] | undefined;
|
|
8149
8191
|
}
|
|
8150
|
-
/**
|
|
8151
|
-
* @public
|
|
8152
|
-
*/
|
|
8153
|
-
export interface GetAwsNetworkPerformanceDataResult {
|
|
8154
|
-
/**
|
|
8155
|
-
* <p>The list of data responses.</p>
|
|
8156
|
-
* @public
|
|
8157
|
-
*/
|
|
8158
|
-
DataResponses?: DataResponse[] | undefined;
|
|
8159
|
-
/**
|
|
8160
|
-
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
8161
|
-
* @public
|
|
8162
|
-
*/
|
|
8163
|
-
NextToken?: string | undefined;
|
|
8164
|
-
}
|
|
@@ -1,10 +1,25 @@
|
|
|
1
1
|
import type { _InstanceType, Affinity, AnalysisStatus, ArchitectureType, ArchitectureValues, AutoPlacement, BootModeValues, CapacityManagerMonitoredTagKeyStatus, CapacityManagerStatus, CapacityReservationPreference, CapacityReservationState, CapacityTenancy, Comparison, CurrencyCodeValues, DefaultHttpTokensEnforcedState, DefaultInstanceMetadataEndpointState, DefaultInstanceMetadataTagsState, DiskImageFormat, EkPubKeyFormat, EkPubKeyType, EndDateType, FilterByDimension, FleetExcessCapacityTerminationPolicy, FpgaImageAttributeName, GroupBy, HostMaintenance, HostRecovery, HostTenancy, HttpTokensEnforcedState, HttpTokensState, IngestionStatus, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceMatchCriteria, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, IpAddressType, IpamAddressHistoryResourceType, IpamComplianceStatus, IpamDiscoveryFailureCode, IpamManagementState, IpamMeteredAccount, IpamNetworkInterfaceAttachmentStatus, IpamOverlapStatus, IpamPolicyManagedBy, IpamPolicyResourceType, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPublicAddressAssociationStatus, IpamPublicAddressAwsService, IpamPublicAddressType, IpamResourceCidrIpSource, IpamResourceType, IpamTier, LockMode, LockState, ManagedBy, ManagedResourceDefaultVisibility, MetadataDefaultHttpTokensState, Metric, ModifyAvailabilityZoneOptInStatus, NestedVirtualizationSpecification, OperationType, PartitionLoadFrequency, PaymentOption, PermissionGroup, PlatformValues, ReservationEndDateType, ReservationState, ReservationType, RouteServerRouteInstallationStatus, RouteServerRouteStatus, SelfServicePortal, ShutdownBehavior, SnapshotBlockPublicAccessState, SSEType, TargetCapacityUnitType, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, UnsuccessfulInstanceCreditSpecificationErrorCode, VirtualizationType, VolumeState, VolumeType } from "./enums";
|
|
2
2
|
import type { AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddIpamOrganizationalUnitExclusion, AddressAttribute, ClientConnectOptions, ClientLoginBannerOptions, ClientRouteEnforcementOptions, ConnectionLogOptions, InstanceEventWindow, InterruptibleCapacityAllocation, InterruptionInfo, IpamPoolAllocation, OperatorResponse, RouteServerAssociation, SubnetAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayConfigurationInputStructure, TransitGatewayPolicyTableAssociation, UnsuccessfulItem } from "./models_0";
|
|
3
|
-
import type { AttributeValue, CapacityReservationTarget,
|
|
3
|
+
import type { AttributeValue, CapacityReservationTarget, FleetLaunchTemplateConfigRequest, InstanceEventWindowTimeRangeRequest, InstanceRequirementsRequest, Ipam, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverRuleRequest, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamResourceTag, NetworkInsightsAccessScopeContent, Placement, RequestIpamResourceTag, ResponseLaunchTemplateData, TargetCapacitySpecificationRequest } from "./models_1";
|
|
4
4
|
import type { SubnetCidrReservation, TransitGatewayMeteringPolicyEntry, TransitGatewayPrefixListReference } from "./models_2";
|
|
5
5
|
import type { ConversionTask, Filter, FpgaImageAttribute, ImportImageLicenseConfigurationResponse, IpamPoolCidr, LaunchPermission, SnapshotDetail } from "./models_3";
|
|
6
6
|
import type { AttributeBooleanValue, InstanceMetadataOptionsResponse, InstanceStatusEvent, SnapshotTaskDetail } from "./models_4";
|
|
7
|
-
import type { RouteServerPropagation } from "./models_5";
|
|
7
|
+
import type { DataResponse, RouteServerPropagation } from "./models_5";
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface GetAwsNetworkPerformanceDataResult {
|
|
12
|
+
/**
|
|
13
|
+
* <p>The list of data responses.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
DataResponses?: DataResponse[] | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
NextToken?: string | undefined;
|
|
22
|
+
}
|
|
8
23
|
/**
|
|
9
24
|
* @public
|
|
10
25
|
*/
|
|
@@ -8865,36 +8880,3 @@ export interface ModifyIpamResourceDiscoveryResult {
|
|
|
8865
8880
|
*/
|
|
8866
8881
|
IpamResourceDiscovery?: IpamResourceDiscovery | undefined;
|
|
8867
8882
|
}
|
|
8868
|
-
/**
|
|
8869
|
-
* @public
|
|
8870
|
-
*/
|
|
8871
|
-
export interface ModifyIpamScopeRequest {
|
|
8872
|
-
/**
|
|
8873
|
-
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
8874
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8875
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8876
|
-
* @public
|
|
8877
|
-
*/
|
|
8878
|
-
DryRun?: boolean | undefined;
|
|
8879
|
-
/**
|
|
8880
|
-
* <p>The ID of the scope you want to modify.</p>
|
|
8881
|
-
* @public
|
|
8882
|
-
*/
|
|
8883
|
-
IpamScopeId: string | undefined;
|
|
8884
|
-
/**
|
|
8885
|
-
* <p>The description of the scope you want to modify.</p>
|
|
8886
|
-
* @public
|
|
8887
|
-
*/
|
|
8888
|
-
Description?: string | undefined;
|
|
8889
|
-
/**
|
|
8890
|
-
* <p>The configuration that links an Amazon VPC IPAM scope to an external authority system. It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.</p>
|
|
8891
|
-
* <p>In IPAM, an external authority is a third-party IP address management system that provides CIDR blocks when you provision address space for top-level IPAM pools. This allows you to use your existing IP management system to control which address ranges are allocated to Amazon Web Services while using Amazon VPC IPAM to manage subnets within those ranges.</p>
|
|
8892
|
-
* @public
|
|
8893
|
-
*/
|
|
8894
|
-
ExternalAuthorityConfiguration?: ExternalAuthorityConfiguration | undefined;
|
|
8895
|
-
/**
|
|
8896
|
-
* <p>Remove the external authority configuration. <code>true</code> to remove.</p>
|
|
8897
|
-
* @public
|
|
8898
|
-
*/
|
|
8899
|
-
RemoveExternalAuthorityConfiguration?: boolean | undefined;
|
|
8900
|
-
}
|
|
@@ -1,11 +1,44 @@
|
|
|
1
1
|
import type { _InstanceType, AddressAttributeName, AmdSevSnpSpecification, ApplianceModeSupportValue, ArchitectureValues, AutoAcceptSharedAttachmentsValue, BootModeValues, CapacityManagerStatus, CapacityReservationInstancePlatform, CurrencyCodeValues, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DnsSupportValue, EncryptionSupportOptionValue, ExcessCapacityTerminationPolicy, HostnameType, HttpTokensState, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InternetGatewayBlockMode, InternetGatewayExclusionMode, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, Ipv6SupportValue, ManagedResourceDefaultVisibility, MarketType, MembershipType, NestedVirtualizationSpecification, OperationType, PayerResponsibility, PublicIpDnsOption, ReportInstanceReasonCodes, ReportStatusType, ResetFpgaImageAttributeName, ResetImageAttributeName, RouteServerPersistRoutesAction, RuleAction, SecondaryInterfaceType, SecurityGroupReferencingSupportValue, ShutdownBehavior, SnapshotAttributeName, SnapshotState, SpotInstanceType, SSEType, Status, TargetStorageTier, TpmSupportValues, TrafficDirection, TrafficMirrorFilterRuleField, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorSessionField, TransitGatewayAttachmentResourceType, VerificationMethod, VerifiedAccessEndpointProtocol, VolumeType, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcTenancy, VpnEcmpSupportValue, VpnTunnelBandwidth } from "./enums";
|
|
2
2
|
import type { AddedPrincipal, AddPrefixListEntry, AddressAttribute, ByoipCidr, CapacityReservation, ClientVpnAuthorizationRuleStatus, EnaSrdSpecification, IamInstanceProfileAssociation, IamInstanceProfileSpecification, IpPermission, NatGatewayAddress, PortRange, RouteTableAssociationState, TagSpecification, TransitGatewayClientVpnAttachment, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider } from "./models_0";
|
|
3
|
-
import type { AttributeValue, BlockDeviceMapping, ConnectionTrackingSpecificationRequest, CreditSpecificationRequest, ElasticGpuSpecification, IcmpTypeCode, InstanceIpv6Address, IpamScope, LaunchTemplate, LocalGatewayRoute, ManagedPrefixList, OperatorRequest, Placement, RouteServer, VpcEncryptionControl } from "./models_1";
|
|
3
|
+
import type { AttributeValue, BlockDeviceMapping, ConnectionTrackingSpecificationRequest, CreditSpecificationRequest, ElasticGpuSpecification, ExternalAuthorityConfiguration, IcmpTypeCode, InstanceIpv6Address, IpamScope, LaunchTemplate, LocalGatewayRoute, ManagedPrefixList, OperatorRequest, Placement, RouteServer, VpcEncryptionControl } from "./models_1";
|
|
4
4
|
import type { DnsOptionsSpecification, IKEVersionsRequestListValue, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, SubnetConfiguration, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorPortRangeRequest, TrafficMirrorSession, TransitGateway, TransitGatewayMeteringPolicy, TransitGatewayPrefixListReference, TransitGatewayRoute, VerifiedAccessEndpoint, VerifiedAccessGroup, VerifiedAccessSseSpecificationRequest, VpcBlockPublicAccessExclusion, VpnConnection, VpnTunnelLogOptionsSpecification } from "./models_2";
|
|
5
5
|
import type { Byoasn, CapacityBlock, CapacityBlockExtension, ClientVpnConnectionStatus, Filter, InstanceTagNotificationAttribute, IpamPoolCidr } from "./models_3";
|
|
6
6
|
import type { AttributeBooleanValue, CreateVolumePermission, InstanceNetworkInterfaceSpecification, InstanceState, LaunchTemplateConfig, Monitoring, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis, PublicIpv4PoolRange, ReservedInstancesConfiguration, RunInstancesMonitoringEnabled, ScheduledInstance, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement } from "./models_4";
|
|
7
7
|
import type { VerifiedAccessInstanceLoggingConfiguration, VolumeModification, VpcBlockPublicAccessOptions } from "./models_5";
|
|
8
8
|
import type { CapacityManagerMonitoredTagKey, CapacityReservationSpecification, EnclaveOptionsRequest, ManagedResourceVisibilitySettings, Purchase } from "./models_6";
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export interface ModifyIpamScopeRequest {
|
|
13
|
+
/**
|
|
14
|
+
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
15
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
16
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
DryRun?: boolean | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>The ID of the scope you want to modify.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
IpamScopeId: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* <p>The description of the scope you want to modify.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
Description?: string | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* <p>The configuration that links an Amazon VPC IPAM scope to an external authority system. It specifies the type of external system and the external resource identifier that identifies your account or instance in that system.</p>
|
|
32
|
+
* <p>In IPAM, an external authority is a third-party IP address management system that provides CIDR blocks when you provision address space for top-level IPAM pools. This allows you to use your existing IP management system to control which address ranges are allocated to Amazon Web Services while using Amazon VPC IPAM to manage subnets within those ranges.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
ExternalAuthorityConfiguration?: ExternalAuthorityConfiguration | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>Remove the external authority configuration. <code>true</code> to remove.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
RemoveExternalAuthorityConfiguration?: boolean | undefined;
|
|
41
|
+
}
|
|
9
42
|
/**
|
|
10
43
|
* @public
|
|
11
44
|
*/
|
|
@@ -1142,6 +1175,12 @@ export interface ModifyTransitGatewayOptions {
|
|
|
1142
1175
|
* <li>
|
|
1143
1176
|
* <p>Connect</p>
|
|
1144
1177
|
* </li>
|
|
1178
|
+
* <li>
|
|
1179
|
+
* <p>VPN Concentrator</p>
|
|
1180
|
+
* </li>
|
|
1181
|
+
* <li>
|
|
1182
|
+
* <p>Client VPN</p>
|
|
1183
|
+
* </li>
|
|
1145
1184
|
* </ul>
|
|
1146
1185
|
* <p>You must first delete all transit gateway attachments configured prior to modifying the ASN on
|
|
1147
1186
|
* the transit gateway.</p>
|
|
@@ -4497,6 +4536,39 @@ export interface DeprecationTimeConditionRequest {
|
|
|
4497
4536
|
*/
|
|
4498
4537
|
MaximumDaysSinceDeprecated?: number | undefined;
|
|
4499
4538
|
}
|
|
4539
|
+
/**
|
|
4540
|
+
* <p>The watermark filter criteria for an allowed image. Each entry can specify one or more
|
|
4541
|
+
* fields. All specified fields must match the same watermark on the image.</p>
|
|
4542
|
+
* @public
|
|
4543
|
+
*/
|
|
4544
|
+
export interface ImageWatermarkFilterRequest {
|
|
4545
|
+
/**
|
|
4546
|
+
* <p>The <code>accountId:name</code> of the watermark. Supports wildcards (<code>*</code>,
|
|
4547
|
+
* <code>?</code>).</p>
|
|
4548
|
+
* @public
|
|
4549
|
+
*/
|
|
4550
|
+
WatermarkKey?: string | undefined;
|
|
4551
|
+
/**
|
|
4552
|
+
* <p>The Region where the watermark was originally created. Supports wildcards (<code>*</code>,
|
|
4553
|
+
* <code>?</code>).</p>
|
|
4554
|
+
* @public
|
|
4555
|
+
*/
|
|
4556
|
+
SourceImageRegion?: string | undefined;
|
|
4557
|
+
/**
|
|
4558
|
+
* <p>The maximum number of days that have elapsed since the source image was
|
|
4559
|
+
* created.</p>
|
|
4560
|
+
* <p>Constraints: Minimum value of 0. Maximum value of 2147483647.</p>
|
|
4561
|
+
* @public
|
|
4562
|
+
*/
|
|
4563
|
+
MaximumDaysSinceSourceImageCreated?: number | undefined;
|
|
4564
|
+
/**
|
|
4565
|
+
* <p>The maximum number of days that have elapsed since the watermark was attached to the
|
|
4566
|
+
* image.</p>
|
|
4567
|
+
* <p>Constraints: Minimum value of 0. Maximum value of 2147483647.</p>
|
|
4568
|
+
* @public
|
|
4569
|
+
*/
|
|
4570
|
+
MaximumDaysSinceWatermarkCreated?: number | undefined;
|
|
4571
|
+
}
|
|
4500
4572
|
/**
|
|
4501
4573
|
* <p>The criteria that are evaluated to determine which AMIs are discoverable and usable in
|
|
4502
4574
|
* your account for the specified Amazon Web Services Region.</p>
|
|
@@ -4521,6 +4593,10 @@ export interface DeprecationTimeConditionRequest {
|
|
|
4521
4593
|
* <p>50 values for <code>MarketplaceProductCodes</code>
|
|
4522
4594
|
* </p>
|
|
4523
4595
|
* </li>
|
|
4596
|
+
* <li>
|
|
4597
|
+
* <p>50 values for <code>ImageWatermarks</code>
|
|
4598
|
+
* </p>
|
|
4599
|
+
* </li>
|
|
4524
4600
|
* </ul>
|
|
4525
4601
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-allowed-amis.html#how-allowed-amis-works">How Allowed AMIs
|
|
4526
4602
|
* works</a> in the <i>Amazon EC2 User Guide</i>.</p>
|
|
@@ -4602,6 +4678,15 @@ export interface ImageCriterionRequest {
|
|
|
4602
4678
|
* @public
|
|
4603
4679
|
*/
|
|
4604
4680
|
CreationDateCondition?: CreationDateConditionRequest | undefined;
|
|
4681
|
+
/**
|
|
4682
|
+
* <p>The watermark criteria that an AMI must match to be allowed. An AMI is allowed if it
|
|
4683
|
+
* carries at least one watermark that satisfies an ImageWatermarkFilter. A watermark satisfies a
|
|
4684
|
+
* filter when all specified fields in the ImageWatermarkFilter match the corresponding values on
|
|
4685
|
+
* the watermark of the AMI.</p>
|
|
4686
|
+
* <p>Maximum: 50 values</p>
|
|
4687
|
+
* @public
|
|
4688
|
+
*/
|
|
4689
|
+
ImageWatermarks?: ImageWatermarkFilterRequest[] | undefined;
|
|
4605
4690
|
}
|
|
4606
4691
|
/**
|
|
4607
4692
|
* @public
|
|
@@ -1473,6 +1473,8 @@ export declare var ImageUsageResourceTypeOption$: StaticStructureSchema;
|
|
|
1473
1473
|
export declare var ImageUsageResourceTypeOptionRequest$: StaticStructureSchema;
|
|
1474
1474
|
export declare var ImageUsageResourceTypeRequest$: StaticStructureSchema;
|
|
1475
1475
|
export declare var ImageWatermark$: StaticStructureSchema;
|
|
1476
|
+
export declare var ImageWatermarkFilterRequest$: StaticStructureSchema;
|
|
1477
|
+
export declare var ImageWatermarkFilterResponse$: StaticStructureSchema;
|
|
1476
1478
|
export declare var ImportClientVpnClientCertificateRevocationListRequest$: StaticStructureSchema;
|
|
1477
1479
|
export declare var ImportClientVpnClientCertificateRevocationListResult$: StaticStructureSchema;
|
|
1478
1480
|
export declare var ImportImageLicenseConfigurationRequest$: StaticStructureSchema;
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
GetAwsNetworkPerformanceDataResult,
|
|
11
|
-
} from "../models/models_5";
|
|
8
|
+
import { GetAwsNetworkPerformanceDataRequest } from "../models/models_5";
|
|
9
|
+
import { GetAwsNetworkPerformanceDataResult } from "../models/models_6";
|
|
12
10
|
export { __MetadataBearer };
|
|
13
11
|
export { $Command };
|
|
14
12
|
export interface GetAwsNetworkPerformanceDataCommandInput
|
package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts
CHANGED
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ModifyIpamScopeRequest,
|
|
10
|
+
ModifyIpamScopeResult,
|
|
11
|
+
} from "../models/models_7";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ModifyIpamScopeCommandInput extends ModifyIpamScopeRequest {}
|
|
@@ -1578,12 +1578,19 @@ export interface CreationDateCondition {
|
|
|
1578
1578
|
export interface DeprecationTimeCondition {
|
|
1579
1579
|
MaximumDaysSinceDeprecated?: number | undefined;
|
|
1580
1580
|
}
|
|
1581
|
+
export interface ImageWatermarkFilterResponse {
|
|
1582
|
+
WatermarkKey?: string | undefined;
|
|
1583
|
+
SourceImageRegion?: string | undefined;
|
|
1584
|
+
MaximumDaysSinceSourceImageCreated?: number | undefined;
|
|
1585
|
+
MaximumDaysSinceWatermarkCreated?: number | undefined;
|
|
1586
|
+
}
|
|
1581
1587
|
export interface ImageCriterion {
|
|
1582
1588
|
ImageProviders?: string[] | undefined;
|
|
1583
1589
|
MarketplaceProductCodes?: string[] | undefined;
|
|
1584
1590
|
ImageNames?: string[] | undefined;
|
|
1585
1591
|
DeprecationTimeCondition?: DeprecationTimeCondition | undefined;
|
|
1586
1592
|
CreationDateCondition?: CreationDateCondition | undefined;
|
|
1593
|
+
ImageWatermarks?: ImageWatermarkFilterResponse[] | undefined;
|
|
1587
1594
|
}
|
|
1588
1595
|
export interface GetAllowedImagesSettingsResult {
|
|
1589
1596
|
State?: string | undefined;
|
|
@@ -1648,7 +1655,3 @@ export interface DataResponse {
|
|
|
1648
1655
|
Period?: PeriodType | undefined;
|
|
1649
1656
|
MetricPoints?: MetricPoint[] | undefined;
|
|
1650
1657
|
}
|
|
1651
|
-
export interface GetAwsNetworkPerformanceDataResult {
|
|
1652
|
-
DataResponses?: DataResponse[] | undefined;
|
|
1653
|
-
NextToken?: string | undefined;
|
|
1654
|
-
}
|
|
@@ -114,7 +114,6 @@ import {
|
|
|
114
114
|
import {
|
|
115
115
|
AttributeValue,
|
|
116
116
|
CapacityReservationTarget,
|
|
117
|
-
ExternalAuthorityConfiguration,
|
|
118
117
|
FleetLaunchTemplateConfigRequest,
|
|
119
118
|
InstanceEventWindowTimeRangeRequest,
|
|
120
119
|
InstanceRequirementsRequest,
|
|
@@ -151,7 +150,11 @@ import {
|
|
|
151
150
|
InstanceStatusEvent,
|
|
152
151
|
SnapshotTaskDetail,
|
|
153
152
|
} from "./models_4";
|
|
154
|
-
import { RouteServerPropagation } from "./models_5";
|
|
153
|
+
import { DataResponse, RouteServerPropagation } from "./models_5";
|
|
154
|
+
export interface GetAwsNetworkPerformanceDataResult {
|
|
155
|
+
DataResponses?: DataResponse[] | undefined;
|
|
156
|
+
NextToken?: string | undefined;
|
|
157
|
+
}
|
|
155
158
|
export interface GetCapacityManagerAttributesRequest {
|
|
156
159
|
DryRun?: boolean | undefined;
|
|
157
160
|
}
|
|
@@ -1893,10 +1896,3 @@ export interface ModifyIpamResourceDiscoveryRequest {
|
|
|
1893
1896
|
export interface ModifyIpamResourceDiscoveryResult {
|
|
1894
1897
|
IpamResourceDiscovery?: IpamResourceDiscovery | undefined;
|
|
1895
1898
|
}
|
|
1896
|
-
export interface ModifyIpamScopeRequest {
|
|
1897
|
-
DryRun?: boolean | undefined;
|
|
1898
|
-
IpamScopeId: string | undefined;
|
|
1899
|
-
Description?: string | undefined;
|
|
1900
|
-
ExternalAuthorityConfiguration?: ExternalAuthorityConfiguration | undefined;
|
|
1901
|
-
RemoveExternalAuthorityConfiguration?: boolean | undefined;
|
|
1902
|
-
}
|
|
@@ -98,6 +98,7 @@ import {
|
|
|
98
98
|
ConnectionTrackingSpecificationRequest,
|
|
99
99
|
CreditSpecificationRequest,
|
|
100
100
|
ElasticGpuSpecification,
|
|
101
|
+
ExternalAuthorityConfiguration,
|
|
101
102
|
IcmpTypeCode,
|
|
102
103
|
InstanceIpv6Address,
|
|
103
104
|
IpamScope,
|
|
@@ -172,6 +173,13 @@ import {
|
|
|
172
173
|
ManagedResourceVisibilitySettings,
|
|
173
174
|
Purchase,
|
|
174
175
|
} from "./models_6";
|
|
176
|
+
export interface ModifyIpamScopeRequest {
|
|
177
|
+
DryRun?: boolean | undefined;
|
|
178
|
+
IpamScopeId: string | undefined;
|
|
179
|
+
Description?: string | undefined;
|
|
180
|
+
ExternalAuthorityConfiguration?: ExternalAuthorityConfiguration | undefined;
|
|
181
|
+
RemoveExternalAuthorityConfiguration?: boolean | undefined;
|
|
182
|
+
}
|
|
175
183
|
export interface ModifyIpamScopeResult {
|
|
176
184
|
IpamScope?: IpamScope | undefined;
|
|
177
185
|
}
|
|
@@ -1149,12 +1157,19 @@ export interface CreationDateConditionRequest {
|
|
|
1149
1157
|
export interface DeprecationTimeConditionRequest {
|
|
1150
1158
|
MaximumDaysSinceDeprecated?: number | undefined;
|
|
1151
1159
|
}
|
|
1160
|
+
export interface ImageWatermarkFilterRequest {
|
|
1161
|
+
WatermarkKey?: string | undefined;
|
|
1162
|
+
SourceImageRegion?: string | undefined;
|
|
1163
|
+
MaximumDaysSinceSourceImageCreated?: number | undefined;
|
|
1164
|
+
MaximumDaysSinceWatermarkCreated?: number | undefined;
|
|
1165
|
+
}
|
|
1152
1166
|
export interface ImageCriterionRequest {
|
|
1153
1167
|
ImageProviders?: string[] | undefined;
|
|
1154
1168
|
MarketplaceProductCodes?: string[] | undefined;
|
|
1155
1169
|
ImageNames?: string[] | undefined;
|
|
1156
1170
|
DeprecationTimeCondition?: DeprecationTimeConditionRequest | undefined;
|
|
1157
1171
|
CreationDateCondition?: CreationDateConditionRequest | undefined;
|
|
1172
|
+
ImageWatermarks?: ImageWatermarkFilterRequest[] | undefined;
|
|
1158
1173
|
}
|
|
1159
1174
|
export interface ReplaceImageCriteriaInAllowedImagesSettingsRequest {
|
|
1160
1175
|
ImageCriteria?: ImageCriterionRequest[] | undefined;
|
|
@@ -1472,6 +1472,8 @@ export declare var ImageUsageResourceTypeOption$: StaticStructureSchema;
|
|
|
1472
1472
|
export declare var ImageUsageResourceTypeOptionRequest$: StaticStructureSchema;
|
|
1473
1473
|
export declare var ImageUsageResourceTypeRequest$: StaticStructureSchema;
|
|
1474
1474
|
export declare var ImageWatermark$: StaticStructureSchema;
|
|
1475
|
+
export declare var ImageWatermarkFilterRequest$: StaticStructureSchema;
|
|
1476
|
+
export declare var ImageWatermarkFilterResponse$: StaticStructureSchema;
|
|
1475
1477
|
export declare var ImportClientVpnClientCertificateRevocationListRequest$: StaticStructureSchema;
|
|
1476
1478
|
export declare var ImportClientVpnClientCertificateRevocationListResult$: StaticStructureSchema;
|
|
1477
1479
|
export declare var ImportImageLicenseConfigurationRequest$: StaticStructureSchema;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1075.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
16
|
"test:watch": "yarn g:vitest watch --passWithNoTests",
|
|
17
17
|
"test:integration": "yarn g:vitest run --passWithNoTests -c vitest.config.integ.mts",
|
|
18
|
-
"test:integration:watch": "yarn g:vitest
|
|
19
|
-
"test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts
|
|
18
|
+
"test:integration:watch": "yarn g:vitest watch --passWithNoTests -c vitest.config.integ.mts",
|
|
19
|
+
"test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts",
|
|
20
20
|
"test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
|
|
21
21
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
22
22
|
},
|
|
@@ -27,10 +27,10 @@
|
|
|
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/middleware-sdk-ec2": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
30
|
+
"@aws-sdk/core": "^3.974.23",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.58",
|
|
32
|
+
"@aws-sdk/middleware-sdk-ec2": "^3.972.37",
|
|
33
|
+
"@aws-sdk/types": "^3.973.13",
|
|
34
34
|
"@smithy/core": "^3.24.6",
|
|
35
35
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
36
36
|
"@smithy/node-http-handler": "^4.7.6",
|