@cdklabs/cdk-ssm-documents 0.0.63 → 0.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +12 -12
- 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/{middleware-ssec → checksums}/LICENSE +1 -1
- package/node_modules/@aws-sdk/checksums/README.md +6 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +547 -0
- package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/selectChecksumAlgorithmFunction.js +2 -1
- package/node_modules/@aws-sdk/checksums/dist-es/index.js +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +11 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +33 -0
- package/node_modules/@aws-sdk/{middleware-ssec → checksums}/package.json +33 -17
- package/node_modules/@aws-sdk/client-cloudformation/README.md +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormation.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/CloudFormationClient.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/index.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +10 -10
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +42 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +75 -30
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +77 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +16 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +68 -26
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +73 -1
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +21 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +5 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +161 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +105 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +74 -23
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +90 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +51 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +40 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +16 -16
- package/node_modules/@aws-sdk/client-ec2/README.md +28 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +75 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +280 -82
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCancellationQuoteCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationCancellationQuotesCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +218 -21
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +29 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +6 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +84 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +5 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +117 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +1 -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/CreateDhcpOptionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +9 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +3 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +2 -2
- 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/CreateSecondarySubnetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCidrReservationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTagsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +82 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +2 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +0 -5
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveCapacityReservationInstancesCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +40 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +196 -207
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +237 -356
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +354 -140
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +249 -434
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +2348 -2496
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +907 -861
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +580 -384
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +385 -7
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +24 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceConnectEndpointsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +2 -4
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +22 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +45 -52
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +60 -74
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +79 -34
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +61 -90
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +92 -87
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +98 -110
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +109 -92
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +89 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +16 -14
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +18 -3
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +17 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/models/models_0.d.ts +5 -2
- package/node_modules/@aws-sdk/client-iam/package.json +15 -15
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +20 -13
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +4 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +16 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +6 -0
- 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/ListCapacityProvidersCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +12 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +18 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +32 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +8 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +11 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +85 -88
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +3 -4
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +6 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +6 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/package.json +15 -19
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ConfirmSubscriptionCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SubscribeCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/dist-types/models/errors.d.ts +1 -1
- package/node_modules/@aws-sdk/client-sns/package.json +10 -10
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1 -1
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +1 -1
- package/node_modules/@aws-sdk/client-sqs/package.json +12 -12
- package/node_modules/@aws-sdk/client-ssm/package.json +10 -10
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +47 -2291
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +12 -6
- package/node_modules/@aws-sdk/core/dist-es/index.js +3 -3
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4ASigner.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/httpAuthSchemes/aws_sdk/AwsSdkSigV4Signer.js +11 -6
- package/node_modules/@aws-sdk/core/dist-types/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/index.d.ts +5 -5
- package/node_modules/@aws-sdk/core/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-env/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-http/package.json +11 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +15 -15
- package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-process/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +4 -1
- package/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js +4 -1
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +12 -10
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +21 -447
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +1 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +2 -6
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +5 -36
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +34 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +57 -53
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +1028 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +1042 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +215 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +1 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.browser.js +30 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3/index.js +25 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3Configuration.js → submodules/s3/middleware-s3-configuration/s3Configuration.js} +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{throw-200-exceptions.js → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.js} +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{validate-bucket-name.js → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.js} +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/configurations.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/constants.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/index.js +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.js +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.js +18 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.js +8 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.js +94 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-process-arnables/update-arnables-request.js +31 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.js +26 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +2 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.browser.d.ts +36 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3/index.d.ts +32 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3Configuration.d.ts → submodules/s3/middleware-s3-configuration/s3Configuration.d.ts} +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{validate-bucket-name.d.ts → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts} +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/configurations.d.ts +47 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/index.d.ts +9 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +6 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +3 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +27 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +19 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +17 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +39 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +39 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.browser.d.ts +103 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3/index.d.ts +107 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3Configuration.d.ts → submodules/s3/middleware-s3-configuration/s3Configuration.d.ts} +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{validate-bucket-name.d.ts → submodules/s3/middleware-validate-bucket-name/validate-bucket-name.d.ts} +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/configurations.d.ts +23 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/constants.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/index.d.ts +26 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-host-prefix-deduplication/hostPrefixDeduplicationMiddleware.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getOutpostEndpoint.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/getProcessArnablesPlugin.d.ts +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/parse-outpost-arnables.d.ts +12 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-process-arnables/update-arnables-request.d.ts +13 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/submodules/s3-control/middleware-redirect-from-postid/redirect-from-postid.d.ts +22 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +66 -15
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +7 -0
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.js +5 -0
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +7 -7
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +99 -106
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +62 -120
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +55 -86
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +73 -104
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +102 -185
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/endpoint/bdd.js +21 -57
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/schemas/schemas_0.js +73 -41
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +20 -52
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/schemas/schemas_0.js +36 -59
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/endpoint/bdd.js +17 -45
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/schemas/schemas_0.js +32 -32
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/endpoint/bdd.js +17 -45
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +2 -4
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/schemas/schemas_0.js +50 -50
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +4 -5
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/defaultRoleAssumers.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/endpoint/bdd.js +34 -96
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +3 -6
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/schemas/schemas_0.js +63 -80
- package/node_modules/@aws-sdk/nested-clients/package.json +11 -11
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +10 -9
- package/node_modules/@aws-sdk/token-providers/package.json +8 -8
- package/node_modules/@aws-sdk/types/package.json +4 -4
- package/node_modules/@aws-sdk/util-locate-window/package.json +3 -3
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +8 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +9 -0
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +4 -1
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +9 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
- package/node_modules/@nodable/entities/package.json +4 -1
- package/node_modules/@nodable/entities/src/EntityDecoder.js +104 -3
- package/node_modules/@nodable/entities/src/index.d.ts +77 -0
- package/node_modules/@nodable/entities/src/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/index.js +13 -15
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +29 -31
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +2 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +7 -9
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +3 -5
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +22 -23
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.browser.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +38 -39
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.native.js +10 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.browser.js +14 -17
- package/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js +20 -23
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +9 -11
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -13
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +59 -60
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.browser.js +26 -27
- package/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js +28 -29
- package/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js +5 -7
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.browser.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +23 -25
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.native.js +4 -6
- package/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js +2 -4
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-auth-scheme/httpAuthSchemeMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/legacy-root-exports/middleware-http-signing/httpSigningMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/cbor/SmithyRpcV2CborProtocol.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/endpointMiddleware.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/retry/middleware-retry/retry-pre-sra-deprecated/StandardRetryStrategy.js +2 -2
- package/node_modules/@smithy/core/dist-es/submodules/retry/util-retry/DefaultRateLimiter.js +1 -1
- package/node_modules/@smithy/core/dist-types/submodules/schema/TypeRegistry.d.ts +1 -1
- package/node_modules/@smithy/core/package.json +18 -17
- package/node_modules/@smithy/credential-provider-imds/dist-cjs/index.js +23 -24
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js +2 -2
- package/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js +2 -0
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/httpRequest.d.ts +1 -1
- package/node_modules/@smithy/credential-provider-imds/dist-types/remoteProvider/node-http.d.ts +2 -0
- package/node_modules/@smithy/credential-provider-imds/package.json +7 -7
- package/node_modules/@smithy/fetch-http-handler/dist-cjs/index.js +6 -8
- package/node_modules/@smithy/fetch-http-handler/package.json +10 -10
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.browser.js +3 -7
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressStream.js +2 -6
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.browser.js +4 -8
- package/node_modules/@smithy/middleware-compression/dist-cjs/compressString.js +7 -11
- package/node_modules/@smithy/middleware-compression/dist-cjs/index.js +18 -20
- package/node_modules/@smithy/middleware-compression/package.json +6 -6
- package/node_modules/@smithy/node-http-handler/dist-cjs/index.js +15 -15
- package/node_modules/@smithy/node-http-handler/dist-es/node-http-handler.js +7 -6
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2-handler.js +2 -1
- package/node_modules/@smithy/node-http-handler/dist-es/node-http2.js +2 -0
- package/node_modules/@smithy/node-http-handler/dist-es/node-https.js +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-http-handler.d.ts +2 -2
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2-handler.d.ts +1 -1
- package/node_modules/@smithy/node-http-handler/dist-types/node-http2.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/dist-types/node-https.d.ts +2 -0
- package/node_modules/@smithy/node-http-handler/package.json +8 -8
- package/node_modules/@smithy/signature-v4/dist-cjs/index.js +27 -29
- package/node_modules/@smithy/signature-v4/package.json +7 -7
- package/node_modules/@smithy/types/dist-cjs/index.js +23 -18
- package/node_modules/@smithy/types/package.json +10 -10
- package/node_modules/anynum/LICENSE +21 -0
- package/node_modules/anynum/README.md +142 -0
- package/node_modules/anynum/anynum.js +135 -0
- package/node_modules/anynum/digitTable.js +116 -0
- package/node_modules/anynum/package.json +42 -0
- package/package.json +10 -10
- package/node_modules/@aws-sdk/crc64-nvme/LICENSE +0 -201
- package/node_modules/@aws-sdk/crc64-nvme/README.md +0 -61
- package/node_modules/@aws-sdk/crc64-nvme/dist-cjs/index.js +0 -101
- package/node_modules/@aws-sdk/crc64-nvme/dist-es/index.js +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/dist-types/ts3.4/index.d.ts +0 -2
- package/node_modules/@aws-sdk/crc64-nvme/package.json +0 -49
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-cjs/index.js +0 -352
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-es/index.js +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/dist-types/ts3.4/index.d.ts +0 -16
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +0 -58
- package/node_modules/@aws-sdk/middleware-expect-continue/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-expect-continue/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-expect-continue/dist-cjs/index.js +0 -48
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +0 -58
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/ts3.4/index.d.ts +0 -6
- package/node_modules/@aws-sdk/middleware-location-constraint/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-location-constraint/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/dist-cjs/index.js +0 -30
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +0 -57
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.browser.js +0 -11
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/toStream.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/s3-express/index.js +0 -7
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/s3-express/index.d.ts +0 -9
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/s3-express/index.d.ts +0 -17
- package/node_modules/@aws-sdk/middleware-ssec/README.md +0 -4
- package/node_modules/@aws-sdk/middleware-ssec/dist-cjs/index.js +0 -73
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-cjs → checksums/dist-cjs/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-cjs → checksums/dist-cjs/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.js +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/crc64-nvme}/Crc64Nvme.js +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-es → checksums/dist-es/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/constants.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/flexibleChecksumsResponseMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksum.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getChecksumLocationName.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/hasHeader.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/isStreaming.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/resolveFlexibleChecksumsConfig.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/stringHasher.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/stringUnionSelector.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/types.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-es → checksums/dist-es/flexible-checksums}/validateChecksumFromResponse.js +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-types → checksums/dist-types/crc64-nvme}/Crc64Nvme.d.ts +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-types → checksums/dist-types/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types → checksums/dist-types/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/crc64-nvme}/Crc64Nvme.d.ts +0 -0
- /package/node_modules/@aws-sdk/{crc64-nvme/dist-types/ts3.4 → checksums/dist-types/ts3.4/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getCrc32ChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-flexible-checksums/dist-types/ts3.4 → checksums/dist-types/ts3.4/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3}/NodeUseArnRegionConfigOptions.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostname.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-bucket-endpoint}/configurations.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{check-content-length-header.js → submodules/s3/middleware-check-content-length-header/check-content-length-header.js} +0 -0
- /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-expect-continue/middleware-expect-continue.js} +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-location-constraint/middleware-location-constraint.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{bucket-endpoint-middleware.js → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-endpoint-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{region-redirect-middleware.js → submodules/s3/middleware-region-redirect/region-redirect-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-expires-middleware.js → submodules/s3/middleware-s3-expires/s3-expires-middleware.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/constants.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.js +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-es/index.js → middleware-sdk-s3/dist-es/submodules/s3/middleware-ssec/middleware-ssec.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.js +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{toStream.browser.js → submodules/s3/to-stream/toStream.browser.js} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/{toStream.js → submodules/s3/to-stream/toStream.js} +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3}/NodeUseArnRegionConfigOptions.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/index.d.ts → middleware-sdk-s3/dist-types/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{throw-200-exceptions.d.ts → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{toStream.browser.d.ts → submodules/s3/to-stream/toStream.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/{toStream.d.ts → submodules/s3/to-stream/toStream.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3}/NodeDisableMultiregionAccessPointConfigOptions.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3}/NodeUseArnRegionConfigOptions.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketEndpointMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostname.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/bucketHostnameUtils.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-bucket-endpoint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-bucket-endpoint}/configurations.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{check-content-length-header.d.ts → submodules/s3/middleware-check-content-length-header/check-content-length-header.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-expect-continue/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-expect-continue/middleware-expect-continue.d.ts} +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4 → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-location-constraint/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-location-constraint/middleware-location-constraint.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{bucket-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/bucket-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-endpoint-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-endpoint-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{region-redirect-middleware.d.ts → submodules/s3/middleware-region-redirect/region-redirect-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-expires-middleware.d.ts → submodules/s3/middleware-s3-expires/s3-expires-middleware.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCache.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityCacheEntry.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/S3ExpressIdentityProviderImpl.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/classes/SignatureV4S3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressHttpSigningMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/s3ExpressMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/functions/signS3Express.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentity.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{s3-express → submodules/s3/middleware-s3-express}/interfaces/S3ExpressIdentityProvider.d.ts +0 -0
- /package/node_modules/@aws-sdk/{middleware-ssec/dist-types/ts3.4/index.d.ts → middleware-sdk-s3/dist-types/ts3.4/submodules/s3/middleware-ssec/middleware-ssec.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{throw-200-exceptions.d.ts → submodules/s3/middleware-throw-200-exceptions/throw-200-exceptions.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{protocol → submodules/s3/protocol}/S3RestXmlProtocol.d.ts +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{toStream.browser.d.ts → submodules/s3/to-stream/toStream.browser.d.ts} +0 -0
- /package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/{toStream.d.ts → submodules/s3/to-stream/toStream.d.ts} +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
|
@@ -41,6 +41,7 @@ const _ABCRd = "AdvertiseByoipCidrResult";
|
|
|
41
41
|
const _ABHP = "ActualBlockHourlyPrice";
|
|
42
42
|
const _ABV = "AttributeBooleanValue";
|
|
43
43
|
const _AC = "AcceleratorCount";
|
|
44
|
+
const _ACC = "ApplyCancellationCharges";
|
|
44
45
|
const _ACIA = "AssociateCarrierIpAddress";
|
|
45
46
|
const _ACL = "AnalysisComponentList";
|
|
46
47
|
const _ACLV = "AttachClassicLinkVpc";
|
|
@@ -141,6 +142,9 @@ const _AISt = "AthenaIntegrationsSet";
|
|
|
141
142
|
const _AIT = "AllowedInstanceTypes";
|
|
142
143
|
const _AITS = "AllowedInstanceTypeSet";
|
|
143
144
|
const _AITl = "AllowedInstanceType";
|
|
145
|
+
const _AIW = "AttachImageWatermark";
|
|
146
|
+
const _AIWR = "AttachImageWatermarkRequest";
|
|
147
|
+
const _AIWRt = "AttachImageWatermarkResult";
|
|
144
148
|
const _AIc = "AccountId";
|
|
145
149
|
const _AIcc = "AccountIds";
|
|
146
150
|
const _AIct = "ActiveInstances";
|
|
@@ -547,6 +551,7 @@ const _CCB = "ClientCidrBlock";
|
|
|
547
551
|
const _CCC = "CreateCoipCidr";
|
|
548
552
|
const _CCCR = "CreateCoipCidrRequest";
|
|
549
553
|
const _CCCRr = "CreateCoipCidrResult";
|
|
554
|
+
const _CCDH = "ChargeCommitmentDurationHours";
|
|
550
555
|
const _CCG = "CreateCarrierGateway";
|
|
551
556
|
const _CCGR = "CreateCarrierGatewayRequest";
|
|
552
557
|
const _CCGRr = "CreateCarrierGatewayResult";
|
|
@@ -565,6 +570,9 @@ const _CCR = "CancelConversionRequest";
|
|
|
565
570
|
const _CCRBS = "CreateCapacityReservationBySplitting";
|
|
566
571
|
const _CCRBSR = "CreateCapacityReservationBySplittingRequest";
|
|
567
572
|
const _CCRBSRr = "CreateCapacityReservationBySplittingResult";
|
|
573
|
+
const _CCRCQ = "CreateCapacityReservationCancellationQuote";
|
|
574
|
+
const _CCRCQR = "CreateCapacityReservationCancellationQuoteRequest";
|
|
575
|
+
const _CCRCQRr = "CreateCapacityReservationCancellationQuoteResult";
|
|
568
576
|
const _CCRF = "CancelCapacityReservationFleets";
|
|
569
577
|
const _CCRFE = "CancelCapacityReservationFleetError";
|
|
570
578
|
const _CCRFR = "CancelCapacityReservationFleetsRequest";
|
|
@@ -591,6 +599,7 @@ const _CCl = "ClientConfiguration";
|
|
|
591
599
|
const _CCo = "CoipCidr";
|
|
592
600
|
const _CCor = "CoreCount";
|
|
593
601
|
const _CCp = "CpuCredits";
|
|
602
|
+
const _CCu = "CurrentConfiguration";
|
|
594
603
|
const _CD = "CreateDate";
|
|
595
604
|
const _CDC = "CreationDateCondition";
|
|
596
605
|
const _CDCR = "CreationDateConditionRequest";
|
|
@@ -619,7 +628,8 @@ const _CDr = "CreationDate";
|
|
|
619
628
|
const _CDre = "CreatedDate";
|
|
620
629
|
const _CE = "ConnectionEvents";
|
|
621
630
|
const _CECSD = "CidrEndpointsCustomSubDomain";
|
|
622
|
-
const _CED = "
|
|
631
|
+
const _CED = "ChargeEndDate";
|
|
632
|
+
const _CEDo = "CommitmentEndDate";
|
|
623
633
|
const _CEOIG = "CreateEgressOnlyInternetGateway";
|
|
624
634
|
const _CEOIGR = "CreateEgressOnlyInternetGatewayRequest";
|
|
625
635
|
const _CEOIGRr = "CreateEgressOnlyInternetGatewayResult";
|
|
@@ -859,9 +869,16 @@ const _CRA = "CapacityReservationArn";
|
|
|
859
869
|
const _CRBR = "CapacityReservationBillingRequest";
|
|
860
870
|
const _CRBRS = "CapacityReservationBillingRequestSet";
|
|
861
871
|
const _CRBRa = "CapacityReservationBillingRequests";
|
|
872
|
+
const _CRC = "CapacityReservationConfiguration";
|
|
862
873
|
const _CRCC = "ClientRootCertificateChain";
|
|
863
874
|
const _CRCCA = "ClientRootCertificateChainArn";
|
|
864
875
|
const _CRCI = "CapacityReservationCommitmentInfo";
|
|
876
|
+
const _CRCQ = "CapacityReservationCancellationQuote";
|
|
877
|
+
const _CRCQI = "CapacityReservationCancellationQuoteId";
|
|
878
|
+
const _CRCQIS = "CapacityReservationCancellationQuoteIdSet";
|
|
879
|
+
const _CRCQIa = "CapacityReservationCancellationQuoteIds";
|
|
880
|
+
const _CRCQRS = "CapacityReservationCancellationQuoteResponseSet";
|
|
881
|
+
const _CRCQa = "CapacityReservationCancellationQuotes";
|
|
865
882
|
const _CREO = "ClientRouteEnforcementOptions";
|
|
866
883
|
const _CRERO = "ClientRouteEnforcementResponseOptions";
|
|
867
884
|
const _CRF = "CapacityReservationFleet";
|
|
@@ -1046,6 +1063,9 @@ const _CTR = "CreateTagsRequest";
|
|
|
1046
1063
|
const _CTS = "ConnectionTrackingSpecification";
|
|
1047
1064
|
const _CTSR = "ConnectionTrackingSpecificationRequest";
|
|
1048
1065
|
const _CTSRo = "ConnectionTrackingSpecificationResponse";
|
|
1066
|
+
const _CTSa = "CancellationTermsSet";
|
|
1067
|
+
const _CTa = "CancellationTerms";
|
|
1068
|
+
const _CTan = "CancellationType";
|
|
1049
1069
|
const _CTo = "ConversionTask";
|
|
1050
1070
|
const _CTom = "CompleteTime";
|
|
1051
1071
|
const _CTomp = "CompletionTime";
|
|
@@ -1281,6 +1301,9 @@ const _DCRBORi = "DisassociateCapacityReservationBillingOwnerResult";
|
|
|
1281
1301
|
const _DCRBR = "DescribeCapacityReservationBillingRequests";
|
|
1282
1302
|
const _DCRBRR = "DescribeCapacityReservationBillingRequestsRequest";
|
|
1283
1303
|
const _DCRBRRe = "DescribeCapacityReservationBillingRequestsResult";
|
|
1304
|
+
const _DCRCQ = "DescribeCapacityReservationCancellationQuotes";
|
|
1305
|
+
const _DCRCQR = "DescribeCapacityReservationCancellationQuotesRequest";
|
|
1306
|
+
const _DCRCQRe = "DescribeCapacityReservationCancellationQuotesResult";
|
|
1284
1307
|
const _DCRF = "DescribeCapacityReservationFleets";
|
|
1285
1308
|
const _DCRFR = "DescribeCapacityReservationFleetsRequest";
|
|
1286
1309
|
const _DCRFRe = "DescribeCapacityReservationFleetsResult";
|
|
@@ -1632,6 +1655,9 @@ const _DIURRes = "DescribeImageUsageReportsRequest";
|
|
|
1632
1655
|
const _DIURResc = "DescribeImageUsageReportsResult";
|
|
1633
1656
|
const _DIURe = "DescribeImageUsageReports";
|
|
1634
1657
|
const _DIVD = "DiskImageVolumeDescription";
|
|
1658
|
+
const _DIW = "DetachImageWatermark";
|
|
1659
|
+
const _DIWR = "DetachImageWatermarkRequest";
|
|
1660
|
+
const _DIWRe = "DetachImageWatermarkResult";
|
|
1635
1661
|
const _DIe = "DestinationIp";
|
|
1636
1662
|
const _DIel = "DeleteIpam";
|
|
1637
1663
|
const _DIer = "DeregisterImage";
|
|
@@ -3493,6 +3519,9 @@ const _IVRm = "ImportVolumeResult";
|
|
|
3493
3519
|
const _IVTD = "ImportVolumeTaskDetails";
|
|
3494
3520
|
const _IVk = "IkeVersions";
|
|
3495
3521
|
const _IVm = "ImportVolume";
|
|
3522
|
+
const _IW = "ImageWatermarks";
|
|
3523
|
+
const _IWL = "ImageWatermarkList";
|
|
3524
|
+
const _IWm = "ImageWatermark";
|
|
3496
3525
|
const _Ic = "Icmp";
|
|
3497
3526
|
const _Im = "Images";
|
|
3498
3527
|
const _Ima = "Image";
|
|
@@ -4650,6 +4679,8 @@ const _Prov = "Provisioned";
|
|
|
4650
4679
|
const _Pu = "Public";
|
|
4651
4680
|
const _Pur = "Purchase";
|
|
4652
4681
|
const _Q = "Quantity";
|
|
4682
|
+
const _QI = "QuoteId";
|
|
4683
|
+
const _QS = "QuoteState";
|
|
4653
4684
|
const _R = "Return";
|
|
4654
4685
|
const _RA = "RuleAction";
|
|
4655
4686
|
const _RAA = "ResetAddressAttribute";
|
|
@@ -5204,6 +5235,7 @@ const _SICRu = "SubnetIpv6CidrReservations";
|
|
|
5204
5235
|
const _SICS = "SuccessfulInstanceCreditSpecifications";
|
|
5205
5236
|
const _SICSI = "SuccessfulInstanceCreditSpecificationItem";
|
|
5206
5237
|
const _SICSS = "SuccessfulInstanceCreditSpecificationSet";
|
|
5238
|
+
const _SICT = "SourceImageCreationTime";
|
|
5207
5239
|
const _SIE = "ScheduledInstancesEbs";
|
|
5208
5240
|
const _SIGB = "SizeInGB";
|
|
5209
5241
|
const _SII = "SourceImageId";
|
|
@@ -5509,6 +5541,12 @@ const _TET = "TcpEstablishedTimeout";
|
|
|
5509
5541
|
const _TEo = "TokenEndpoint";
|
|
5510
5542
|
const _TFC = "TotalFulfilledCapacity";
|
|
5511
5543
|
const _TFMIMB = "TotalFpgaMemoryInMiB";
|
|
5544
|
+
const _TFS = "TagFieldSpecifications";
|
|
5545
|
+
const _TFSLR = "TagFieldSpecificationListRequest";
|
|
5546
|
+
const _TFSLRa = "TagFieldSpecificationListResponse";
|
|
5547
|
+
const _TFSR = "TagFieldSpecificationRequest";
|
|
5548
|
+
const _TFSRa = "TagFieldSpecificationResponse";
|
|
5549
|
+
const _TFSa = "TagFieldSpecification";
|
|
5512
5550
|
const _TG = "TransitGateway";
|
|
5513
5551
|
const _TGA = "TransitGatewayAddress";
|
|
5514
5552
|
const _TGAA = "TransitGatewayAttachmentAssociation";
|
|
@@ -5653,6 +5691,8 @@ const _TIar = "TargetIops";
|
|
|
5653
5691
|
const _TIe = "TenantId";
|
|
5654
5692
|
const _TIer = "TerminatingInstances";
|
|
5655
5693
|
const _TK = "TagKey";
|
|
5694
|
+
const _TKL = "TagKeyList";
|
|
5695
|
+
const _TKa = "TagKeys";
|
|
5656
5696
|
const _TL = "TagList";
|
|
5657
5697
|
const _TLSGB = "TotalLocalStorageGB";
|
|
5658
5698
|
const _TLSGBR = "TotalLocalStorageGBRequest";
|
|
@@ -6075,9 +6115,12 @@ const _WBC = "WithdrawByoipCidr";
|
|
|
6075
6115
|
const _WBCR = "WithdrawByoipCidrRequest";
|
|
6076
6116
|
const _WBCRi = "WithdrawByoipCidrResult";
|
|
6077
6117
|
const _WC = "WithCooldown";
|
|
6118
|
+
const _WCT = "WatermarkCreationTime";
|
|
6078
6119
|
const _WCe = "WeightedCapacity";
|
|
6120
|
+
const _WK = "WatermarkKey";
|
|
6079
6121
|
const _WL = "WorkloadsList";
|
|
6080
6122
|
const _WM = "WarningMessage";
|
|
6123
|
+
const _WN = "WatermarkName";
|
|
6081
6124
|
const _WU = "WakeUp";
|
|
6082
6125
|
const _We = "Weight";
|
|
6083
6126
|
const _Wo = "Workloads";
|
|
@@ -6320,12 +6363,14 @@ const _cBSid = "cidrBlockSet";
|
|
|
6320
6363
|
const _cBr = "createdBy";
|
|
6321
6364
|
const _cC = "currencyCode";
|
|
6322
6365
|
const _cCB = "clientCidrBlock";
|
|
6366
|
+
const _cCDH = "chargeCommitmentDurationHours";
|
|
6323
6367
|
const _cCO = "clientConnectOptions";
|
|
6324
6368
|
const _cCRFE = "cancelCapacityReservationFleetError";
|
|
6325
6369
|
const _cCl = "clientConfiguration";
|
|
6326
6370
|
const _cCo = "coreCount";
|
|
6327
6371
|
const _cCoi = "coipCidr";
|
|
6328
6372
|
const _cCp = "cpuCredits";
|
|
6373
|
+
const _cCu = "currentConfiguration";
|
|
6329
6374
|
const _cD = "createDate";
|
|
6330
6375
|
const _cDC = "creationDateCondition";
|
|
6331
6376
|
const _cDM = "completionDurationMinutes";
|
|
@@ -6333,7 +6378,8 @@ const _cDr = "creationDate";
|
|
|
6333
6378
|
const _cDre = "createdDate";
|
|
6334
6379
|
const _cE = "connectionEvents";
|
|
6335
6380
|
const _cECSD = "cidrEndpointsCustomSubDomain";
|
|
6336
|
-
const _cED = "
|
|
6381
|
+
const _cED = "chargeEndDate";
|
|
6382
|
+
const _cEDo = "commitmentEndDate";
|
|
6337
6383
|
const _cET = "connectionEstablishedTime";
|
|
6338
6384
|
const _cETo = "connectionEndTime";
|
|
6339
6385
|
const _cEr = "cronExpression";
|
|
@@ -6399,6 +6445,9 @@ const _cR = "capacityReservation";
|
|
|
6399
6445
|
const _cRA = "capacityReservationArn";
|
|
6400
6446
|
const _cRBRS = "capacityReservationBillingRequestSet";
|
|
6401
6447
|
const _cRCC = "clientRootCertificateChain";
|
|
6448
|
+
const _cRCQ = "capacityReservationCancellationQuote";
|
|
6449
|
+
const _cRCQI = "capacityReservationCancellationQuoteId";
|
|
6450
|
+
const _cRCQS = "capacityReservationCancellationQuoteSet";
|
|
6402
6451
|
const _cREO = "clientRouteEnforcementOptions";
|
|
6403
6452
|
const _cRFA = "capacityReservationFleetArn";
|
|
6404
6453
|
const _cRFI = "capacityReservationFleetId";
|
|
@@ -6432,7 +6481,9 @@ const _cSur = "currentStatus";
|
|
|
6432
6481
|
const _cT = "clientToken";
|
|
6433
6482
|
const _cTC = "connectionTrackingConfiguration";
|
|
6434
6483
|
const _cTI = "conversionTaskId";
|
|
6435
|
-
const _cTS = "
|
|
6484
|
+
const _cTS = "cancellationTermSet";
|
|
6485
|
+
const _cTSo = "connectionTrackingSpecification";
|
|
6486
|
+
const _cTa = "cancellationType";
|
|
6436
6487
|
const _cTo = "conversionTasks";
|
|
6437
6488
|
const _cTom = "completeTime";
|
|
6438
6489
|
const _cTomp = "completionTime";
|
|
@@ -7004,6 +7055,7 @@ const _iV = "ikeVersion";
|
|
|
7004
7055
|
const _iVE = "isValidExchange";
|
|
7005
7056
|
const _iVS = "ikeVersionSet";
|
|
7006
7057
|
const _iVm = "importVolume";
|
|
7058
|
+
const _iWS = "imageWatermarkSet";
|
|
7007
7059
|
const _im = "image";
|
|
7008
7060
|
const _in = "instance";
|
|
7009
7061
|
const _ins = "instances";
|
|
@@ -7517,6 +7569,7 @@ const _prov = "provisioned";
|
|
|
7517
7569
|
const _pu = "public";
|
|
7518
7570
|
const _pur = "purchase";
|
|
7519
7571
|
const _q = "quantity";
|
|
7572
|
+
const _qS = "quoteState";
|
|
7520
7573
|
const _r = "return";
|
|
7521
7574
|
const _rA = "ruleAction";
|
|
7522
7575
|
const _rAE = "remoteAccessEnabled";
|
|
@@ -7739,6 +7792,7 @@ const _sIATS = "supportedIpAddressTypeSet";
|
|
|
7739
7792
|
const _sICRS = "subnetIpv4CidrReservationSet";
|
|
7740
7793
|
const _sICRSu = "subnetIpv6CidrReservationSet";
|
|
7741
7794
|
const _sICSS = "successfulInstanceCreditSpecificationSet";
|
|
7795
|
+
const _sICT = "sourceImageCreationTime";
|
|
7742
7796
|
const _sIGB = "sizeInGB";
|
|
7743
7797
|
const _sII = "sourceInstanceId";
|
|
7744
7798
|
const _sIIc = "scheduledInstanceId";
|
|
@@ -7901,6 +7955,7 @@ const _tET = "tcpEstablishedTimeout";
|
|
|
7901
7955
|
const _tEo = "tokenEndpoint";
|
|
7902
7956
|
const _tFC = "totalFulfilledCapacity";
|
|
7903
7957
|
const _tFMIMB = "totalFpgaMemoryInMiB";
|
|
7958
|
+
const _tFSS = "tagFieldSpecificationSet";
|
|
7904
7959
|
const _tG = "transitGateway";
|
|
7905
7960
|
const _tGA = "transitGatewayAttachments";
|
|
7906
7961
|
const _tGAI = "transitGatewayAttachmentId";
|
|
@@ -7965,6 +8020,7 @@ const _tIa = "targetId";
|
|
|
7965
8020
|
const _tIar = "targetIops";
|
|
7966
8021
|
const _tIe = "tenantId";
|
|
7967
8022
|
const _tK = "tagKey";
|
|
8023
|
+
const _tKS = "tagKeySet";
|
|
7968
8024
|
const _tLSGB = "totalLocalStorageGB";
|
|
7969
8025
|
const _tLV = "trackLatestVersion";
|
|
7970
8026
|
const _tMAE = "targetMultiAttachEnabled";
|
|
@@ -8159,6 +8215,8 @@ const _vp = "vpc";
|
|
|
8159
8215
|
const _vpc = "vpcs";
|
|
8160
8216
|
const _w = "warning";
|
|
8161
8217
|
const _wC = "weightedCapacity";
|
|
8218
|
+
const _wCT = "watermarkCreationTime";
|
|
8219
|
+
const _wK = "watermarkKey";
|
|
8162
8220
|
const _wM = "warningMessage";
|
|
8163
8221
|
const _wS = "workloadSet";
|
|
8164
8222
|
const _we = "weight";
|
|
@@ -8944,6 +9002,17 @@ export var AttachClassicLinkVpcResult$ = [3, n0, _ACLVRt,
|
|
|
8944
9002
|
[[2, { [_eQN]: `Return`,
|
|
8945
9003
|
[_xN]: _r }]]
|
|
8946
9004
|
];
|
|
9005
|
+
export var AttachImageWatermarkRequest$ = [3, n0, _AIWR,
|
|
9006
|
+
0,
|
|
9007
|
+
[_IIm, _WN, _DR],
|
|
9008
|
+
[0, 0, 2], 2
|
|
9009
|
+
];
|
|
9010
|
+
export var AttachImageWatermarkResult$ = [3, n0, _AIWRt,
|
|
9011
|
+
0,
|
|
9012
|
+
[_WK],
|
|
9013
|
+
[[0, { [_eQN]: `WatermarkKey`,
|
|
9014
|
+
[_xN]: _wK }]]
|
|
9015
|
+
];
|
|
8947
9016
|
export var AttachInternetGatewayRequest$ = [3, n0, _AIGR,
|
|
8948
9017
|
0,
|
|
8949
9018
|
[_IGI, _VI, _DR],
|
|
@@ -9277,8 +9346,8 @@ export var CancelCapacityReservationFleetsResult$ = [3, n0, _CCRFRa,
|
|
|
9277
9346
|
];
|
|
9278
9347
|
export var CancelCapacityReservationRequest$ = [3, n0, _CCRR,
|
|
9279
9348
|
0,
|
|
9280
|
-
[_CRI, _DR],
|
|
9281
|
-
[0, 2], 1
|
|
9349
|
+
[_CRI, _DR, _ACC, _QI],
|
|
9350
|
+
[0, 2, 0, 0], 1
|
|
9282
9351
|
];
|
|
9283
9352
|
export var CancelCapacityReservationResult$ = [3, n0, _CCRRa,
|
|
9284
9353
|
0,
|
|
@@ -9335,6 +9404,16 @@ export var CancelImportTaskResult$ = [3, n0, _CITRa,
|
|
|
9335
9404
|
[_xN]: _pSr }], [0, { [_eQN]: `State`,
|
|
9336
9405
|
[_xN]: _st }]]
|
|
9337
9406
|
];
|
|
9407
|
+
export var CancellationTerms$ = [3, n0, _CTa,
|
|
9408
|
+
0,
|
|
9409
|
+
[_CTan, _RSe, _CIC, _CCDH, _CED],
|
|
9410
|
+
[[0, { [_eQN]: `CancellationType`,
|
|
9411
|
+
[_xN]: _cTa }], [0, { [_eQN]: `ReservationState`,
|
|
9412
|
+
[_xN]: _rS }], [1, { [_eQN]: `CommittedInstanceCount`,
|
|
9413
|
+
[_xN]: _cIC }], [1, { [_eQN]: `ChargeCommitmentDurationHours`,
|
|
9414
|
+
[_xN]: _cCDH }], [4, { [_eQN]: `ChargeEndDate`,
|
|
9415
|
+
[_xN]: _cED }]]
|
|
9416
|
+
];
|
|
9338
9417
|
export var CancelledSpotInstanceRequest$ = [3, n0, _CSIR,
|
|
9339
9418
|
0,
|
|
9340
9419
|
[_SIRI, _St],
|
|
@@ -9610,12 +9689,32 @@ export var CapacityReservationBillingRequest$ = [3, n0, _CRBR,
|
|
|
9610
9689
|
[_xN]: _sMt }], [() => CapacityReservationInfo$, { [_eQN]: `CapacityReservationInfo`,
|
|
9611
9690
|
[_xN]: _cRIa }]]
|
|
9612
9691
|
];
|
|
9692
|
+
export var CapacityReservationCancellationQuote$ = [3, n0, _CRCQ,
|
|
9693
|
+
0,
|
|
9694
|
+
[_CRCQI, _CRI, _CTr, _ET, _QS, _CCu, _CTa, _T],
|
|
9695
|
+
[[0, { [_eQN]: `CapacityReservationCancellationQuoteId`,
|
|
9696
|
+
[_xN]: _cRCQI }], [0, { [_eQN]: `CapacityReservationId`,
|
|
9697
|
+
[_xN]: _cRI }], [4, { [_eQN]: `CreateTime`,
|
|
9698
|
+
[_xN]: _cTr }], [4, { [_eQN]: `ExpirationTime`,
|
|
9699
|
+
[_xN]: _eT }], [0, { [_eQN]: `QuoteState`,
|
|
9700
|
+
[_xN]: _qS }], [() => CapacityReservationConfiguration$, { [_eQN]: `CurrentConfiguration`,
|
|
9701
|
+
[_xN]: _cCu }], [() => CancellationTermsSet, { [_eQN]: `CancellationTermSet`,
|
|
9702
|
+
[_xN]: _cTS }], [() => TagList, { [_eQN]: `TagSet`,
|
|
9703
|
+
[_xN]: _tS }]]
|
|
9704
|
+
];
|
|
9613
9705
|
export var CapacityReservationCommitmentInfo$ = [3, n0, _CRCI,
|
|
9614
9706
|
0,
|
|
9615
|
-
[_CIC,
|
|
9707
|
+
[_CIC, _CEDo],
|
|
9616
9708
|
[[1, { [_eQN]: `CommittedInstanceCount`,
|
|
9617
9709
|
[_xN]: _cIC }], [4, { [_eQN]: `CommitmentEndDate`,
|
|
9618
|
-
[_xN]:
|
|
9710
|
+
[_xN]: _cEDo }]]
|
|
9711
|
+
];
|
|
9712
|
+
export var CapacityReservationConfiguration$ = [3, n0, _CRC,
|
|
9713
|
+
0,
|
|
9714
|
+
[_IC, _RSe],
|
|
9715
|
+
[[1, { [_eQN]: `InstanceCount`,
|
|
9716
|
+
[_xN]: _iC }], [0, { [_eQN]: `ReservationState`,
|
|
9717
|
+
[_xN]: _rS }]]
|
|
9619
9718
|
];
|
|
9620
9719
|
export var CapacityReservationFleet$ = [3, n0, _CRF,
|
|
9621
9720
|
0,
|
|
@@ -10160,10 +10259,21 @@ export var CreateCapacityReservationBySplittingResult$ = [3, n0, _CCRBSRr,
|
|
|
10160
10259
|
[_xN]: _dCR }], [1, { [_eQN]: `InstanceCount`,
|
|
10161
10260
|
[_xN]: _iC }]]
|
|
10162
10261
|
];
|
|
10262
|
+
export var CreateCapacityReservationCancellationQuoteRequest$ = [3, n0, _CCRCQR,
|
|
10263
|
+
0,
|
|
10264
|
+
[_CRI, _CT, _TS, _DR],
|
|
10265
|
+
[0, [0, 4], [() => TagSpecificationList, { [_xN]: _TSa }], 2], 1
|
|
10266
|
+
];
|
|
10267
|
+
export var CreateCapacityReservationCancellationQuoteResult$ = [3, n0, _CCRCQRr,
|
|
10268
|
+
0,
|
|
10269
|
+
[_CRCQ],
|
|
10270
|
+
[[() => CapacityReservationCancellationQuote$, { [_eQN]: `CapacityReservationCancellationQuote`,
|
|
10271
|
+
[_xN]: _cRCQ }]]
|
|
10272
|
+
];
|
|
10163
10273
|
export var CreateCapacityReservationFleetRequest$ = [3, n0, _CCRFRr,
|
|
10164
10274
|
0,
|
|
10165
|
-
[
|
|
10166
|
-
[[() => ReservationFleetInstanceSpecificationList, { [_xN]: _ITSn }],
|
|
10275
|
+
[_TTC, _ASl, _CT, _ITS, _Te, _ED, _IMC, _TS, _DR],
|
|
10276
|
+
[1, 0, [0, 4], [() => ReservationFleetInstanceSpecificationList, { [_xN]: _ITSn }], 0, 4, 0, [() => TagSpecificationList, { [_xN]: _TSa }], 2], 1
|
|
10167
10277
|
];
|
|
10168
10278
|
export var CreateCapacityReservationFleetResult$ = [3, n0, _CCRFRre,
|
|
10169
10279
|
0,
|
|
@@ -10353,8 +10463,8 @@ export var CreateFleetResult$ = [3, n0, _CFRr,
|
|
|
10353
10463
|
];
|
|
10354
10464
|
export var CreateFlowLogsRequest$ = [3, n0, _CFLR,
|
|
10355
10465
|
0,
|
|
10356
|
-
[_RIes, _RTe, _DR, _CT, _DLPA, _DCAR, _LGN, _TT, _LDTo, _LD, _LF, _TS, _MAI, _DOe],
|
|
10357
|
-
[[() => FlowLogResourceIds, { [_xN]: _RIeso }], 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, [() => TagSpecificationList, { [_xN]: _TSa }], 1, () => DestinationOptionsRequest
|
|
10466
|
+
[_RIes, _RTe, _DR, _CT, _DLPA, _DCAR, _LGN, _TT, _LDTo, _LD, _LF, _TS, _MAI, _DOe, _TFS],
|
|
10467
|
+
[[() => FlowLogResourceIds, { [_xN]: _RIeso }], 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, [() => TagSpecificationList, { [_xN]: _TSa }], 1, () => DestinationOptionsRequest$, [() => TagFieldSpecificationListRequest, { [_xN]: _TFSa }]], 2
|
|
10358
10468
|
];
|
|
10359
10469
|
export var CreateFlowLogsResult$ = [3, n0, _CFLRr,
|
|
10360
10470
|
0,
|
|
@@ -12832,6 +12942,18 @@ export var DescribeCapacityReservationBillingRequestsResult$ = [3, n0, _DCRBRRe,
|
|
|
12832
12942
|
[_xN]: _nTe }], [() => CapacityReservationBillingRequestSet, { [_eQN]: `CapacityReservationBillingRequestSet`,
|
|
12833
12943
|
[_xN]: _cRBRS }]]
|
|
12834
12944
|
];
|
|
12945
|
+
export var DescribeCapacityReservationCancellationQuotesRequest$ = [3, n0, _DCRCQR,
|
|
12946
|
+
0,
|
|
12947
|
+
[_CRCQIa, _MR, _NTe, _DR, _Fi],
|
|
12948
|
+
[[() => CapacityReservationCancellationQuoteIdSet, { [_xN]: _CRCQI }], 1, 0, 2, [() => FilterList, { [_xN]: _Fil }]]
|
|
12949
|
+
];
|
|
12950
|
+
export var DescribeCapacityReservationCancellationQuotesResult$ = [3, n0, _DCRCQRe,
|
|
12951
|
+
0,
|
|
12952
|
+
[_CRCQa, _NTe],
|
|
12953
|
+
[[() => CapacityReservationCancellationQuoteResponseSet, { [_eQN]: `CapacityReservationCancellationQuoteSet`,
|
|
12954
|
+
[_xN]: _cRCQS }], [0, { [_eQN]: `NextToken`,
|
|
12955
|
+
[_xN]: _nTe }]]
|
|
12956
|
+
];
|
|
12835
12957
|
export var DescribeCapacityReservationFleetsRequest$ = [3, n0, _DCRFR,
|
|
12836
12958
|
0,
|
|
12837
12959
|
[_CRFI, _NTe, _MR, _Fi, _DR],
|
|
@@ -15029,6 +15151,17 @@ export var DetachClassicLinkVpcResult$ = [3, n0, _DCLVRe,
|
|
|
15029
15151
|
[[2, { [_eQN]: `Return`,
|
|
15030
15152
|
[_xN]: _r }]]
|
|
15031
15153
|
];
|
|
15154
|
+
export var DetachImageWatermarkRequest$ = [3, n0, _DIWR,
|
|
15155
|
+
0,
|
|
15156
|
+
[_IIm, _WK, _DR],
|
|
15157
|
+
[0, 0, 2], 2
|
|
15158
|
+
];
|
|
15159
|
+
export var DetachImageWatermarkResult$ = [3, n0, _DIWRe,
|
|
15160
|
+
0,
|
|
15161
|
+
[_R],
|
|
15162
|
+
[[2, { [_eQN]: `Return`,
|
|
15163
|
+
[_xN]: _r }]]
|
|
15164
|
+
];
|
|
15032
15165
|
export var DetachInternetGatewayRequest$ = [3, n0, _DIGRet,
|
|
15033
15166
|
0,
|
|
15034
15167
|
[_IGI, _VI, _DR],
|
|
@@ -16573,7 +16706,7 @@ export var FleetSpotMaintenanceStrategiesRequest$ = [3, n0, _FSMSR,
|
|
|
16573
16706
|
];
|
|
16574
16707
|
export var FlowLog$ = [3, n0, _FLl,
|
|
16575
16708
|
0,
|
|
16576
|
-
[_CTre, _DLEM, _DLPA, _DCAR, _DLS, _FLIl, _FLS, _LGN, _RIeso, _TT, _LDTo, _LD, _LF, _T, _MAI, _DOe],
|
|
16709
|
+
[_CTre, _DLEM, _DLPA, _DCAR, _DLS, _FLIl, _FLS, _LGN, _RIeso, _TT, _LDTo, _LD, _LF, _T, _MAI, _DOe, _TFS],
|
|
16577
16710
|
[[4, { [_eQN]: `CreationTime`,
|
|
16578
16711
|
[_xN]: _cTre }], [0, { [_eQN]: `DeliverLogsErrorMessage`,
|
|
16579
16712
|
[_xN]: _dLEM }], [0, { [_eQN]: `DeliverLogsPermissionArn`,
|
|
@@ -16590,7 +16723,8 @@ export var FlowLog$ = [3, n0, _FLl,
|
|
|
16590
16723
|
[_xN]: _lF }], [() => TagList, { [_eQN]: `TagSet`,
|
|
16591
16724
|
[_xN]: _tS }], [1, { [_eQN]: `MaxAggregationInterval`,
|
|
16592
16725
|
[_xN]: _mAI }], [() => DestinationOptionsResponse$, { [_eQN]: `DestinationOptions`,
|
|
16593
|
-
[_xN]: _dOe }]]
|
|
16726
|
+
[_xN]: _dOe }], [() => TagFieldSpecificationListResponse, { [_eQN]: `TagFieldSpecificationSet`,
|
|
16727
|
+
[_xN]: _tFSS }]]
|
|
16594
16728
|
];
|
|
16595
16729
|
export var FpgaDeviceInfo$ = [3, n0, _FDI,
|
|
16596
16730
|
0,
|
|
@@ -17711,7 +17845,7 @@ export var IKEVersionsRequestListValue$ = [3, n0, _IKEVRLV,
|
|
|
17711
17845
|
];
|
|
17712
17846
|
export var Image$ = [3, n0, _Ima,
|
|
17713
17847
|
0,
|
|
17714
|
-
[_PDl, _UO, _BDMl, _De, _ESna, _Hy, _IOA, _N, _RDN, _RDT, _SNS, _SRt, _T, _VTir, _BM, _TSp, _DTe, _ISmd, _SIIo, _DPer, _LLT, _IAm, _SII, _SIRo, _FTE, _IIm, _IL, _St, _OI, _CDr, _Pu, _PCro, _Arc, _ITm, _KI, _RIa, _Pl],
|
|
17848
|
+
[_PDl, _UO, _BDMl, _De, _ESna, _Hy, _IOA, _N, _RDN, _RDT, _SNS, _SRt, _T, _VTir, _BM, _TSp, _DTe, _ISmd, _SIIo, _DPer, _LLT, _IAm, _SII, _SIRo, _FTE, _IW, _IIm, _IL, _St, _OI, _CDr, _Pu, _PCro, _Arc, _ITm, _KI, _RIa, _Pl],
|
|
17715
17849
|
[[0, { [_eQN]: `PlatformDetails`,
|
|
17716
17850
|
[_xN]: _pDl }], [0, { [_eQN]: `UsageOperation`,
|
|
17717
17851
|
[_xN]: _uO }], [() => BlockDeviceMappingList, { [_eQN]: `BlockDeviceMapping`,
|
|
@@ -17737,7 +17871,8 @@ export var Image$ = [3, n0, _Ima,
|
|
|
17737
17871
|
[_xN]: _iAm }], [0, { [_eQN]: `SourceImageId`,
|
|
17738
17872
|
[_xN]: _sIIo }], [0, { [_eQN]: `SourceImageRegion`,
|
|
17739
17873
|
[_xN]: _sIR }], [2, { [_eQN]: `FreeTierEligible`,
|
|
17740
|
-
[_xN]: _fTE }], [
|
|
17874
|
+
[_xN]: _fTE }], [() => ImageWatermarkList, { [_eQN]: `ImageWatermarkSet`,
|
|
17875
|
+
[_xN]: _iWS }], [0, { [_eQN]: `ImageId`,
|
|
17741
17876
|
[_xN]: _iIma }], [0, { [_eQN]: `ImageLocation`,
|
|
17742
17877
|
[_xN]: _iL }], [0, { [_eQN]: `ImageState`,
|
|
17743
17878
|
[_xN]: _iSma }], [0, { [_eQN]: `ImageOwnerId`,
|
|
@@ -17802,7 +17937,7 @@ export var ImageDiskContainer$ = [3, n0, _IDC,
|
|
|
17802
17937
|
];
|
|
17803
17938
|
export var ImageMetadata$ = [3, n0, _IMm,
|
|
17804
17939
|
0,
|
|
17805
|
-
[_IIm, _N, _OI, _St, _IOA, _CDr, _DTe, _IAm, _IPs],
|
|
17940
|
+
[_IIm, _N, _OI, _St, _IOA, _CDr, _DTe, _IAm, _IPs, _IW],
|
|
17806
17941
|
[[0, { [_eQN]: `ImageId`,
|
|
17807
17942
|
[_xN]: _iIma }], [0, { [_eQN]: `Name`,
|
|
17808
17943
|
[_xN]: _n }], [0, { [_eQN]: `ImageOwnerId`,
|
|
@@ -17812,7 +17947,8 @@ export var ImageMetadata$ = [3, n0, _IMm,
|
|
|
17812
17947
|
[_xN]: _cDr }], [0, { [_eQN]: `DeprecationTime`,
|
|
17813
17948
|
[_xN]: _dTe }], [2, { [_eQN]: `ImageAllowed`,
|
|
17814
17949
|
[_xN]: _iAm }], [2, { [_eQN]: `IsPublic`,
|
|
17815
|
-
[_xN]: _iPs }]]
|
|
17950
|
+
[_xN]: _iPs }], [() => ImageWatermarkList, { [_eQN]: `ImageWatermarkSet`,
|
|
17951
|
+
[_xN]: _iWS }]]
|
|
17816
17952
|
];
|
|
17817
17953
|
export var ImageRecycleBinInfo$ = [3, n0, _IRBI,
|
|
17818
17954
|
0,
|
|
@@ -17881,6 +18017,16 @@ export var ImageUsageResourceTypeRequest$ = [3, n0, _IURTR,
|
|
|
17881
18017
|
[_RTe, _RTO],
|
|
17882
18018
|
[0, [() => ImageUsageResourceTypeOptionRequestList, { [_xN]: _RTOe }]]
|
|
17883
18019
|
];
|
|
18020
|
+
export var ImageWatermark$ = [3, n0, _IWm,
|
|
18021
|
+
0,
|
|
18022
|
+
[_WK, _SIRo, _SII, _SICT, _WCT],
|
|
18023
|
+
[[0, { [_eQN]: `WatermarkKey`,
|
|
18024
|
+
[_xN]: _wK }], [0, { [_eQN]: `SourceImageRegion`,
|
|
18025
|
+
[_xN]: _sIR }], [0, { [_eQN]: `SourceImageId`,
|
|
18026
|
+
[_xN]: _sIIo }], [4, { [_eQN]: `SourceImageCreationTime`,
|
|
18027
|
+
[_xN]: _sICT }], [4, { [_eQN]: `WatermarkCreationTime`,
|
|
18028
|
+
[_xN]: _wCT }]]
|
|
18029
|
+
];
|
|
17884
18030
|
export var ImportClientVpnClientCertificateRevocationListRequest$ = [3, n0, _ICVCCRLR,
|
|
17885
18031
|
0,
|
|
17886
18032
|
[_CVEI, _CRL, _DR],
|
|
@@ -19546,7 +19692,7 @@ export var LaunchTemplateInstanceNetworkInterfaceSpecification$ = [3, n0, _LTINI
|
|
|
19546
19692
|
[_xN]: _iPCpv }], [2, { [_eQN]: `PrimaryIpv6`,
|
|
19547
19693
|
[_xN]: _pIri }], [() => LaunchTemplateEnaSrdSpecification$, { [_eQN]: `EnaSrdSpecification`,
|
|
19548
19694
|
[_xN]: _eSS }], [() => ConnectionTrackingSpecification$, { [_eQN]: `ConnectionTrackingSpecification`,
|
|
19549
|
-
[_xN]:
|
|
19695
|
+
[_xN]: _cTSo }], [1, { [_eQN]: `EnaQueueCount`,
|
|
19550
19696
|
[_xN]: _eQC }]]
|
|
19551
19697
|
];
|
|
19552
19698
|
export var LaunchTemplateInstanceNetworkInterfaceSpecificationRequest$ = [3, n0, _LTINISR,
|
|
@@ -24018,6 +24164,18 @@ export var TagDescription$ = [3, n0, _TDa,
|
|
|
24018
24164
|
[_xN]: _rTe }], [0, { [_eQN]: `Value`,
|
|
24019
24165
|
[_xN]: _v }]]
|
|
24020
24166
|
];
|
|
24167
|
+
export var TagFieldSpecificationRequest$ = [3, n0, _TFSR,
|
|
24168
|
+
0,
|
|
24169
|
+
[_RTe, _TKa],
|
|
24170
|
+
[0, [() => TagKeyList, { [_xN]: _TK }]]
|
|
24171
|
+
];
|
|
24172
|
+
export var TagFieldSpecificationResponse$ = [3, n0, _TFSRa,
|
|
24173
|
+
0,
|
|
24174
|
+
[_RTe, _TKa],
|
|
24175
|
+
[[0, { [_eQN]: `ResourceType`,
|
|
24176
|
+
[_xN]: _rTe }], [() => TagKeyList, { [_eQN]: `TagKeySet`,
|
|
24177
|
+
[_xN]: _tKS }]]
|
|
24178
|
+
];
|
|
24021
24179
|
export var TagSpecification$ = [3, n0, _TSa,
|
|
24022
24180
|
0,
|
|
24023
24181
|
[_RTe, _T],
|
|
@@ -25252,7 +25410,7 @@ export var VolumeDetail$ = [3, n0, _VDo,
|
|
|
25252
25410
|
];
|
|
25253
25411
|
export var VolumeModification$ = [3, n0, _VMo,
|
|
25254
25412
|
0,
|
|
25255
|
-
[_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd
|
|
25413
|
+
[_VIo, _MSod, _SMt, _TSarg, _TIar, _TVT, _TTar, _TMAE, _OSr, _OIr, _OVT, _OTri, _OMAE, _Pro, _ST, _ETnd],
|
|
25256
25414
|
[[0, { [_eQN]: `VolumeId`,
|
|
25257
25415
|
[_xN]: _vIo }], [0, { [_eQN]: `ModificationState`,
|
|
25258
25416
|
[_xN]: _mSod }], [0, { [_eQN]: `StatusMessage`,
|
|
@@ -25269,8 +25427,7 @@ export var VolumeModification$ = [3, n0, _VMo,
|
|
|
25269
25427
|
[_xN]: _oMAE }], [1, { [_eQN]: `Progress`,
|
|
25270
25428
|
[_xN]: _pro }], [4, { [_eQN]: `StartTime`,
|
|
25271
25429
|
[_xN]: _sT }], [4, { [_eQN]: `EndTime`,
|
|
25272
|
-
[_xN]: _eTn }]
|
|
25273
|
-
[_xN]: _ope }]]
|
|
25430
|
+
[_xN]: _eTn }]]
|
|
25274
25431
|
];
|
|
25275
25432
|
export var VolumeRecycleBinInfo$ = [3, n0, _VRBI,
|
|
25276
25433
|
0,
|
|
@@ -25912,6 +26069,10 @@ var ByoipCidrSet = [1, n0, _BCS,
|
|
|
25912
26069
|
0, [() => ByoipCidr$,
|
|
25913
26070
|
{ [_xN]: _it }]
|
|
25914
26071
|
];
|
|
26072
|
+
var CancellationTermsSet = [1, n0, _CTSa,
|
|
26073
|
+
0, [() => CancellationTerms$,
|
|
26074
|
+
{ [_xN]: _it }]
|
|
26075
|
+
];
|
|
25915
26076
|
var CancelledSpotInstanceRequestList = [1, n0, _CSIRL,
|
|
25916
26077
|
0, [() => CancelledSpotInstanceRequest$,
|
|
25917
26078
|
{ [_xN]: _it }]
|
|
@@ -25980,6 +26141,14 @@ var CapacityReservationBillingRequestSet = [1, n0, _CRBRS,
|
|
|
25980
26141
|
0, [() => CapacityReservationBillingRequest$,
|
|
25981
26142
|
{ [_xN]: _it }]
|
|
25982
26143
|
];
|
|
26144
|
+
var CapacityReservationCancellationQuoteIdSet = [1, n0, _CRCQIS,
|
|
26145
|
+
0, [0,
|
|
26146
|
+
{ [_xN]: _it }]
|
|
26147
|
+
];
|
|
26148
|
+
var CapacityReservationCancellationQuoteResponseSet = [1, n0, _CRCQRS,
|
|
26149
|
+
0, [() => CapacityReservationCancellationQuote$,
|
|
26150
|
+
{ [_xN]: _it }]
|
|
26151
|
+
];
|
|
25983
26152
|
var CapacityReservationFleetCancellationStateSet = [1, n0, _CRFCSS,
|
|
25984
26153
|
0, [() => CapacityReservationFleetCancellationState$,
|
|
25985
26154
|
{ [_xN]: _it }]
|
|
@@ -26565,6 +26734,10 @@ var ImageUsageResourceTypeRequestList = [1, n0, _IURTRL,
|
|
|
26565
26734
|
0, [() => ImageUsageResourceTypeRequest$,
|
|
26566
26735
|
0]
|
|
26567
26736
|
];
|
|
26737
|
+
var ImageWatermarkList = [1, n0, _IWL,
|
|
26738
|
+
0, [() => ImageWatermark$,
|
|
26739
|
+
{ [_xN]: _it }]
|
|
26740
|
+
];
|
|
26568
26741
|
var ImportImageLicenseSpecificationListRequest = [1, n0, _IILSLR,
|
|
26569
26742
|
0, [() => ImportImageLicenseConfigurationRequest$,
|
|
26570
26743
|
{ [_xN]: _it }]
|
|
@@ -28042,6 +28215,18 @@ var TagDescriptionList = [1, n0, _TDL,
|
|
|
28042
28215
|
0, [() => TagDescription$,
|
|
28043
28216
|
{ [_xN]: _it }]
|
|
28044
28217
|
];
|
|
28218
|
+
var TagFieldSpecificationListRequest = [1, n0, _TFSLR,
|
|
28219
|
+
0, [() => TagFieldSpecificationRequest$,
|
|
28220
|
+
{ [_xN]: _it }]
|
|
28221
|
+
];
|
|
28222
|
+
var TagFieldSpecificationListResponse = [1, n0, _TFSLRa,
|
|
28223
|
+
0, [() => TagFieldSpecificationResponse$,
|
|
28224
|
+
{ [_xN]: _it }]
|
|
28225
|
+
];
|
|
28226
|
+
var TagKeyList = [1, n0, _TKL,
|
|
28227
|
+
0, [0,
|
|
28228
|
+
{ [_xN]: _it }]
|
|
28229
|
+
];
|
|
28045
28230
|
var TagList = [1, n0, _TL,
|
|
28046
28231
|
0, [() => Tag$,
|
|
28047
28232
|
{ [_xN]: _it }]
|
|
@@ -28672,6 +28857,9 @@ export var AssociateVpcCidrBlock$ = [9, n0, _AVCB,
|
|
|
28672
28857
|
export var AttachClassicLinkVpc$ = [9, n0, _ACLV,
|
|
28673
28858
|
0, () => AttachClassicLinkVpcRequest$, () => AttachClassicLinkVpcResult$
|
|
28674
28859
|
];
|
|
28860
|
+
export var AttachImageWatermark$ = [9, n0, _AIW,
|
|
28861
|
+
0, () => AttachImageWatermarkRequest$, () => AttachImageWatermarkResult$
|
|
28862
|
+
];
|
|
28675
28863
|
export var AttachInternetGateway$ = [9, n0, _AIG,
|
|
28676
28864
|
0, () => AttachInternetGatewayRequest$, () => __Unit
|
|
28677
28865
|
];
|
|
@@ -28756,6 +28944,9 @@ export var CreateCapacityReservation$ = [9, n0, _CCRr,
|
|
|
28756
28944
|
export var CreateCapacityReservationBySplitting$ = [9, n0, _CCRBS,
|
|
28757
28945
|
0, () => CreateCapacityReservationBySplittingRequest$, () => CreateCapacityReservationBySplittingResult$
|
|
28758
28946
|
];
|
|
28947
|
+
export var CreateCapacityReservationCancellationQuote$ = [9, n0, _CCRCQ,
|
|
28948
|
+
0, () => CreateCapacityReservationCancellationQuoteRequest$, () => CreateCapacityReservationCancellationQuoteResult$
|
|
28949
|
+
];
|
|
28759
28950
|
export var CreateCapacityReservationFleet$ = [9, n0, _CCRFr,
|
|
28760
28951
|
0, () => CreateCapacityReservationFleetRequest$, () => CreateCapacityReservationFleetResult$
|
|
28761
28952
|
];
|
|
@@ -29410,6 +29601,9 @@ export var DescribeCapacityManagerDataExports$ = [9, n0, _DCMDEe,
|
|
|
29410
29601
|
export var DescribeCapacityReservationBillingRequests$ = [9, n0, _DCRBR,
|
|
29411
29602
|
0, () => DescribeCapacityReservationBillingRequestsRequest$, () => DescribeCapacityReservationBillingRequestsResult$
|
|
29412
29603
|
];
|
|
29604
|
+
export var DescribeCapacityReservationCancellationQuotes$ = [9, n0, _DCRCQ,
|
|
29605
|
+
0, () => DescribeCapacityReservationCancellationQuotesRequest$, () => DescribeCapacityReservationCancellationQuotesResult$
|
|
29606
|
+
];
|
|
29413
29607
|
export var DescribeCapacityReservationFleets$ = [9, n0, _DCRF,
|
|
29414
29608
|
0, () => DescribeCapacityReservationFleetsRequest$, () => DescribeCapacityReservationFleetsResult$
|
|
29415
29609
|
];
|
|
@@ -29923,6 +30117,9 @@ export var DescribeVpnGateways$ = [9, n0, _DVGe,
|
|
|
29923
30117
|
export var DetachClassicLinkVpc$ = [9, n0, _DCLV,
|
|
29924
30118
|
0, () => DetachClassicLinkVpcRequest$, () => DetachClassicLinkVpcResult$
|
|
29925
30119
|
];
|
|
30120
|
+
export var DetachImageWatermark$ = [9, n0, _DIW,
|
|
30121
|
+
0, () => DetachImageWatermarkRequest$, () => DetachImageWatermarkResult$
|
|
30122
|
+
];
|
|
29926
30123
|
export var DetachInternetGateway$ = [9, n0, _DIGet,
|
|
29927
30124
|
0, () => DetachInternetGatewayRequest$, () => __Unit
|
|
29928
30125
|
];
|