@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
|
@@ -17,6 +17,10 @@ import {
|
|
|
17
17
|
AcceptReservedInstancesExchangeQuoteCommandInput,
|
|
18
18
|
AcceptReservedInstancesExchangeQuoteCommandOutput,
|
|
19
19
|
} from "./commands/AcceptReservedInstancesExchangeQuoteCommand";
|
|
20
|
+
import {
|
|
21
|
+
AcceptTransitGatewayClientVpnAttachmentCommandInput,
|
|
22
|
+
AcceptTransitGatewayClientVpnAttachmentCommandOutput,
|
|
23
|
+
} from "./commands/AcceptTransitGatewayClientVpnAttachmentCommand";
|
|
20
24
|
import {
|
|
21
25
|
AcceptTransitGatewayMulticastDomainAssociationsCommandInput,
|
|
22
26
|
AcceptTransitGatewayMulticastDomainAssociationsCommandOutput,
|
|
@@ -917,6 +921,10 @@ import {
|
|
|
917
921
|
DeleteTrafficMirrorTargetCommandInput,
|
|
918
922
|
DeleteTrafficMirrorTargetCommandOutput,
|
|
919
923
|
} from "./commands/DeleteTrafficMirrorTargetCommand";
|
|
924
|
+
import {
|
|
925
|
+
DeleteTransitGatewayClientVpnAttachmentCommandInput,
|
|
926
|
+
DeleteTransitGatewayClientVpnAttachmentCommandOutput,
|
|
927
|
+
} from "./commands/DeleteTransitGatewayClientVpnAttachmentCommand";
|
|
920
928
|
import {
|
|
921
929
|
DeleteTransitGatewayCommandInput,
|
|
922
930
|
DeleteTransitGatewayCommandOutput,
|
|
@@ -2265,6 +2273,10 @@ import {
|
|
|
2265
2273
|
GetManagedPrefixListEntriesCommandInput,
|
|
2266
2274
|
GetManagedPrefixListEntriesCommandOutput,
|
|
2267
2275
|
} from "./commands/GetManagedPrefixListEntriesCommand";
|
|
2276
|
+
import {
|
|
2277
|
+
GetManagedResourceVisibilityCommandInput,
|
|
2278
|
+
GetManagedResourceVisibilityCommandOutput,
|
|
2279
|
+
} from "./commands/GetManagedResourceVisibilityCommand";
|
|
2268
2280
|
import {
|
|
2269
2281
|
GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput,
|
|
2270
2282
|
GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput,
|
|
@@ -2557,6 +2569,10 @@ import {
|
|
|
2557
2569
|
ModifyManagedPrefixListCommandInput,
|
|
2558
2570
|
ModifyManagedPrefixListCommandOutput,
|
|
2559
2571
|
} from "./commands/ModifyManagedPrefixListCommand";
|
|
2572
|
+
import {
|
|
2573
|
+
ModifyManagedResourceVisibilityCommandInput,
|
|
2574
|
+
ModifyManagedResourceVisibilityCommandOutput,
|
|
2575
|
+
} from "./commands/ModifyManagedResourceVisibilityCommand";
|
|
2560
2576
|
import {
|
|
2561
2577
|
ModifyNetworkInterfaceAttributeCommandInput,
|
|
2562
2578
|
ModifyNetworkInterfaceAttributeCommandOutput,
|
|
@@ -2797,6 +2813,10 @@ import {
|
|
|
2797
2813
|
RejectCapacityReservationBillingOwnershipCommandInput,
|
|
2798
2814
|
RejectCapacityReservationBillingOwnershipCommandOutput,
|
|
2799
2815
|
} from "./commands/RejectCapacityReservationBillingOwnershipCommand";
|
|
2816
|
+
import {
|
|
2817
|
+
RejectTransitGatewayClientVpnAttachmentCommandInput,
|
|
2818
|
+
RejectTransitGatewayClientVpnAttachmentCommandOutput,
|
|
2819
|
+
} from "./commands/RejectTransitGatewayClientVpnAttachmentCommand";
|
|
2800
2820
|
import {
|
|
2801
2821
|
RejectTransitGatewayMulticastDomainAssociationsCommandInput,
|
|
2802
2822
|
RejectTransitGatewayMulticastDomainAssociationsCommandOutput,
|
|
@@ -3038,6 +3058,7 @@ import {
|
|
|
3038
3058
|
WithdrawByoipCidrCommandOutput,
|
|
3039
3059
|
} from "./commands/WithdrawByoipCidrCommand";
|
|
3040
3060
|
import { EC2Client } from "./EC2Client";
|
|
3061
|
+
import { EC2ServiceException } from "./models/EC2ServiceException";
|
|
3041
3062
|
export interface EC2 {
|
|
3042
3063
|
acceptAddressTransfer(
|
|
3043
3064
|
args: AcceptAddressTransferCommandInput,
|
|
@@ -3090,6 +3111,25 @@ export interface EC2 {
|
|
|
3090
3111
|
data?: AcceptReservedInstancesExchangeQuoteCommandOutput
|
|
3091
3112
|
) => void
|
|
3092
3113
|
): void;
|
|
3114
|
+
acceptTransitGatewayClientVpnAttachment(
|
|
3115
|
+
args: AcceptTransitGatewayClientVpnAttachmentCommandInput,
|
|
3116
|
+
options?: __HttpHandlerOptions
|
|
3117
|
+
): Promise<AcceptTransitGatewayClientVpnAttachmentCommandOutput>;
|
|
3118
|
+
acceptTransitGatewayClientVpnAttachment(
|
|
3119
|
+
args: AcceptTransitGatewayClientVpnAttachmentCommandInput,
|
|
3120
|
+
cb: (
|
|
3121
|
+
err: any,
|
|
3122
|
+
data?: AcceptTransitGatewayClientVpnAttachmentCommandOutput
|
|
3123
|
+
) => void
|
|
3124
|
+
): void;
|
|
3125
|
+
acceptTransitGatewayClientVpnAttachment(
|
|
3126
|
+
args: AcceptTransitGatewayClientVpnAttachmentCommandInput,
|
|
3127
|
+
options: __HttpHandlerOptions,
|
|
3128
|
+
cb: (
|
|
3129
|
+
err: any,
|
|
3130
|
+
data?: AcceptTransitGatewayClientVpnAttachmentCommandOutput
|
|
3131
|
+
) => void
|
|
3132
|
+
): void;
|
|
3093
3133
|
acceptTransitGatewayMulticastDomainAssociations(): Promise<AcceptTransitGatewayMulticastDomainAssociationsCommandOutput>;
|
|
3094
3134
|
acceptTransitGatewayMulticastDomainAssociations(
|
|
3095
3135
|
args: AcceptTransitGatewayMulticastDomainAssociationsCommandInput,
|
|
@@ -6282,6 +6322,25 @@ export interface EC2 {
|
|
|
6282
6322
|
options: __HttpHandlerOptions,
|
|
6283
6323
|
cb: (err: any, data?: DeleteTransitGatewayCommandOutput) => void
|
|
6284
6324
|
): void;
|
|
6325
|
+
deleteTransitGatewayClientVpnAttachment(
|
|
6326
|
+
args: DeleteTransitGatewayClientVpnAttachmentCommandInput,
|
|
6327
|
+
options?: __HttpHandlerOptions
|
|
6328
|
+
): Promise<DeleteTransitGatewayClientVpnAttachmentCommandOutput>;
|
|
6329
|
+
deleteTransitGatewayClientVpnAttachment(
|
|
6330
|
+
args: DeleteTransitGatewayClientVpnAttachmentCommandInput,
|
|
6331
|
+
cb: (
|
|
6332
|
+
err: any,
|
|
6333
|
+
data?: DeleteTransitGatewayClientVpnAttachmentCommandOutput
|
|
6334
|
+
) => void
|
|
6335
|
+
): void;
|
|
6336
|
+
deleteTransitGatewayClientVpnAttachment(
|
|
6337
|
+
args: DeleteTransitGatewayClientVpnAttachmentCommandInput,
|
|
6338
|
+
options: __HttpHandlerOptions,
|
|
6339
|
+
cb: (
|
|
6340
|
+
err: any,
|
|
6341
|
+
data?: DeleteTransitGatewayClientVpnAttachmentCommandOutput
|
|
6342
|
+
) => void
|
|
6343
|
+
): void;
|
|
6285
6344
|
deleteTransitGatewayConnect(
|
|
6286
6345
|
args: DeleteTransitGatewayConnectCommandInput,
|
|
6287
6346
|
options?: __HttpHandlerOptions
|
|
@@ -11388,6 +11447,20 @@ export interface EC2 {
|
|
|
11388
11447
|
options: __HttpHandlerOptions,
|
|
11389
11448
|
cb: (err: any, data?: GetManagedPrefixListEntriesCommandOutput) => void
|
|
11390
11449
|
): void;
|
|
11450
|
+
getManagedResourceVisibility(): Promise<GetManagedResourceVisibilityCommandOutput>;
|
|
11451
|
+
getManagedResourceVisibility(
|
|
11452
|
+
args: GetManagedResourceVisibilityCommandInput,
|
|
11453
|
+
options?: __HttpHandlerOptions
|
|
11454
|
+
): Promise<GetManagedResourceVisibilityCommandOutput>;
|
|
11455
|
+
getManagedResourceVisibility(
|
|
11456
|
+
args: GetManagedResourceVisibilityCommandInput,
|
|
11457
|
+
cb: (err: any, data?: GetManagedResourceVisibilityCommandOutput) => void
|
|
11458
|
+
): void;
|
|
11459
|
+
getManagedResourceVisibility(
|
|
11460
|
+
args: GetManagedResourceVisibilityCommandInput,
|
|
11461
|
+
options: __HttpHandlerOptions,
|
|
11462
|
+
cb: (err: any, data?: GetManagedResourceVisibilityCommandOutput) => void
|
|
11463
|
+
): void;
|
|
11391
11464
|
getNetworkInsightsAccessScopeAnalysisFindings(
|
|
11392
11465
|
args: GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput,
|
|
11393
11466
|
options?: __HttpHandlerOptions
|
|
@@ -12461,6 +12534,20 @@ export interface EC2 {
|
|
|
12461
12534
|
options: __HttpHandlerOptions,
|
|
12462
12535
|
cb: (err: any, data?: ModifyManagedPrefixListCommandOutput) => void
|
|
12463
12536
|
): void;
|
|
12537
|
+
modifyManagedResourceVisibility(): Promise<ModifyManagedResourceVisibilityCommandOutput>;
|
|
12538
|
+
modifyManagedResourceVisibility(
|
|
12539
|
+
args: ModifyManagedResourceVisibilityCommandInput,
|
|
12540
|
+
options?: __HttpHandlerOptions
|
|
12541
|
+
): Promise<ModifyManagedResourceVisibilityCommandOutput>;
|
|
12542
|
+
modifyManagedResourceVisibility(
|
|
12543
|
+
args: ModifyManagedResourceVisibilityCommandInput,
|
|
12544
|
+
cb: (err: any, data?: ModifyManagedResourceVisibilityCommandOutput) => void
|
|
12545
|
+
): void;
|
|
12546
|
+
modifyManagedResourceVisibility(
|
|
12547
|
+
args: ModifyManagedResourceVisibilityCommandInput,
|
|
12548
|
+
options: __HttpHandlerOptions,
|
|
12549
|
+
cb: (err: any, data?: ModifyManagedResourceVisibilityCommandOutput) => void
|
|
12550
|
+
): void;
|
|
12464
12551
|
modifyNetworkInterfaceAttribute(
|
|
12465
12552
|
args: ModifyNetworkInterfaceAttributeCommandInput,
|
|
12466
12553
|
options?: __HttpHandlerOptions
|
|
@@ -13355,6 +13442,25 @@ export interface EC2 {
|
|
|
13355
13442
|
data?: RejectCapacityReservationBillingOwnershipCommandOutput
|
|
13356
13443
|
) => void
|
|
13357
13444
|
): void;
|
|
13445
|
+
rejectTransitGatewayClientVpnAttachment(
|
|
13446
|
+
args: RejectTransitGatewayClientVpnAttachmentCommandInput,
|
|
13447
|
+
options?: __HttpHandlerOptions
|
|
13448
|
+
): Promise<RejectTransitGatewayClientVpnAttachmentCommandOutput>;
|
|
13449
|
+
rejectTransitGatewayClientVpnAttachment(
|
|
13450
|
+
args: RejectTransitGatewayClientVpnAttachmentCommandInput,
|
|
13451
|
+
cb: (
|
|
13452
|
+
err: any,
|
|
13453
|
+
data?: RejectTransitGatewayClientVpnAttachmentCommandOutput
|
|
13454
|
+
) => void
|
|
13455
|
+
): void;
|
|
13456
|
+
rejectTransitGatewayClientVpnAttachment(
|
|
13457
|
+
args: RejectTransitGatewayClientVpnAttachmentCommandInput,
|
|
13458
|
+
options: __HttpHandlerOptions,
|
|
13459
|
+
cb: (
|
|
13460
|
+
err: any,
|
|
13461
|
+
data?: RejectTransitGatewayClientVpnAttachmentCommandOutput
|
|
13462
|
+
) => void
|
|
13463
|
+
): void;
|
|
13358
13464
|
rejectTransitGatewayMulticastDomainAssociations(): Promise<RejectTransitGatewayMulticastDomainAssociationsCommandOutput>;
|
|
13359
13465
|
rejectTransitGatewayMulticastDomainAssociations(
|
|
13360
13466
|
args: RejectTransitGatewayMulticastDomainAssociationsCommandInput,
|
|
@@ -15406,7 +15512,7 @@ export interface EC2 {
|
|
|
15406
15512
|
WaiterConfiguration<EC2>,
|
|
15407
15513
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15408
15514
|
>
|
|
15409
|
-
): Promise<WaiterResult
|
|
15515
|
+
): Promise<WaiterResult<DescribeBundleTasksCommandOutput>>;
|
|
15410
15516
|
waitUntilConversionTaskCancelled(
|
|
15411
15517
|
args: DescribeConversionTasksCommandInput,
|
|
15412
15518
|
waiterConfig:
|
|
@@ -15415,7 +15521,7 @@ export interface EC2 {
|
|
|
15415
15521
|
WaiterConfiguration<EC2>,
|
|
15416
15522
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15417
15523
|
>
|
|
15418
|
-
): Promise<WaiterResult
|
|
15524
|
+
): Promise<WaiterResult<DescribeConversionTasksCommandOutput>>;
|
|
15419
15525
|
waitUntilConversionTaskCompleted(
|
|
15420
15526
|
args: DescribeConversionTasksCommandInput,
|
|
15421
15527
|
waiterConfig:
|
|
@@ -15424,7 +15530,7 @@ export interface EC2 {
|
|
|
15424
15530
|
WaiterConfiguration<EC2>,
|
|
15425
15531
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15426
15532
|
>
|
|
15427
|
-
): Promise<WaiterResult
|
|
15533
|
+
): Promise<WaiterResult<DescribeConversionTasksCommandOutput>>;
|
|
15428
15534
|
waitUntilConversionTaskDeleted(
|
|
15429
15535
|
args: DescribeConversionTasksCommandInput,
|
|
15430
15536
|
waiterConfig:
|
|
@@ -15433,7 +15539,7 @@ export interface EC2 {
|
|
|
15433
15539
|
WaiterConfiguration<EC2>,
|
|
15434
15540
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15435
15541
|
>
|
|
15436
|
-
): Promise<WaiterResult
|
|
15542
|
+
): Promise<WaiterResult<DescribeConversionTasksCommandOutput>>;
|
|
15437
15543
|
waitUntilCustomerGatewayAvailable(
|
|
15438
15544
|
args: DescribeCustomerGatewaysCommandInput,
|
|
15439
15545
|
waiterConfig:
|
|
@@ -15442,7 +15548,7 @@ export interface EC2 {
|
|
|
15442
15548
|
WaiterConfiguration<EC2>,
|
|
15443
15549
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15444
15550
|
>
|
|
15445
|
-
): Promise<WaiterResult
|
|
15551
|
+
): Promise<WaiterResult<DescribeCustomerGatewaysCommandOutput>>;
|
|
15446
15552
|
waitUntilExportTaskCancelled(
|
|
15447
15553
|
args: DescribeExportTasksCommandInput,
|
|
15448
15554
|
waiterConfig:
|
|
@@ -15451,7 +15557,7 @@ export interface EC2 {
|
|
|
15451
15557
|
WaiterConfiguration<EC2>,
|
|
15452
15558
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15453
15559
|
>
|
|
15454
|
-
): Promise<WaiterResult
|
|
15560
|
+
): Promise<WaiterResult<DescribeExportTasksCommandOutput>>;
|
|
15455
15561
|
waitUntilExportTaskCompleted(
|
|
15456
15562
|
args: DescribeExportTasksCommandInput,
|
|
15457
15563
|
waiterConfig:
|
|
@@ -15460,7 +15566,7 @@ export interface EC2 {
|
|
|
15460
15566
|
WaiterConfiguration<EC2>,
|
|
15461
15567
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15462
15568
|
>
|
|
15463
|
-
): Promise<WaiterResult
|
|
15569
|
+
): Promise<WaiterResult<DescribeExportTasksCommandOutput>>;
|
|
15464
15570
|
waitUntilImageAvailable(
|
|
15465
15571
|
args: DescribeImagesCommandInput,
|
|
15466
15572
|
waiterConfig:
|
|
@@ -15469,7 +15575,7 @@ export interface EC2 {
|
|
|
15469
15575
|
WaiterConfiguration<EC2>,
|
|
15470
15576
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15471
15577
|
>
|
|
15472
|
-
): Promise<WaiterResult
|
|
15578
|
+
): Promise<WaiterResult<DescribeImagesCommandOutput>>;
|
|
15473
15579
|
waitUntilImageExists(
|
|
15474
15580
|
args: DescribeImagesCommandInput,
|
|
15475
15581
|
waiterConfig:
|
|
@@ -15478,7 +15584,7 @@ export interface EC2 {
|
|
|
15478
15584
|
WaiterConfiguration<EC2>,
|
|
15479
15585
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15480
15586
|
>
|
|
15481
|
-
): Promise<WaiterResult
|
|
15587
|
+
): Promise<WaiterResult<DescribeImagesCommandOutput>>;
|
|
15482
15588
|
waitUntilImageUsageReportAvailable(
|
|
15483
15589
|
args: DescribeImageUsageReportsCommandInput,
|
|
15484
15590
|
waiterConfig:
|
|
@@ -15487,7 +15593,7 @@ export interface EC2 {
|
|
|
15487
15593
|
WaiterConfiguration<EC2>,
|
|
15488
15594
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15489
15595
|
>
|
|
15490
|
-
): Promise<WaiterResult
|
|
15596
|
+
): Promise<WaiterResult<DescribeImageUsageReportsCommandOutput>>;
|
|
15491
15597
|
waitUntilSnapshotImported(
|
|
15492
15598
|
args: DescribeImportSnapshotTasksCommandInput,
|
|
15493
15599
|
waiterConfig:
|
|
@@ -15496,7 +15602,7 @@ export interface EC2 {
|
|
|
15496
15602
|
WaiterConfiguration<EC2>,
|
|
15497
15603
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15498
15604
|
>
|
|
15499
|
-
): Promise<WaiterResult
|
|
15605
|
+
): Promise<WaiterResult<DescribeImportSnapshotTasksCommandOutput>>;
|
|
15500
15606
|
waitUntilInstanceExists(
|
|
15501
15607
|
args: DescribeInstancesCommandInput,
|
|
15502
15608
|
waiterConfig:
|
|
@@ -15505,7 +15611,7 @@ export interface EC2 {
|
|
|
15505
15611
|
WaiterConfiguration<EC2>,
|
|
15506
15612
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15507
15613
|
>
|
|
15508
|
-
): Promise<WaiterResult
|
|
15614
|
+
): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
15509
15615
|
waitUntilInstanceRunning(
|
|
15510
15616
|
args: DescribeInstancesCommandInput,
|
|
15511
15617
|
waiterConfig:
|
|
@@ -15514,7 +15620,7 @@ export interface EC2 {
|
|
|
15514
15620
|
WaiterConfiguration<EC2>,
|
|
15515
15621
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15516
15622
|
>
|
|
15517
|
-
): Promise<WaiterResult
|
|
15623
|
+
): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
15518
15624
|
waitUntilInstanceStopped(
|
|
15519
15625
|
args: DescribeInstancesCommandInput,
|
|
15520
15626
|
waiterConfig:
|
|
@@ -15523,7 +15629,7 @@ export interface EC2 {
|
|
|
15523
15629
|
WaiterConfiguration<EC2>,
|
|
15524
15630
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15525
15631
|
>
|
|
15526
|
-
): Promise<WaiterResult
|
|
15632
|
+
): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
15527
15633
|
waitUntilInstanceTerminated(
|
|
15528
15634
|
args: DescribeInstancesCommandInput,
|
|
15529
15635
|
waiterConfig:
|
|
@@ -15532,7 +15638,7 @@ export interface EC2 {
|
|
|
15532
15638
|
WaiterConfiguration<EC2>,
|
|
15533
15639
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15534
15640
|
>
|
|
15535
|
-
): Promise<WaiterResult
|
|
15641
|
+
): Promise<WaiterResult<DescribeInstancesCommandOutput>>;
|
|
15536
15642
|
waitUntilInstanceStatusOk(
|
|
15537
15643
|
args: DescribeInstanceStatusCommandInput,
|
|
15538
15644
|
waiterConfig:
|
|
@@ -15541,7 +15647,7 @@ export interface EC2 {
|
|
|
15541
15647
|
WaiterConfiguration<EC2>,
|
|
15542
15648
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15543
15649
|
>
|
|
15544
|
-
): Promise<WaiterResult
|
|
15650
|
+
): Promise<WaiterResult<DescribeInstanceStatusCommandOutput>>;
|
|
15545
15651
|
waitUntilSystemStatusOk(
|
|
15546
15652
|
args: DescribeInstanceStatusCommandInput,
|
|
15547
15653
|
waiterConfig:
|
|
@@ -15550,7 +15656,7 @@ export interface EC2 {
|
|
|
15550
15656
|
WaiterConfiguration<EC2>,
|
|
15551
15657
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15552
15658
|
>
|
|
15553
|
-
): Promise<WaiterResult
|
|
15659
|
+
): Promise<WaiterResult<DescribeInstanceStatusCommandOutput>>;
|
|
15554
15660
|
waitUntilInternetGatewayExists(
|
|
15555
15661
|
args: DescribeInternetGatewaysCommandInput,
|
|
15556
15662
|
waiterConfig:
|
|
@@ -15559,7 +15665,7 @@ export interface EC2 {
|
|
|
15559
15665
|
WaiterConfiguration<EC2>,
|
|
15560
15666
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15561
15667
|
>
|
|
15562
|
-
): Promise<WaiterResult
|
|
15668
|
+
): Promise<WaiterResult<DescribeInternetGatewaysCommandOutput>>;
|
|
15563
15669
|
waitUntilKeyPairExists(
|
|
15564
15670
|
args: DescribeKeyPairsCommandInput,
|
|
15565
15671
|
waiterConfig:
|
|
@@ -15568,7 +15674,7 @@ export interface EC2 {
|
|
|
15568
15674
|
WaiterConfiguration<EC2>,
|
|
15569
15675
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15570
15676
|
>
|
|
15571
|
-
): Promise<WaiterResult
|
|
15677
|
+
): Promise<WaiterResult<DescribeKeyPairsCommandOutput>>;
|
|
15572
15678
|
waitUntilNatGatewayAvailable(
|
|
15573
15679
|
args: DescribeNatGatewaysCommandInput,
|
|
15574
15680
|
waiterConfig:
|
|
@@ -15577,7 +15683,7 @@ export interface EC2 {
|
|
|
15577
15683
|
WaiterConfiguration<EC2>,
|
|
15578
15684
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15579
15685
|
>
|
|
15580
|
-
): Promise<WaiterResult
|
|
15686
|
+
): Promise<WaiterResult<DescribeNatGatewaysCommandOutput>>;
|
|
15581
15687
|
waitUntilNatGatewayDeleted(
|
|
15582
15688
|
args: DescribeNatGatewaysCommandInput,
|
|
15583
15689
|
waiterConfig:
|
|
@@ -15586,7 +15692,9 @@ export interface EC2 {
|
|
|
15586
15692
|
WaiterConfiguration<EC2>,
|
|
15587
15693
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15588
15694
|
>
|
|
15589
|
-
): Promise<
|
|
15695
|
+
): Promise<
|
|
15696
|
+
WaiterResult<DescribeNatGatewaysCommandOutput | EC2ServiceException>
|
|
15697
|
+
>;
|
|
15590
15698
|
waitUntilNetworkInterfaceAvailable(
|
|
15591
15699
|
args: DescribeNetworkInterfacesCommandInput,
|
|
15592
15700
|
waiterConfig:
|
|
@@ -15595,7 +15703,7 @@ export interface EC2 {
|
|
|
15595
15703
|
WaiterConfiguration<EC2>,
|
|
15596
15704
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15597
15705
|
>
|
|
15598
|
-
): Promise<WaiterResult
|
|
15706
|
+
): Promise<WaiterResult<DescribeNetworkInterfacesCommandOutput>>;
|
|
15599
15707
|
waitUntilSecondaryNetworkCreateComplete(
|
|
15600
15708
|
args: DescribeSecondaryNetworksCommandInput,
|
|
15601
15709
|
waiterConfig:
|
|
@@ -15604,7 +15712,7 @@ export interface EC2 {
|
|
|
15604
15712
|
WaiterConfiguration<EC2>,
|
|
15605
15713
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15606
15714
|
>
|
|
15607
|
-
): Promise<WaiterResult
|
|
15715
|
+
): Promise<WaiterResult<DescribeSecondaryNetworksCommandOutput>>;
|
|
15608
15716
|
waitUntilSecondaryNetworkDeleteComplete(
|
|
15609
15717
|
args: DescribeSecondaryNetworksCommandInput,
|
|
15610
15718
|
waiterConfig:
|
|
@@ -15613,7 +15721,7 @@ export interface EC2 {
|
|
|
15613
15721
|
WaiterConfiguration<EC2>,
|
|
15614
15722
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15615
15723
|
>
|
|
15616
|
-
): Promise<WaiterResult
|
|
15724
|
+
): Promise<WaiterResult<DescribeSecondaryNetworksCommandOutput>>;
|
|
15617
15725
|
waitUntilSecondarySubnetCreateComplete(
|
|
15618
15726
|
args: DescribeSecondarySubnetsCommandInput,
|
|
15619
15727
|
waiterConfig:
|
|
@@ -15622,7 +15730,7 @@ export interface EC2 {
|
|
|
15622
15730
|
WaiterConfiguration<EC2>,
|
|
15623
15731
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15624
15732
|
>
|
|
15625
|
-
): Promise<WaiterResult
|
|
15733
|
+
): Promise<WaiterResult<DescribeSecondarySubnetsCommandOutput>>;
|
|
15626
15734
|
waitUntilSecondarySubnetDeleteComplete(
|
|
15627
15735
|
args: DescribeSecondarySubnetsCommandInput,
|
|
15628
15736
|
waiterConfig:
|
|
@@ -15631,7 +15739,7 @@ export interface EC2 {
|
|
|
15631
15739
|
WaiterConfiguration<EC2>,
|
|
15632
15740
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15633
15741
|
>
|
|
15634
|
-
): Promise<WaiterResult
|
|
15742
|
+
): Promise<WaiterResult<DescribeSecondarySubnetsCommandOutput>>;
|
|
15635
15743
|
waitUntilSecurityGroupExists(
|
|
15636
15744
|
args: DescribeSecurityGroupsCommandInput,
|
|
15637
15745
|
waiterConfig:
|
|
@@ -15640,7 +15748,7 @@ export interface EC2 {
|
|
|
15640
15748
|
WaiterConfiguration<EC2>,
|
|
15641
15749
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15642
15750
|
>
|
|
15643
|
-
): Promise<WaiterResult
|
|
15751
|
+
): Promise<WaiterResult<DescribeSecurityGroupsCommandOutput>>;
|
|
15644
15752
|
waitUntilSecurityGroupVpcAssociationAssociated(
|
|
15645
15753
|
args: DescribeSecurityGroupVpcAssociationsCommandInput,
|
|
15646
15754
|
waiterConfig:
|
|
@@ -15649,7 +15757,7 @@ export interface EC2 {
|
|
|
15649
15757
|
WaiterConfiguration<EC2>,
|
|
15650
15758
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15651
15759
|
>
|
|
15652
|
-
): Promise<WaiterResult
|
|
15760
|
+
): Promise<WaiterResult<DescribeSecurityGroupVpcAssociationsCommandOutput>>;
|
|
15653
15761
|
waitUntilSecurityGroupVpcAssociationDisassociated(
|
|
15654
15762
|
args: DescribeSecurityGroupVpcAssociationsCommandInput,
|
|
15655
15763
|
waiterConfig:
|
|
@@ -15658,7 +15766,7 @@ export interface EC2 {
|
|
|
15658
15766
|
WaiterConfiguration<EC2>,
|
|
15659
15767
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15660
15768
|
>
|
|
15661
|
-
): Promise<WaiterResult
|
|
15769
|
+
): Promise<WaiterResult<DescribeSecurityGroupVpcAssociationsCommandOutput>>;
|
|
15662
15770
|
waitUntilSnapshotCompleted(
|
|
15663
15771
|
args: DescribeSnapshotsCommandInput,
|
|
15664
15772
|
waiterConfig:
|
|
@@ -15667,7 +15775,7 @@ export interface EC2 {
|
|
|
15667
15775
|
WaiterConfiguration<EC2>,
|
|
15668
15776
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15669
15777
|
>
|
|
15670
|
-
): Promise<WaiterResult
|
|
15778
|
+
): Promise<WaiterResult<DescribeSnapshotsCommandOutput>>;
|
|
15671
15779
|
waitUntilSpotInstanceRequestFulfilled(
|
|
15672
15780
|
args: DescribeSpotInstanceRequestsCommandInput,
|
|
15673
15781
|
waiterConfig:
|
|
@@ -15676,7 +15784,7 @@ export interface EC2 {
|
|
|
15676
15784
|
WaiterConfiguration<EC2>,
|
|
15677
15785
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15678
15786
|
>
|
|
15679
|
-
): Promise<WaiterResult
|
|
15787
|
+
): Promise<WaiterResult<DescribeSpotInstanceRequestsCommandOutput>>;
|
|
15680
15788
|
waitUntilStoreImageTaskComplete(
|
|
15681
15789
|
args: DescribeStoreImageTasksCommandInput,
|
|
15682
15790
|
waiterConfig:
|
|
@@ -15685,7 +15793,7 @@ export interface EC2 {
|
|
|
15685
15793
|
WaiterConfiguration<EC2>,
|
|
15686
15794
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15687
15795
|
>
|
|
15688
|
-
): Promise<WaiterResult
|
|
15796
|
+
): Promise<WaiterResult<DescribeStoreImageTasksCommandOutput>>;
|
|
15689
15797
|
waitUntilSubnetAvailable(
|
|
15690
15798
|
args: DescribeSubnetsCommandInput,
|
|
15691
15799
|
waiterConfig:
|
|
@@ -15694,7 +15802,7 @@ export interface EC2 {
|
|
|
15694
15802
|
WaiterConfiguration<EC2>,
|
|
15695
15803
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15696
15804
|
>
|
|
15697
|
-
): Promise<WaiterResult
|
|
15805
|
+
): Promise<WaiterResult<DescribeSubnetsCommandOutput>>;
|
|
15698
15806
|
waitUntilVolumeAvailable(
|
|
15699
15807
|
args: DescribeVolumesCommandInput,
|
|
15700
15808
|
waiterConfig:
|
|
@@ -15703,7 +15811,7 @@ export interface EC2 {
|
|
|
15703
15811
|
WaiterConfiguration<EC2>,
|
|
15704
15812
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15705
15813
|
>
|
|
15706
|
-
): Promise<WaiterResult
|
|
15814
|
+
): Promise<WaiterResult<DescribeVolumesCommandOutput>>;
|
|
15707
15815
|
waitUntilVolumeDeleted(
|
|
15708
15816
|
args: DescribeVolumesCommandInput,
|
|
15709
15817
|
waiterConfig:
|
|
@@ -15712,7 +15820,7 @@ export interface EC2 {
|
|
|
15712
15820
|
WaiterConfiguration<EC2>,
|
|
15713
15821
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15714
15822
|
>
|
|
15715
|
-
): Promise<WaiterResult
|
|
15823
|
+
): Promise<WaiterResult<DescribeVolumesCommandOutput | EC2ServiceException>>;
|
|
15716
15824
|
waitUntilVolumeInUse(
|
|
15717
15825
|
args: DescribeVolumesCommandInput,
|
|
15718
15826
|
waiterConfig:
|
|
@@ -15721,7 +15829,7 @@ export interface EC2 {
|
|
|
15721
15829
|
WaiterConfiguration<EC2>,
|
|
15722
15830
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15723
15831
|
>
|
|
15724
|
-
): Promise<WaiterResult
|
|
15832
|
+
): Promise<WaiterResult<DescribeVolumesCommandOutput>>;
|
|
15725
15833
|
waitUntilVpcPeeringConnectionDeleted(
|
|
15726
15834
|
args: DescribeVpcPeeringConnectionsCommandInput,
|
|
15727
15835
|
waiterConfig:
|
|
@@ -15730,7 +15838,11 @@ export interface EC2 {
|
|
|
15730
15838
|
WaiterConfiguration<EC2>,
|
|
15731
15839
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15732
15840
|
>
|
|
15733
|
-
): Promise<
|
|
15841
|
+
): Promise<
|
|
15842
|
+
WaiterResult<
|
|
15843
|
+
DescribeVpcPeeringConnectionsCommandOutput | EC2ServiceException
|
|
15844
|
+
>
|
|
15845
|
+
>;
|
|
15734
15846
|
waitUntilVpcPeeringConnectionExists(
|
|
15735
15847
|
args: DescribeVpcPeeringConnectionsCommandInput,
|
|
15736
15848
|
waiterConfig:
|
|
@@ -15739,7 +15851,7 @@ export interface EC2 {
|
|
|
15739
15851
|
WaiterConfiguration<EC2>,
|
|
15740
15852
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15741
15853
|
>
|
|
15742
|
-
): Promise<WaiterResult
|
|
15854
|
+
): Promise<WaiterResult<DescribeVpcPeeringConnectionsCommandOutput>>;
|
|
15743
15855
|
waitUntilVpcAvailable(
|
|
15744
15856
|
args: DescribeVpcsCommandInput,
|
|
15745
15857
|
waiterConfig:
|
|
@@ -15748,7 +15860,7 @@ export interface EC2 {
|
|
|
15748
15860
|
WaiterConfiguration<EC2>,
|
|
15749
15861
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15750
15862
|
>
|
|
15751
|
-
): Promise<WaiterResult
|
|
15863
|
+
): Promise<WaiterResult<DescribeVpcsCommandOutput>>;
|
|
15752
15864
|
waitUntilVpcExists(
|
|
15753
15865
|
args: DescribeVpcsCommandInput,
|
|
15754
15866
|
waiterConfig:
|
|
@@ -15757,7 +15869,7 @@ export interface EC2 {
|
|
|
15757
15869
|
WaiterConfiguration<EC2>,
|
|
15758
15870
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15759
15871
|
>
|
|
15760
|
-
): Promise<WaiterResult
|
|
15872
|
+
): Promise<WaiterResult<DescribeVpcsCommandOutput>>;
|
|
15761
15873
|
waitUntilVpnConnectionAvailable(
|
|
15762
15874
|
args: DescribeVpnConnectionsCommandInput,
|
|
15763
15875
|
waiterConfig:
|
|
@@ -15766,7 +15878,7 @@ export interface EC2 {
|
|
|
15766
15878
|
WaiterConfiguration<EC2>,
|
|
15767
15879
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15768
15880
|
>
|
|
15769
|
-
): Promise<WaiterResult
|
|
15881
|
+
): Promise<WaiterResult<DescribeVpnConnectionsCommandOutput>>;
|
|
15770
15882
|
waitUntilVpnConnectionDeleted(
|
|
15771
15883
|
args: DescribeVpnConnectionsCommandInput,
|
|
15772
15884
|
waiterConfig:
|
|
@@ -15775,7 +15887,7 @@ export interface EC2 {
|
|
|
15775
15887
|
WaiterConfiguration<EC2>,
|
|
15776
15888
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15777
15889
|
>
|
|
15778
|
-
): Promise<WaiterResult
|
|
15890
|
+
): Promise<WaiterResult<DescribeVpnConnectionsCommandOutput>>;
|
|
15779
15891
|
waitUntilPasswordDataAvailable(
|
|
15780
15892
|
args: GetPasswordDataCommandInput,
|
|
15781
15893
|
waiterConfig:
|
|
@@ -15784,6 +15896,6 @@ export interface EC2 {
|
|
|
15784
15896
|
WaiterConfiguration<EC2>,
|
|
15785
15897
|
Exclude<keyof WaiterConfiguration<EC2>, "client">
|
|
15786
15898
|
>
|
|
15787
|
-
): Promise<WaiterResult
|
|
15899
|
+
): Promise<WaiterResult<GetPasswordDataCommandOutput>>;
|
|
15788
15900
|
}
|
|
15789
15901
|
export declare class EC2 extends EC2Client implements EC2 {}
|
|
@@ -56,6 +56,10 @@ import {
|
|
|
56
56
|
AcceptReservedInstancesExchangeQuoteCommandInput,
|
|
57
57
|
AcceptReservedInstancesExchangeQuoteCommandOutput,
|
|
58
58
|
} from "./commands/AcceptReservedInstancesExchangeQuoteCommand";
|
|
59
|
+
import {
|
|
60
|
+
AcceptTransitGatewayClientVpnAttachmentCommandInput,
|
|
61
|
+
AcceptTransitGatewayClientVpnAttachmentCommandOutput,
|
|
62
|
+
} from "./commands/AcceptTransitGatewayClientVpnAttachmentCommand";
|
|
59
63
|
import {
|
|
60
64
|
AcceptTransitGatewayMulticastDomainAssociationsCommandInput,
|
|
61
65
|
AcceptTransitGatewayMulticastDomainAssociationsCommandOutput,
|
|
@@ -956,6 +960,10 @@ import {
|
|
|
956
960
|
DeleteTrafficMirrorTargetCommandInput,
|
|
957
961
|
DeleteTrafficMirrorTargetCommandOutput,
|
|
958
962
|
} from "./commands/DeleteTrafficMirrorTargetCommand";
|
|
963
|
+
import {
|
|
964
|
+
DeleteTransitGatewayClientVpnAttachmentCommandInput,
|
|
965
|
+
DeleteTransitGatewayClientVpnAttachmentCommandOutput,
|
|
966
|
+
} from "./commands/DeleteTransitGatewayClientVpnAttachmentCommand";
|
|
959
967
|
import {
|
|
960
968
|
DeleteTransitGatewayCommandInput,
|
|
961
969
|
DeleteTransitGatewayCommandOutput,
|
|
@@ -2304,6 +2312,10 @@ import {
|
|
|
2304
2312
|
GetManagedPrefixListEntriesCommandInput,
|
|
2305
2313
|
GetManagedPrefixListEntriesCommandOutput,
|
|
2306
2314
|
} from "./commands/GetManagedPrefixListEntriesCommand";
|
|
2315
|
+
import {
|
|
2316
|
+
GetManagedResourceVisibilityCommandInput,
|
|
2317
|
+
GetManagedResourceVisibilityCommandOutput,
|
|
2318
|
+
} from "./commands/GetManagedResourceVisibilityCommand";
|
|
2307
2319
|
import {
|
|
2308
2320
|
GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput,
|
|
2309
2321
|
GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput,
|
|
@@ -2596,6 +2608,10 @@ import {
|
|
|
2596
2608
|
ModifyManagedPrefixListCommandInput,
|
|
2597
2609
|
ModifyManagedPrefixListCommandOutput,
|
|
2598
2610
|
} from "./commands/ModifyManagedPrefixListCommand";
|
|
2611
|
+
import {
|
|
2612
|
+
ModifyManagedResourceVisibilityCommandInput,
|
|
2613
|
+
ModifyManagedResourceVisibilityCommandOutput,
|
|
2614
|
+
} from "./commands/ModifyManagedResourceVisibilityCommand";
|
|
2599
2615
|
import {
|
|
2600
2616
|
ModifyNetworkInterfaceAttributeCommandInput,
|
|
2601
2617
|
ModifyNetworkInterfaceAttributeCommandOutput,
|
|
@@ -2836,6 +2852,10 @@ import {
|
|
|
2836
2852
|
RejectCapacityReservationBillingOwnershipCommandInput,
|
|
2837
2853
|
RejectCapacityReservationBillingOwnershipCommandOutput,
|
|
2838
2854
|
} from "./commands/RejectCapacityReservationBillingOwnershipCommand";
|
|
2855
|
+
import {
|
|
2856
|
+
RejectTransitGatewayClientVpnAttachmentCommandInput,
|
|
2857
|
+
RejectTransitGatewayClientVpnAttachmentCommandOutput,
|
|
2858
|
+
} from "./commands/RejectTransitGatewayClientVpnAttachmentCommand";
|
|
2839
2859
|
import {
|
|
2840
2860
|
RejectTransitGatewayMulticastDomainAssociationsCommandInput,
|
|
2841
2861
|
RejectTransitGatewayMulticastDomainAssociationsCommandOutput,
|
|
@@ -3087,6 +3107,7 @@ export type ServiceInputTypes =
|
|
|
3087
3107
|
| AcceptAddressTransferCommandInput
|
|
3088
3108
|
| AcceptCapacityReservationBillingOwnershipCommandInput
|
|
3089
3109
|
| AcceptReservedInstancesExchangeQuoteCommandInput
|
|
3110
|
+
| AcceptTransitGatewayClientVpnAttachmentCommandInput
|
|
3090
3111
|
| AcceptTransitGatewayMulticastDomainAssociationsCommandInput
|
|
3091
3112
|
| AcceptTransitGatewayPeeringAttachmentCommandInput
|
|
3092
3113
|
| AcceptTransitGatewayVpcAttachmentCommandInput
|
|
@@ -3312,6 +3333,7 @@ export type ServiceInputTypes =
|
|
|
3312
3333
|
| DeleteTrafficMirrorFilterRuleCommandInput
|
|
3313
3334
|
| DeleteTrafficMirrorSessionCommandInput
|
|
3314
3335
|
| DeleteTrafficMirrorTargetCommandInput
|
|
3336
|
+
| DeleteTransitGatewayClientVpnAttachmentCommandInput
|
|
3315
3337
|
| DeleteTransitGatewayCommandInput
|
|
3316
3338
|
| DeleteTransitGatewayConnectCommandInput
|
|
3317
3339
|
| DeleteTransitGatewayConnectPeerCommandInput
|
|
@@ -3649,6 +3671,7 @@ export type ServiceInputTypes =
|
|
|
3649
3671
|
| GetLaunchTemplateDataCommandInput
|
|
3650
3672
|
| GetManagedPrefixListAssociationsCommandInput
|
|
3651
3673
|
| GetManagedPrefixListEntriesCommandInput
|
|
3674
|
+
| GetManagedResourceVisibilityCommandInput
|
|
3652
3675
|
| GetNetworkInsightsAccessScopeAnalysisFindingsCommandInput
|
|
3653
3676
|
| GetNetworkInsightsAccessScopeContentCommandInput
|
|
3654
3677
|
| GetPasswordDataCommandInput
|
|
@@ -3722,6 +3745,7 @@ export type ServiceInputTypes =
|
|
|
3722
3745
|
| ModifyLaunchTemplateCommandInput
|
|
3723
3746
|
| ModifyLocalGatewayRouteCommandInput
|
|
3724
3747
|
| ModifyManagedPrefixListCommandInput
|
|
3748
|
+
| ModifyManagedResourceVisibilityCommandInput
|
|
3725
3749
|
| ModifyNetworkInterfaceAttributeCommandInput
|
|
3726
3750
|
| ModifyPrivateDnsNameOptionsCommandInput
|
|
3727
3751
|
| ModifyPublicIpDnsNameOptionsCommandInput
|
|
@@ -3782,6 +3806,7 @@ export type ServiceInputTypes =
|
|
|
3782
3806
|
| RegisterTransitGatewayMulticastGroupMembersCommandInput
|
|
3783
3807
|
| RegisterTransitGatewayMulticastGroupSourcesCommandInput
|
|
3784
3808
|
| RejectCapacityReservationBillingOwnershipCommandInput
|
|
3809
|
+
| RejectTransitGatewayClientVpnAttachmentCommandInput
|
|
3785
3810
|
| RejectTransitGatewayMulticastDomainAssociationsCommandInput
|
|
3786
3811
|
| RejectTransitGatewayPeeringAttachmentCommandInput
|
|
3787
3812
|
| RejectTransitGatewayVpcAttachmentCommandInput
|
|
@@ -3846,6 +3871,7 @@ export type ServiceOutputTypes =
|
|
|
3846
3871
|
| AcceptAddressTransferCommandOutput
|
|
3847
3872
|
| AcceptCapacityReservationBillingOwnershipCommandOutput
|
|
3848
3873
|
| AcceptReservedInstancesExchangeQuoteCommandOutput
|
|
3874
|
+
| AcceptTransitGatewayClientVpnAttachmentCommandOutput
|
|
3849
3875
|
| AcceptTransitGatewayMulticastDomainAssociationsCommandOutput
|
|
3850
3876
|
| AcceptTransitGatewayPeeringAttachmentCommandOutput
|
|
3851
3877
|
| AcceptTransitGatewayVpcAttachmentCommandOutput
|
|
@@ -4071,6 +4097,7 @@ export type ServiceOutputTypes =
|
|
|
4071
4097
|
| DeleteTrafficMirrorFilterRuleCommandOutput
|
|
4072
4098
|
| DeleteTrafficMirrorSessionCommandOutput
|
|
4073
4099
|
| DeleteTrafficMirrorTargetCommandOutput
|
|
4100
|
+
| DeleteTransitGatewayClientVpnAttachmentCommandOutput
|
|
4074
4101
|
| DeleteTransitGatewayCommandOutput
|
|
4075
4102
|
| DeleteTransitGatewayConnectCommandOutput
|
|
4076
4103
|
| DeleteTransitGatewayConnectPeerCommandOutput
|
|
@@ -4408,6 +4435,7 @@ export type ServiceOutputTypes =
|
|
|
4408
4435
|
| GetLaunchTemplateDataCommandOutput
|
|
4409
4436
|
| GetManagedPrefixListAssociationsCommandOutput
|
|
4410
4437
|
| GetManagedPrefixListEntriesCommandOutput
|
|
4438
|
+
| GetManagedResourceVisibilityCommandOutput
|
|
4411
4439
|
| GetNetworkInsightsAccessScopeAnalysisFindingsCommandOutput
|
|
4412
4440
|
| GetNetworkInsightsAccessScopeContentCommandOutput
|
|
4413
4441
|
| GetPasswordDataCommandOutput
|
|
@@ -4481,6 +4509,7 @@ export type ServiceOutputTypes =
|
|
|
4481
4509
|
| ModifyLaunchTemplateCommandOutput
|
|
4482
4510
|
| ModifyLocalGatewayRouteCommandOutput
|
|
4483
4511
|
| ModifyManagedPrefixListCommandOutput
|
|
4512
|
+
| ModifyManagedResourceVisibilityCommandOutput
|
|
4484
4513
|
| ModifyNetworkInterfaceAttributeCommandOutput
|
|
4485
4514
|
| ModifyPrivateDnsNameOptionsCommandOutput
|
|
4486
4515
|
| ModifyPublicIpDnsNameOptionsCommandOutput
|
|
@@ -4541,6 +4570,7 @@ export type ServiceOutputTypes =
|
|
|
4541
4570
|
| RegisterTransitGatewayMulticastGroupMembersCommandOutput
|
|
4542
4571
|
| RegisterTransitGatewayMulticastGroupSourcesCommandOutput
|
|
4543
4572
|
| RejectCapacityReservationBillingOwnershipCommandOutput
|
|
4573
|
+
| RejectTransitGatewayClientVpnAttachmentCommandOutput
|
|
4544
4574
|
| RejectTransitGatewayMulticastDomainAssociationsCommandOutput
|
|
4545
4575
|
| RejectTransitGatewayPeeringAttachmentCommandOutput
|
|
4546
4576
|
| RejectTransitGatewayVpcAttachmentCommandOutput
|