@cdklabs/cdk-ssm-documents 0.0.57 → 0.0.59
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/client-cloudformation/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +9 -9
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForChangeSetCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackCreateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackDeleteComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackExists.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackImportComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRefactorExecuteComplete.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackRollbackComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/waiters/waitForStackUpdateComplete.js +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +11 -10
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/CloudFormation.d.ts +13 -10
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForChangeSetCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackDeleteComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackImportComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorCreateComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRefactorExecuteComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackRollbackComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForStackUpdateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/waiters/waitForTypeRegistrationComplete.d.ts +11 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForChangeSetCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackImportComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRefactorExecuteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackRollbackComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForStackUpdateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/waiters/waitForTypeRegistrationComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudformation/package.json +19 -19
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmExists.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForAlarmMuteRuleExists.js +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForCompositeAlarmExists.js +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +37 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +3 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForAlarmMuteRuleExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForCompositeAlarmExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForAlarmMuteRuleExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForCompositeAlarmExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +21 -21
- package/node_modules/@aws-sdk/client-ec2/README.md +35 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +103 -17
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +257 -106
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +10 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayClientVpnAttachmentCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayClientVpnAttachmentCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedResourceVisibilityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedResourceVisibilityCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayClientVpnAttachmentCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +194 -43
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForImageExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceRunning.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStatusOk.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceStopped.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInstanceTerminated.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForInternetGatewayExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForKeyPairExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNatGatewayDeleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForNetworkInterfaceAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForPasswordDataAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondaryNetworkCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecondarySubnetCreateComplete.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSecurityGroupExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSnapshotCompleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSpotInstanceRequestFulfilled.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForSubnetAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeDeleted.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVolumeInUse.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcAvailable.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcExists.js +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionDeleted.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-es/waiters/waitForVpcPeeringConnectionExists.js +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +81 -43
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +7 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateClientVpnTargetNetworkCommand.d.ts +3 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +10 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnEndpointsCommand.d.ts +11 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventWindowsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceStatusCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePlacementGroupsCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFiltersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeStatusCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCoipPoolUsageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleOutputCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedResourceVisibilityCommand.d.ts +77 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListVolumesInRecycleBinCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyClientVpnEndpointCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +80 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySecurityGroupRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotTierCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySubnetAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayRoutesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +112 -181
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +179 -119
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +119 -56
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +126 -205
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +239 -266
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +288 -292
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +360 -374
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +399 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +155 -43
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +30 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondaryNetworkCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventWindowsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFiltersCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCoipPoolUsageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleOutputCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedResourceVisibilityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotTierCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +31 -36
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +33 -33
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +31 -15
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +36 -33
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +41 -44
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +48 -48
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +69 -77
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForBundleTaskComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCancelled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForConversionTaskDeleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForCustomerGatewayAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCancelled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForExportTaskCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForImageUsageReportAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceRunning.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStatusOk.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceStopped.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInstanceTerminated.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForInternetGatewayExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForKeyPairExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNatGatewayDeleted.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForNetworkInterfaceAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForPasswordDataAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetCreateComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecondarySubnetDeleteComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotCompleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSnapshotImported.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSpotInstanceRequestFulfilled.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForStoreImageTaskComplete.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSubnetAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForSystemStatusOk.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeDeleted.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVolumeInUse.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcAvailable.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionDeleted.d.ts +11 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpcPeeringConnectionExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionAvailable.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/waiters/waitForVpnConnectionDeleted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForBundleTaskComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCancelled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForConversionTaskDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForCustomerGatewayAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCancelled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForExportTaskCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForImageUsageReportAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceRunning.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStatusOk.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceStopped.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInstanceTerminated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForInternetGatewayExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForKeyPairExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNatGatewayDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForNetworkInterfaceAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForPasswordDataAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondaryNetworkDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetCreateComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecondarySubnetDeleteComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationAssociated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSecurityGroupVpcAssociationDisassociated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotCompleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSnapshotImported.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSpotInstanceRequestFulfilled.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForStoreImageTaskComplete.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSubnetAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForSystemStatusOk.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVolumeInUse.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpcPeeringConnectionExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionAvailable.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/waiters/waitForVpnConnectionDeleted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ec2/package.json +21 -21
- package/node_modules/@aws-sdk/client-iam/README.md +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +85 -0
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +4 -4
- package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/bdd.js +82 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForInstanceProfileExists.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForPolicyExists.js +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForRoleExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-es/waiters/waitForUserExists.js +1 -1
- package/node_modules/@aws-sdk/client-iam/dist-types/IAM.d.ts +55 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/IAMClient.d.ts +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +51 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/IAM.d.ts +4 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForInstanceProfileExists.d.ts +9 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForPolicyExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForRoleExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/waiters/waitForUserExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForInstanceProfileExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForPolicyExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForRoleExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/waiters/waitForUserExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-iam/package.json +20 -20
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +2 -1
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/bdd.js +46 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionActiveV2.js +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionExists.js +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/waiters/waitForFunctionUpdatedV2.js +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/Lambda.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/Lambda.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActive.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionActiveV2.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdated.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForFunctionUpdatedV2.d.ts +7 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/waiters/waitForPublishedVersionActive.d.ts +9 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActive.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionActiveV2.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdated.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForFunctionUpdatedV2.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/dist-types/waiters/waitForPublishedVersionActive.d.ts +4 -3
- package/node_modules/@aws-sdk/client-lambda/package.json +28 -22
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +757 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +11 -10
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +75 -60
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +1 -5
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/bdd.js +754 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +75 -60
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +15 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +6 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +38 -7
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +10 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +39 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +6 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +31 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +11 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +11 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +546 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +194 -34
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +5 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +55 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +20 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +7 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +8 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +5 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +4 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +5 -3
- package/node_modules/@aws-sdk/client-s3/package.json +25 -25
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +55 -0
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-sns/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sns/package.json +18 -18
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/package.json +20 -20
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +52 -0
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/bdd.js +49 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/client-ssm/dist-es/waiters/waitForCommandExecuted.js +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/SSM.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/SSM.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/waiters/waitForCommandExecuted.d.ts +9 -3
- package/node_modules/@aws-sdk/client-ssm/dist-types/waiters/waitForCommandExecuted.d.ts +4 -3
- package/node_modules/@aws-sdk/client-ssm/package.json +19 -19
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +35 -17
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +18 -6
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +18 -11
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/emitWarningIfUnsupportedVersion.js +15 -6
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/setFeature.js +2 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeDeserializer.js +6 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/JsonShapeSerializer.js +6 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/json/experimental/SinglePassJsonShapeSerializer.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/query/QueryShapeSerializer.js +2 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/AwsRestXmlProtocol.js +0 -1
- package/node_modules/@aws-sdk/core/dist-es/submodules/protocols/xml/XmlShapeSerializer.js +4 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/emitWarningIfUnsupportedVersion.d.ts +1 -2
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/setFeature.d.ts +1 -1
- package/node_modules/@aws-sdk/core/package.json +7 -5
- package/node_modules/@aws-sdk/credential-provider-env/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-http/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +9 -9
- package/node_modules/@aws-sdk/credential-provider-login/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-node/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-process/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +9 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +11 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/throw-200-exceptions.js +9 -25
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.browser.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/toStream.js +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/throw-200-exceptions.d.ts +2 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.browser.d.ts +4 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/toStream.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/throw-200-exceptions.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.browser.d.ts +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/toStream.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +15 -8
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +2 -2
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/bdd.js +100 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/bdd.js +90 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/bdd.js +80 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/STSClient.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +87 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/bdd.js +150 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/endpointResolver.js +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/runtimeConfig.shared.js +7 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +97 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +87 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +77 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/STSClient.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +88 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +147 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/endpointResolver.js +3 -3
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/models/errors.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +7 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +8 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +15 -7
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/models/errors.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +3 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +10 -4
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +3 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +3 -1
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +20 -9
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/bdd.d.ts +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/models/errors.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +35 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +11 -5
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +8 -1
- package/node_modules/@aws-sdk/nested-clients/package.json +18 -17
- package/node_modules/@aws-sdk/region-config-resolver/package.json +2 -2
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +3 -3
- package/node_modules/@aws-sdk/util-endpoints/package.json +2 -2
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +336 -0
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +26 -2
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-external/nodable_entities.js +332 -0
- package/node_modules/@aws-sdk/xml-builder/dist-es/xml-parser.js +26 -2
- package/node_modules/@aws-sdk/xml-builder/dist-types/ts3.4/xml-external/nodable_entities.d.ts +66 -0
- package/node_modules/@aws-sdk/xml-builder/dist-types/xml-external/nodable_entities.d.ts +65 -0
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -2
- package/node_modules/@nodable/entities/README.md +41 -0
- package/node_modules/@nodable/entities/package.json +54 -0
- package/node_modules/@nodable/entities/src/EntityDecoder.js +543 -0
- package/node_modules/@nodable/entities/src/EntityEncoder.js +194 -0
- package/node_modules/@nodable/entities/src/entities.js +1177 -0
- package/node_modules/@nodable/entities/src/entityTries.js +49 -0
- package/node_modules/@nodable/entities/src/index.d.ts +264 -0
- package/node_modules/@nodable/entities/src/index.js +29 -0
- package/node_modules/@smithy/core/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +2 -2
- package/node_modules/@smithy/middleware-endpoint/package.json +3 -3
- package/node_modules/@smithy/middleware-retry/package.json +5 -5
- package/node_modules/@smithy/middleware-serde/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +27 -16
- package/node_modules/@smithy/node-http-handler/dist-es/http2/ClientHttp2SessionRef.js +5 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-connection-manager.js +22 -16
- package/node_modules/@smithy/node-http-handler/dist-types/http2/ClientHttp2SessionRef.d.ts +4 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-connection-manager.d.ts +2 -4
- package/node_modules/@smithy/node-http-handler/package.json +1 -1
- package/node_modules/@smithy/service-error-classification/dist-cjs/index.js +1 -0
- package/node_modules/@smithy/service-error-classification/dist-es/index.js +1 -0
- package/node_modules/@smithy/service-error-classification/package.json +1 -1
- package/node_modules/@smithy/smithy-client/package.json +4 -4
- package/node_modules/@smithy/util-defaults-mode-browser/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +27 -13
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +5 -2
- package/node_modules/@smithy/util-retry/dist-es/DefaultRateLimiter.js +2 -1
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +20 -10
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +12 -4
- package/node_modules/@smithy/util-retry/package.json +3 -3
- package/node_modules/@smithy/util-stream/package.json +2 -2
- package/node_modules/@smithy/util-waiter/dist-cjs/index.js +59 -34
- package/node_modules/@smithy/util-waiter/dist-es/poller.js +61 -34
- package/node_modules/@smithy/util-waiter/dist-types/createWaiter.d.ts +1 -1
- package/node_modules/@smithy/util-waiter/dist-types/poller.d.ts +2 -1
- package/node_modules/@smithy/util-waiter/dist-types/waiter.d.ts +13 -13
- package/node_modules/@smithy/util-waiter/package.json +1 -1
- package/node_modules/fast-xml-builder/CHANGELOG.md +13 -0
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
- package/node_modules/fast-xml-builder/package.json +1 -1
- package/node_modules/fast-xml-builder/src/fxb.js +7 -8
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +6 -7
- package/node_modules/fast-xml-builder/src/util.js +16 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/CHANGELOG.md +61 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/README.md +8 -28
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxp.cjs +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxp.d.cts +172 -6
- package/node_modules/fast-xml-parser/lib/fxp.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxp.min.js.map +1 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js +2 -0
- package/node_modules/fast-xml-parser/lib/fxparser.min.js.map +1 -0
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/package.json +5 -4
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.d.ts +162 -3
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/DocTypeReader.js +2 -5
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OptionsBuilder.js +15 -11
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/OrderedObjParser.js +174 -245
- package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/XMLParser.js +2 -2
- package/package.json +10 -10
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ec2/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-iam/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-iam/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-lambda/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-sns/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-sns/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-sqs/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-sqs/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/ruleset.js +0 -7
- package/node_modules/@aws-sdk/client-ssm/dist-es/endpoint/ruleset.js +0 -4
- package/node_modules/@aws-sdk/client-ssm/dist-types/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/endpoint/ruleset.js +0 -146
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/endpoint/ruleset.js +0 -133
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +0 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/endpoint/ruleset.js +0 -145
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/ruleset.js +0 -143
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/ruleset.js +0 -130
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/ruleset.js +0 -103
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/ruleset.js +0 -142
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxbuilder.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.cjs +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxp.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js +0 -2
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/fxparser.min.js.map +0 -1
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/lib/pem.d.cts +0 -148
- package/node_modules/@aws-sdk/xml-builder/node_modules/fast-xml-parser/src/pem.d.ts +0 -135
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/LICENSE +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/lib/fxvalidator.min.js.map +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/cli.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/man.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/cli/read.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/fxp.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/ignoreAttributes.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/util.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/CharsSymbol.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/EntitiesParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OptionsBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/BaseOutputBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsArrBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsMinArrBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/JsObjBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/OutputBuilders/ParserOptionsBuilder.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Report.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPath.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/TagPathMatcher.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XMLParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/Xml2JsParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlPartReader.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/XmlSpecialTagsReader.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/BufferSource.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/inputSource/StringSource.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/EntitiesParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParser.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/booleanParserExt.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/currency.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/join.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/number.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/v6/valueParsers/trim.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/validator.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlbuilder/json2xml.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/node2json.js +0 -0
- /package/node_modules/{@aws-sdk/xml-builder/node_modules/fast-xml-parser → fast-xml-parser}/src/xmlparser/xmlNode.js +0 -0
|
@@ -3,6 +3,7 @@ import type { WaiterResult } from "@smithy/util-waiter";
|
|
|
3
3
|
import { type AcceptAddressTransferCommandInput, type AcceptAddressTransferCommandOutput } from "./commands/AcceptAddressTransferCommand";
|
|
4
4
|
import { type AcceptCapacityReservationBillingOwnershipCommandInput, type AcceptCapacityReservationBillingOwnershipCommandOutput } from "./commands/AcceptCapacityReservationBillingOwnershipCommand";
|
|
5
5
|
import { type AcceptReservedInstancesExchangeQuoteCommandInput, type AcceptReservedInstancesExchangeQuoteCommandOutput } from "./commands/AcceptReservedInstancesExchangeQuoteCommand";
|
|
6
|
+
import { type AcceptTransitGatewayClientVpnAttachmentCommandInput, type AcceptTransitGatewayClientVpnAttachmentCommandOutput } from "./commands/AcceptTransitGatewayClientVpnAttachmentCommand";
|
|
6
7
|
import { type AcceptTransitGatewayMulticastDomainAssociationsCommandInput, type AcceptTransitGatewayMulticastDomainAssociationsCommandOutput } from "./commands/AcceptTransitGatewayMulticastDomainAssociationsCommand";
|
|
7
8
|
import { type AcceptTransitGatewayPeeringAttachmentCommandInput, type AcceptTransitGatewayPeeringAttachmentCommandOutput } from "./commands/AcceptTransitGatewayPeeringAttachmentCommand";
|
|
8
9
|
import { type AcceptTransitGatewayVpcAttachmentCommandInput, type AcceptTransitGatewayVpcAttachmentCommandOutput } from "./commands/AcceptTransitGatewayVpcAttachmentCommand";
|
|
@@ -228,6 +229,7 @@ import { type DeleteTrafficMirrorFilterCommandInput, type DeleteTrafficMirrorFil
|
|
|
228
229
|
import { type DeleteTrafficMirrorFilterRuleCommandInput, type DeleteTrafficMirrorFilterRuleCommandOutput } from "./commands/DeleteTrafficMirrorFilterRuleCommand";
|
|
229
230
|
import { type DeleteTrafficMirrorSessionCommandInput, type DeleteTrafficMirrorSessionCommandOutput } from "./commands/DeleteTrafficMirrorSessionCommand";
|
|
230
231
|
import { type DeleteTrafficMirrorTargetCommandInput, type DeleteTrafficMirrorTargetCommandOutput } from "./commands/DeleteTrafficMirrorTargetCommand";
|
|
232
|
+
import { type DeleteTransitGatewayClientVpnAttachmentCommandInput, type DeleteTransitGatewayClientVpnAttachmentCommandOutput } from "./commands/DeleteTransitGatewayClientVpnAttachmentCommand";
|
|
231
233
|
import { type DeleteTransitGatewayCommandInput, type DeleteTransitGatewayCommandOutput } from "./commands/DeleteTransitGatewayCommand";
|
|
232
234
|
import { type DeleteTransitGatewayConnectCommandInput, type DeleteTransitGatewayConnectCommandOutput } from "./commands/DeleteTransitGatewayConnectCommand";
|
|
233
235
|
import { type DeleteTransitGatewayConnectPeerCommandInput, type DeleteTransitGatewayConnectPeerCommandOutput } from "./commands/DeleteTransitGatewayConnectPeerCommand";
|
|
@@ -565,6 +567,7 @@ import { type GetIpamResourceCidrsCommandInput, type GetIpamResourceCidrsCommand
|
|
|
565
567
|
import { type GetLaunchTemplateDataCommandInput, type GetLaunchTemplateDataCommandOutput } from "./commands/GetLaunchTemplateDataCommand";
|
|
566
568
|
import { type GetManagedPrefixListAssociationsCommandInput, type GetManagedPrefixListAssociationsCommandOutput } from "./commands/GetManagedPrefixListAssociationsCommand";
|
|
567
569
|
import { type GetManagedPrefixListEntriesCommandInput, type GetManagedPrefixListEntriesCommandOutput } from "./commands/GetManagedPrefixListEntriesCommand";
|
|
570
|
+
import { type GetManagedResourceVisibilityCommandInput, type GetManagedResourceVisibilityCommandOutput } from "./commands/GetManagedResourceVisibilityCommand";
|
|
568
571
|
import { type GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput, type GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput } from "./commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand";
|
|
569
572
|
import { type GetNetworkInsightsAccessScopeContentCommandInput, type GetNetworkInsightsAccessScopeContentCommandOutput } from "./commands/GetNetworkInsightsAccessScopeContentCommand";
|
|
570
573
|
import { type GetPasswordDataCommandInput, type GetPasswordDataCommandOutput } from "./commands/GetPasswordDataCommand";
|
|
@@ -638,6 +641,7 @@ import { type ModifyIpamScopeCommandInput, type ModifyIpamScopeCommandOutput } f
|
|
|
638
641
|
import { type ModifyLaunchTemplateCommandInput, type ModifyLaunchTemplateCommandOutput } from "./commands/ModifyLaunchTemplateCommand";
|
|
639
642
|
import { type ModifyLocalGatewayRouteCommandInput, type ModifyLocalGatewayRouteCommandOutput } from "./commands/ModifyLocalGatewayRouteCommand";
|
|
640
643
|
import { type ModifyManagedPrefixListCommandInput, type ModifyManagedPrefixListCommandOutput } from "./commands/ModifyManagedPrefixListCommand";
|
|
644
|
+
import { type ModifyManagedResourceVisibilityCommandInput, type ModifyManagedResourceVisibilityCommandOutput } from "./commands/ModifyManagedResourceVisibilityCommand";
|
|
641
645
|
import { type ModifyNetworkInterfaceAttributeCommandInput, type ModifyNetworkInterfaceAttributeCommandOutput } from "./commands/ModifyNetworkInterfaceAttributeCommand";
|
|
642
646
|
import { type ModifyPrivateDnsNameOptionsCommandInput, type ModifyPrivateDnsNameOptionsCommandOutput } from "./commands/ModifyPrivateDnsNameOptionsCommand";
|
|
643
647
|
import { type ModifyPublicIpDnsNameOptionsCommandInput, type ModifyPublicIpDnsNameOptionsCommandOutput } from "./commands/ModifyPublicIpDnsNameOptionsCommand";
|
|
@@ -698,6 +702,7 @@ import { type RegisterInstanceEventNotificationAttributesCommandInput, type Regi
|
|
|
698
702
|
import { type RegisterTransitGatewayMulticastGroupMembersCommandInput, type RegisterTransitGatewayMulticastGroupMembersCommandOutput } from "./commands/RegisterTransitGatewayMulticastGroupMembersCommand";
|
|
699
703
|
import { type RegisterTransitGatewayMulticastGroupSourcesCommandInput, type RegisterTransitGatewayMulticastGroupSourcesCommandOutput } from "./commands/RegisterTransitGatewayMulticastGroupSourcesCommand";
|
|
700
704
|
import { type RejectCapacityReservationBillingOwnershipCommandInput, type RejectCapacityReservationBillingOwnershipCommandOutput } from "./commands/RejectCapacityReservationBillingOwnershipCommand";
|
|
705
|
+
import { type RejectTransitGatewayClientVpnAttachmentCommandInput, type RejectTransitGatewayClientVpnAttachmentCommandOutput } from "./commands/RejectTransitGatewayClientVpnAttachmentCommand";
|
|
701
706
|
import { type RejectTransitGatewayMulticastDomainAssociationsCommandInput, type RejectTransitGatewayMulticastDomainAssociationsCommandOutput } from "./commands/RejectTransitGatewayMulticastDomainAssociationsCommand";
|
|
702
707
|
import { type RejectTransitGatewayPeeringAttachmentCommandInput, type RejectTransitGatewayPeeringAttachmentCommandOutput } from "./commands/RejectTransitGatewayPeeringAttachmentCommand";
|
|
703
708
|
import { type RejectTransitGatewayVpcAttachmentCommandInput, type RejectTransitGatewayVpcAttachmentCommandOutput } from "./commands/RejectTransitGatewayVpcAttachmentCommand";
|
|
@@ -759,6 +764,7 @@ import { type UpdateSecurityGroupRuleDescriptionsEgressCommandInput, type Update
|
|
|
759
764
|
import { type UpdateSecurityGroupRuleDescriptionsIngressCommandInput, type UpdateSecurityGroupRuleDescriptionsIngressCommandOutput } from "./commands/UpdateSecurityGroupRuleDescriptionsIngressCommand";
|
|
760
765
|
import { type WithdrawByoipCidrCommandInput, type WithdrawByoipCidrCommandOutput } from "./commands/WithdrawByoipCidrCommand";
|
|
761
766
|
import { EC2Client } from "./EC2Client";
|
|
767
|
+
import type { EC2ServiceException } from "./models/EC2ServiceException";
|
|
762
768
|
export interface EC2 {
|
|
763
769
|
/**
|
|
764
770
|
* @see {@link AcceptAddressTransferCommand}
|
|
@@ -778,6 +784,12 @@ export interface EC2 {
|
|
|
778
784
|
acceptReservedInstancesExchangeQuote(args: AcceptReservedInstancesExchangeQuoteCommandInput, options?: __HttpHandlerOptions): Promise<AcceptReservedInstancesExchangeQuoteCommandOutput>;
|
|
779
785
|
acceptReservedInstancesExchangeQuote(args: AcceptReservedInstancesExchangeQuoteCommandInput, cb: (err: any, data?: AcceptReservedInstancesExchangeQuoteCommandOutput) => void): void;
|
|
780
786
|
acceptReservedInstancesExchangeQuote(args: AcceptReservedInstancesExchangeQuoteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptReservedInstancesExchangeQuoteCommandOutput) => void): void;
|
|
787
|
+
/**
|
|
788
|
+
* @see {@link AcceptTransitGatewayClientVpnAttachmentCommand}
|
|
789
|
+
*/
|
|
790
|
+
acceptTransitGatewayClientVpnAttachment(args: AcceptTransitGatewayClientVpnAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<AcceptTransitGatewayClientVpnAttachmentCommandOutput>;
|
|
791
|
+
acceptTransitGatewayClientVpnAttachment(args: AcceptTransitGatewayClientVpnAttachmentCommandInput, cb: (err: any, data?: AcceptTransitGatewayClientVpnAttachmentCommandOutput) => void): void;
|
|
792
|
+
acceptTransitGatewayClientVpnAttachment(args: AcceptTransitGatewayClientVpnAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptTransitGatewayClientVpnAttachmentCommandOutput) => void): void;
|
|
781
793
|
/**
|
|
782
794
|
* @see {@link AcceptTransitGatewayMulticastDomainAssociationsCommand}
|
|
783
795
|
*/
|
|
@@ -2160,6 +2172,12 @@ export interface EC2 {
|
|
|
2160
2172
|
deleteTransitGateway(args: DeleteTransitGatewayCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayCommandOutput>;
|
|
2161
2173
|
deleteTransitGateway(args: DeleteTransitGatewayCommandInput, cb: (err: any, data?: DeleteTransitGatewayCommandOutput) => void): void;
|
|
2162
2174
|
deleteTransitGateway(args: DeleteTransitGatewayCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayCommandOutput) => void): void;
|
|
2175
|
+
/**
|
|
2176
|
+
* @see {@link DeleteTransitGatewayClientVpnAttachmentCommand}
|
|
2177
|
+
*/
|
|
2178
|
+
deleteTransitGatewayClientVpnAttachment(args: DeleteTransitGatewayClientVpnAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTransitGatewayClientVpnAttachmentCommandOutput>;
|
|
2179
|
+
deleteTransitGatewayClientVpnAttachment(args: DeleteTransitGatewayClientVpnAttachmentCommandInput, cb: (err: any, data?: DeleteTransitGatewayClientVpnAttachmentCommandOutput) => void): void;
|
|
2180
|
+
deleteTransitGatewayClientVpnAttachment(args: DeleteTransitGatewayClientVpnAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTransitGatewayClientVpnAttachmentCommandOutput) => void): void;
|
|
2163
2181
|
/**
|
|
2164
2182
|
* @see {@link DeleteTransitGatewayConnectCommand}
|
|
2165
2183
|
*/
|
|
@@ -4362,6 +4380,13 @@ export interface EC2 {
|
|
|
4362
4380
|
getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, options?: __HttpHandlerOptions): Promise<GetManagedPrefixListEntriesCommandOutput>;
|
|
4363
4381
|
getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, cb: (err: any, data?: GetManagedPrefixListEntriesCommandOutput) => void): void;
|
|
4364
4382
|
getManagedPrefixListEntries(args: GetManagedPrefixListEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedPrefixListEntriesCommandOutput) => void): void;
|
|
4383
|
+
/**
|
|
4384
|
+
* @see {@link GetManagedResourceVisibilityCommand}
|
|
4385
|
+
*/
|
|
4386
|
+
getManagedResourceVisibility(): Promise<GetManagedResourceVisibilityCommandOutput>;
|
|
4387
|
+
getManagedResourceVisibility(args: GetManagedResourceVisibilityCommandInput, options?: __HttpHandlerOptions): Promise<GetManagedResourceVisibilityCommandOutput>;
|
|
4388
|
+
getManagedResourceVisibility(args: GetManagedResourceVisibilityCommandInput, cb: (err: any, data?: GetManagedResourceVisibilityCommandOutput) => void): void;
|
|
4389
|
+
getManagedResourceVisibility(args: GetManagedResourceVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetManagedResourceVisibilityCommandOutput) => void): void;
|
|
4365
4390
|
/**
|
|
4366
4391
|
* @see {@link GetNetworkInsightsAccessScopeAnalysisFindingsCommand}
|
|
4367
4392
|
*/
|
|
@@ -4810,6 +4835,13 @@ export interface EC2 {
|
|
|
4810
4835
|
modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, options?: __HttpHandlerOptions): Promise<ModifyManagedPrefixListCommandOutput>;
|
|
4811
4836
|
modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, cb: (err: any, data?: ModifyManagedPrefixListCommandOutput) => void): void;
|
|
4812
4837
|
modifyManagedPrefixList(args: ModifyManagedPrefixListCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyManagedPrefixListCommandOutput) => void): void;
|
|
4838
|
+
/**
|
|
4839
|
+
* @see {@link ModifyManagedResourceVisibilityCommand}
|
|
4840
|
+
*/
|
|
4841
|
+
modifyManagedResourceVisibility(): Promise<ModifyManagedResourceVisibilityCommandOutput>;
|
|
4842
|
+
modifyManagedResourceVisibility(args: ModifyManagedResourceVisibilityCommandInput, options?: __HttpHandlerOptions): Promise<ModifyManagedResourceVisibilityCommandOutput>;
|
|
4843
|
+
modifyManagedResourceVisibility(args: ModifyManagedResourceVisibilityCommandInput, cb: (err: any, data?: ModifyManagedResourceVisibilityCommandOutput) => void): void;
|
|
4844
|
+
modifyManagedResourceVisibility(args: ModifyManagedResourceVisibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyManagedResourceVisibilityCommandOutput) => void): void;
|
|
4813
4845
|
/**
|
|
4814
4846
|
* @see {@link ModifyNetworkInterfaceAttributeCommand}
|
|
4815
4847
|
*/
|
|
@@ -5170,6 +5202,12 @@ export interface EC2 {
|
|
|
5170
5202
|
rejectCapacityReservationBillingOwnership(args: RejectCapacityReservationBillingOwnershipCommandInput, options?: __HttpHandlerOptions): Promise<RejectCapacityReservationBillingOwnershipCommandOutput>;
|
|
5171
5203
|
rejectCapacityReservationBillingOwnership(args: RejectCapacityReservationBillingOwnershipCommandInput, cb: (err: any, data?: RejectCapacityReservationBillingOwnershipCommandOutput) => void): void;
|
|
5172
5204
|
rejectCapacityReservationBillingOwnership(args: RejectCapacityReservationBillingOwnershipCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectCapacityReservationBillingOwnershipCommandOutput) => void): void;
|
|
5205
|
+
/**
|
|
5206
|
+
* @see {@link RejectTransitGatewayClientVpnAttachmentCommand}
|
|
5207
|
+
*/
|
|
5208
|
+
rejectTransitGatewayClientVpnAttachment(args: RejectTransitGatewayClientVpnAttachmentCommandInput, options?: __HttpHandlerOptions): Promise<RejectTransitGatewayClientVpnAttachmentCommandOutput>;
|
|
5209
|
+
rejectTransitGatewayClientVpnAttachment(args: RejectTransitGatewayClientVpnAttachmentCommandInput, cb: (err: any, data?: RejectTransitGatewayClientVpnAttachmentCommandOutput) => void): void;
|
|
5210
|
+
rejectTransitGatewayClientVpnAttachment(args: RejectTransitGatewayClientVpnAttachmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RejectTransitGatewayClientVpnAttachmentCommandOutput) => void): void;
|
|
5173
5211
|
/**
|
|
5174
5212
|
* @see {@link RejectTransitGatewayMulticastDomainAssociationsCommand}
|
|
5175
5213
|
*/
|
|
@@ -6720,259 +6758,259 @@ export interface EC2 {
|
|
|
6720
6758
|
* @param args - command input.
|
|
6721
6759
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6722
6760
|
*/
|
|
6723
|
-
waitUntilBundleTaskComplete(args: DescribeBundleTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6761
|
+
waitUntilBundleTaskComplete(args: DescribeBundleTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeBundleTasksCommandOutput>>;
|
|
6724
6762
|
/**
|
|
6725
6763
|
* @see {@link DescribeConversionTasksCommand}
|
|
6726
6764
|
* @param args - command input.
|
|
6727
6765
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6728
6766
|
*/
|
|
6729
|
-
waitUntilConversionTaskCancelled(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6767
|
+
waitUntilConversionTaskCancelled(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeConversionTasksCommandOutput>>;
|
|
6730
6768
|
/**
|
|
6731
6769
|
* @see {@link DescribeConversionTasksCommand}
|
|
6732
6770
|
* @param args - command input.
|
|
6733
6771
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6734
6772
|
*/
|
|
6735
|
-
waitUntilConversionTaskCompleted(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6773
|
+
waitUntilConversionTaskCompleted(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeConversionTasksCommandOutput>>;
|
|
6736
6774
|
/**
|
|
6737
6775
|
* @see {@link DescribeConversionTasksCommand}
|
|
6738
6776
|
* @param args - command input.
|
|
6739
6777
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6740
6778
|
*/
|
|
6741
|
-
waitUntilConversionTaskDeleted(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6779
|
+
waitUntilConversionTaskDeleted(args: DescribeConversionTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeConversionTasksCommandOutput>>;
|
|
6742
6780
|
/**
|
|
6743
6781
|
* @see {@link DescribeCustomerGatewaysCommand}
|
|
6744
6782
|
* @param args - command input.
|
|
6745
6783
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6746
6784
|
*/
|
|
6747
|
-
waitUntilCustomerGatewayAvailable(args: DescribeCustomerGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6785
|
+
waitUntilCustomerGatewayAvailable(args: DescribeCustomerGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeCustomerGatewaysCommandOutput>>;
|
|
6748
6786
|
/**
|
|
6749
6787
|
* @see {@link DescribeExportTasksCommand}
|
|
6750
6788
|
* @param args - command input.
|
|
6751
6789
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6752
6790
|
*/
|
|
6753
|
-
waitUntilExportTaskCancelled(args: DescribeExportTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6791
|
+
waitUntilExportTaskCancelled(args: DescribeExportTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeExportTasksCommandOutput>>;
|
|
6754
6792
|
/**
|
|
6755
6793
|
* @see {@link DescribeExportTasksCommand}
|
|
6756
6794
|
* @param args - command input.
|
|
6757
6795
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6758
6796
|
*/
|
|
6759
|
-
waitUntilExportTaskCompleted(args: DescribeExportTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6797
|
+
waitUntilExportTaskCompleted(args: DescribeExportTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeExportTasksCommandOutput>>;
|
|
6760
6798
|
/**
|
|
6761
6799
|
* @see {@link DescribeImagesCommand}
|
|
6762
6800
|
* @param args - command input.
|
|
6763
6801
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6764
6802
|
*/
|
|
6765
|
-
waitUntilImageAvailable(args: DescribeImagesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6803
|
+
waitUntilImageAvailable(args: DescribeImagesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeImagesCommandOutput>>;
|
|
6766
6804
|
/**
|
|
6767
6805
|
* @see {@link DescribeImagesCommand}
|
|
6768
6806
|
* @param args - command input.
|
|
6769
6807
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6770
6808
|
*/
|
|
6771
|
-
waitUntilImageExists(args: DescribeImagesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6809
|
+
waitUntilImageExists(args: DescribeImagesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeImagesCommandOutput>>;
|
|
6772
6810
|
/**
|
|
6773
6811
|
* @see {@link DescribeImageUsageReportsCommand}
|
|
6774
6812
|
* @param args - command input.
|
|
6775
6813
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6776
6814
|
*/
|
|
6777
|
-
waitUntilImageUsageReportAvailable(args: DescribeImageUsageReportsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6815
|
+
waitUntilImageUsageReportAvailable(args: DescribeImageUsageReportsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeImageUsageReportsCommandOutput>>;
|
|
6778
6816
|
/**
|
|
6779
6817
|
* @see {@link DescribeImportSnapshotTasksCommand}
|
|
6780
6818
|
* @param args - command input.
|
|
6781
6819
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6782
6820
|
*/
|
|
6783
|
-
waitUntilSnapshotImported(args: DescribeImportSnapshotTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6821
|
+
waitUntilSnapshotImported(args: DescribeImportSnapshotTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeImportSnapshotTasksCommandOutput>>;
|
|
6784
6822
|
/**
|
|
6785
6823
|
* @see {@link DescribeInstancesCommand}
|
|
6786
6824
|
* @param args - command input.
|
|
6787
6825
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6788
6826
|
*/
|
|
6789
|
-
waitUntilInstanceExists(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6827
|
+
waitUntilInstanceExists(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
6790
6828
|
/**
|
|
6791
6829
|
* @see {@link DescribeInstancesCommand}
|
|
6792
6830
|
* @param args - command input.
|
|
6793
6831
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6794
6832
|
*/
|
|
6795
|
-
waitUntilInstanceRunning(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6833
|
+
waitUntilInstanceRunning(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
6796
6834
|
/**
|
|
6797
6835
|
* @see {@link DescribeInstancesCommand}
|
|
6798
6836
|
* @param args - command input.
|
|
6799
6837
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6800
6838
|
*/
|
|
6801
|
-
waitUntilInstanceStopped(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6839
|
+
waitUntilInstanceStopped(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
6802
6840
|
/**
|
|
6803
6841
|
* @see {@link DescribeInstancesCommand}
|
|
6804
6842
|
* @param args - command input.
|
|
6805
6843
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6806
6844
|
*/
|
|
6807
|
-
waitUntilInstanceTerminated(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6845
|
+
waitUntilInstanceTerminated(args: DescribeInstancesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
6808
6846
|
/**
|
|
6809
6847
|
* @see {@link DescribeInstanceStatusCommand}
|
|
6810
6848
|
* @param args - command input.
|
|
6811
6849
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6812
6850
|
*/
|
|
6813
|
-
waitUntilInstanceStatusOk(args: DescribeInstanceStatusCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6851
|
+
waitUntilInstanceStatusOk(args: DescribeInstanceStatusCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeInstanceStatusCommandOutput>>;
|
|
6814
6852
|
/**
|
|
6815
6853
|
* @see {@link DescribeInstanceStatusCommand}
|
|
6816
6854
|
* @param args - command input.
|
|
6817
6855
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6818
6856
|
*/
|
|
6819
|
-
waitUntilSystemStatusOk(args: DescribeInstanceStatusCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6857
|
+
waitUntilSystemStatusOk(args: DescribeInstanceStatusCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeInstanceStatusCommandOutput>>;
|
|
6820
6858
|
/**
|
|
6821
6859
|
* @see {@link DescribeInternetGatewaysCommand}
|
|
6822
6860
|
* @param args - command input.
|
|
6823
6861
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6824
6862
|
*/
|
|
6825
|
-
waitUntilInternetGatewayExists(args: DescribeInternetGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6863
|
+
waitUntilInternetGatewayExists(args: DescribeInternetGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeInternetGatewaysCommandOutput>>;
|
|
6826
6864
|
/**
|
|
6827
6865
|
* @see {@link DescribeKeyPairsCommand}
|
|
6828
6866
|
* @param args - command input.
|
|
6829
6867
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6830
6868
|
*/
|
|
6831
|
-
waitUntilKeyPairExists(args: DescribeKeyPairsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6869
|
+
waitUntilKeyPairExists(args: DescribeKeyPairsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeKeyPairsCommandOutput>>;
|
|
6832
6870
|
/**
|
|
6833
6871
|
* @see {@link DescribeNatGatewaysCommand}
|
|
6834
6872
|
* @param args - command input.
|
|
6835
6873
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6836
6874
|
*/
|
|
6837
|
-
waitUntilNatGatewayAvailable(args: DescribeNatGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6875
|
+
waitUntilNatGatewayAvailable(args: DescribeNatGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeNatGatewaysCommandOutput>>;
|
|
6838
6876
|
/**
|
|
6839
6877
|
* @see {@link DescribeNatGatewaysCommand}
|
|
6840
6878
|
* @param args - command input.
|
|
6841
6879
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6842
6880
|
*/
|
|
6843
|
-
waitUntilNatGatewayDeleted(args: DescribeNatGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6881
|
+
waitUntilNatGatewayDeleted(args: DescribeNatGatewaysCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeNatGatewaysCommandOutput | EC2ServiceException>>;
|
|
6844
6882
|
/**
|
|
6845
6883
|
* @see {@link DescribeNetworkInterfacesCommand}
|
|
6846
6884
|
* @param args - command input.
|
|
6847
6885
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6848
6886
|
*/
|
|
6849
|
-
waitUntilNetworkInterfaceAvailable(args: DescribeNetworkInterfacesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6887
|
+
waitUntilNetworkInterfaceAvailable(args: DescribeNetworkInterfacesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeNetworkInterfacesCommandOutput>>;
|
|
6850
6888
|
/**
|
|
6851
6889
|
* @see {@link DescribeSecondaryNetworksCommand}
|
|
6852
6890
|
* @param args - command input.
|
|
6853
6891
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6854
6892
|
*/
|
|
6855
|
-
waitUntilSecondaryNetworkCreateComplete(args: DescribeSecondaryNetworksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6893
|
+
waitUntilSecondaryNetworkCreateComplete(args: DescribeSecondaryNetworksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSecondaryNetworksCommandOutput>>;
|
|
6856
6894
|
/**
|
|
6857
6895
|
* @see {@link DescribeSecondaryNetworksCommand}
|
|
6858
6896
|
* @param args - command input.
|
|
6859
6897
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6860
6898
|
*/
|
|
6861
|
-
waitUntilSecondaryNetworkDeleteComplete(args: DescribeSecondaryNetworksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6899
|
+
waitUntilSecondaryNetworkDeleteComplete(args: DescribeSecondaryNetworksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSecondaryNetworksCommandOutput>>;
|
|
6862
6900
|
/**
|
|
6863
6901
|
* @see {@link DescribeSecondarySubnetsCommand}
|
|
6864
6902
|
* @param args - command input.
|
|
6865
6903
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6866
6904
|
*/
|
|
6867
|
-
waitUntilSecondarySubnetCreateComplete(args: DescribeSecondarySubnetsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6905
|
+
waitUntilSecondarySubnetCreateComplete(args: DescribeSecondarySubnetsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSecondarySubnetsCommandOutput>>;
|
|
6868
6906
|
/**
|
|
6869
6907
|
* @see {@link DescribeSecondarySubnetsCommand}
|
|
6870
6908
|
* @param args - command input.
|
|
6871
6909
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6872
6910
|
*/
|
|
6873
|
-
waitUntilSecondarySubnetDeleteComplete(args: DescribeSecondarySubnetsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6911
|
+
waitUntilSecondarySubnetDeleteComplete(args: DescribeSecondarySubnetsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSecondarySubnetsCommandOutput>>;
|
|
6874
6912
|
/**
|
|
6875
6913
|
* @see {@link DescribeSecurityGroupsCommand}
|
|
6876
6914
|
* @param args - command input.
|
|
6877
6915
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6878
6916
|
*/
|
|
6879
|
-
waitUntilSecurityGroupExists(args: DescribeSecurityGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6917
|
+
waitUntilSecurityGroupExists(args: DescribeSecurityGroupsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSecurityGroupsCommandOutput>>;
|
|
6880
6918
|
/**
|
|
6881
6919
|
* @see {@link DescribeSecurityGroupVpcAssociationsCommand}
|
|
6882
6920
|
* @param args - command input.
|
|
6883
6921
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6884
6922
|
*/
|
|
6885
|
-
waitUntilSecurityGroupVpcAssociationAssociated(args: DescribeSecurityGroupVpcAssociationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6923
|
+
waitUntilSecurityGroupVpcAssociationAssociated(args: DescribeSecurityGroupVpcAssociationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSecurityGroupVpcAssociationsCommandOutput>>;
|
|
6886
6924
|
/**
|
|
6887
6925
|
* @see {@link DescribeSecurityGroupVpcAssociationsCommand}
|
|
6888
6926
|
* @param args - command input.
|
|
6889
6927
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6890
6928
|
*/
|
|
6891
|
-
waitUntilSecurityGroupVpcAssociationDisassociated(args: DescribeSecurityGroupVpcAssociationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6929
|
+
waitUntilSecurityGroupVpcAssociationDisassociated(args: DescribeSecurityGroupVpcAssociationsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSecurityGroupVpcAssociationsCommandOutput>>;
|
|
6892
6930
|
/**
|
|
6893
6931
|
* @see {@link DescribeSnapshotsCommand}
|
|
6894
6932
|
* @param args - command input.
|
|
6895
6933
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6896
6934
|
*/
|
|
6897
|
-
waitUntilSnapshotCompleted(args: DescribeSnapshotsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6935
|
+
waitUntilSnapshotCompleted(args: DescribeSnapshotsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSnapshotsCommandOutput>>;
|
|
6898
6936
|
/**
|
|
6899
6937
|
* @see {@link DescribeSpotInstanceRequestsCommand}
|
|
6900
6938
|
* @param args - command input.
|
|
6901
6939
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6902
6940
|
*/
|
|
6903
|
-
waitUntilSpotInstanceRequestFulfilled(args: DescribeSpotInstanceRequestsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6941
|
+
waitUntilSpotInstanceRequestFulfilled(args: DescribeSpotInstanceRequestsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSpotInstanceRequestsCommandOutput>>;
|
|
6904
6942
|
/**
|
|
6905
6943
|
* @see {@link DescribeStoreImageTasksCommand}
|
|
6906
6944
|
* @param args - command input.
|
|
6907
6945
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6908
6946
|
*/
|
|
6909
|
-
waitUntilStoreImageTaskComplete(args: DescribeStoreImageTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6947
|
+
waitUntilStoreImageTaskComplete(args: DescribeStoreImageTasksCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeStoreImageTasksCommandOutput>>;
|
|
6910
6948
|
/**
|
|
6911
6949
|
* @see {@link DescribeSubnetsCommand}
|
|
6912
6950
|
* @param args - command input.
|
|
6913
6951
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6914
6952
|
*/
|
|
6915
|
-
waitUntilSubnetAvailable(args: DescribeSubnetsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6953
|
+
waitUntilSubnetAvailable(args: DescribeSubnetsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeSubnetsCommandOutput>>;
|
|
6916
6954
|
/**
|
|
6917
6955
|
* @see {@link DescribeVolumesCommand}
|
|
6918
6956
|
* @param args - command input.
|
|
6919
6957
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6920
6958
|
*/
|
|
6921
|
-
waitUntilVolumeAvailable(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6959
|
+
waitUntilVolumeAvailable(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVolumesCommandOutput>>;
|
|
6922
6960
|
/**
|
|
6923
6961
|
* @see {@link DescribeVolumesCommand}
|
|
6924
6962
|
* @param args - command input.
|
|
6925
6963
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6926
6964
|
*/
|
|
6927
|
-
waitUntilVolumeDeleted(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6965
|
+
waitUntilVolumeDeleted(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVolumesCommandOutput | EC2ServiceException>>;
|
|
6928
6966
|
/**
|
|
6929
6967
|
* @see {@link DescribeVolumesCommand}
|
|
6930
6968
|
* @param args - command input.
|
|
6931
6969
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6932
6970
|
*/
|
|
6933
|
-
waitUntilVolumeInUse(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6971
|
+
waitUntilVolumeInUse(args: DescribeVolumesCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVolumesCommandOutput>>;
|
|
6934
6972
|
/**
|
|
6935
6973
|
* @see {@link DescribeVpcPeeringConnectionsCommand}
|
|
6936
6974
|
* @param args - command input.
|
|
6937
6975
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6938
6976
|
*/
|
|
6939
|
-
waitUntilVpcPeeringConnectionDeleted(args: DescribeVpcPeeringConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6977
|
+
waitUntilVpcPeeringConnectionDeleted(args: DescribeVpcPeeringConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVpcPeeringConnectionsCommandOutput | EC2ServiceException>>;
|
|
6940
6978
|
/**
|
|
6941
6979
|
* @see {@link DescribeVpcPeeringConnectionsCommand}
|
|
6942
6980
|
* @param args - command input.
|
|
6943
6981
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6944
6982
|
*/
|
|
6945
|
-
waitUntilVpcPeeringConnectionExists(args: DescribeVpcPeeringConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6983
|
+
waitUntilVpcPeeringConnectionExists(args: DescribeVpcPeeringConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVpcPeeringConnectionsCommandOutput>>;
|
|
6946
6984
|
/**
|
|
6947
6985
|
* @see {@link DescribeVpcsCommand}
|
|
6948
6986
|
* @param args - command input.
|
|
6949
6987
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6950
6988
|
*/
|
|
6951
|
-
waitUntilVpcAvailable(args: DescribeVpcsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6989
|
+
waitUntilVpcAvailable(args: DescribeVpcsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVpcsCommandOutput>>;
|
|
6952
6990
|
/**
|
|
6953
6991
|
* @see {@link DescribeVpcsCommand}
|
|
6954
6992
|
* @param args - command input.
|
|
6955
6993
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6956
6994
|
*/
|
|
6957
|
-
waitUntilVpcExists(args: DescribeVpcsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
6995
|
+
waitUntilVpcExists(args: DescribeVpcsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVpcsCommandOutput>>;
|
|
6958
6996
|
/**
|
|
6959
6997
|
* @see {@link DescribeVpnConnectionsCommand}
|
|
6960
6998
|
* @param args - command input.
|
|
6961
6999
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6962
7000
|
*/
|
|
6963
|
-
waitUntilVpnConnectionAvailable(args: DescribeVpnConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
7001
|
+
waitUntilVpnConnectionAvailable(args: DescribeVpnConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVpnConnectionsCommandOutput>>;
|
|
6964
7002
|
/**
|
|
6965
7003
|
* @see {@link DescribeVpnConnectionsCommand}
|
|
6966
7004
|
* @param args - command input.
|
|
6967
7005
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6968
7006
|
*/
|
|
6969
|
-
waitUntilVpnConnectionDeleted(args: DescribeVpnConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
7007
|
+
waitUntilVpnConnectionDeleted(args: DescribeVpnConnectionsCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<DescribeVpnConnectionsCommandOutput>>;
|
|
6970
7008
|
/**
|
|
6971
7009
|
* @see {@link GetPasswordDataCommand}
|
|
6972
7010
|
* @param args - command input.
|
|
6973
7011
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
6974
7012
|
*/
|
|
6975
|
-
waitUntilPasswordDataAvailable(args: GetPasswordDataCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult
|
|
7013
|
+
waitUntilPasswordDataAvailable(args: GetPasswordDataCommandInput, waiterConfig: number | Omit<WaiterConfiguration<EC2>, "client">): Promise<WaiterResult<GetPasswordDataCommandOutput>>;
|
|
6976
7014
|
}
|
|
6977
7015
|
/**
|
|
6978
7016
|
* <fullname>Amazon Elastic Compute Cloud</fullname>
|