@cdklabs/cdk-ssm-documents 0.0.64 → 0.0.65
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/package.json +4 -4
- package/node_modules/@aws-sdk/client-cloudformation/package.json +5 -5
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +75 -30
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +77 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +68 -26
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +73 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +5 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +74 -23
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +90 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +40 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +9 -9
- package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +34 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +170 -75
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +108 -13
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +13 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +38 -23
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +45 -128
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +128 -48
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +109 -161
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +169 -219
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +250 -353
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +351 -182
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +178 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +34 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +9 -7
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +13 -26
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +29 -12
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +25 -36
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +40 -35
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +49 -67
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +66 -47
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +40 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +10 -10
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +18 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +17 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -2
- package/node_modules/@aws-sdk/client-iam/package.json +9 -9
- package/node_modules/@aws-sdk/client-lambda/package.json +5 -5
- package/node_modules/@aws-sdk/client-s3/package.json +9 -9
- package/node_modules/@aws-sdk/client-sns/package.json +5 -5
- package/node_modules/@aws-sdk/client-sqs/package.json +6 -6
- package/node_modules/@aws-sdk/client-ssm/package.json +5 -5
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +47 -2297
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-env/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-http/package.json +6 -5
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-login/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-node/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +4 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +4 -1
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +9 -7
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +14 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +6 -6
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +7 -6
- package/node_modules/@aws-sdk/token-providers/package.json +5 -5
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +2 -2
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +8 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +9 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +4 -1
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +9 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/node_modules/@nodable/entities/package.json +4 -1
- package/node_modules/@nodable/entities/src/EntityDecoder.js +104 -3
- package/node_modules/@nodable/entities/src/index.d.ts +77 -0
- package/node_modules/@nodable/entities/src/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/index.js +13 -15
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +29 -31
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +2 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +7 -9
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +3 -5
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +22 -23
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +38 -39
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +14 -17
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +20 -23
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +9 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -13
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +59 -60
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +26 -27
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +28 -29
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +5 -7
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +23 -25
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +2 -4
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/package.json +18 -17
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +23 -24
- package/node_modules/@smithy/credential-provider-imds/package.json +7 -7
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -8
- package/node_modules/@smithy/fetch-http-handler/package.json +10 -10
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +3 -7
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +2 -6
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +4 -8
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +7 -11
- package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +18 -20
- package/node_modules/@smithy/middleware-compression/package.json +6 -6
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +11 -13
- package/node_modules/@smithy/node-http-handler/package.json +8 -8
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +27 -29
- package/node_modules/@smithy/signature-v4/package.json +7 -7
- package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
- package/node_modules/@smithy/types/package.json +10 -10
- package/node_modules/anynum/LICENSE +21 -0
- package/node_modules/anynum/README.md +142 -0
- package/node_modules/anynum/anynum.js +135 -0
- package/node_modules/anynum/digitTable.js +116 -0
- package/node_modules/anynum/package.json +42 -0
- package/package.json +10 -10
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
ModifyManagedPrefixListRequest,
|
|
10
|
+
ModifyManagedPrefixListResult,
|
|
11
|
+
} from "../models/models_7";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface ModifyManagedPrefixListCommandInput
|
|
@@ -35,6 +35,7 @@ export * from "./AssociateTransitGatewayRouteTableCommand";
|
|
|
35
35
|
export * from "./AssociateTrunkInterfaceCommand";
|
|
36
36
|
export * from "./AssociateVpcCidrBlockCommand";
|
|
37
37
|
export * from "./AttachClassicLinkVpcCommand";
|
|
38
|
+
export * from "./AttachImageWatermarkCommand";
|
|
38
39
|
export * from "./AttachInternetGatewayCommand";
|
|
39
40
|
export * from "./AttachNetworkInterfaceCommand";
|
|
40
41
|
export * from "./AttachVerifiedAccessTrustProviderCommand";
|
|
@@ -454,6 +455,7 @@ export * from "./DescribeVpnConcentratorsCommand";
|
|
|
454
455
|
export * from "./DescribeVpnConnectionsCommand";
|
|
455
456
|
export * from "./DescribeVpnGatewaysCommand";
|
|
456
457
|
export * from "./DetachClassicLinkVpcCommand";
|
|
458
|
+
export * from "./DetachImageWatermarkCommand";
|
|
457
459
|
export * from "./DetachInternetGatewayCommand";
|
|
458
460
|
export * from "./DetachNetworkInterfaceCommand";
|
|
459
461
|
export * from "./DetachVerifiedAccessTrustProviderCommand";
|
|
@@ -2297,6 +2297,13 @@ export declare const FlowLogsResourceType: {
|
|
|
2297
2297
|
};
|
|
2298
2298
|
export type FlowLogsResourceType =
|
|
2299
2299
|
(typeof FlowLogsResourceType)[keyof typeof FlowLogsResourceType];
|
|
2300
|
+
export declare const TaggableResourceType: {
|
|
2301
|
+
readonly auto_scaling_group: "auto-scaling-group";
|
|
2302
|
+
readonly instance: "instance";
|
|
2303
|
+
readonly network_interface: "network-interface";
|
|
2304
|
+
};
|
|
2305
|
+
export type TaggableResourceType =
|
|
2306
|
+
(typeof TaggableResourceType)[keyof typeof TaggableResourceType];
|
|
2300
2307
|
export declare const TrafficType: {
|
|
2301
2308
|
readonly ACCEPT: "ACCEPT";
|
|
2302
2309
|
readonly ALL: "ALL";
|
|
@@ -1079,6 +1079,14 @@ export interface AttachClassicLinkVpcRequest {
|
|
|
1079
1079
|
export interface AttachClassicLinkVpcResult {
|
|
1080
1080
|
Return?: boolean | undefined;
|
|
1081
1081
|
}
|
|
1082
|
+
export interface AttachImageWatermarkRequest {
|
|
1083
|
+
ImageId: string | undefined;
|
|
1084
|
+
WatermarkName: string | undefined;
|
|
1085
|
+
DryRun?: boolean | undefined;
|
|
1086
|
+
}
|
|
1087
|
+
export interface AttachImageWatermarkResult {
|
|
1088
|
+
WatermarkKey?: string | undefined;
|
|
1089
|
+
}
|
|
1082
1090
|
export interface AttachInternetGatewayRequest {
|
|
1083
1091
|
DryRun?: boolean | undefined;
|
|
1084
1092
|
InternetGatewayId: string | undefined;
|
|
@@ -1728,7 +1736,7 @@ export interface ReservationFleetInstanceSpecification {
|
|
|
1728
1736
|
export interface CreateCapacityReservationFleetRequest {
|
|
1729
1737
|
AllocationStrategy?: string | undefined;
|
|
1730
1738
|
ClientToken?: string | undefined;
|
|
1731
|
-
InstanceTypeSpecifications
|
|
1739
|
+
InstanceTypeSpecifications?:
|
|
1732
1740
|
| ReservationFleetInstanceSpecification[]
|
|
1733
1741
|
| undefined;
|
|
1734
1742
|
Tenancy?: FleetCapacityReservationTenancy | undefined;
|
|
@@ -1960,9 +1968,3 @@ export interface Subnet {
|
|
|
1960
1968
|
DefaultForAz?: boolean | undefined;
|
|
1961
1969
|
MapPublicIpOnLaunch?: boolean | undefined;
|
|
1962
1970
|
}
|
|
1963
|
-
export interface CreateDefaultSubnetResult {
|
|
1964
|
-
Subnet?: Subnet | undefined;
|
|
1965
|
-
}
|
|
1966
|
-
export interface CreateDefaultVpcRequest {
|
|
1967
|
-
DryRun?: boolean | undefined;
|
|
1968
|
-
}
|
|
@@ -97,7 +97,6 @@ import {
|
|
|
97
97
|
RouteServerBgpState,
|
|
98
98
|
RouteServerEndpointState,
|
|
99
99
|
RouteServerPeerLivenessMode,
|
|
100
|
-
RouteServerPeerState,
|
|
101
100
|
RouteServerPersistRoutesAction,
|
|
102
101
|
RouteServerPersistRoutesState,
|
|
103
102
|
RouteServerState,
|
|
@@ -109,6 +108,7 @@ import {
|
|
|
109
108
|
SpotInstanceInterruptionBehavior,
|
|
110
109
|
SpotInstanceType,
|
|
111
110
|
SpreadLevel,
|
|
111
|
+
TaggableResourceType,
|
|
112
112
|
TargetCapacityUnitType,
|
|
113
113
|
Tenancy,
|
|
114
114
|
TokenState,
|
|
@@ -136,12 +136,19 @@ import {
|
|
|
136
136
|
OperatorResponse,
|
|
137
137
|
PortRange,
|
|
138
138
|
ReservedInstancesListing,
|
|
139
|
+
Subnet,
|
|
139
140
|
Tag,
|
|
140
141
|
TagSpecification,
|
|
141
142
|
UnsuccessfulItem,
|
|
142
143
|
VpcCidrBlockAssociation,
|
|
143
144
|
VpcIpv6CidrBlockAssociation,
|
|
144
145
|
} from "./models_0";
|
|
146
|
+
export interface CreateDefaultSubnetResult {
|
|
147
|
+
Subnet?: Subnet | undefined;
|
|
148
|
+
}
|
|
149
|
+
export interface CreateDefaultVpcRequest {
|
|
150
|
+
DryRun?: boolean | undefined;
|
|
151
|
+
}
|
|
145
152
|
export interface VpcEncryptionControlExclusion {
|
|
146
153
|
State?: VpcEncryptionControlExclusionState | undefined;
|
|
147
154
|
StateMessage?: string | undefined;
|
|
@@ -560,6 +567,10 @@ export interface DestinationOptionsRequest {
|
|
|
560
567
|
HiveCompatiblePartitions?: boolean | undefined;
|
|
561
568
|
PerHourPartition?: boolean | undefined;
|
|
562
569
|
}
|
|
570
|
+
export interface TagFieldSpecificationRequest {
|
|
571
|
+
ResourceType?: TaggableResourceType | undefined;
|
|
572
|
+
TagKeys?: string[] | undefined;
|
|
573
|
+
}
|
|
563
574
|
export interface CreateFlowLogsRequest {
|
|
564
575
|
DryRun?: boolean | undefined;
|
|
565
576
|
ClientToken?: string | undefined;
|
|
@@ -575,6 +586,7 @@ export interface CreateFlowLogsRequest {
|
|
|
575
586
|
TagSpecifications?: TagSpecification[] | undefined;
|
|
576
587
|
MaxAggregationInterval?: number | undefined;
|
|
577
588
|
DestinationOptions?: DestinationOptionsRequest | undefined;
|
|
589
|
+
TagFieldSpecifications?: TagFieldSpecificationRequest[] | undefined;
|
|
578
590
|
}
|
|
579
591
|
export interface CreateFlowLogsResult {
|
|
580
592
|
ClientToken?: string | undefined;
|
|
@@ -2247,28 +2259,3 @@ export interface RouteServerBgpOptions {
|
|
|
2247
2259
|
export interface RouteServerBgpStatus {
|
|
2248
2260
|
Status?: RouteServerBgpState | undefined;
|
|
2249
2261
|
}
|
|
2250
|
-
export interface RouteServerPeer {
|
|
2251
|
-
RouteServerPeerId?: string | undefined;
|
|
2252
|
-
RouteServerEndpointId?: string | undefined;
|
|
2253
|
-
RouteServerId?: string | undefined;
|
|
2254
|
-
VpcId?: string | undefined;
|
|
2255
|
-
SubnetId?: string | undefined;
|
|
2256
|
-
State?: RouteServerPeerState | undefined;
|
|
2257
|
-
FailureReason?: string | undefined;
|
|
2258
|
-
EndpointEniId?: string | undefined;
|
|
2259
|
-
EndpointEniAddress?: string | undefined;
|
|
2260
|
-
PeerAddress?: string | undefined;
|
|
2261
|
-
BgpOptions?: RouteServerBgpOptions | undefined;
|
|
2262
|
-
BgpStatus?: RouteServerBgpStatus | undefined;
|
|
2263
|
-
BfdStatus?: RouteServerBfdStatus | undefined;
|
|
2264
|
-
Tags?: Tag[] | undefined;
|
|
2265
|
-
}
|
|
2266
|
-
export interface CreateRouteServerPeerResult {
|
|
2267
|
-
RouteServerPeer?: RouteServerPeer | undefined;
|
|
2268
|
-
}
|
|
2269
|
-
export interface CreateRouteTableRequest {
|
|
2270
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
2271
|
-
ClientToken?: string | undefined;
|
|
2272
|
-
DryRun?: boolean | undefined;
|
|
2273
|
-
VpcId: string | undefined;
|
|
2274
|
-
}
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
PayerResponsibility,
|
|
31
31
|
ProtocolValue,
|
|
32
32
|
RouteOrigin,
|
|
33
|
+
RouteServerPeerState,
|
|
33
34
|
RouteState,
|
|
34
35
|
SecondaryNetworkCidrBlockAssociationState,
|
|
35
36
|
SecondaryNetworkState,
|
|
@@ -126,11 +127,38 @@ import {
|
|
|
126
127
|
ManagedPrefixList,
|
|
127
128
|
OperatorRequest,
|
|
128
129
|
RouteServer,
|
|
130
|
+
RouteServerBfdStatus,
|
|
131
|
+
RouteServerBgpOptions,
|
|
132
|
+
RouteServerBgpStatus,
|
|
129
133
|
RouteServerEndpoint,
|
|
130
|
-
RouteServerPeer,
|
|
131
134
|
Vpc,
|
|
132
135
|
VpcEncryptionControl,
|
|
133
136
|
} from "./models_1";
|
|
137
|
+
export interface RouteServerPeer {
|
|
138
|
+
RouteServerPeerId?: string | undefined;
|
|
139
|
+
RouteServerEndpointId?: string | undefined;
|
|
140
|
+
RouteServerId?: string | undefined;
|
|
141
|
+
VpcId?: string | undefined;
|
|
142
|
+
SubnetId?: string | undefined;
|
|
143
|
+
State?: RouteServerPeerState | undefined;
|
|
144
|
+
FailureReason?: string | undefined;
|
|
145
|
+
EndpointEniId?: string | undefined;
|
|
146
|
+
EndpointEniAddress?: string | undefined;
|
|
147
|
+
PeerAddress?: string | undefined;
|
|
148
|
+
BgpOptions?: RouteServerBgpOptions | undefined;
|
|
149
|
+
BgpStatus?: RouteServerBgpStatus | undefined;
|
|
150
|
+
BfdStatus?: RouteServerBfdStatus | undefined;
|
|
151
|
+
Tags?: Tag[] | undefined;
|
|
152
|
+
}
|
|
153
|
+
export interface CreateRouteServerPeerResult {
|
|
154
|
+
RouteServerPeer?: RouteServerPeer | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface CreateRouteTableRequest {
|
|
157
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
158
|
+
ClientToken?: string | undefined;
|
|
159
|
+
DryRun?: boolean | undefined;
|
|
160
|
+
VpcId: string | undefined;
|
|
161
|
+
}
|
|
134
162
|
export interface RouteTableAssociation {
|
|
135
163
|
Main?: boolean | undefined;
|
|
136
164
|
RouteTableAssociationId?: string | undefined;
|
|
@@ -1958,14 +1986,3 @@ export interface DeleteSecurityGroupRequest {
|
|
|
1958
1986
|
GroupName?: string | undefined;
|
|
1959
1987
|
DryRun?: boolean | undefined;
|
|
1960
1988
|
}
|
|
1961
|
-
export interface DeleteSecurityGroupResult {
|
|
1962
|
-
Return?: boolean | undefined;
|
|
1963
|
-
GroupId?: string | undefined;
|
|
1964
|
-
}
|
|
1965
|
-
export interface DeleteSnapshotRequest {
|
|
1966
|
-
SnapshotId: string | undefined;
|
|
1967
|
-
DryRun?: boolean | undefined;
|
|
1968
|
-
}
|
|
1969
|
-
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
1970
|
-
DryRun?: boolean | undefined;
|
|
1971
|
-
}
|
|
@@ -56,7 +56,6 @@ import {
|
|
|
56
56
|
ImageState,
|
|
57
57
|
ImageTypeValues,
|
|
58
58
|
ImdsSupportValues,
|
|
59
|
-
InstanceAttributeName,
|
|
60
59
|
InstanceLifecycle,
|
|
61
60
|
IpamPoolCidrFailureCode,
|
|
62
61
|
IpamPoolCidrState,
|
|
@@ -75,6 +74,7 @@ import {
|
|
|
75
74
|
SpotAllocationStrategy,
|
|
76
75
|
SpotInstanceInterruptionBehavior,
|
|
77
76
|
StatisticType,
|
|
77
|
+
TaggableResourceType,
|
|
78
78
|
TargetCapacityUnitType,
|
|
79
79
|
TpmSupportValues,
|
|
80
80
|
TrafficIpAddressType,
|
|
@@ -140,6 +140,17 @@ import {
|
|
|
140
140
|
VerifiedAccessGroup,
|
|
141
141
|
VpcBlockPublicAccessExclusion,
|
|
142
142
|
} from "./models_2";
|
|
143
|
+
export interface DeleteSecurityGroupResult {
|
|
144
|
+
Return?: boolean | undefined;
|
|
145
|
+
GroupId?: string | undefined;
|
|
146
|
+
}
|
|
147
|
+
export interface DeleteSnapshotRequest {
|
|
148
|
+
SnapshotId: string | undefined;
|
|
149
|
+
DryRun?: boolean | undefined;
|
|
150
|
+
}
|
|
151
|
+
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
152
|
+
DryRun?: boolean | undefined;
|
|
153
|
+
}
|
|
143
154
|
export interface DeleteSubnetRequest {
|
|
144
155
|
SubnetId: string | undefined;
|
|
145
156
|
DryRun?: boolean | undefined;
|
|
@@ -1460,6 +1471,10 @@ export interface DestinationOptionsResponse {
|
|
|
1460
1471
|
HiveCompatiblePartitions?: boolean | undefined;
|
|
1461
1472
|
PerHourPartition?: boolean | undefined;
|
|
1462
1473
|
}
|
|
1474
|
+
export interface TagFieldSpecificationResponse {
|
|
1475
|
+
ResourceType?: TaggableResourceType | undefined;
|
|
1476
|
+
TagKeys?: string[] | undefined;
|
|
1477
|
+
}
|
|
1463
1478
|
export interface FlowLog {
|
|
1464
1479
|
CreationTime?: Date | undefined;
|
|
1465
1480
|
DeliverLogsErrorMessage?: string | undefined;
|
|
@@ -1477,6 +1492,7 @@ export interface FlowLog {
|
|
|
1477
1492
|
Tags?: Tag[] | undefined;
|
|
1478
1493
|
MaxAggregationInterval?: number | undefined;
|
|
1479
1494
|
DestinationOptions?: DestinationOptionsResponse | undefined;
|
|
1495
|
+
TagFieldSpecifications?: TagFieldSpecificationResponse[] | undefined;
|
|
1480
1496
|
}
|
|
1481
1497
|
export interface DescribeFlowLogsResult {
|
|
1482
1498
|
FlowLogs?: FlowLog[] | undefined;
|
|
@@ -1731,6 +1747,13 @@ export interface DescribeImagesRequest {
|
|
|
1731
1747
|
DryRun?: boolean | undefined;
|
|
1732
1748
|
Filters?: Filter[] | undefined;
|
|
1733
1749
|
}
|
|
1750
|
+
export interface ImageWatermark {
|
|
1751
|
+
WatermarkKey?: string | undefined;
|
|
1752
|
+
SourceImageRegion?: string | undefined;
|
|
1753
|
+
SourceImageId?: string | undefined;
|
|
1754
|
+
SourceImageCreationTime?: Date | undefined;
|
|
1755
|
+
WatermarkCreationTime?: Date | undefined;
|
|
1756
|
+
}
|
|
1734
1757
|
export interface Image {
|
|
1735
1758
|
PlatformDetails?: string | undefined;
|
|
1736
1759
|
UsageOperation?: string | undefined;
|
|
@@ -1757,6 +1780,7 @@ export interface Image {
|
|
|
1757
1780
|
SourceImageId?: string | undefined;
|
|
1758
1781
|
SourceImageRegion?: string | undefined;
|
|
1759
1782
|
FreeTierEligible?: boolean | undefined;
|
|
1783
|
+
ImageWatermarks?: ImageWatermark[] | undefined;
|
|
1760
1784
|
ImageId?: string | undefined;
|
|
1761
1785
|
ImageLocation?: string | undefined;
|
|
1762
1786
|
State?: ImageState | undefined;
|
|
@@ -1874,38 +1898,3 @@ export interface DescribeImportImageTasksResult {
|
|
|
1874
1898
|
ImportImageTasks?: ImportImageTask[] | undefined;
|
|
1875
1899
|
NextToken?: string | undefined;
|
|
1876
1900
|
}
|
|
1877
|
-
export interface DescribeImportSnapshotTasksRequest {
|
|
1878
|
-
DryRun?: boolean | undefined;
|
|
1879
|
-
Filters?: Filter[] | undefined;
|
|
1880
|
-
ImportTaskIds?: string[] | undefined;
|
|
1881
|
-
MaxResults?: number | undefined;
|
|
1882
|
-
NextToken?: string | undefined;
|
|
1883
|
-
}
|
|
1884
|
-
export interface SnapshotTaskDetail {
|
|
1885
|
-
Description?: string | undefined;
|
|
1886
|
-
DiskImageSize?: number | undefined;
|
|
1887
|
-
Encrypted?: boolean | undefined;
|
|
1888
|
-
Format?: string | undefined;
|
|
1889
|
-
KmsKeyId?: string | undefined;
|
|
1890
|
-
Progress?: string | undefined;
|
|
1891
|
-
SnapshotId?: string | undefined;
|
|
1892
|
-
Status?: string | undefined;
|
|
1893
|
-
StatusMessage?: string | undefined;
|
|
1894
|
-
Url?: string | undefined;
|
|
1895
|
-
UserBucket?: UserBucketDetails | undefined;
|
|
1896
|
-
}
|
|
1897
|
-
export interface ImportSnapshotTask {
|
|
1898
|
-
Description?: string | undefined;
|
|
1899
|
-
ImportTaskId?: string | undefined;
|
|
1900
|
-
SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
|
|
1901
|
-
Tags?: Tag[] | undefined;
|
|
1902
|
-
}
|
|
1903
|
-
export interface DescribeImportSnapshotTasksResult {
|
|
1904
|
-
ImportSnapshotTasks?: ImportSnapshotTask[] | undefined;
|
|
1905
|
-
NextToken?: string | undefined;
|
|
1906
|
-
}
|
|
1907
|
-
export interface DescribeInstanceAttributeRequest {
|
|
1908
|
-
DryRun?: boolean | undefined;
|
|
1909
|
-
InstanceId: string | undefined;
|
|
1910
|
-
Attribute: InstanceAttributeName | undefined;
|
|
1911
|
-
}
|
|
@@ -32,6 +32,7 @@ import {
|
|
|
32
32
|
HttpTokensState,
|
|
33
33
|
HypervisorType,
|
|
34
34
|
ImageState,
|
|
35
|
+
InstanceAttributeName,
|
|
35
36
|
InstanceAutoRecoveryState,
|
|
36
37
|
InstanceBandwidthWeighting,
|
|
37
38
|
InstanceBootModeValues,
|
|
@@ -152,10 +153,10 @@ import {
|
|
|
152
153
|
ReplaceRootVolumeTask,
|
|
153
154
|
RouteServer,
|
|
154
155
|
RouteServerEndpoint,
|
|
155
|
-
RouteServerPeer,
|
|
156
156
|
StateReason,
|
|
157
157
|
} from "./models_1";
|
|
158
158
|
import {
|
|
159
|
+
RouteServerPeer,
|
|
159
160
|
RouteTable,
|
|
160
161
|
SecondaryNetwork,
|
|
161
162
|
SecondarySubnet,
|
|
@@ -168,9 +169,46 @@ import {
|
|
|
168
169
|
EventInformation,
|
|
169
170
|
Filter,
|
|
170
171
|
IdFormat,
|
|
172
|
+
ImageWatermark,
|
|
171
173
|
InstanceTagNotificationAttribute,
|
|
172
174
|
ProductCode,
|
|
175
|
+
UserBucketDetails,
|
|
173
176
|
} from "./models_3";
|
|
177
|
+
export interface DescribeImportSnapshotTasksRequest {
|
|
178
|
+
DryRun?: boolean | undefined;
|
|
179
|
+
Filters?: Filter[] | undefined;
|
|
180
|
+
ImportTaskIds?: string[] | undefined;
|
|
181
|
+
MaxResults?: number | undefined;
|
|
182
|
+
NextToken?: string | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface SnapshotTaskDetail {
|
|
185
|
+
Description?: string | undefined;
|
|
186
|
+
DiskImageSize?: number | undefined;
|
|
187
|
+
Encrypted?: boolean | undefined;
|
|
188
|
+
Format?: string | undefined;
|
|
189
|
+
KmsKeyId?: string | undefined;
|
|
190
|
+
Progress?: string | undefined;
|
|
191
|
+
SnapshotId?: string | undefined;
|
|
192
|
+
Status?: string | undefined;
|
|
193
|
+
StatusMessage?: string | undefined;
|
|
194
|
+
Url?: string | undefined;
|
|
195
|
+
UserBucket?: UserBucketDetails | undefined;
|
|
196
|
+
}
|
|
197
|
+
export interface ImportSnapshotTask {
|
|
198
|
+
Description?: string | undefined;
|
|
199
|
+
ImportTaskId?: string | undefined;
|
|
200
|
+
SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
|
|
201
|
+
Tags?: Tag[] | undefined;
|
|
202
|
+
}
|
|
203
|
+
export interface DescribeImportSnapshotTasksResult {
|
|
204
|
+
ImportSnapshotTasks?: ImportSnapshotTask[] | undefined;
|
|
205
|
+
NextToken?: string | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface DescribeInstanceAttributeRequest {
|
|
208
|
+
DryRun?: boolean | undefined;
|
|
209
|
+
InstanceId: string | undefined;
|
|
210
|
+
Attribute: InstanceAttributeName | undefined;
|
|
211
|
+
}
|
|
174
212
|
export interface EbsInstanceBlockDevice {
|
|
175
213
|
AttachTime?: Date | undefined;
|
|
176
214
|
DeleteOnTermination?: boolean | undefined;
|
|
@@ -270,6 +308,7 @@ export interface ImageMetadata {
|
|
|
270
308
|
DeprecationTime?: string | undefined;
|
|
271
309
|
ImageAllowed?: boolean | undefined;
|
|
272
310
|
IsPublic?: boolean | undefined;
|
|
311
|
+
ImageWatermarks?: ImageWatermark[] | undefined;
|
|
273
312
|
}
|
|
274
313
|
export interface InstanceState {
|
|
275
314
|
Code?: number | undefined;
|
|
@@ -2158,37 +2197,3 @@ export interface SpotInstanceRequest {
|
|
|
2158
2197
|
ValidUntil?: Date | undefined;
|
|
2159
2198
|
InstanceInterruptionBehavior?: InstanceInterruptionBehavior | undefined;
|
|
2160
2199
|
}
|
|
2161
|
-
export interface DescribeSpotInstanceRequestsResult {
|
|
2162
|
-
SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
|
|
2163
|
-
NextToken?: string | undefined;
|
|
2164
|
-
}
|
|
2165
|
-
export interface DescribeSpotPriceHistoryRequest {
|
|
2166
|
-
AvailabilityZoneId?: string | undefined;
|
|
2167
|
-
DryRun?: boolean | undefined;
|
|
2168
|
-
StartTime?: Date | undefined;
|
|
2169
|
-
EndTime?: Date | undefined;
|
|
2170
|
-
InstanceTypes?: _InstanceType[] | undefined;
|
|
2171
|
-
ProductDescriptions?: string[] | undefined;
|
|
2172
|
-
Filters?: Filter[] | undefined;
|
|
2173
|
-
AvailabilityZone?: string | undefined;
|
|
2174
|
-
MaxResults?: number | undefined;
|
|
2175
|
-
NextToken?: string | undefined;
|
|
2176
|
-
}
|
|
2177
|
-
export interface SpotPrice {
|
|
2178
|
-
AvailabilityZone?: string | undefined;
|
|
2179
|
-
AvailabilityZoneId?: string | undefined;
|
|
2180
|
-
InstanceType?: _InstanceType | undefined;
|
|
2181
|
-
ProductDescription?: RIProductDescription | undefined;
|
|
2182
|
-
SpotPrice?: string | undefined;
|
|
2183
|
-
Timestamp?: Date | undefined;
|
|
2184
|
-
}
|
|
2185
|
-
export interface DescribeSpotPriceHistoryResult {
|
|
2186
|
-
NextToken?: string | undefined;
|
|
2187
|
-
SpotPriceHistory?: SpotPrice[] | undefined;
|
|
2188
|
-
}
|
|
2189
|
-
export interface DescribeStaleSecurityGroupsRequest {
|
|
2190
|
-
DryRun?: boolean | undefined;
|
|
2191
|
-
MaxResults?: number | undefined;
|
|
2192
|
-
NextToken?: string | undefined;
|
|
2193
|
-
VpcId: string | undefined;
|
|
2194
|
-
}
|
|
@@ -1,33 +1,26 @@
|
|
|
1
1
|
import {
|
|
2
|
+
_InstanceType,
|
|
2
3
|
AllowedImagesSettingsDisabledState,
|
|
3
4
|
AllowedImagesSettingsEnabledState,
|
|
4
5
|
CapacityManagerStatus,
|
|
5
|
-
CapacityTenancy,
|
|
6
6
|
ClientCertificateRevocationListStatusCode,
|
|
7
|
-
Comparison,
|
|
8
7
|
DeviceTrustProviderType,
|
|
9
8
|
DiskImageFormat,
|
|
10
9
|
DnsNameState,
|
|
11
10
|
FastLaunchResourceType,
|
|
12
11
|
FastLaunchStateCode,
|
|
13
12
|
FastSnapshotRestoreStateCode,
|
|
14
|
-
FilterByDimension,
|
|
15
|
-
GroupBy,
|
|
16
13
|
ImageBlockPublicAccessDisabledState,
|
|
17
14
|
ImageBlockPublicAccessEnabledState,
|
|
18
|
-
IngestionStatus,
|
|
19
15
|
InitializationType,
|
|
20
16
|
InternetGatewayBlockMode,
|
|
21
17
|
IpAddressType,
|
|
22
18
|
ManagedBy,
|
|
23
|
-
Metric,
|
|
24
19
|
MetricType,
|
|
25
20
|
PayerResponsibility,
|
|
26
21
|
PeriodType,
|
|
27
|
-
ReservationEndDateType,
|
|
28
|
-
ReservationState,
|
|
29
|
-
ReservationType,
|
|
30
22
|
ResourceType,
|
|
23
|
+
RIProductDescription,
|
|
31
24
|
RouteServerPropagationState,
|
|
32
25
|
SecurityGroupVpcAssociationState,
|
|
33
26
|
ServiceConnectivityType,
|
|
@@ -112,7 +105,45 @@ import {
|
|
|
112
105
|
Filter,
|
|
113
106
|
ProductCode,
|
|
114
107
|
} from "./models_3";
|
|
115
|
-
import {
|
|
108
|
+
import {
|
|
109
|
+
AttributeBooleanValue,
|
|
110
|
+
RegisteredInstance,
|
|
111
|
+
SpotInstanceRequest,
|
|
112
|
+
} from "./models_4";
|
|
113
|
+
export interface DescribeSpotInstanceRequestsResult {
|
|
114
|
+
SpotInstanceRequests?: SpotInstanceRequest[] | undefined;
|
|
115
|
+
NextToken?: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
export interface DescribeSpotPriceHistoryRequest {
|
|
118
|
+
AvailabilityZoneId?: string | undefined;
|
|
119
|
+
DryRun?: boolean | undefined;
|
|
120
|
+
StartTime?: Date | undefined;
|
|
121
|
+
EndTime?: Date | undefined;
|
|
122
|
+
InstanceTypes?: _InstanceType[] | undefined;
|
|
123
|
+
ProductDescriptions?: string[] | undefined;
|
|
124
|
+
Filters?: Filter[] | undefined;
|
|
125
|
+
AvailabilityZone?: string | undefined;
|
|
126
|
+
MaxResults?: number | undefined;
|
|
127
|
+
NextToken?: string | undefined;
|
|
128
|
+
}
|
|
129
|
+
export interface SpotPrice {
|
|
130
|
+
AvailabilityZone?: string | undefined;
|
|
131
|
+
AvailabilityZoneId?: string | undefined;
|
|
132
|
+
InstanceType?: _InstanceType | undefined;
|
|
133
|
+
ProductDescription?: RIProductDescription | undefined;
|
|
134
|
+
SpotPrice?: string | undefined;
|
|
135
|
+
Timestamp?: Date | undefined;
|
|
136
|
+
}
|
|
137
|
+
export interface DescribeSpotPriceHistoryResult {
|
|
138
|
+
NextToken?: string | undefined;
|
|
139
|
+
SpotPriceHistory?: SpotPrice[] | undefined;
|
|
140
|
+
}
|
|
141
|
+
export interface DescribeStaleSecurityGroupsRequest {
|
|
142
|
+
DryRun?: boolean | undefined;
|
|
143
|
+
MaxResults?: number | undefined;
|
|
144
|
+
NextToken?: string | undefined;
|
|
145
|
+
VpcId: string | undefined;
|
|
146
|
+
}
|
|
116
147
|
export interface StaleIpPermission {
|
|
117
148
|
FromPort?: number | undefined;
|
|
118
149
|
IpProtocol?: string | undefined;
|
|
@@ -517,7 +548,6 @@ export interface VolumeModification {
|
|
|
517
548
|
Progress?: number | undefined;
|
|
518
549
|
StartTime?: Date | undefined;
|
|
519
550
|
EndTime?: Date | undefined;
|
|
520
|
-
Operator?: OperatorResponse | undefined;
|
|
521
551
|
}
|
|
522
552
|
export interface DescribeVolumesModificationsResult {
|
|
523
553
|
NextToken?: string | undefined;
|
|
@@ -839,6 +869,14 @@ export interface DetachClassicLinkVpcRequest {
|
|
|
839
869
|
export interface DetachClassicLinkVpcResult {
|
|
840
870
|
Return?: boolean | undefined;
|
|
841
871
|
}
|
|
872
|
+
export interface DetachImageWatermarkRequest {
|
|
873
|
+
ImageId: string | undefined;
|
|
874
|
+
WatermarkKey: string | undefined;
|
|
875
|
+
DryRun?: boolean | undefined;
|
|
876
|
+
}
|
|
877
|
+
export interface DetachImageWatermarkResult {
|
|
878
|
+
Return?: boolean | undefined;
|
|
879
|
+
}
|
|
842
880
|
export interface DetachInternetGatewayRequest {
|
|
843
881
|
DryRun?: boolean | undefined;
|
|
844
882
|
InternetGatewayId: string | undefined;
|
|
@@ -1614,59 +1652,3 @@ export interface GetAwsNetworkPerformanceDataResult {
|
|
|
1614
1652
|
DataResponses?: DataResponse[] | undefined;
|
|
1615
1653
|
NextToken?: string | undefined;
|
|
1616
1654
|
}
|
|
1617
|
-
export interface GetCapacityManagerAttributesRequest {
|
|
1618
|
-
DryRun?: boolean | undefined;
|
|
1619
|
-
}
|
|
1620
|
-
export interface GetCapacityManagerAttributesResult {
|
|
1621
|
-
CapacityManagerStatus?: CapacityManagerStatus | undefined;
|
|
1622
|
-
OrganizationsAccess?: boolean | undefined;
|
|
1623
|
-
DataExportCount?: number | undefined;
|
|
1624
|
-
IngestionStatus?: IngestionStatus | undefined;
|
|
1625
|
-
IngestionStatusMessage?: string | undefined;
|
|
1626
|
-
EarliestDatapointTimestamp?: Date | undefined;
|
|
1627
|
-
LatestDatapointTimestamp?: Date | undefined;
|
|
1628
|
-
}
|
|
1629
|
-
export interface DimensionCondition {
|
|
1630
|
-
Dimension?: FilterByDimension | undefined;
|
|
1631
|
-
Comparison?: Comparison | undefined;
|
|
1632
|
-
Values?: string[] | undefined;
|
|
1633
|
-
}
|
|
1634
|
-
export interface CapacityManagerCondition {
|
|
1635
|
-
DimensionCondition?: DimensionCondition | undefined;
|
|
1636
|
-
}
|
|
1637
|
-
export interface GetCapacityManagerMetricDataRequest {
|
|
1638
|
-
MetricNames: Metric[] | undefined;
|
|
1639
|
-
StartTime: Date | undefined;
|
|
1640
|
-
EndTime: Date | undefined;
|
|
1641
|
-
Period: number | undefined;
|
|
1642
|
-
GroupBy?: GroupBy[] | undefined;
|
|
1643
|
-
FilterBy?: CapacityManagerCondition[] | undefined;
|
|
1644
|
-
MaxResults?: number | undefined;
|
|
1645
|
-
NextToken?: string | undefined;
|
|
1646
|
-
DryRun?: boolean | undefined;
|
|
1647
|
-
}
|
|
1648
|
-
export interface CapacityManagerTagDimension {
|
|
1649
|
-
Key?: string | undefined;
|
|
1650
|
-
Value?: string | undefined;
|
|
1651
|
-
}
|
|
1652
|
-
export interface CapacityManagerDimension {
|
|
1653
|
-
ResourceRegion?: string | undefined;
|
|
1654
|
-
AvailabilityZoneId?: string | undefined;
|
|
1655
|
-
AccountId?: string | undefined;
|
|
1656
|
-
AccountName?: string | undefined;
|
|
1657
|
-
InstanceFamily?: string | undefined;
|
|
1658
|
-
InstanceType?: string | undefined;
|
|
1659
|
-
InstancePlatform?: string | undefined;
|
|
1660
|
-
ReservationArn?: string | undefined;
|
|
1661
|
-
ReservationId?: string | undefined;
|
|
1662
|
-
ReservationType?: ReservationType | undefined;
|
|
1663
|
-
ReservationCreateTimestamp?: Date | undefined;
|
|
1664
|
-
ReservationStartTimestamp?: Date | undefined;
|
|
1665
|
-
ReservationEndTimestamp?: Date | undefined;
|
|
1666
|
-
ReservationEndDateType?: ReservationEndDateType | undefined;
|
|
1667
|
-
Tenancy?: CapacityTenancy | undefined;
|
|
1668
|
-
ReservationState?: ReservationState | undefined;
|
|
1669
|
-
ReservationInstanceMatchCriteria?: string | undefined;
|
|
1670
|
-
ReservationUnusedFinancialOwner?: string | undefined;
|
|
1671
|
-
Tags?: CapacityManagerTagDimension[] | undefined;
|
|
1672
|
-
}
|