@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
|
@@ -148,6 +148,15 @@ declare const DescribeImagesCommand_base: {
|
|
|
148
148
|
* // SourceImageId: "STRING_VALUE",
|
|
149
149
|
* // SourceImageRegion: "STRING_VALUE",
|
|
150
150
|
* // FreeTierEligible: true || false,
|
|
151
|
+
* // ImageWatermarks: [ // ImageWatermarkList
|
|
152
|
+
* // { // ImageWatermark
|
|
153
|
+
* // WatermarkKey: "STRING_VALUE",
|
|
154
|
+
* // SourceImageRegion: "STRING_VALUE",
|
|
155
|
+
* // SourceImageId: "STRING_VALUE",
|
|
156
|
+
* // SourceImageCreationTime: new Date("TIMESTAMP"),
|
|
157
|
+
* // WatermarkCreationTime: new Date("TIMESTAMP"),
|
|
158
|
+
* // },
|
|
159
|
+
* // ],
|
|
151
160
|
* // ImageId: "STRING_VALUE",
|
|
152
161
|
* // ImageLocation: "STRING_VALUE",
|
|
153
162
|
* // State: "pending" || "available" || "invalid" || "deregistered" || "transient" || "failed" || "error" || "disabled",
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeImportSnapshotTasksRequest, DescribeImportSnapshotTasksResult } from "../models/
|
|
4
|
+
import type { DescribeImportSnapshotTasksRequest, DescribeImportSnapshotTasksResult } from "../models/models_4";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeInstanceAttributeRequest } from "../models/
|
|
5
|
-
import type { InstanceAttribute } from "../models/models_4";
|
|
4
|
+
import type { DescribeInstanceAttributeRequest, InstanceAttribute } from "../models/models_4";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -104,6 +104,15 @@ declare const DescribeInstanceImageMetadataCommand_base: {
|
|
|
104
104
|
* // DeprecationTime: "STRING_VALUE",
|
|
105
105
|
* // ImageAllowed: true || false,
|
|
106
106
|
* // IsPublic: true || false,
|
|
107
|
+
* // ImageWatermarks: [ // ImageWatermarkList
|
|
108
|
+
* // { // ImageWatermark
|
|
109
|
+
* // WatermarkKey: "STRING_VALUE",
|
|
110
|
+
* // SourceImageRegion: "STRING_VALUE",
|
|
111
|
+
* // SourceImageId: "STRING_VALUE",
|
|
112
|
+
* // SourceImageCreationTime: new Date("TIMESTAMP"),
|
|
113
|
+
* // WatermarkCreationTime: new Date("TIMESTAMP"),
|
|
114
|
+
* // },
|
|
115
|
+
* // ],
|
|
107
116
|
* // },
|
|
108
117
|
* // Operator: { // OperatorResponse
|
|
109
118
|
* // Managed: true || false,
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeSpotInstanceRequestsRequest
|
|
4
|
+
import type { DescribeSpotInstanceRequestsRequest } from "../models/models_4";
|
|
5
|
+
import type { DescribeSpotInstanceRequestsResult } from "../models/models_5";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeSpotPriceHistoryRequest, DescribeSpotPriceHistoryResult } from "../models/
|
|
4
|
+
import type { DescribeSpotPriceHistoryRequest, DescribeSpotPriceHistoryResult } from "../models/models_5";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { DescribeStaleSecurityGroupsRequest } from "../models/
|
|
5
|
-
import type { DescribeStaleSecurityGroupsResult } from "../models/models_5";
|
|
4
|
+
import type { DescribeStaleSecurityGroupsRequest, DescribeStaleSecurityGroupsResult } from "../models/models_5";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -78,11 +78,6 @@ declare const DescribeVolumesModificationsCommand_base: {
|
|
|
78
78
|
* // Progress: Number("long"),
|
|
79
79
|
* // StartTime: new Date("TIMESTAMP"),
|
|
80
80
|
* // EndTime: new Date("TIMESTAMP"),
|
|
81
|
-
* // Operator: { // OperatorResponse
|
|
82
|
-
* // Managed: true || false,
|
|
83
|
-
* // Principal: "STRING_VALUE",
|
|
84
|
-
* // HiddenByDefault: true || false,
|
|
85
|
-
* // },
|
|
86
81
|
* // },
|
|
87
82
|
* // ],
|
|
88
83
|
* // };
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
+
import type { DetachImageWatermarkRequest, DetachImageWatermarkResult } from "../models/models_5";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DetachImageWatermarkCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DetachImageWatermarkCommandInput extends DetachImageWatermarkRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DetachImageWatermarkCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DetachImageWatermarkCommandOutput extends DetachImageWatermarkResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DetachImageWatermarkCommand_base: {
|
|
25
|
+
new (input: DetachImageWatermarkCommandInput): import("@smithy/core/client").CommandImpl<DetachImageWatermarkCommandInput, DetachImageWatermarkCommandOutput, EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DetachImageWatermarkCommandInput): import("@smithy/core/client").CommandImpl<DetachImageWatermarkCommandInput, DetachImageWatermarkCommandOutput, EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Removes a watermark from the specified AMI. This is an idempotent operation. It succeeds
|
|
33
|
+
* even if the watermark does not exist on the image.</p>
|
|
34
|
+
* <p>Removing a watermark from an image does not affect derivative images that already carry
|
|
35
|
+
* the watermark.</p>
|
|
36
|
+
* <p>Only the AMI owner can detach watermarks.</p>
|
|
37
|
+
* @example
|
|
38
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
39
|
+
* ```javascript
|
|
40
|
+
* import { EC2Client, DetachImageWatermarkCommand } from "@aws-sdk/client-ec2"; // ES Modules import
|
|
41
|
+
* // const { EC2Client, DetachImageWatermarkCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
|
|
42
|
+
* // import type { EC2ClientConfig } from "@aws-sdk/client-ec2";
|
|
43
|
+
* const config = {}; // type is EC2ClientConfig
|
|
44
|
+
* const client = new EC2Client(config);
|
|
45
|
+
* const input = { // DetachImageWatermarkRequest
|
|
46
|
+
* ImageId: "STRING_VALUE", // required
|
|
47
|
+
* WatermarkKey: "STRING_VALUE", // required
|
|
48
|
+
* DryRun: true || false,
|
|
49
|
+
* };
|
|
50
|
+
* const command = new DetachImageWatermarkCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // { // DetachImageWatermarkResult
|
|
53
|
+
* // Return: true || false,
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param DetachImageWatermarkCommandInput - {@link DetachImageWatermarkCommandInput}
|
|
59
|
+
* @returns {@link DetachImageWatermarkCommandOutput}
|
|
60
|
+
* @see {@link DetachImageWatermarkCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link DetachImageWatermarkCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link EC2ServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from EC2 service.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export declare class DetachImageWatermarkCommand extends DetachImageWatermarkCommand_base {
|
|
71
|
+
/** @internal type navigation helper, not in runtime. */
|
|
72
|
+
protected static __types: {
|
|
73
|
+
api: {
|
|
74
|
+
input: DetachImageWatermarkRequest;
|
|
75
|
+
output: DetachImageWatermarkResult;
|
|
76
|
+
};
|
|
77
|
+
sdk: {
|
|
78
|
+
input: DetachImageWatermarkCommandInput;
|
|
79
|
+
output: DetachImageWatermarkCommandOutput;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { GetCapacityManagerAttributesRequest, GetCapacityManagerAttributesResult } from "../models/
|
|
4
|
+
import type { GetCapacityManagerAttributesRequest, GetCapacityManagerAttributesResult } from "../models/models_6";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { GetCapacityManagerMetricDataRequest } from "../models/
|
|
5
|
-
import type { GetCapacityManagerMetricDataResult } from "../models/models_6";
|
|
4
|
+
import type { GetCapacityManagerMetricDataRequest, GetCapacityManagerMetricDataResult } from "../models/models_6";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyIpamScopeRequest
|
|
4
|
+
import type { ModifyIpamScopeRequest } from "../models/models_6";
|
|
5
|
+
import type { ModifyIpamScopeResult } from "../models/models_7";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyLaunchTemplateRequest, ModifyLaunchTemplateResult } from "../models/
|
|
4
|
+
import type { ModifyLaunchTemplateRequest, ModifyLaunchTemplateResult } from "../models/models_7";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyLocalGatewayRouteRequest, ModifyLocalGatewayRouteResult } from "../models/
|
|
4
|
+
import type { ModifyLocalGatewayRouteRequest, ModifyLocalGatewayRouteResult } from "../models/models_7";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
-
import type { ModifyManagedPrefixListRequest } from "../models/
|
|
5
|
-
import type { ModifyManagedPrefixListResult } from "../models/models_7";
|
|
4
|
+
import type { ModifyManagedPrefixListRequest, ModifyManagedPrefixListResult } from "../models/models_7";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
8
7
|
*/
|
|
@@ -82,11 +82,6 @@ declare const ModifyVolumeCommand_base: {
|
|
|
82
82
|
* // Progress: Number("long"),
|
|
83
83
|
* // StartTime: new Date("TIMESTAMP"),
|
|
84
84
|
* // EndTime: new Date("TIMESTAMP"),
|
|
85
|
-
* // Operator: { // OperatorResponse
|
|
86
|
-
* // Managed: true || false,
|
|
87
|
-
* // Principal: "STRING_VALUE",
|
|
88
|
-
* // HiddenByDefault: true || false,
|
|
89
|
-
* // },
|
|
90
85
|
* // },
|
|
91
86
|
* // };
|
|
92
87
|
*
|
|
@@ -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";
|
|
@@ -3093,6 +3093,19 @@ export declare const FlowLogsResourceType: {
|
|
|
3093
3093
|
* @public
|
|
3094
3094
|
*/
|
|
3095
3095
|
export type FlowLogsResourceType = (typeof FlowLogsResourceType)[keyof typeof FlowLogsResourceType];
|
|
3096
|
+
/**
|
|
3097
|
+
* @public
|
|
3098
|
+
* @enum
|
|
3099
|
+
*/
|
|
3100
|
+
export declare const TaggableResourceType: {
|
|
3101
|
+
readonly auto_scaling_group: "auto-scaling-group";
|
|
3102
|
+
readonly instance: "instance";
|
|
3103
|
+
readonly network_interface: "network-interface";
|
|
3104
|
+
};
|
|
3105
|
+
/**
|
|
3106
|
+
* @public
|
|
3107
|
+
*/
|
|
3108
|
+
export type TaggableResourceType = (typeof TaggableResourceType)[keyof typeof TaggableResourceType];
|
|
3096
3109
|
/**
|
|
3097
3110
|
* @public
|
|
3098
3111
|
* @enum
|
|
@@ -4631,6 +4631,43 @@ export interface AttachClassicLinkVpcResult {
|
|
|
4631
4631
|
*/
|
|
4632
4632
|
Return?: boolean | undefined;
|
|
4633
4633
|
}
|
|
4634
|
+
/**
|
|
4635
|
+
* @public
|
|
4636
|
+
*/
|
|
4637
|
+
export interface AttachImageWatermarkRequest {
|
|
4638
|
+
/**
|
|
4639
|
+
* <p>The ID of the AMI.</p>
|
|
4640
|
+
* @public
|
|
4641
|
+
*/
|
|
4642
|
+
ImageId: string | undefined;
|
|
4643
|
+
/**
|
|
4644
|
+
* <p>The name for the watermark. Combined with the caller's account ID to form the
|
|
4645
|
+
* <code>WatermarkKey</code> (<code>accountId:watermarkName</code>).</p>
|
|
4646
|
+
* <p>Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets ([]), spaces
|
|
4647
|
+
* ( ), periods (.), slashes (/), dashes (-), single quotes ('), at-signs (@), or
|
|
4648
|
+
* underscores(_)</p>
|
|
4649
|
+
* @public
|
|
4650
|
+
*/
|
|
4651
|
+
WatermarkName: string | undefined;
|
|
4652
|
+
/**
|
|
4653
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
4654
|
+
* and provides an error response. If you have the required permissions, the error response is
|
|
4655
|
+
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
4656
|
+
* @public
|
|
4657
|
+
*/
|
|
4658
|
+
DryRun?: boolean | undefined;
|
|
4659
|
+
}
|
|
4660
|
+
/**
|
|
4661
|
+
* @public
|
|
4662
|
+
*/
|
|
4663
|
+
export interface AttachImageWatermarkResult {
|
|
4664
|
+
/**
|
|
4665
|
+
* <p>The watermark identifier, in <code>accountId:watermarkName</code> format (for example,
|
|
4666
|
+
* <code>123456789012:approvedAmi</code>).</p>
|
|
4667
|
+
* @public
|
|
4668
|
+
*/
|
|
4669
|
+
WatermarkKey?: string | undefined;
|
|
4670
|
+
}
|
|
4634
4671
|
/**
|
|
4635
4672
|
* @public
|
|
4636
4673
|
*/
|
|
@@ -8104,7 +8141,7 @@ export interface CreateCapacityReservationFleetRequest {
|
|
|
8104
8141
|
* <p>Information about the instance types for which to reserve the capacity.</p>
|
|
8105
8142
|
* @public
|
|
8106
8143
|
*/
|
|
8107
|
-
InstanceTypeSpecifications
|
|
8144
|
+
InstanceTypeSpecifications?: ReservationFleetInstanceSpecification[] | undefined;
|
|
8108
8145
|
/**
|
|
8109
8146
|
* <p>Indicates the tenancy of the Capacity Reservation Fleet. All Capacity Reservations in
|
|
8110
8147
|
* the Fleet inherit this tenancy. The Capacity Reservation Fleet can have one of the
|
|
@@ -9351,25 +9388,3 @@ export interface Subnet {
|
|
|
9351
9388
|
*/
|
|
9352
9389
|
MapPublicIpOnLaunch?: boolean | undefined;
|
|
9353
9390
|
}
|
|
9354
|
-
/**
|
|
9355
|
-
* @public
|
|
9356
|
-
*/
|
|
9357
|
-
export interface CreateDefaultSubnetResult {
|
|
9358
|
-
/**
|
|
9359
|
-
* <p>Information about the subnet.</p>
|
|
9360
|
-
* @public
|
|
9361
|
-
*/
|
|
9362
|
-
Subnet?: Subnet | undefined;
|
|
9363
|
-
}
|
|
9364
|
-
/**
|
|
9365
|
-
* @public
|
|
9366
|
-
*/
|
|
9367
|
-
export interface CreateDefaultVpcRequest {
|
|
9368
|
-
/**
|
|
9369
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
9370
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
9371
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
9372
|
-
* @public
|
|
9373
|
-
*/
|
|
9374
|
-
DryRun?: boolean | undefined;
|
|
9375
|
-
}
|
|
@@ -1,5 +1,27 @@
|
|
|
1
|
-
import type { _InstanceType, AcceleratorManufacturer, AcceleratorName, AcceleratorType, AddressFamily, AmdSevSnpSpecification, AttachmentStatus, AutoProvisionZonesState, AutoScalingIpsState, AvailabilityMode, BareMetal, BurstablePerformance, CapacityReservationPreference, ConnectivityType, ContainerFormat, CpuManufacturer, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, Ec2InstanceConnectEndpointState, ExportEnvironment, ExportTaskState, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetType, FlowLogsResourceType, HostnameType, InstanceBandwidthWeighting, InstanceGeneration, InstanceInterruptionBehavior, InstanceLifecycle, InterfacePermissionType, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, IpamExternalResourceVerificationTokenState, IpamMeteredAccount, IpamPolicyState, IpamPoolAwsService, IpamPoolPublicIpSource, IpamPoolSourceResourceType, IpamPoolState, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPrefixListResolverState, IpamPrefixListResolverTargetState, IpamPrefixListResolverVersionCreationStatus, IpamResourceDiscoveryState, IpamResourceType, IpamScopeExternalAuthorityType, IpamScopeState, IpamScopeType, IpamState, IpamTier, KeyFormat, KeyType, LaunchTemplateAutoRecoveryState, LaunchTemplateHttpTokensState, LaunchTemplateInstanceMetadataEndpointState, LaunchTemplateInstanceMetadataOptionsState, LaunchTemplateInstanceMetadataProtocolIpv6, LaunchTemplateInstanceMetadataTagsState, LocalGatewayRouteState, LocalGatewayRouteTableMode, LocalGatewayRouteType, LocalGatewayVirtualInterfaceConfigurationState, LocalGatewayVirtualInterfaceGroupConfigurationState, LocalStorage, LocalStorageType, LogDestinationType, MacModificationTaskState, MacModificationTaskType, MacSystemIntegrityProtectionSettingStatus, MarketType, NatGatewayApplianceModifyState, NatGatewayApplianceState, NatGatewayApplianceType, NatGatewayState, NestedVirtualizationSpecification, NetworkInterfaceCreationType, NetworkInterfacePermissionStateCode, NetworkInterfaceStatus, NetworkInterfaceType, PlacementGroupState, PlacementStrategy, PlatformValues, PrefixListState, Protocol, ReplaceRootVolumeTaskState, ResourceType, RouteServerBfdState, RouteServerBgpState, RouteServerEndpointState, RouteServerPeerLivenessMode,
|
|
2
|
-
import type { AcceleratorCount, AcceleratorCountRequest, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, BlockPublicAccessStates, InstanceEventWindow, Ipv4PrefixSpecification, NatGatewayAddress, OperatorResponse, PortRange, ReservedInstancesListing, Tag, TagSpecification, UnsuccessfulItem, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation } from "./models_0";
|
|
1
|
+
import type { _InstanceType, AcceleratorManufacturer, AcceleratorName, AcceleratorType, AddressFamily, AmdSevSnpSpecification, AttachmentStatus, AutoProvisionZonesState, AutoScalingIpsState, AvailabilityMode, BareMetal, BurstablePerformance, CapacityReservationPreference, ConnectivityType, ContainerFormat, CpuManufacturer, CurrencyCodeValues, DefaultTargetCapacityType, DestinationFileFormat, DiskImageFormat, Ec2InstanceConnectEndpointState, ExportEnvironment, ExportTaskState, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetReservationType, FleetType, FlowLogsResourceType, HostnameType, InstanceBandwidthWeighting, InstanceGeneration, InstanceInterruptionBehavior, InstanceLifecycle, InterfacePermissionType, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, IpamExternalResourceVerificationTokenState, IpamMeteredAccount, IpamPolicyState, IpamPoolAwsService, IpamPoolPublicIpSource, IpamPoolSourceResourceType, IpamPoolState, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPrefixListResolverState, IpamPrefixListResolverTargetState, IpamPrefixListResolverVersionCreationStatus, IpamResourceDiscoveryState, IpamResourceType, IpamScopeExternalAuthorityType, IpamScopeState, IpamScopeType, IpamState, IpamTier, KeyFormat, KeyType, LaunchTemplateAutoRecoveryState, LaunchTemplateHttpTokensState, LaunchTemplateInstanceMetadataEndpointState, LaunchTemplateInstanceMetadataOptionsState, LaunchTemplateInstanceMetadataProtocolIpv6, LaunchTemplateInstanceMetadataTagsState, LocalGatewayRouteState, LocalGatewayRouteTableMode, LocalGatewayRouteType, LocalGatewayVirtualInterfaceConfigurationState, LocalGatewayVirtualInterfaceGroupConfigurationState, LocalStorage, LocalStorageType, LogDestinationType, MacModificationTaskState, MacModificationTaskType, MacSystemIntegrityProtectionSettingStatus, MarketType, NatGatewayApplianceModifyState, NatGatewayApplianceState, NatGatewayApplianceType, NatGatewayState, NestedVirtualizationSpecification, NetworkInterfaceCreationType, NetworkInterfacePermissionStateCode, NetworkInterfaceStatus, NetworkInterfaceType, PlacementGroupState, PlacementStrategy, PlatformValues, PrefixListState, Protocol, ReplaceRootVolumeTaskState, ResourceType, RouteServerBfdState, RouteServerBgpState, RouteServerEndpointState, RouteServerPeerLivenessMode, RouteServerPersistRoutesAction, RouteServerPersistRoutesState, RouteServerState, RuleAction, SecondaryInterfaceType, ShutdownBehavior, SnapshotLocationEnum, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, SpotInstanceType, SpreadLevel, TaggableResourceType, TargetCapacityUnitType, Tenancy, TokenState, TrafficType, VolumeType, VpcEncryptionControlExclusionState, VpcEncryptionControlMode, VpcEncryptionControlState, VpcState, WeekDay } from "./enums";
|
|
2
|
+
import type { AcceleratorCount, AcceleratorCountRequest, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, BlockPublicAccessStates, InstanceEventWindow, Ipv4PrefixSpecification, NatGatewayAddress, OperatorResponse, PortRange, ReservedInstancesListing, Subnet, Tag, TagSpecification, UnsuccessfulItem, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreateDefaultSubnetResult {
|
|
7
|
+
/**
|
|
8
|
+
* <p>Information about the subnet.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
Subnet?: Subnet | undefined;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export interface CreateDefaultVpcRequest {
|
|
17
|
+
/**
|
|
18
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
19
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
20
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
DryRun?: boolean | undefined;
|
|
24
|
+
}
|
|
3
25
|
/**
|
|
4
26
|
* <p>Describes an exclusion configuration for VPC Encryption Control.</p>
|
|
5
27
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-encryption-controls.html">Enforce VPC encryption in transit</a> in the <i>Amazon VPC User Guide</i>.</p>
|
|
@@ -3326,6 +3348,22 @@ export interface DestinationOptionsRequest {
|
|
|
3326
3348
|
*/
|
|
3327
3349
|
PerHourPartition?: boolean | undefined;
|
|
3328
3350
|
}
|
|
3351
|
+
/**
|
|
3352
|
+
* <p>A single resource's tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
3353
|
+
* @public
|
|
3354
|
+
*/
|
|
3355
|
+
export interface TagFieldSpecificationRequest {
|
|
3356
|
+
/**
|
|
3357
|
+
* <p>The resource type for the tag keys associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
3358
|
+
* @public
|
|
3359
|
+
*/
|
|
3360
|
+
ResourceType?: TaggableResourceType | undefined;
|
|
3361
|
+
/**
|
|
3362
|
+
* <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>
|
|
3363
|
+
* @public
|
|
3364
|
+
*/
|
|
3365
|
+
TagKeys?: string[] | undefined;
|
|
3366
|
+
}
|
|
3329
3367
|
/**
|
|
3330
3368
|
* @public
|
|
3331
3369
|
*/
|
|
@@ -3445,6 +3483,11 @@ export interface CreateFlowLogsRequest {
|
|
|
3445
3483
|
* @public
|
|
3446
3484
|
*/
|
|
3447
3485
|
DestinationOptions?: DestinationOptionsRequest | undefined;
|
|
3486
|
+
/**
|
|
3487
|
+
* <p>The tag configuration associated with the Flow Logs Amazon EC2 Tags feature fields in your custom log format.</p>
|
|
3488
|
+
* @public
|
|
3489
|
+
*/
|
|
3490
|
+
TagFieldSpecifications?: TagFieldSpecificationRequest[] | undefined;
|
|
3448
3491
|
}
|
|
3449
3492
|
/**
|
|
3450
3493
|
* @public
|
|
@@ -12447,129 +12490,3 @@ export interface RouteServerBgpStatus {
|
|
|
12447
12490
|
*/
|
|
12448
12491
|
Status?: RouteServerBgpState | undefined;
|
|
12449
12492
|
}
|
|
12450
|
-
/**
|
|
12451
|
-
* <p>Describes a BGP peer configuration for a route server endpoint.</p>
|
|
12452
|
-
* <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>
|
|
12453
|
-
* <ul>
|
|
12454
|
-
* <li>
|
|
12455
|
-
* <p>Have an elastic network interface in the VPC</p>
|
|
12456
|
-
* </li>
|
|
12457
|
-
* <li>
|
|
12458
|
-
* <p>Support BGP (Border Gateway Protocol)</p>
|
|
12459
|
-
* </li>
|
|
12460
|
-
* <li>
|
|
12461
|
-
* <p>Can initiate BGP sessions</p>
|
|
12462
|
-
* </li>
|
|
12463
|
-
* </ul>
|
|
12464
|
-
* @public
|
|
12465
|
-
*/
|
|
12466
|
-
export interface RouteServerPeer {
|
|
12467
|
-
/**
|
|
12468
|
-
* <p>The unique identifier of the route server peer.</p>
|
|
12469
|
-
* @public
|
|
12470
|
-
*/
|
|
12471
|
-
RouteServerPeerId?: string | undefined;
|
|
12472
|
-
/**
|
|
12473
|
-
* <p>The ID of the route server endpoint associated with this peer.</p>
|
|
12474
|
-
* @public
|
|
12475
|
-
*/
|
|
12476
|
-
RouteServerEndpointId?: string | undefined;
|
|
12477
|
-
/**
|
|
12478
|
-
* <p>The ID of the route server associated with this peer.</p>
|
|
12479
|
-
* @public
|
|
12480
|
-
*/
|
|
12481
|
-
RouteServerId?: string | undefined;
|
|
12482
|
-
/**
|
|
12483
|
-
* <p>The ID of the VPC containing the route server peer.</p>
|
|
12484
|
-
* @public
|
|
12485
|
-
*/
|
|
12486
|
-
VpcId?: string | undefined;
|
|
12487
|
-
/**
|
|
12488
|
-
* <p>The ID of the subnet containing the route server peer.</p>
|
|
12489
|
-
* @public
|
|
12490
|
-
*/
|
|
12491
|
-
SubnetId?: string | undefined;
|
|
12492
|
-
/**
|
|
12493
|
-
* <p>The current state of the route server peer.</p>
|
|
12494
|
-
* @public
|
|
12495
|
-
*/
|
|
12496
|
-
State?: RouteServerPeerState | undefined;
|
|
12497
|
-
/**
|
|
12498
|
-
* <p>The reason for any failure in peer creation or operation.</p>
|
|
12499
|
-
* @public
|
|
12500
|
-
*/
|
|
12501
|
-
FailureReason?: string | undefined;
|
|
12502
|
-
/**
|
|
12503
|
-
* <p>The ID of the Elastic network interface for the route server endpoint.</p>
|
|
12504
|
-
* @public
|
|
12505
|
-
*/
|
|
12506
|
-
EndpointEniId?: string | undefined;
|
|
12507
|
-
/**
|
|
12508
|
-
* <p>The IP address of the Elastic network interface for the route server endpoint.</p>
|
|
12509
|
-
* @public
|
|
12510
|
-
*/
|
|
12511
|
-
EndpointEniAddress?: string | undefined;
|
|
12512
|
-
/**
|
|
12513
|
-
* <p>The IPv4 address of the peer device.</p>
|
|
12514
|
-
* @public
|
|
12515
|
-
*/
|
|
12516
|
-
PeerAddress?: string | undefined;
|
|
12517
|
-
/**
|
|
12518
|
-
* <p>The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.</p>
|
|
12519
|
-
* @public
|
|
12520
|
-
*/
|
|
12521
|
-
BgpOptions?: RouteServerBgpOptions | undefined;
|
|
12522
|
-
/**
|
|
12523
|
-
* <p>The current status of the BGP session with this peer.</p>
|
|
12524
|
-
* @public
|
|
12525
|
-
*/
|
|
12526
|
-
BgpStatus?: RouteServerBgpStatus | undefined;
|
|
12527
|
-
/**
|
|
12528
|
-
* <p>The current status of the BFD session with this peer.</p>
|
|
12529
|
-
* @public
|
|
12530
|
-
*/
|
|
12531
|
-
BfdStatus?: RouteServerBfdStatus | undefined;
|
|
12532
|
-
/**
|
|
12533
|
-
* <p>Any tags assigned to the route server peer.</p>
|
|
12534
|
-
* @public
|
|
12535
|
-
*/
|
|
12536
|
-
Tags?: Tag[] | undefined;
|
|
12537
|
-
}
|
|
12538
|
-
/**
|
|
12539
|
-
* @public
|
|
12540
|
-
*/
|
|
12541
|
-
export interface CreateRouteServerPeerResult {
|
|
12542
|
-
/**
|
|
12543
|
-
* <p>Information about the created route server peer.</p>
|
|
12544
|
-
* @public
|
|
12545
|
-
*/
|
|
12546
|
-
RouteServerPeer?: RouteServerPeer | undefined;
|
|
12547
|
-
}
|
|
12548
|
-
/**
|
|
12549
|
-
* @public
|
|
12550
|
-
*/
|
|
12551
|
-
export interface CreateRouteTableRequest {
|
|
12552
|
-
/**
|
|
12553
|
-
* <p>The tags to assign to the route table.</p>
|
|
12554
|
-
* @public
|
|
12555
|
-
*/
|
|
12556
|
-
TagSpecifications?: TagSpecification[] | undefined;
|
|
12557
|
-
/**
|
|
12558
|
-
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
12559
|
-
* request. For more information, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency</a>.</p>
|
|
12560
|
-
* @public
|
|
12561
|
-
*/
|
|
12562
|
-
ClientToken?: string | undefined;
|
|
12563
|
-
/**
|
|
12564
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
12565
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
12566
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
12567
|
-
* @public
|
|
12568
|
-
*/
|
|
12569
|
-
DryRun?: boolean | undefined;
|
|
12570
|
-
/**
|
|
12571
|
-
* <p>The ID of the VPC.</p>
|
|
12572
|
-
* @public
|
|
12573
|
-
*/
|
|
12574
|
-
VpcId: string | undefined;
|
|
12575
|
-
}
|