@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
|
@@ -1,6 +1,132 @@
|
|
|
1
|
-
import type { ApplianceModeSupportValue, AutoAcceptSharedAssociationsValue, AutoAcceptSharedAttachmentsValue, BgpStatus, ConnectionNotificationState, ConnectionNotificationType, CopyTagsFromSource, DatafeedSubscriptionState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DeleteFleetErrorCode, DeleteQueuedReservedInstancesErrorCode, DeviceTrustProviderType, DnsNameState, DnsRecordIpType, DnsSupportValue, DynamicRoutingValue, EncryptionStateValue, FleetStateCode, GatewayAssociationState, GatewayType, Igmpv2SupportValue, InstanceEventWindowState, InternetGatewayExclusionMode, IpAddressType, Ipv6SupportValue, LaunchTemplateErrorCode, MulticastSupportValue, PayerResponsibility, ProtocolValue, RouteOrigin, RouteState, SecondaryNetworkCidrBlockAssociationState, SecondaryNetworkState, SecondaryNetworkType, SecondarySubnetCidrBlockAssociationState, SecondarySubnetState, SecurityGroupReferencingSupportValue, ServiceConnectivityType, ServiceState, ServiceType, SnapshotLocationEnum, SnapshotState, SSEType, State, StaticSourcesSupportValue, StorageTier, SubnetCidrReservationType, TelemetryStatus, Tenancy, TrafficDirection, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorTargetType, TransferType, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayConnectPeerState, TransitGatewayMeteringPayerType, TransitGatewayMeteringPolicyEntryState, TransitGatewayMeteringPolicyState, TransitGatewayMulticastDomainState, TransitGatewayPolicyTableState, TransitGatewayPrefixListReferenceState, TransitGatewayRouteState, TransitGatewayRouteTableAnnouncementDirection, TransitGatewayRouteTableAnnouncementState, TransitGatewayRouteTableState, TransitGatewayRouteType, TransitGatewayState, TrustProviderType, TunnelInsideIpVersion, UserTrustProviderType, VerifiedAccessEndpointAttachmentType, VerifiedAccessEndpointProtocol, VerifiedAccessEndpointStatusCode, VerifiedAccessEndpointType, VolumeType, VpcBlockPublicAccessExclusionState, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcEndpointType, VpnConcentratorType, VpnEcmpSupportValue, VpnState, VpnStaticRouteSource, VpnTunnelBandwidth } from "./enums";
|
|
1
|
+
import type { ApplianceModeSupportValue, AutoAcceptSharedAssociationsValue, AutoAcceptSharedAttachmentsValue, BgpStatus, ConnectionNotificationState, ConnectionNotificationType, CopyTagsFromSource, DatafeedSubscriptionState, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DeleteFleetErrorCode, DeleteQueuedReservedInstancesErrorCode, DeviceTrustProviderType, DnsNameState, DnsRecordIpType, DnsSupportValue, DynamicRoutingValue, EncryptionStateValue, FleetStateCode, GatewayAssociationState, GatewayType, Igmpv2SupportValue, InstanceEventWindowState, InternetGatewayExclusionMode, IpAddressType, Ipv6SupportValue, LaunchTemplateErrorCode, MulticastSupportValue, PayerResponsibility, ProtocolValue, RouteOrigin, RouteServerPeerState, RouteState, SecondaryNetworkCidrBlockAssociationState, SecondaryNetworkState, SecondaryNetworkType, SecondarySubnetCidrBlockAssociationState, SecondarySubnetState, SecurityGroupReferencingSupportValue, ServiceConnectivityType, ServiceState, ServiceType, SnapshotLocationEnum, SnapshotState, SSEType, State, StaticSourcesSupportValue, StorageTier, SubnetCidrReservationType, TelemetryStatus, Tenancy, TrafficDirection, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorTargetType, TransferType, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayConnectPeerState, TransitGatewayMeteringPayerType, TransitGatewayMeteringPolicyEntryState, TransitGatewayMeteringPolicyState, TransitGatewayMulticastDomainState, TransitGatewayPolicyTableState, TransitGatewayPrefixListReferenceState, TransitGatewayRouteState, TransitGatewayRouteTableAnnouncementDirection, TransitGatewayRouteTableAnnouncementState, TransitGatewayRouteTableState, TransitGatewayRouteType, TransitGatewayState, TrustProviderType, TunnelInsideIpVersion, UserTrustProviderType, VerifiedAccessEndpointAttachmentType, VerifiedAccessEndpointProtocol, VerifiedAccessEndpointStatusCode, VerifiedAccessEndpointType, VolumeType, VpcBlockPublicAccessExclusionState, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcEndpointType, VpnConcentratorType, VpnEcmpSupportValue, VpnState, VpnStaticRouteSource, VpnTunnelBandwidth } from "./enums";
|
|
2
2
|
import type { CarrierGateway, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipCidr, CoipPool, RouteTableAssociationState, Subnet, Tag, TagSpecification, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
3
|
-
import type { Ec2InstanceConnectEndpoint, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, OperatorRequest, RouteServer,
|
|
3
|
+
import type { Ec2InstanceConnectEndpoint, Ipam, IpamExternalResourceVerificationToken, IpamPolicy, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, OperatorRequest, RouteServer, RouteServerBfdStatus, RouteServerBgpOptions, RouteServerBgpStatus, RouteServerEndpoint, Vpc, VpcEncryptionControl } from "./models_1";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Describes a BGP peer configuration for a route server endpoint.</p>
|
|
6
|
+
* <p>A route server peer is a session between a route server endpoint and the device deployed in Amazon Web Services (such as a firewall appliance or other network security function running on an EC2 instance). The device must meet these requirements:</p>
|
|
7
|
+
* <ul>
|
|
8
|
+
* <li>
|
|
9
|
+
* <p>Have an elastic network interface in the VPC</p>
|
|
10
|
+
* </li>
|
|
11
|
+
* <li>
|
|
12
|
+
* <p>Support BGP (Border Gateway Protocol)</p>
|
|
13
|
+
* </li>
|
|
14
|
+
* <li>
|
|
15
|
+
* <p>Can initiate BGP sessions</p>
|
|
16
|
+
* </li>
|
|
17
|
+
* </ul>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export interface RouteServerPeer {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The unique identifier of the route server peer.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
RouteServerPeerId?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>The ID of the route server endpoint associated with this peer.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
RouteServerEndpointId?: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The ID of the route server associated with this peer.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
RouteServerId?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The ID of the VPC containing the route server peer.</p>
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
VpcId?: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>The ID of the subnet containing the route server peer.</p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
SubnetId?: string | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>The current state of the route server peer.</p>
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
State?: RouteServerPeerState | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* <p>The reason for any failure in peer creation or operation.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
FailureReason?: string | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* <p>The ID of the Elastic network interface for the route server endpoint.</p>
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
EndpointEniId?: string | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The IP address of the Elastic network interface for the route server endpoint.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
EndpointEniAddress?: string | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The IPv4 address of the peer device.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
PeerAddress?: string | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
BgpOptions?: RouteServerBgpOptions | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* <p>The current status of the BGP session with this peer.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
BgpStatus?: RouteServerBgpStatus | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The current status of the BFD session with this peer.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
BfdStatus?: RouteServerBfdStatus | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>Any tags assigned to the route server peer.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
Tags?: Tag[] | undefined;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export interface CreateRouteServerPeerResult {
|
|
96
|
+
/**
|
|
97
|
+
* <p>Information about the created route server peer.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
RouteServerPeer?: RouteServerPeer | undefined;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export interface CreateRouteTableRequest {
|
|
106
|
+
/**
|
|
107
|
+
* <p>The tags to assign to the route table.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
TagSpecifications?: TagSpecification[] | undefined;
|
|
111
|
+
/**
|
|
112
|
+
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
113
|
+
* request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency</a>.</p>
|
|
114
|
+
* @public
|
|
115
|
+
*/
|
|
116
|
+
ClientToken?: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
119
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
120
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
DryRun?: boolean | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* <p>The ID of the VPC.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
VpcId: string | undefined;
|
|
129
|
+
}
|
|
4
130
|
/**
|
|
5
131
|
* <p>Describes an association between a route table and a subnet or gateway.</p>
|
|
6
132
|
* @public
|
|
@@ -8416,49 +8542,3 @@ export interface DeleteSecurityGroupRequest {
|
|
|
8416
8542
|
*/
|
|
8417
8543
|
DryRun?: boolean | undefined;
|
|
8418
8544
|
}
|
|
8419
|
-
/**
|
|
8420
|
-
* @public
|
|
8421
|
-
*/
|
|
8422
|
-
export interface DeleteSecurityGroupResult {
|
|
8423
|
-
/**
|
|
8424
|
-
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
8425
|
-
* @public
|
|
8426
|
-
*/
|
|
8427
|
-
Return?: boolean | undefined;
|
|
8428
|
-
/**
|
|
8429
|
-
* <p>The ID of the deleted security group.</p>
|
|
8430
|
-
* @public
|
|
8431
|
-
*/
|
|
8432
|
-
GroupId?: string | undefined;
|
|
8433
|
-
}
|
|
8434
|
-
/**
|
|
8435
|
-
* @public
|
|
8436
|
-
*/
|
|
8437
|
-
export interface DeleteSnapshotRequest {
|
|
8438
|
-
/**
|
|
8439
|
-
* <p>The ID of the EBS snapshot.</p>
|
|
8440
|
-
* @public
|
|
8441
|
-
*/
|
|
8442
|
-
SnapshotId: string | undefined;
|
|
8443
|
-
/**
|
|
8444
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
8445
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8446
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8447
|
-
* @public
|
|
8448
|
-
*/
|
|
8449
|
-
DryRun?: boolean | undefined;
|
|
8450
|
-
}
|
|
8451
|
-
/**
|
|
8452
|
-
* <p>Contains the parameters for DeleteSpotDatafeedSubscription.</p>
|
|
8453
|
-
* @public
|
|
8454
|
-
*/
|
|
8455
|
-
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
8456
|
-
/**
|
|
8457
|
-
* <p>Checks whether you have the required permissions for the action, without actually
|
|
8458
|
-
* making the request, and provides an error response. If you have the required
|
|
8459
|
-
* permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is
|
|
8460
|
-
* <code>UnauthorizedOperation</code>.</p>
|
|
8461
|
-
* @public
|
|
8462
|
-
*/
|
|
8463
|
-
DryRun?: boolean | undefined;
|
|
8464
|
-
}
|
|
@@ -1,7 +1,53 @@
|
|
|
1
|
-
import type { _InstanceType, AccountAttributeName, AddressAttributeName, AllocationState, AllowsMultipleInstanceTypes, ArchitectureValues, AsnState, AssociatedNetworkType, AutoPlacement, AvailabilityZoneOptInStatus, AvailabilityZoneState, BootModeValues, CallerRole, CapacityBlockExtensionStatus, CapacityBlockInterconnectStatus, CapacityBlockResourceState, CapacityManagerDataExportStatus, CapacityReservationBillingRequestStatus, CapacityReservationFleetState, CapacityReservationTenancy, ClientVpnAuthenticationType, ClientVpnConnectionStatusCode, ClientVpnEndpointAttributeStatusCode, ConversionTaskState, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DeviceType, DiskImageFormat, ElasticGpuState, ElasticGpuStatus, EndpointIpAddressType, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FleetActivityStatus, FleetCapacityReservationTenancy, FleetCapacityReservationUsageStrategy, FleetEventType, FleetExcessCapacityTerminationPolicy, FleetInstanceMatchCriteria, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetStateCode, FleetType, FpgaImageAttributeName, FpgaImageStateCode, HostMaintenance, HostRecovery, HypervisorType, ImageAttributeName, ImageReferenceOptionName, ImageReferenceResourceType, ImageState, ImageTypeValues, ImdsSupportValues,
|
|
1
|
+
import type { _InstanceType, AccountAttributeName, AddressAttributeName, AllocationState, AllowsMultipleInstanceTypes, ArchitectureValues, AsnState, AssociatedNetworkType, AutoPlacement, AvailabilityZoneOptInStatus, AvailabilityZoneState, BootModeValues, CallerRole, CapacityBlockExtensionStatus, CapacityBlockInterconnectStatus, CapacityBlockResourceState, CapacityManagerDataExportStatus, CapacityReservationBillingRequestStatus, CapacityReservationFleetState, CapacityReservationTenancy, ClientVpnAuthenticationType, ClientVpnConnectionStatusCode, ClientVpnEndpointAttributeStatusCode, ConversionTaskState, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DeviceType, DiskImageFormat, ElasticGpuState, ElasticGpuStatus, EndpointIpAddressType, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FleetActivityStatus, FleetCapacityReservationTenancy, FleetCapacityReservationUsageStrategy, FleetEventType, FleetExcessCapacityTerminationPolicy, FleetInstanceMatchCriteria, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetStateCode, FleetType, FpgaImageAttributeName, FpgaImageStateCode, HostMaintenance, HostRecovery, HypervisorType, ImageAttributeName, ImageReferenceOptionName, ImageReferenceResourceType, ImageState, ImageTypeValues, ImdsSupportValues, InstanceLifecycle, IpamPoolCidrFailureCode, IpamPoolCidrState, LogDestinationType, MetricType, OutputFormat, PaymentOption, PeriodType, PermissionGroup, PlatformValues, ProductCodeValues, ReportState, ReservationState, Schedule, SnapshotReturnCodes, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, StatisticType, TaggableResourceType, TargetCapacityUnitType, TpmSupportValues, TrafficIpAddressType, TrafficType, TransportProtocol, VirtualizationType, VpnProtocol } from "./enums";
|
|
2
2
|
import type { AccountAttribute, ActiveInstance, Address, AddressAttribute, AddressTransfer, AssociationStatus, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationCancellationQuote, CarrierGateway, ClientVpnAuthorizationRuleStatus, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipPool, CustomerGateway, FleetCapacityReservation, IamInstanceProfileAssociation, Tag, TransitGatewayClientVpnAttachment, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessTrustProvider } from "./models_0";
|
|
3
3
|
import type { AttributeValue, BlockDeviceMapping, DhcpOptions, EgressOnlyInternetGateway, ExportTask, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, GroupIdentifier, LaunchTemplateAndOverridesResponse, StateReason, VpcEncryptionControl } from "./models_1";
|
|
4
4
|
import type { SubnetCidrReservation, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMeteringPolicy, TransitGatewayMeteringPolicyEntry, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayPrefixListReference, TransitGatewayRoute, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, VpcBlockPublicAccessExclusion } from "./models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DeleteSecurityGroupResult {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
Return?: boolean | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The ID of the deleted security group.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
GroupId?: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface DeleteSnapshotRequest {
|
|
24
|
+
/**
|
|
25
|
+
* <p>The ID of the EBS snapshot.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
SnapshotId: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
31
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
32
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
DryRun?: boolean | undefined;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* <p>Contains the parameters for DeleteSpotDatafeedSubscription.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
export interface DeleteSpotDatafeedSubscriptionRequest {
|
|
42
|
+
/**
|
|
43
|
+
* <p>Checks whether you have the required permissions for the action, without actually
|
|
44
|
+
* making the request, and provides an error response. If you have the required
|
|
45
|
+
* permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is
|
|
46
|
+
* <code>UnauthorizedOperation</code>.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
DryRun?: boolean | undefined;
|
|
50
|
+
}
|
|
5
51
|
/**
|
|
6
52
|
* @public
|
|
7
53
|
*/
|
|
@@ -7072,6 +7118,22 @@ export interface DestinationOptionsResponse {
|
|
|
7072
7118
|
*/
|
|
7073
7119
|
PerHourPartition?: boolean | undefined;
|
|
7074
7120
|
}
|
|
7121
|
+
/**
|
|
7122
|
+
* <p>A single resource's tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7123
|
+
* @public
|
|
7124
|
+
*/
|
|
7125
|
+
export interface TagFieldSpecificationResponse {
|
|
7126
|
+
/**
|
|
7127
|
+
* <p>The resource type for the tag keys associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7128
|
+
* @public
|
|
7129
|
+
*/
|
|
7130
|
+
ResourceType?: TaggableResourceType | undefined;
|
|
7131
|
+
/**
|
|
7132
|
+
* <p>The tag keys on your tagged resources to be displayed by the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7133
|
+
* @public
|
|
7134
|
+
*/
|
|
7135
|
+
TagKeys?: string[] | undefined;
|
|
7136
|
+
}
|
|
7075
7137
|
/**
|
|
7076
7138
|
* <p>Describes a flow log.</p>
|
|
7077
7139
|
* @public
|
|
@@ -7167,6 +7229,11 @@ export interface FlowLog {
|
|
|
7167
7229
|
* @public
|
|
7168
7230
|
*/
|
|
7169
7231
|
DestinationOptions?: DestinationOptionsResponse | undefined;
|
|
7232
|
+
/**
|
|
7233
|
+
* <p>The tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
7234
|
+
* @public
|
|
7235
|
+
*/
|
|
7236
|
+
TagFieldSpecifications?: TagFieldSpecificationResponse[] | undefined;
|
|
7170
7237
|
}
|
|
7171
7238
|
/**
|
|
7172
7239
|
* @public
|
|
@@ -8776,6 +8843,42 @@ export interface DescribeImagesRequest {
|
|
|
8776
8843
|
*/
|
|
8777
8844
|
Filters?: Filter[] | undefined;
|
|
8778
8845
|
}
|
|
8846
|
+
/**
|
|
8847
|
+
* <p>Describes a watermark attached to an AMI.</p>
|
|
8848
|
+
* @public
|
|
8849
|
+
*/
|
|
8850
|
+
export interface ImageWatermark {
|
|
8851
|
+
/**
|
|
8852
|
+
* <p>The watermark identifier, in <code>accountId:watermarkName</code> format (for example,
|
|
8853
|
+
* <code>123456789012:approvedAmi</code>). The <code>accountId</code> portion is the Amazon Web Services account
|
|
8854
|
+
* ID of the watermark creator. The <code>watermarkName</code> portion is customer-provided.</p>
|
|
8855
|
+
* @public
|
|
8856
|
+
*/
|
|
8857
|
+
WatermarkKey?: string | undefined;
|
|
8858
|
+
/**
|
|
8859
|
+
* <p>The Region where the watermark was originally attached.</p>
|
|
8860
|
+
* @public
|
|
8861
|
+
*/
|
|
8862
|
+
SourceImageRegion?: string | undefined;
|
|
8863
|
+
/**
|
|
8864
|
+
* <p>The ID of the AMI to which the watermark was originally attached.</p>
|
|
8865
|
+
* @public
|
|
8866
|
+
*/
|
|
8867
|
+
SourceImageId?: string | undefined;
|
|
8868
|
+
/**
|
|
8869
|
+
* <p>The creation date of the source AMI, in the
|
|
8870
|
+
* following format:
|
|
8871
|
+
* <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>.<i>ssssss</i>+<i>HH</i>:<i>MM</i>.</p>
|
|
8872
|
+
* @public
|
|
8873
|
+
*/
|
|
8874
|
+
SourceImageCreationTime?: Date | undefined;
|
|
8875
|
+
/**
|
|
8876
|
+
* <p>The date and time the watermark was attached to the AMI, in the following format:
|
|
8877
|
+
* <i>YYYY</i>-<i>MM</i>-<i>DD</i>T<i>HH</i>:<i>MM</i>:<i>SS</i>.<i>ssssss</i>+<i>HH</i>:<i>MM</i>.</p>
|
|
8878
|
+
* @public
|
|
8879
|
+
*/
|
|
8880
|
+
WatermarkCreationTime?: Date | undefined;
|
|
8881
|
+
}
|
|
8779
8882
|
/**
|
|
8780
8883
|
* <p>Describes an image.</p>
|
|
8781
8884
|
* @public
|
|
@@ -8948,6 +9051,11 @@ export interface Image {
|
|
|
8948
9051
|
* @public
|
|
8949
9052
|
*/
|
|
8950
9053
|
FreeTierEligible?: boolean | undefined;
|
|
9054
|
+
/**
|
|
9055
|
+
* <p>The watermarks attached to the AMI.</p>
|
|
9056
|
+
* @public
|
|
9057
|
+
*/
|
|
9058
|
+
ImageWatermarks?: ImageWatermark[] | undefined;
|
|
8951
9059
|
/**
|
|
8952
9060
|
* <p>The ID of the AMI.</p>
|
|
8953
9061
|
* @public
|
|
@@ -9549,163 +9657,3 @@ export interface DescribeImportImageTasksResult {
|
|
|
9549
9657
|
*/
|
|
9550
9658
|
NextToken?: string | undefined;
|
|
9551
9659
|
}
|
|
9552
|
-
/**
|
|
9553
|
-
* @public
|
|
9554
|
-
*/
|
|
9555
|
-
export interface DescribeImportSnapshotTasksRequest {
|
|
9556
|
-
/**
|
|
9557
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
9558
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
9559
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
9560
|
-
* @public
|
|
9561
|
-
*/
|
|
9562
|
-
DryRun?: boolean | undefined;
|
|
9563
|
-
/**
|
|
9564
|
-
* <p>The filters.</p>
|
|
9565
|
-
* @public
|
|
9566
|
-
*/
|
|
9567
|
-
Filters?: Filter[] | undefined;
|
|
9568
|
-
/**
|
|
9569
|
-
* <p>A list of import snapshot task IDs.</p>
|
|
9570
|
-
* @public
|
|
9571
|
-
*/
|
|
9572
|
-
ImportTaskIds?: string[] | undefined;
|
|
9573
|
-
/**
|
|
9574
|
-
* <p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call
|
|
9575
|
-
* with the returned <code>NextToken</code> value.</p>
|
|
9576
|
-
* @public
|
|
9577
|
-
*/
|
|
9578
|
-
MaxResults?: number | undefined;
|
|
9579
|
-
/**
|
|
9580
|
-
* <p>A token that indicates the next page of results.</p>
|
|
9581
|
-
* @public
|
|
9582
|
-
*/
|
|
9583
|
-
NextToken?: string | undefined;
|
|
9584
|
-
}
|
|
9585
|
-
/**
|
|
9586
|
-
* <p>Details about the import snapshot task.</p>
|
|
9587
|
-
* @public
|
|
9588
|
-
*/
|
|
9589
|
-
export interface SnapshotTaskDetail {
|
|
9590
|
-
/**
|
|
9591
|
-
* <p>The description of the disk image being imported.</p>
|
|
9592
|
-
* @public
|
|
9593
|
-
*/
|
|
9594
|
-
Description?: string | undefined;
|
|
9595
|
-
/**
|
|
9596
|
-
* <p>The size of the disk in the snapshot, in GiB.</p>
|
|
9597
|
-
* @public
|
|
9598
|
-
*/
|
|
9599
|
-
DiskImageSize?: number | undefined;
|
|
9600
|
-
/**
|
|
9601
|
-
* <p>Indicates whether the snapshot is encrypted.</p>
|
|
9602
|
-
* @public
|
|
9603
|
-
*/
|
|
9604
|
-
Encrypted?: boolean | undefined;
|
|
9605
|
-
/**
|
|
9606
|
-
* <p>The format of the disk image from which the snapshot is created.</p>
|
|
9607
|
-
* @public
|
|
9608
|
-
*/
|
|
9609
|
-
Format?: string | undefined;
|
|
9610
|
-
/**
|
|
9611
|
-
* <p>The identifier for the KMS key that was used to create the encrypted snapshot.</p>
|
|
9612
|
-
* @public
|
|
9613
|
-
*/
|
|
9614
|
-
KmsKeyId?: string | undefined;
|
|
9615
|
-
/**
|
|
9616
|
-
* <p>The percentage of completion for the import snapshot task.</p>
|
|
9617
|
-
* @public
|
|
9618
|
-
*/
|
|
9619
|
-
Progress?: string | undefined;
|
|
9620
|
-
/**
|
|
9621
|
-
* <p>The snapshot ID of the disk being imported.</p>
|
|
9622
|
-
* @public
|
|
9623
|
-
*/
|
|
9624
|
-
SnapshotId?: string | undefined;
|
|
9625
|
-
/**
|
|
9626
|
-
* <p>A brief status for the import snapshot task.</p>
|
|
9627
|
-
* @public
|
|
9628
|
-
*/
|
|
9629
|
-
Status?: string | undefined;
|
|
9630
|
-
/**
|
|
9631
|
-
* <p>A detailed status message for the import snapshot task.</p>
|
|
9632
|
-
* @public
|
|
9633
|
-
*/
|
|
9634
|
-
StatusMessage?: string | undefined;
|
|
9635
|
-
/**
|
|
9636
|
-
* <p>The URL of the disk image from which the snapshot is created.</p>
|
|
9637
|
-
* @public
|
|
9638
|
-
*/
|
|
9639
|
-
Url?: string | undefined;
|
|
9640
|
-
/**
|
|
9641
|
-
* <p>The Amazon S3 bucket for the disk image.</p>
|
|
9642
|
-
* @public
|
|
9643
|
-
*/
|
|
9644
|
-
UserBucket?: UserBucketDetails | undefined;
|
|
9645
|
-
}
|
|
9646
|
-
/**
|
|
9647
|
-
* <p>Describes an import snapshot task.</p>
|
|
9648
|
-
* @public
|
|
9649
|
-
*/
|
|
9650
|
-
export interface ImportSnapshotTask {
|
|
9651
|
-
/**
|
|
9652
|
-
* <p>A description of the import snapshot task.</p>
|
|
9653
|
-
* @public
|
|
9654
|
-
*/
|
|
9655
|
-
Description?: string | undefined;
|
|
9656
|
-
/**
|
|
9657
|
-
* <p>The ID of the import snapshot task.</p>
|
|
9658
|
-
* @public
|
|
9659
|
-
*/
|
|
9660
|
-
ImportTaskId?: string | undefined;
|
|
9661
|
-
/**
|
|
9662
|
-
* <p>Describes an import snapshot task.</p>
|
|
9663
|
-
* @public
|
|
9664
|
-
*/
|
|
9665
|
-
SnapshotTaskDetail?: SnapshotTaskDetail | undefined;
|
|
9666
|
-
/**
|
|
9667
|
-
* <p>The tags for the import snapshot task.</p>
|
|
9668
|
-
* @public
|
|
9669
|
-
*/
|
|
9670
|
-
Tags?: Tag[] | undefined;
|
|
9671
|
-
}
|
|
9672
|
-
/**
|
|
9673
|
-
* @public
|
|
9674
|
-
*/
|
|
9675
|
-
export interface DescribeImportSnapshotTasksResult {
|
|
9676
|
-
/**
|
|
9677
|
-
* <p>A list of zero or more import snapshot tasks that are currently active or were completed or canceled in the
|
|
9678
|
-
* previous 7 days.</p>
|
|
9679
|
-
* @public
|
|
9680
|
-
*/
|
|
9681
|
-
ImportSnapshotTasks?: ImportSnapshotTask[] | undefined;
|
|
9682
|
-
/**
|
|
9683
|
-
* <p>The token to use to get the next page of results. This value is <code>null</code> when there are no more results
|
|
9684
|
-
* to return.</p>
|
|
9685
|
-
* @public
|
|
9686
|
-
*/
|
|
9687
|
-
NextToken?: string | undefined;
|
|
9688
|
-
}
|
|
9689
|
-
/**
|
|
9690
|
-
* @public
|
|
9691
|
-
*/
|
|
9692
|
-
export interface DescribeInstanceAttributeRequest {
|
|
9693
|
-
/**
|
|
9694
|
-
* <p>Checks whether you have the required permissions for the operation, without actually making the
|
|
9695
|
-
* request, and provides an error response. If you have the required permissions, the error response is
|
|
9696
|
-
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
9697
|
-
* @public
|
|
9698
|
-
*/
|
|
9699
|
-
DryRun?: boolean | undefined;
|
|
9700
|
-
/**
|
|
9701
|
-
* <p>The ID of the instance.</p>
|
|
9702
|
-
* @public
|
|
9703
|
-
*/
|
|
9704
|
-
InstanceId: string | undefined;
|
|
9705
|
-
/**
|
|
9706
|
-
* <p>The instance attribute.</p>
|
|
9707
|
-
* <p>Note that the <code>enaSupport</code> attribute is not supported.</p>
|
|
9708
|
-
* @public
|
|
9709
|
-
*/
|
|
9710
|
-
Attribute: InstanceAttributeName | undefined;
|
|
9711
|
-
}
|