@cdklabs/cdk-ssm-documents 0.0.67 → 0.0.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +11 -11
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws/lambda-invoke-store/README.md +25 -1
- package/node_modules/@aws/lambda-invoke-store/dist-cjs/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-es/invoke-store.js +12 -0
- package/node_modules/@aws/lambda-invoke-store/dist-types/invoke-store.d.ts +6 -0
- package/node_modules/@aws/lambda-invoke-store/package.json +1 -1
- package/node_modules/@aws-sdk/checksums/crc.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/crc.js +5 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +5 -530
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/crc/index.js +159 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/flexible-checksums/index.js +444 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/md5/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-cjs/submodules/sha/index.js +312 -0
- package/node_modules/@aws-sdk/checksums/dist-es/index.js +2 -8
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cJs.js +31 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc32c/Crc32cNode.js +2 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/crc64-nvme/Crc64Nvme.js +18 -0
- package/node_modules/@aws-sdk/checksums/dist-es/{crc64-nvme/Crc64Nvme.js → submodules/crc/crc64-nvme/Crc64NvmeJs.js} +2 -2
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.browser.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/crc/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/flexible-checksums/index.js +6 -0
- package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.js +4 -10
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/md5/index.js +1 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.browser.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/index.js +4 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Js.js +173 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1Node.js +59 -0
- package/node_modules/@aws-sdk/checksums/dist-es/submodules/sha/sha1/Sha1WebCrypto.js +71 -0
- package/node_modules/@aws-sdk/checksums/dist-types/index.d.ts +3 -11
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cJs.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc32c/Crc32cNode.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/{crc64-nvme → submodules/crc/crc64-nvme}/Crc64Nvme.d.ts +3 -6
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/dist-types/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.d.ts +1 -3
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.browser.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/flexible-checksums/index.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.browser.d.ts +3 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Js.d.ts +26 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1Node.d.ts +13 -0
- package/node_modules/@aws-sdk/checksums/dist-types/submodules/sha/sha1/Sha1WebCrypto.d.ts +22 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/index.d.ts +11 -14
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cJs.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc32c/Crc32cNode.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{crc64-nvme → submodules/crc/crc64-nvme}/Crc64Nvme.d.ts +1 -2
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/crc64-nvme/Crc64NvmeJs.d.ts +9 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/crc/index.d.ts +6 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/flexible-checksums/index.d.ts +31 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/md5/index.d.ts +1 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.browser.d.ts +8 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/index.d.ts +4 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Js.d.ts +20 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1Node.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/submodules/sha/sha1/Sha1WebCrypto.d.ts +14 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/flexible-checksums.js +5 -0
- package/node_modules/@aws-sdk/checksums/md5.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/md5.js +5 -0
- package/node_modules/@aws-sdk/checksums/package.json +67 -11
- package/node_modules/@aws-sdk/checksums/sha.d.ts +5 -0
- package/node_modules/@aws-sdk/checksums/sha.js +5 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +3999 -1094
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ActivateTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/BatchDescribeTypeConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CancelUpdateStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ContinueUpdateRollbackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackRefactorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/CreateStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeactivateTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeleteStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DeregisterTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeAccountLimitsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeChangeSetHooksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribePublisherCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeResourceScanCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackDriftDetectionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackRefactorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourceDriftsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStackSetOperationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeStacksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DescribeTypeRegistrationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackDriftCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackResourceDriftCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/DetectStackSetDriftCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/EstimateTemplateCostCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteChangeSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ExecuteStackRefactorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetHookResultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetStackPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/GetTemplateSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ImportStacksToStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListChangeSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListExportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListGeneratedTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListHookResultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListImportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanRelatedResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScanResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListResourceScansCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstanceResourceDriftsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorActionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackRefactorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackResourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationResultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetOperationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStackSetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListStacksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeRegistrationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypeVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ListTypesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/PublishTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RecordHandlerProgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterPublisherCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RegisterTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/RollbackStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetStackPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SetTypeDefaultVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/SignalResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StartResourceScanCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/StopStackSetOperationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/TestTypeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateGeneratedTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateStackSetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/UpdateTerminationProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/commands/ValidateTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/models/enums.js +4 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-es/schemas/schemas_0.js +25 -17
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateOrganizationsAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ActivateTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CancelUpdateStackCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateChangeSetCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackRefactorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/CreateStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateOrganizationsAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeactivateTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteChangeSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeleteStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DeregisterTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeAccountLimitsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeEventsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeOrganizationsAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribePublisherCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeResourceScanCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackEventsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackRefactorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStackSetOperationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeStacksCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackDriftCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackResourceDriftCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/DetectStackSetDriftCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/EstimateTemplateCostCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteChangeSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ExecuteStackRefactorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetHookResultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetStackPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/GetTemplateSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ImportStacksToStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListChangeSetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListExportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListGeneratedTemplatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListHookResultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListImportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanRelatedResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScanResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListResourceScansCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstanceResourceDriftsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorActionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackRefactorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackResourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetOperationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStackSetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListStacksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeRegistrationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypeVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ListTypesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/PublishTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RecordHandlerProgressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterPublisherCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RegisterTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/RollbackStackCommand.d.ts +7 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetStackPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/SignalResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StartResourceScanCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/StopStackSetOperationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/TestTypeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateGeneratedTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateStackSetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/commands/ValidateTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +107 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/schemas/schemas_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateOrganizationsAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ActivateTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/BatchDescribeTypeConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CancelUpdateStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ContinueUpdateRollbackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackRefactorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/CreateStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateOrganizationsAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeactivateTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeleteStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DeregisterTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeChangeSetHooksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeOrganizationsAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribePublisherCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeResourceScanCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackDriftDetectionStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackEventsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackRefactorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourceDriftsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStackSetOperationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeStacksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DescribeTypeRegistrationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackDriftCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackResourceDriftCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/DetectStackSetDriftCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/EstimateTemplateCostCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteChangeSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ExecuteStackRefactorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetHookResultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetStackPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/GetTemplateSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ImportStacksToStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListChangeSetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListExportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListGeneratedTemplatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListHookResultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListImportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanRelatedResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScanResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListResourceScansCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstanceResourceDriftsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorActionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackRefactorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackResourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationResultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetOperationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStackSetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListStacksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeRegistrationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypeVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ListTypesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/PublishTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RecordHandlerProgressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterPublisherCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RegisterTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/RollbackStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetStackPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/StopStackSetOperationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/TestTypeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateGeneratedTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateStackSetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/UpdateTerminationProtectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/commands/ValidateTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -10
- package/node_modules/@aws-sdk/client-cloudwatch/README.md +58 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +2357 -616
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/CloudWatch.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commandBuilder.js +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/AssociateDatasetKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmMuteRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAlarmsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteDashboardsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DeleteMetricStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmContributorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAlarmsForMetricCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeAnomalyDetectorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DescribeInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableAlarmActionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisableInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/DisassociateDatasetKmsKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableAlarmActionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/EnableInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetAlarmMuteRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDashboardCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetDatasetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetInsightRuleReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStatisticsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetMetricWidgetImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/GetOTelEnrichmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListAlarmMuteRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListDashboardsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListManagedInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListMetricsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAlarmMuteRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutAnomalyDetectorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutCompositeAlarmCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutDashboardCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutInsightRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutLogAlarmCommand.js +4 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutManagedInsightRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricAlarmCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricDataCommand.js +2 -20
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/PutMetricStreamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/SetAlarmStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartMetricStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StartOTelEnrichmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopMetricStreamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/StopOTelEnrichmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/commands/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/enums.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/models/errors.js +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/schemas/schemas_0.js +77 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/index.js +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-es/waiters/waitForLogAlarmExists.js +32 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatch.d.ts +64 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/CloudWatchClient.d.ts +54 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commandBuilder.d.ts +22 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/AssociateDatasetKmsKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmMuteRuleCommand.d.ts +10 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAlarmsCommand.d.ts +11 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteAnomalyDetectorCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteDashboardsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DeleteMetricStreamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmContributorsCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmHistoryCommand.d.ts +6 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsCommand.d.ts +57 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAlarmsForMetricCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeAnomalyDetectorsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DescribeInsightRulesCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableAlarmActionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisableInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/DisassociateDatasetKmsKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableAlarmActionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/EnableInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetAlarmMuteRuleCommand.d.ts +14 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDashboardCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetDatasetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetInsightRuleReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricDataCommand.d.ts +6 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStatisticsCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricStreamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetMetricWidgetImageCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/GetOTelEnrichmentCommand.d.ts +5 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListAlarmMuteRulesCommand.d.ts +10 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListDashboardsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListManagedInsightRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricStreamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListMetricsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAlarmMuteRuleCommand.d.ts +27 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutAnomalyDetectorCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutCompositeAlarmCommand.d.ts +9 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutDashboardCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutInsightRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutLogAlarmCommand.d.ts +126 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutManagedInsightRulesCommand.d.ts +7 -12
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricAlarmCommand.d.ts +19 -18
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricDataCommand.d.ts +5 -10
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/PutMetricStreamCommand.d.ts +9 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/SetAlarmStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartMetricStreamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StartOTelEnrichmentCommand.d.ts +10 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopMetricStreamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/StopOTelEnrichmentCommand.d.ts +6 -12
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/index.d.ts +52 -13
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/errors.d.ts +12 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/models/models_0.d.ts +849 -294
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatch.d.ts +26 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/CloudWatchClient.d.ts +6 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commandBuilder.d.ts +52 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/AssociateDatasetKmsKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmMuteRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAlarmsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteAnomalyDetectorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteDashboardsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DeleteMetricStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmContributorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAlarmsForMetricCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeAnomalyDetectorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DescribeInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableAlarmActionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisableInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/DisassociateDatasetKmsKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableAlarmActionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/EnableInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetAlarmMuteRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetDatasetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetInsightRuleReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStatisticsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetMetricWidgetImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/GetOTelEnrichmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListAlarmMuteRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListManagedInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricStreamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListMetricsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAlarmMuteRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutAnomalyDetectorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutCompositeAlarmCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutDashboardCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutInsightRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutLogAlarmCommand.d.ts +38 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutManagedInsightRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricAlarmCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/PutMetricStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/SetAlarmStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartMetricStreamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StartOTelEnrichmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopMetricStreamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/StopOTelEnrichmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/errors.d.ts +5 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/models/models_0.d.ts +92 -4
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/ts3.4/waiters/waitForLogAlarmExists.d.ts +17 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-cloudwatch/dist-types/waiters/waitForLogAlarmExists.d.ts +15 -0
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +10 -12
- package/node_modules/@aws-sdk/client-ec2/README.md +21 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +37010 -9343
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commandBuilder.js +10 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptAddressTransferCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptCapacityReservationBillingOwnershipCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptReservedInstancesExchangeQuoteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayClientVpnAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcEndpointConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AcceptVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AdvertiseByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AllocateIpamPoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignIpv6AddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateIpAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssignPrivateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateCapacityReservationBillingOwnerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateClientVpnTargetNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateEnclaveCertificateIamRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIamInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSecurityGroupVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateSubnetCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateTrunkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AssociateVpcCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachClassicLinkVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachImageWatermarkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AttachVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeClientVpnIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupEgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/AuthorizeSecurityGroupIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/BundleInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelBundleTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelCapacityReservationFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelConversionTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelDeclarativePoliciesReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImageLaunchPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelImportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelReservedInstancesListingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotFleetRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CancelSpotInstanceRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ConfirmProductInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyFpgaImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopySnapshotCommand.js +2 -18
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CopyVolumesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityManagerDataExportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationBySplittingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCancellationQuoteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCapacityReservationFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCarrierGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateClientVpnRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCoipPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateCustomerGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultSubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDefaultVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDelegateMacVolumeOwnershipTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateEgressOnlyInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFlowLogsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateFpgaImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateImageUsageReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceConnectEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInstanceExportTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateInterruptibleCapacityReservationAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamExternalResourceVerificationTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamPrefixListResolverTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateIpamScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateKeyPairCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLaunchTemplateVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateManagedPrefixListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNatGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkAclEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsAccessScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInsightsPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateNetworkInterfacePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePlacementGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreatePublicIpv4PoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReplaceRootVolumeTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateReservedInstancesListingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRestoreImageTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteServerPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondaryNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecondarySubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSecurityGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSnapshotsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSpotDatafeedSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateStoreImageTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCidrReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateSubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorFilterRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTrafficMirrorTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayConnectPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMeteringPolicyEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayPrefixListReferenceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableAnnouncementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcBlockPublicAccessExclusionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEncryptionControlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointConnectionNotificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcEndpointServiceConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConcentratorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnConnectionRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/CreateVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCapacityManagerDataExportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCarrierGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteClientVpnRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCoipPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteCustomerGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteEgressOnlyInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFlowLogsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteFpgaImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteImageUsageReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceConnectEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamExternalResourceVerificationTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamPrefixListResolverTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteIpamScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteKeyPairCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLaunchTemplateVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteManagedPrefixListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNatGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkAclEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAccessScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInsightsPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteNetworkInterfacePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePlacementGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeletePublicIpv4PoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteQueuedReservedInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteServerPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondaryNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecondarySubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSecurityGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSpotDatafeedSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCidrReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteSubnetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorFilterRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTrafficMirrorTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayClientVpnAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayConnectPeerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayPrefixListReferenceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcBlockPublicAccessExclusionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEncryptionControlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointConnectionNotificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointServiceConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConcentratorCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnConnectionRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeleteVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionIpamPoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeprovisionPublicIpv4PoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterInstanceEventNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAccountAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAccountVpcEncryptionControlCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressTransfersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAggregateIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAvailabilityZonesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeBundleTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeByoipCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockExtensionOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlockStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityBlocksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityManagerDataExportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationBillingRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationCancellationQuotesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationTopologyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCapacityReservationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCarrierGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClassicLinkInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnAuthorizationRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeClientVpnTargetNetworksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCoipPoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeConversionTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeCustomerGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDeclarativePoliciesReportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeDhcpOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeEgressOnlyInternetGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeElasticGpusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportImageTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeExportTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastLaunchImagesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFastSnapshotRestoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFleetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFlowLogsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeFpgaImagesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostReservationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIamInstanceProfileAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIdentityIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageReferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImageUsageReportsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImagesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportImageTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeImportSnapshotTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceConnectEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceCreditSpecificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceEventWindowsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceImageMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaHistoryStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceSqlHaStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTopologyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypeOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstanceTypesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeInternetGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamExternalResourceVerificationTokensCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolAllocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolverTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamPrefixListResolversCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamResourceDiscoveryAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamScopesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpamsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeIpv6PoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeKeyPairsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplateVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLaunchTemplatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayRouteTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewayVirtualInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLocalGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeLockedSnapshotsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMacModificationTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeManagedPrefixListsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeMovingAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNatGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkAclsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAccessScopesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsAnalysesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInsightsPathsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfaceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacePermissionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeNetworkInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeOutpostLagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePlacementGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrefixListsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePrincipalIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribePublicIpv4PoolsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRegionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReplaceRootVolumeTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesListingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeReservedInstancesOfferingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServerPeersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteServersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeRouteTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstanceAvailabilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeScheduledInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondaryNetworksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecondarySubnetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupReferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupVpcAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSecurityGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeServiceLinkVirtualInterfacesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotTierStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSnapshotsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotDatafeedSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotFleetRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotInstanceRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSpotPriceHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStaleSecurityGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeStoreImageTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeSubnetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFilterRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorFiltersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrafficMirrorTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayAttachmentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectPeersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayConnectsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMeteringPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayMulticastDomainsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPeeringAttachmentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayPolicyTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayRouteTablesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewayVpcAttachmentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTransitGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeTrunkInterfaceAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVerifiedAccessTrustProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumeStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVolumesModificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessExclusionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcBlockPublicAccessOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcClassicLinkDnsSupportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEncryptionControlsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionNotificationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServiceConfigurationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicePermissionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointServicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcEndpointsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcPeeringConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpcsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConcentratorsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DescribeVpnGatewaysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachClassicLinkVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachImageWatermarkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachInternetGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachNetworkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DetachVpnGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAddressTransferCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableCapacityManagerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableEbsEncryptionByDefaultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastLaunchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableFastSnapshotRestoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeprecationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableImageDeregistrationProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableInstanceSqlHaStandbyDetectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamOrganizationAdminAccountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableRouteServerPropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSerialConsoleAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableSnapshotBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableTransitGatewayRouteTablePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVgwRoutePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisableVpcClassicLinkDnsSupportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateCapacityReservationBillingOwnerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateClientVpnTargetNetworkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateEnclaveCertificateIamRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIamInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSecurityGroupVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateSubnetCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayMulticastDomainCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayPolicyTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTransitGatewayRouteTableCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateTrunkInterfaceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/DisassociateVpcCidrBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAddressTransferCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableCapacityManagerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableEbsEncryptionByDefaultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastLaunchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableFastSnapshotRestoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeprecationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableImageDeregistrationProtectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableInstanceSqlHaStandbyDetectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamOrganizationAdminAccountCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableRouteServerPropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSerialConsoleAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableSnapshotBlockPublicAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableTransitGatewayRouteTablePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVgwRoutePropagationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVolumeIOCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/EnableVpcClassicLinkDnsSupportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientCertificateRevocationListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportClientVpnClientConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportTransitGatewayRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetActiveVpnTunnelStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedEnclaveCertificateIamRolesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAssociatedIpv6PoolCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetAwsNetworkPerformanceDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMetricDimensionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMonitoredTagKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityReservationUsageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCoipPoolUsageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleOutputCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetConsoleScreenshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDeclarativePoliciesReportSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetDefaultCreditSpecificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsDefaultKmsKeyIdCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEbsEncryptionByDefaultCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetEnabledIpamPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetFlowLogsIntegrationTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetGroupsForCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetHostReservationPurchasePreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageAncestryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetImageBlockPublicAccessStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceMetadataDefaultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTpmEkPubCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetInstanceUefiDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamAddressHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredAccountsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredPublicAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamDiscoveredResourceCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyAllocationRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPolicyOrganizationTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolAllocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPoolCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamPrefixListResolverVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetIpamResourceCidrsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetLaunchTemplateDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedPrefixListEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetManagedResourceVisibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetNetworkInsightsAccessScopeContentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetPasswordDataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetReservedInstancesExchangeQuoteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerPropagationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetRouteServerRoutingDatabaseCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSecurityGroupsForVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSerialConsoleAccessStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSnapshotBlockPublicAccessStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSpotPlacementScoresCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetSubnetCidrReservationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayAttachmentPropagationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMeteringPolicyEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPolicyTableEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayPrefixListReferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTableAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetTransitGatewayRouteTablePropagationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessEndpointTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVerifiedAccessGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceSampleConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnConnectionDeviceTypesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportClientVpnClientCertificateRevocationListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportKeyPairCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ImportVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListImagesInRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListSnapshotsInRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ListVolumesInRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/LockSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAccountVpcEncryptionControlCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAddressAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyAvailabilityZoneGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyCapacityReservationFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyClientVpnEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyDefaultCreditSpecificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyEbsDefaultKmsKeyIdCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyFpgaImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIdentityIdFormatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCapacityReservationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceConnectEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCpuOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceCreditSpecificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventStartTimeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceEventWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMaintenanceOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataDefaultsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceMetadataOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstanceNetworkPerformanceOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyInstancePlacementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPolicyAllocationRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPoolCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamPrefixListResolverTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamResourceDiscoveryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyIpamScopeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLaunchTemplateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyLocalGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedPrefixListCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyManagedResourceVisibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyNetworkInterfaceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPrivateDnsNameOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyPublicIpDnsNameOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyReservedInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyRouteServerCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySecurityGroupRulesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySnapshotTierCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySpotFleetRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifySubnetAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorFilterRuleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTrafficMirrorSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayMeteringPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayPrefixListReferenceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessEndpointPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVerifiedAccessTrustProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVolumeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessExclusionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcBlockPublicAccessOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEncryptionControlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointConnectionNotificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointPayerResponsibilityCommand.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServiceConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcEndpointServicePermissionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcPeeringConnectionOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpcTenancyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnConnectionOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ModifyVpnTunnelOptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MonitorInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveAddressToVpcCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveByoipCidrToIpamCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/MoveCapacityReservationInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamByoasnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionIpamPoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ProvisionPublicIpv4PoolCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseCapacityBlockExtensionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseHostReservationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseReservedInstancesOfferingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/PurchaseScheduledInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RebootInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterImageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterInstanceEventNotificationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupMembersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectCapacityReservationBillingOwnershipCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayClientVpnAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayPeeringAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectTransitGatewayVpcAttachmentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcEndpointConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RejectVpcPeeringConnectionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseHostsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReleaseIpamPoolAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceIamInstanceProfileAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceNetworkAclEntryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceRouteTableAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceTransitGatewayRouteCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReplaceVpnTunnelCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ReportInstanceStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotFleetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RequestSpotInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetAddressAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetEbsDefaultKmsKeyIdCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetFpgaImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetImageAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetInstanceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetNetworkInterfaceAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/ResetSnapshotAttributeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreAddressToClassicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreImageFromRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreSnapshotTierCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RestoreVolumeFromRecycleBinCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeClientVpnIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupEgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RevokeSecurityGroupIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/RunScheduledInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchLocalGatewayRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayMulticastGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SearchTransitGatewayRoutesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/SendDiagnosticInterruptCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartDeclarativePoliciesReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAccessScopeAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartNetworkInsightsAnalysisCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/StopInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateClientVpnConnectionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/TerminateInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignIpv6AddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateIpAddressesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnassignPrivateNatGatewayAddressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnlockSnapshotCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UnmonitorInstancesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerMonitoredTagKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerOrganizationsAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateInterruptibleCapacityReservationAllocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/WithdrawByoipCidrCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +35 -10
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ec2/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +211 -94
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2.d.ts +23 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/EC2Client.d.ts +5 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commandBuilder.d.ts +22 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptAddressTransferCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcEndpointConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AcceptVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateHostsCommand.d.ts +6 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AllocateIpamPoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignIpv6AddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateIpAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssignPrivateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateClientVpnTargetNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIamInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSecurityGroupVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateSubnetCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateTrunkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AssociateVpcCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachClassicLinkVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachImageWatermarkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AttachVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeClientVpnIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupEgressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/AuthorizeSecurityGroupIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/BundleInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelBundleTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +19 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationFleetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelConversionTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelDeclarativePoliciesReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelExportTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImageLaunchPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelImportTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelReservedInstancesListingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotFleetRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelSpotInstanceRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ConfirmProductInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyFpgaImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopySnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CopyVolumesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityManagerDataExportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationBySplittingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCapacityReservationFleetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCarrierGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateClientVpnRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCoipPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateCustomerGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultSubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDefaultVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFleetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFlowLogsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateFpgaImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateImageUsageReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInstanceExportTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateIpamScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateKeyPairCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLaunchTemplateVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateManagedPrefixListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNatGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkAclEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInsightsPathCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateNetworkInterfacePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePlacementGroupCommand.d.ts +10 -11
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreatePublicIpv4PoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReplaceRootVolumeTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateReservedInstancesListingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRestoreImageTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteServerPeerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondaryNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecondarySubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSecurityGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSnapshotsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateStoreImageTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCidrReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateSubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTrafficMirrorTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayConnectPeerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEncryptionControlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConcentratorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnConnectionRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CreateVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCapacityManagerDataExportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCarrierGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteClientVpnRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCoipPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteCustomerGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFleetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFlowLogsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteFpgaImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteImageUsageReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceConnectEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteIpamScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteKeyPairCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLaunchTemplateVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteManagedPrefixListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNatGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkAclEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInsightsPathCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteNetworkInterfacePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePlacementGroupCommand.d.ts +6 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeletePublicIpv4PoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteQueuedReservedInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteServerPeerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondaryNetworkCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecondarySubnetCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSecurityGroupCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCidrReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteSubnetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTrafficMirrorTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEncryptionControlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConcentratorCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnConnectionRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeleteVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionIpamPoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAccountAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAccountVpcEncryptionControlCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressTransfersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAggregateIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAvailabilityZonesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeBundleTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeByoipCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlockStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityBlocksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityManagerDataExportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationFleetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationTopologyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCarrierGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClassicLinkInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeClientVpnTargetNetworksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCoipPoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeConversionTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeCustomerGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeDhcpOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeElasticGpusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportImageTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeExportTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFastSnapshotRestoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFleetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFlowLogsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeFpgaImagesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostReservationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeHostsCommand.d.ts +7 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIdentityIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageReferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImageUsageReportsCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImagesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportImageTasksCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeImportSnapshotTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceEventWindowsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceImageMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceSqlHaStatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTopologyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypeOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstanceTypesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeInternetGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolAllocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamPrefixListResolversCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamScopesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpamsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeIpv6PoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeKeyPairsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplateVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLaunchTemplatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLocalGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeLockedSnapshotsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacHostsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMacModificationTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeManagedPrefixListsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeMovingAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNatGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkAclsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInsightsPathsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeNetworkInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeOutpostLagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePlacementGroupsCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrefixListsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePrincipalIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribePublicIpv4PoolsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRegionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeReservedInstancesOfferingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServerPeersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteServersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeRouteTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeScheduledInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondaryNetworksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecondarySubnetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupReferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSecurityGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotTierStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSnapshotsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotFleetRequestsCommand.d.ts +5 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotInstanceRequestsCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSpotPriceHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStaleSecurityGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeStoreImageTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeSubnetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorFiltersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrafficMirrorTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayConnectsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTransitGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumeStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVolumesModificationsCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEncryptionControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointServicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcPeeringConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpcsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConcentratorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DescribeVpnGatewaysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachClassicLinkVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachImageWatermarkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachInternetGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachNetworkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DetachVpnGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAddressTransferCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableCapacityManagerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableEbsEncryptionByDefaultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastLaunchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableFastSnapshotRestoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeprecationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableImageDeregistrationProtectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableRouteServerPropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSerialConsoleAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVgwRoutePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIamInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSecurityGroupVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateSubnetCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateTrunkInterfaceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/DisassociateVpcCidrBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAddressTransferCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableCapacityManagerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableEbsEncryptionByDefaultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastLaunchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableFastSnapshotRestoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeprecationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableImageDeregistrationProtectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableRouteServerPropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSerialConsoleAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVgwRoutePropagationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVolumeIOCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportClientVpnClientConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportTransitGatewayRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetActiveVpnTunnelStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetAwsNetworkPerformanceDataCommand.d.ts +4 -10
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityReservationUsageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCoipPoolUsageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleOutputCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleScreenshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDefaultCreditSpecificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEbsEncryptionByDefaultCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetEnabledIpamPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetGroupsForCapacityReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetHostReservationPurchasePreviewCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageAncestryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetImageBlockPublicAccessStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceMetadataDefaultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTpmEkPubCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetInstanceUefiDataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredAccountsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyAllocationRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetLaunchTemplateDataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedPrefixListEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetManagedResourceVisibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetPasswordDataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerPropagationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetRouteServerRoutingDatabaseCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSecurityGroupsForVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSerialConsoleAccessStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSpotPlacementScoresCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetSubnetCidrReservationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnConnectionDeviceTypesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportKeyPairCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ImportVolumeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListImagesInRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListSnapshotsInRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ListVolumesInRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/LockSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAccountVpcEncryptionControlCommand.d.ts +96 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAddressAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyAvailabilityZoneGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyCapacityReservationFleetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyClientVpnEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyDefaultCreditSpecificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFleetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyFpgaImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyHostsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIdentityIdFormatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceConnectEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCpuOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceCreditSpecificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventStartTimeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceEventWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceMetadataOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyInstancePlacementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolAllocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPoolCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceCidrCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamResourceDiscoveryCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyIpamScopeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLaunchTemplateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyLocalGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedPrefixListCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyManagedResourceVisibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyReservedInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyRouteServerCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySecurityGroupRulesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySnapshotTierCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySpotFleetRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifySubnetAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVolumeCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEncryptionControlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointPayerResponsibilityCommand.d.ts +81 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpcTenancyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnConnectionOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MonitorInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveAddressToVpcCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveByoipCidrToIpamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/MoveCapacityReservationInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionByoipCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamByoasnCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionIpamPoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseCapacityBlockExtensionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseHostReservationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseReservedInstancesOfferingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/PurchaseScheduledInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RebootInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterImageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcEndpointConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RejectVpcPeeringConnectionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseHostsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReleaseIpamPoolAllocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceNetworkAclEntryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceRouteTableAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceTransitGatewayRouteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ReportInstanceStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotFleetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RequestSpotInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetAddressAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetFpgaImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetImageAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetInstanceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetNetworkInterfaceAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ResetSnapshotAttributeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreAddressToClassicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreImageFromRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreSnapshotTierCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RestoreVolumeFromRecycleBinCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/RunScheduledInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchLocalGatewayRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SearchTransitGatewayRoutesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/SendDiagnosticInterruptCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartDeclarativePoliciesReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/StopInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateClientVpnConnectionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/TerminateInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignIpv6AddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateIpAddressesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnlockSnapshotCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UnmonitorInstancesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/WithdrawByoipCidrCommand.d.ts +4 -9
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +91 -26
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_0.d.ts +96 -201
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_1.d.ts +213 -52
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_2.d.ts +74 -77
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_3.d.ts +115 -247
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_4.d.ts +248 -543
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +559 -205
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +273 -241
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +289 -219
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_8.d.ts +214 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +71 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commandBuilder.d.ts +52 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptAddressTransferCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptCapacityReservationBillingOwnershipCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptReservedInstancesExchangeQuoteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcEndpointConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AcceptVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AdvertiseByoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AllocateIpamPoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ApplySecurityGroupsToClientVpnTargetNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignIpv6AddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateIpAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssignPrivateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateCapacityReservationBillingOwnerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateClientVpnTargetNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateEnclaveCertificateIamRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIamInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSecurityGroupVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateSubnetCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateTrunkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AssociateVpcCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachClassicLinkVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachImageWatermarkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AttachVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeClientVpnIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupEgressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/AuthorizeSecurityGroupIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/BundleInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelBundleTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelCapacityReservationFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelConversionTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelDeclarativePoliciesReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelExportTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImageLaunchPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelImportTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelReservedInstancesListingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotFleetRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CancelSpotInstanceRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ConfirmProductInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyFpgaImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopySnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CopyVolumesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityManagerDataExportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationBySplittingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCancellationQuoteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCapacityReservationFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCarrierGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateClientVpnRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCoipPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateCustomerGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultSubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDelegateMacVolumeOwnershipTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateEgressOnlyInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFlowLogsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateFpgaImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateImageUsageReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceConnectEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInstanceExportTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateInterruptibleCapacityReservationAllocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamExternalResourceVerificationTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamPrefixListResolverTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateIpamScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateKeyPairCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLaunchTemplateVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayRouteTableVpcAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateLocalGatewayVirtualInterfaceGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateMacSystemIntegrityProtectionModificationTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateManagedPrefixListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNatGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkAclEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsAccessScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInsightsPathCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateNetworkInterfacePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreatePublicIpv4PoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReplaceRootVolumeTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateReservedInstancesListingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRestoreImageTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteServerPeerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondaryNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecondarySubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSecurityGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSnapshotsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSpotDatafeedSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateStoreImageTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCidrReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateSubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorFilterRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTrafficMirrorTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayConnectPeerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMeteringPolicyEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableAnnouncementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEncryptionControlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointConnectionNotificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcEndpointServiceConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConcentratorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnConnectionRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/CreateVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCapacityManagerDataExportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCarrierGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteClientVpnRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCoipPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteCustomerGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteEgressOnlyInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFlowLogsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteFpgaImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteImageUsageReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceConnectEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamExternalResourceVerificationTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamPrefixListResolverTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteIpamScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteKeyPairCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLaunchTemplateVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayRouteTableVpcAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteLocalGatewayVirtualInterfaceGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteManagedPrefixListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNatGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkAclEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAccessScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInsightsPathCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteNetworkInterfacePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePlacementGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteServerPeerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondaryNetworkCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecondarySubnetCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSecurityGroupCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSpotDatafeedSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCidrReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteSubnetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorFilterRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTrafficMirrorTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayConnectPeerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMeteringPolicyEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableAnnouncementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEncryptionControlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointConnectionNotificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointServiceConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConcentratorCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnConnectionRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeleteVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionByoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionIpamPoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeprovisionPublicIpv4PoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterInstanceEventNotificationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupMembersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DeregisterTransitGatewayMulticastGroupSourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAccountAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAccountVpcEncryptionControlCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressTransfersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAggregateIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAvailabilityZonesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeAwsNetworkPerformanceMetricSubscriptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeBundleTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeByoipCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockExtensionOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlockStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityBlocksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityManagerDataExportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationBillingRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationCancellationQuotesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationTopologyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCarrierGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClassicLinkInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnAuthorizationRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeClientVpnTargetNetworksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCoipPoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeConversionTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeCustomerGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDeclarativePoliciesReportsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeDhcpOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeEgressOnlyInternetGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeElasticGpusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportImageTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeExportTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFastSnapshotRestoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFleetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFlowLogsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeFpgaImagesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostReservationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIamInstanceProfileAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIdentityIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageReferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImageUsageReportsCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportImageTasksCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeImportSnapshotTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceConnectEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceCreditSpecificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventNotificationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceEventWindowsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceImageMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaHistoryStatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceSqlHaStatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTopologyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypeOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstanceTypesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeInternetGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamExternalResourceVerificationTokensCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolAllocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolverTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamPrefixListResolversCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamScopesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpamsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeIpv6PoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeKeyPairsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplateVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLaunchTemplatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVirtualInterfaceGroupAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTableVpcAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayRouteTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLocalGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeLockedSnapshotsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMacModificationTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeManagedPrefixListsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeMovingAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNatGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkAclsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopeAnalysesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAccessScopesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsAnalysesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInsightsPathsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfaceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacePermissionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeNetworkInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeOutpostLagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePlacementGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrefixListsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePrincipalIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribePublicIpv4PoolsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRegionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReplaceRootVolumeTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeReservedInstancesOfferingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServerPeersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteServersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeRouteTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstanceAvailabilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeScheduledInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondaryNetworksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecondarySubnetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupReferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupVpcAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSecurityGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeServiceLinkVirtualInterfacesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotTierStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotDatafeedSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotFleetRequestsCommand.d.ts +9 -20
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotInstanceRequestsCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSpotPriceHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStaleSecurityGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeStoreImageTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeSubnetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFilterRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorFiltersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrafficMirrorTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayAttachmentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectPeersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayConnectsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMeteringPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayMulticastDomainsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPeeringAttachmentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayPolicyTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTableAnnouncementsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayRouteTablesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewayVpcAttachmentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTransitGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeTrunkInterfaceAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstanceLoggingConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumeStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVolumesModificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessExclusionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcBlockPublicAccessOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcClassicLinkDnsSupportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEncryptionControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionNotificationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServiceConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicePermissionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointServicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcPeeringConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpcsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConcentratorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DescribeVpnGatewaysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachClassicLinkVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachImageWatermarkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachInternetGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachNetworkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DetachVpnGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAddressTransferCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableCapacityManagerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableEbsEncryptionByDefaultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableFastSnapshotRestoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeprecationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableImageDeregistrationProtectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableInstanceSqlHaStandbyDetectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamOrganizationAdminAccountCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableRouteServerPropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSerialConsoleAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableSnapshotBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableTransitGatewayRouteTablePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVgwRoutePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisableVpcClassicLinkDnsSupportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateCapacityReservationBillingOwnerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateClientVpnTargetNetworkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateEnclaveCertificateIamRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIamInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateIpamResourceDiscoveryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSecurityGroupVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateSubnetCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayMulticastDomainCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayPolicyTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTransitGatewayRouteTableCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateTrunkInterfaceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/DisassociateVpcCidrBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAddressTransferCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableAwsNetworkPerformanceMetricSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableCapacityManagerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableEbsEncryptionByDefaultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableFastSnapshotRestoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeprecationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableImageDeregistrationProtectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableInstanceSqlHaStandbyDetectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamOrganizationAdminAccountCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableReachabilityAnalyzerOrganizationSharingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableRouteServerPropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSerialConsoleAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableSnapshotBlockPublicAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableTransitGatewayRouteTablePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVgwRoutePropagationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVolumeIOCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/EnableVpcClassicLinkDnsSupportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientCertificateRevocationListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportClientVpnClientConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportTransitGatewayRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ExportVerifiedAccessInstanceClientConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetActiveVpnTunnelStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedEnclaveCertificateIamRolesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAssociatedIpv6PoolCidrsCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetAwsNetworkPerformanceDataCommand.d.ts +10 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityReservationUsageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCoipPoolUsageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleOutputCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDefaultCreditSpecificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsDefaultKmsKeyIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEbsEncryptionByDefaultCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetEnabledIpamPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetFlowLogsIntegrationTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetGroupsForCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetHostReservationPurchasePreviewCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageAncestryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetImageBlockPublicAccessStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceMetadataDefaultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTpmEkPubCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetInstanceUefiDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredAccountsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredPublicAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamDiscoveredResourceCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyAllocationRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPolicyOrganizationTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamPrefixListResolverVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetLaunchTemplateDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedPrefixListEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetManagedResourceVisibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeAnalysisFindingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetNetworkInsightsAccessScopeContentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetPasswordDataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetReservedInstancesExchangeQuoteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerPropagationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetRouteServerRoutingDatabaseCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSecurityGroupsForVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSerialConsoleAccessStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSpotPlacementScoresCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetSubnetCidrReservationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayAttachmentPropagationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMeteringPolicyEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPolicyTableEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayPrefixListReferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTableAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetTransitGatewayRouteTablePropagationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessEndpointTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpcResourcesBlockingEncryptionEnforcementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceSampleConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnConnectionDeviceTypesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportClientVpnClientCertificateRevocationListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportKeyPairCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ImportVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListImagesInRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListSnapshotsInRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ListVolumesInRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/LockSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAccountVpcEncryptionControlCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAddressAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyAvailabilityZoneGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyCapacityReservationFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyClientVpnEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyDefaultCreditSpecificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyEbsDefaultKmsKeyIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyFpgaImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIdentityIdFormatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCapacityReservationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceConnectEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCpuOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceCreditSpecificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventStartTimeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceEventWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMaintenanceOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataDefaultsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceMetadataOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstanceNetworkPerformanceOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyInstancePlacementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPolicyAllocationRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolAllocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPoolCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamPrefixListResolverTargetCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceCidrCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamResourceDiscoveryCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyIpamScopeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLaunchTemplateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyLocalGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedPrefixListCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyManagedResourceVisibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyNetworkInterfaceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPrivateDnsNameOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyPublicIpDnsNameOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyReservedInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyRouteServerCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySecurityGroupRulesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySnapshotTierCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySpotFleetRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifySubnetAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayMeteringPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayPrefixListReferenceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessInstanceLoggingConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVolumeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessExclusionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcBlockPublicAccessOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEncryptionControlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointConnectionNotificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointPayerResponsibilityCommand.d.ts +44 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServiceConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePayerResponsibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcEndpointServicePermissionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcPeeringConnectionOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpcTenancyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnConnectionOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyVpnTunnelOptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MonitorInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveAddressToVpcCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveByoipCidrToIpamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/MoveCapacityReservationInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionByoipCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamByoasnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionIpamPoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ProvisionPublicIpv4PoolCidrCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseCapacityBlockExtensionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseHostReservationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseReservedInstancesOfferingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/PurchaseScheduledInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RebootInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterImageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterInstanceEventNotificationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectCapacityReservationBillingOwnershipCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayClientVpnAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayMulticastDomainAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayPeeringAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectTransitGatewayVpcAttachmentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcEndpointConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RejectVpcPeeringConnectionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseHostsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReleaseIpamPoolAllocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceIamInstanceProfileAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceImageCriteriaInAllowedImagesSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceNetworkAclEntryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceRouteTableAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceTransitGatewayRouteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ReportInstanceStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotFleetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RequestSpotInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetAddressAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetEbsDefaultKmsKeyIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetFpgaImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetImageAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetInstanceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetNetworkInterfaceAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ResetSnapshotAttributeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreImageFromRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RestoreVolumeFromRecycleBinCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/RunScheduledInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchLocalGatewayRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayMulticastGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SearchTransitGatewayRoutesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/SendDiagnosticInterruptCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartDeclarativePoliciesReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StartVpcEndpointServicePrivateDnsVerificationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/StopInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateClientVpnConnectionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/TerminateInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignIpv6AddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateIpAddressesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnassignPrivateNatGatewayAddressCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnlockSnapshotCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UnmonitorInstancesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerOrganizationsAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateInterruptibleCapacityReservationAllocationCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsEgressCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateSecurityGroupRuleDescriptionsIngressCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/WithdrawByoipCidrCommand.d.ts +8 -17
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +47 -13
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_0.d.ts +26 -36
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_1.d.ts +38 -14
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_2.d.ts +21 -22
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_3.d.ts +32 -53
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_4.d.ts +54 -72
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +87 -49
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +71 -58
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +74 -48
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_8.d.ts +49 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +10 -12
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +5054 -2126
- package/node_modules/@aws-sdk/client-iam/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AcceptDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddClientIDToOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddRoleToInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AddUserToGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AssociateDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/AttachUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ChangePasswordCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccessKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateAccountAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreatePolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceLinkedRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/CreateVirtualMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeactivateMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccessKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteAccountPasswordPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeletePolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceLinkedRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteSigningCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DeleteVirtualMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DetachUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootCredentialsManagementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOrganizationsRootSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/DisableOutboundWebIdentityFederationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootCredentialsManagementCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOrganizationsRootSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/EnableOutboundWebIdentityFederationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateCredentialReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateOrganizationsAccessReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GenerateServiceLastAccessedDetailsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccessKeyLastUsedCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountAuthorizationDetailsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountPasswordPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetAccountSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForCustomPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetContextKeysForPrincipalPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetCredentialReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetHumanReadableSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOrganizationsAccessReportCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetOutboundWebIdentityFederationInfoCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetPolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetServiceLinkedRoleDeletionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/GetUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccessKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAccountAliasesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedGroupPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedRolePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListAttachedUserPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListDelegationRequestsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListEntitiesForPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListGroupsForUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfileTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListInstanceProfilesForRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADeviceTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListMFADevicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProviderTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOpenIDConnectProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListOrganizationsFeaturesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPoliciesGrantingServiceAccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListPolicyVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRoleTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListRolesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProviderTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSAMLProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSSHPublicKeysCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificateTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServerCertificatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListServiceSpecificCredentialsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListSigningCertificatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserPoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUserTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListUsersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ListVirtualMFADevicesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutGroupPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPermissionsBoundaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/PutUserPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RejectDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveClientIDFromOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveRoleFromInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/RemoveUserFromGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResetServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/ResyncMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SendDelegationTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetDefaultPolicyVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SetSecurityTokenServicePreferencesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulateCustomPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/SimulatePrincipalPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/TagUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagInstanceProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagMFADeviceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagOpenIDConnectProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UntagUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccessKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAccountPasswordPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateAssumeRolePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateDelegationRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateLoginProfileCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateOpenIDConnectProviderThumbprintCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateRoleDescriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSAMLProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateServiceSpecificCredentialCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateSigningCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UpdateUserCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSSHPublicKeyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadServerCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/commands/UploadSigningCertificateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-iam/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-iam/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AcceptDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddRoleToInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AddUserToGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AssociateDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/AttachUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ChangePasswordCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccessKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateAccountAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreatePolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceLinkedRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/CreateVirtualMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeactivateMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccessKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteAccountPasswordPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeletePolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceLinkedRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteSigningCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DeleteVirtualMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DetachUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOrganizationsRootSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/DisableOutboundWebIdentityFederationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOrganizationsRootSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/EnableOutboundWebIdentityFederationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateCredentialReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateOrganizationsAccessReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccessKeyLastUsedCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountAuthorizationDetailsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountPasswordPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetAccountSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForCustomPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetCredentialReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetHumanReadableSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOrganizationsAccessReportCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetPolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/GetUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccessKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAccountAliasesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedGroupPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedRolePoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListAttachedUserPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListDelegationRequestsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListEntitiesForPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListGroupsForUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfileTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListInstanceProfilesForRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADeviceTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListMFADevicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProviderTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOpenIDConnectProvidersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListOrganizationsFeaturesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListPolicyVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolePoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRoleTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListRolesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProviderTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSAMLProvidersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSSHPublicKeysCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificateTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServerCertificatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListServiceSpecificCredentialsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListSigningCertificatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserPoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUserTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListUsersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ListVirtualMFADevicesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutGroupPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPermissionsBoundaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/PutUserPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RejectDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveRoleFromInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/RemoveUserFromGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResetServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/ResyncMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SendDelegationTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetDefaultPolicyVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SetSecurityTokenServicePreferencesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulateCustomPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/SimulatePrincipalPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/TagUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagInstanceProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagMFADeviceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagOpenIDConnectProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UntagUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccessKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAccountPasswordPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateAssumeRolePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateDelegationRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateLoginProfileCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateRoleDescriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSAMLProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateServiceSpecificCredentialCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateSigningCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UpdateUserCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSSHPublicKeyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadServerCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/commands/UploadSigningCertificateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-iam/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AcceptDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddClientIDToOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddRoleToInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AddUserToGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AssociateDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/AttachUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ChangePasswordCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccessKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateAccountAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreatePolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceLinkedRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/CreateVirtualMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeactivateMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccessKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteAccountPasswordPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeletePolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceLinkedRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteSigningCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DeleteVirtualMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DetachUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootCredentialsManagementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOrganizationsRootSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/DisableOutboundWebIdentityFederationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootCredentialsManagementCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOrganizationsRootSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/EnableOutboundWebIdentityFederationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateCredentialReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateOrganizationsAccessReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GenerateServiceLastAccessedDetailsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccessKeyLastUsedCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountAuthorizationDetailsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountPasswordPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetAccountSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForCustomPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetContextKeysForPrincipalPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetCredentialReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetHumanReadableSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOrganizationsAccessReportCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetOutboundWebIdentityFederationInfoCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetPolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLastAccessedDetailsWithEntitiesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetServiceLinkedRoleDeletionStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/GetUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccessKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAccountAliasesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedGroupPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedRolePoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListAttachedUserPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListDelegationRequestsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListEntitiesForPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListGroupsForUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfileTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListInstanceProfilesForRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADeviceTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListMFADevicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProviderTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOpenIDConnectProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListOrganizationsFeaturesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPoliciesGrantingServiceAccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListPolicyVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolePoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRoleTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListRolesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProviderTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSAMLProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSSHPublicKeysCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificateTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServerCertificatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListServiceSpecificCredentialsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListSigningCertificatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserPoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUserTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListUsersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ListVirtualMFADevicesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutGroupPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPermissionsBoundaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/PutUserPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RejectDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveClientIDFromOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveRoleFromInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/RemoveUserFromGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResetServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/ResyncMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SendDelegationTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetDefaultPolicyVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SetSecurityTokenServicePreferencesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulateCustomPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/SimulatePrincipalPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/TagUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagInstanceProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagMFADeviceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagOpenIDConnectProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UntagUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccessKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAccountPasswordPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateAssumeRolePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateDelegationRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateLoginProfileCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateOpenIDConnectProviderThumbprintCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateRoleDescriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSAMLProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateServiceSpecificCredentialCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateSigningCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSSHPublicKeyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadServerCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/commands/UploadSigningCertificateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-iam/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-iam/package.json +9 -11
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +4534 -1039
- package/node_modules/@aws-sdk/client-lambda/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddLayerVersionPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/AddPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CheckpointDurableExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/CreateFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionConcurrencyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteLayerVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/DeleteProvisionedConcurrencyConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAccountSettingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetDurableExecutionStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConcurrencyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionRecursionConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionScalingConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionByArnCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetLayerVersionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetProvisionedConcurrencyConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/GetRuntimeManagementConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeAsyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/InvokeWithResponseStreamCommand.js +2 -18
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListAliasesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCapacityProvidersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListCodeSigningConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListDurableExecutionsByFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListEventSourceMappingsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionEventInvokeConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionUrlConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionVersionsByCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsByCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListFunctionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayerVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListLayersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListProvisionedConcurrencyConfigsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/ListVersionsByFunctionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishLayerVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PublishVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionConcurrencyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionRecursionConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutFunctionScalingConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutProvisionedConcurrencyConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/PutRuntimeManagementConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemoveLayerVersionPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackFailureCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackHeartbeatCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/SendDurableExecutionCallbackSuccessCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/StopDurableExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateAliasCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCapacityProviderCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateCodeSigningConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateEventSourceMappingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionCodeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionConfigurationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionEventInvokeConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/commands/UpdateFunctionUrlConfigCommand.js +2 -14
- package/node_modules/@aws-sdk/client-lambda/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +4 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-lambda/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +24 -11
- package/node_modules/@aws-sdk/client-lambda/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddLayerVersionPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CheckpointDurableExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCapacityProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCapacityProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionConcurrencyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAccountSettingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCapacityProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetDurableExecutionStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +12 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConcurrencyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionRecursionConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionScalingConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListAliasesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCapacityProvidersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListCodeSigningConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListDurableExecutionsByFunctionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionEventInvokeConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionUrlConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +9 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionConcurrencyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionRecursionConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutFunctionScalingConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutRuntimeManagementConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemoveLayerVersionPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/StopDurableExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateAliasCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCapacityProviderCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateCodeSigningConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionUrlConfigCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/index.d.ts +1 -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 +68 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddLayerVersionPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CheckpointDurableExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/CreateFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionConcurrencyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteLayerVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/DeleteProvisionedConcurrencyConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetDurableExecutionStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConcurrencyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionRecursionConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionScalingConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionByArnCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetLayerVersionPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetProvisionedConcurrencyConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/GetRuntimeManagementConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeAsyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/InvokeWithResponseStreamCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCapacityProvidersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListCodeSigningConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListDurableExecutionsByFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListEventSourceMappingsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionEventInvokeConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionUrlConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionVersionsByCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsByCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListFunctionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayerVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListLayersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListProvisionedConcurrencyConfigsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/ListVersionsByFunctionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishLayerVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PublishVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionConcurrencyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionRecursionConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutFunctionScalingConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutProvisionedConcurrencyConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/PutRuntimeManagementConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemoveLayerVersionPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackFailureCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/StopDurableExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCapacityProviderCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateCodeSigningConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateEventSourceMappingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionCodeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionEventInvokeConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/commands/UpdateFunctionUrlConfigCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/index.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 +16 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +9 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5637 -2177
- package/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/commandBuilder.js +122 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAbacCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +2 -29
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +2 -21
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAbacCommand.js +2 -24
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +2 -18
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +2 -27
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +2 -29
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RenameObjectCommand.js +2 -22
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataJournalTableConfigurationCommand.js +2 -25
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateObjectEncryptionCommand.js +2 -26
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +2 -28
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +2 -23
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +2 -17
- package/node_modules/@aws-sdk/client-s3/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +1 -6
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +2 -5
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commandBuilder.d.ts +106 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAbacCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAbacCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateObjectEncryptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +6 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +47 -48
- 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 +3 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +4 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commandBuilder.d.ts +133 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAbacCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAbacCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataInventoryTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataJournalTableConfigurationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateObjectEncryptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -8
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +70 -74
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +12 -6
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +3 -0
- package/node_modules/@aws-sdk/client-s3/package.json +13 -16
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +1986 -518
- package/node_modules/@aws-sdk/client-sns/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/AddPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ConfirmSubscriptionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformApplicationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreatePlatformEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/CreateTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteEndpointCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeletePlatformApplicationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/DeleteTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetEndpointAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetPlatformApplicationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetSubscriptionAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/GetTopicAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListOriginationNumbersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListPlatformApplicationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsByTopicCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListSubscriptionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/ListTopicsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/OptInPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PublishCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetEndpointAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetPlatformApplicationAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSMSAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetSubscriptionAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SetTopicAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/SubscribeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/TagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/UnsubscribeCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/UntagResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sns/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-sns/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ConfirmSubscriptionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformApplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreatePlatformEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/CreateTopicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteEndpointCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeletePlatformApplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/DeleteTopicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetDataProtectionPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetEndpointAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetPlatformApplicationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSMSSandboxAccountStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetSubscriptionAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/GetTopicAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListEndpointsByPlatformApplicationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListOriginationNumbersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPhoneNumbersOptedOutCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListPlatformApplicationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsByTopicCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListSubscriptionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/ListTopicsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/OptInPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PublishCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/PutDataProtectionPolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetEndpointAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetPlatformApplicationAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSMSAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetSubscriptionAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SetTopicAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/SubscribeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/UnsubscribeCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sns/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CheckIfPhoneNumberIsOptedOutCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ConfirmSubscriptionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformApplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreatePlatformEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateSMSSandboxPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/CreateTopicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeletePlatformApplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteSMSSandboxPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/DeleteTopicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetDataProtectionPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetEndpointAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetPlatformApplicationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSMSSandboxAccountStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetSubscriptionAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/GetTopicAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListEndpointsByPlatformApplicationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListOriginationNumbersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPhoneNumbersOptedOutCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListPlatformApplicationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSMSSandboxPhoneNumbersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsByTopicCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListSubscriptionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/ListTopicsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/OptInPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PublishCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/PutDataProtectionPolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetEndpointAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetPlatformApplicationAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSMSAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetSubscriptionAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SetTopicAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/SubscribeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/commands/VerifySMSSandboxPhoneNumberCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sns/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sns/package.json +8 -10
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +1492 -300
- package/node_modules/@aws-sdk/client-sqs/dist-es/commandBuilder.js +18 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/AddPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/CreateQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteMessageCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/DeleteQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/GetQueueUrlCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListMessageMoveTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueueTagsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ListQueuesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/PurgeQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +2 -20
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageBatchCommand.js +2 -18
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SendMessageCommand.js +2 -18
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/SetQueueAttributesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/StartMessageMoveTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/TagQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/UntagQueueCommand.js +2 -14
- package/node_modules/@aws-sdk/client-sqs/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.browser.js +0 -4
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.js +1 -3
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-sqs/dist-es/runtimeConfig.shared.js +3 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/commandBuilder.d.ts +30 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/CreateQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteMessageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/DeleteQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/GetQueueUrlCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListMessageMoveTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueueTagsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ListQueuesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/PurgeQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/ReceiveMessageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SendMessageCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/SetQueueAttributesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/StartMessageMoveTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/TagQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/commands/UntagQueueCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-sqs/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.browser.d.ts +3 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.d.ts +26 -27
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commandBuilder.d.ts +64 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SendMessageCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/TagQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -3
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.d.ts +44 -43
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-sqs/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/node_modules/@aws-sdk/client-sqs/package.json +10 -12
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +9038 -1855
- package/node_modules/@aws-sdk/client-ssm/dist-es/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AddTagsToResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/AssociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CancelMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationBatchCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/CreateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteActivationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeletePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeleteResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterManagedInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTargetFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DeregisterTaskFromMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeActivationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAssociationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAutomationStepExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeAvailablePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectiveInstanceAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeEffectivePatchesForPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceAssociationsStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstanceInformationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchStatesForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePatchesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInstancePropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeInventoryDeletionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowExecutionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowScheduleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTargetsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowTasksCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeMaintenanceWindowsForTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeOpsItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchBaselinesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchGroupsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribePatchPropertiesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DescribeSessionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/DisassociateOpsItemRelatedItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAccessTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCalendarStateCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetCommandInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetConnectionStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDeployablePatchSnapshotForInstanceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetInventorySchemaCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetOpsSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParameterHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersByPathCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetParametersCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetResourcePoliciesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/GetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/LabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListAssociationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandInvocationsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListCommandsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentMetadataHistoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentVersionsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListDocumentsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListInventoryEntriesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListNodesSummaryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemEventsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsItemRelatedItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceComplianceSummariesCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ModifyDocumentPermissionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutComplianceItemsCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutInventoryCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutParameterCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/PutResourcePolicyCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterDefaultPatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterPatchBaselineForPatchGroupCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTargetWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RegisterTaskWithMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/RemoveTagsFromResourceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResetServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/ResumeSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendAutomationSignalCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/SendCommandCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAccessRequestCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAssociationsOnceCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartChangeRequestExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartExecutionPreviewCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StartSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/StopAutomationExecutionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/TerminateSessionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UnlabelParameterVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateAssociationStatusCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentDefaultVersionCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateDocumentMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTargetCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateMaintenanceWindowTaskCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateManagedInstanceRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsItemCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateOpsMetadataCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdatePatchBaselineCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateResourceDataSyncCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/commands/UpdateServiceSettingCommand.js +2 -14
- package/node_modules/@aws-sdk/client-ssm/dist-es/index.js +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/client-ssm/dist-es/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/AssociateOpsItemRelatedItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelCommandCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CancelMaintenanceWindowExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateActivationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationBatchCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreatePatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/CreateResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteActivationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteInventoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParameterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteParametersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeletePatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeleteResourcePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterManagedInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeActivationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAssociationExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAutomationStepExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeAvailablePatchesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeDocumentPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceAssociationsStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstanceInformationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePatchesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeInventoryDeletionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowTasksCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeOpsItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeParametersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchBaselinesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchGroupsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribePatchPropertiesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DescribeSessionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/DisassociateOpsItemRelatedItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAccessTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetAutomationExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCalendarStateCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetCommandInvocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetConnectionStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDefaultPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetExecutionPreviewCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetInventorySchemaCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetMaintenanceWindowTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParameterHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersByPathCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetParametersCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetPatchBaselineForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetResourcePoliciesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/GetServiceSettingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/LabelParameterVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListAssociationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandInvocationsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListCommandsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListComplianceSummariesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentMetadataHistoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentVersionsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListDocumentsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListInventoryEntriesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListNodesSummaryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemEventsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsItemRelatedItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ModifyDocumentPermissionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutComplianceItemsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutInventoryCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutParameterCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/PutResourcePolicyCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterDefaultPatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResetServiceSettingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/ResumeSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendAutomationSignalCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/SendCommandCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAccessRequestCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAssociationsOnceCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartAutomationExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartChangeRequestExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartExecutionPreviewCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StartSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/StopAutomationExecutionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/TerminateSessionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UnlabelParameterVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateAssociationStatusCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentDefaultVersionCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateDocumentMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTargetCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateMaintenanceWindowTaskCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateManagedInstanceRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsItemCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateOpsMetadataCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdatePatchBaselineCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateResourceDataSyncCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/commands/UpdateServiceSettingCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/client-ssm/dist-types/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AddTagsToResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/AssociateOpsItemRelatedItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelCommandCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CancelMaintenanceWindowExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateActivationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationBatchCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreatePatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/CreateResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteActivationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteInventoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParameterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteParametersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeletePatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterManagedInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterPatchBaselineForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTargetFromMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DeregisterTaskFromMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeActivationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAssociationExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAutomationStepExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeAvailablePatchesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeDocumentPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectiveInstanceAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeEffectivePatchesForPatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceAssociationsStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstanceInformationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePatchesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInstancePropertiesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeInventoryDeletionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTaskInvocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowExecutionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowScheduleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTargetsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowTasksCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeMaintenanceWindowsForTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeOpsItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchBaselinesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchGroupsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribePatchPropertiesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DescribeSessionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/DisassociateOpsItemRelatedItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetAutomationExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCalendarStateCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetCommandInvocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetConnectionStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDefaultPatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetInventorySchemaCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowExecutionTaskInvocationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetMaintenanceWindowTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetOpsSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParameterHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersByPathCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetParametersCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetPatchBaselineForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/GetServiceSettingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/LabelParameterVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandInvocationsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListCommandsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListComplianceSummariesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentMetadataHistoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentVersionsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListDocumentsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListInventoryEntriesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemEventsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsItemRelatedItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceComplianceSummariesCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ModifyDocumentPermissionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutComplianceItemsCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutInventoryCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutParameterCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterDefaultPatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterPatchBaselineForPatchGroupCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTargetWithMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RegisterTaskWithMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/RemoveTagsFromResourceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/SendCommandCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAccessRequestCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartChangeRequestExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StartSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/StopAutomationExecutionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/TerminateSessionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UnlabelParameterVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateAssociationStatusCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentDefaultVersionCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateDocumentMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTargetCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateMaintenanceWindowTaskCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateManagedInstanceRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsItemCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateOpsMetadataCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdatePatchBaselineCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateResourceDataSyncCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/commands/UpdateServiceSettingCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/client-ssm/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ssm/package.json +8 -10
- package/node_modules/@aws-sdk/core/account-id-endpoint.d.ts +1 -3
- package/node_modules/@aws-sdk/core/client.d.ts +1 -3
- package/node_modules/@aws-sdk/core/httpAuthSchemes.d.ts +1 -3
- package/node_modules/@aws-sdk/core/package.json +10 -17
- package/node_modules/@aws-sdk/core/protocols.d.ts +1 -3
- package/node_modules/@aws-sdk/core/util.d.ts +1 -3
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +172 -1
- package/node_modules/@aws-sdk/credential-provider-http/package.json +8 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +58 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -8
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +9 -18
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3-control.d.ts +1 -3
- package/node_modules/@aws-sdk/middleware-sdk-s3/s3.d.ts +1 -3
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/nested-clients/cognito-identity.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +13 -25
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +13 -17
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +12 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +12 -15
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +13 -25
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/commands/GetIdCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/cognito-identity/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commandBuilder.js +8 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +2 -17
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/commands/GetRoleCredentialsCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commandBuilder.js +6 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +2 -14
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/index.js +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.browser.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.js +1 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.native.js +0 -2
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/sts/runtimeConfig.shared.js +2 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/commands/GetIdCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commandBuilder.d.ts +18 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.browser.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.native.d.ts +2 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/sts/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetCredentialsForIdentityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/commands/GetIdCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/cognito-identity/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/commands/CreateOAuth2TokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/commands/GetRoleCredentialsCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commandBuilder.d.ts +42 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +3 -8
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commandBuilder.d.ts +46 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +7 -16
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/index.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +8 -2
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +8 -10
- package/node_modules/@aws-sdk/nested-clients/signin.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso-oidc.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sso.d.ts +1 -3
- package/node_modules/@aws-sdk/nested-clients/sts.d.ts +1 -3
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +4 -4
- package/node_modules/@aws-sdk/token-providers/package.json +6 -6
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +236 -3
- package/node_modules/@aws-sdk/xml-builder/package.json +3 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.browser.js +4 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js +8 -2
- package/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.native.js +4 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +18 -0
- package/node_modules/@smithy/core/dist-cjs/submodules/config/index.js +108 -63
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.browser.js +11 -8
- package/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js +11 -8
- package/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js +31 -27
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Js.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/checksum/crc32/Crc32Node.js +4 -1
- package/node_modules/@smithy/core/dist-es/submodules/client/index.js +1 -0
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/client-command-builder.js +17 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/config.js +6 -1
- package/node_modules/@smithy/core/dist-es/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.js +92 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/constants.js +3 -0
- package/node_modules/@smithy/core/dist-es/submodules/config/defaults-mode/resolveDefaultsModeConfig.js +3 -56
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/EventStreamCodec.js +5 -3
- package/node_modules/@smithy/core/dist-es/submodules/event-streams/eventstream-codec/splitMessage.js +7 -6
- package/node_modules/@smithy/core/dist-es/submodules/serde/util-stream/checksum/ChecksumStream.js +31 -27
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Js.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/checksum/crc32/Crc32Node.d.ts +5 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/index.d.ts +1 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/client-command-builder.d.ts +22 -0
- package/node_modules/@smithy/core/dist-types/submodules/client/smithy-client/command.d.ts +5 -6
- package/node_modules/@smithy/core/dist-types/submodules/config/config-resolver/regionConfig/getInstanceMetadataRegion.d.ts +7 -0
- package/node_modules/@smithy/core/dist-types/submodules/config/defaults-mode/constants.d.ts +12 -0
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.browser.d.ts +4 -5
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/index.d.ts +4 -5
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/adaptors/getEndpointFromInstructions.d.ts +3 -4
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/endpointMiddleware.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/endpoints/middleware-endpoint/getEndpointPlugin.d.ts +1 -2
- package/node_modules/@smithy/core/dist-types/submodules/serde/util-stream/checksum/ChecksumStream.d.ts +22 -14
- package/node_modules/@smithy/core/package.json +2 -3
- package/node_modules/@smithy/credential-provider-imds/package.json +3 -3
- package/node_modules/@smithy/fetch-http-handler/package.json +4 -4
- package/node_modules/@smithy/middleware-compression/package.json +3 -3
- package/node_modules/@smithy/node-http-handler/package.json +4 -4
- package/node_modules/@smithy/signature-v4/package.json +3 -4
- package/node_modules/@smithy/types/dist-es/endpoints/EndpointParameterInstructions.js +1 -0
- package/node_modules/@smithy/types/dist-types/index.d.ts +1 -0
- package/node_modules/@smithy/types/package.json +1 -1
- package/package.json +10 -10
- package/node_modules/@aws-crypto/crc32/CHANGELOG.md +0 -100
- package/node_modules/@aws-crypto/crc32/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32/README.md +0 -16
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js +0 -31
- package/node_modules/@aws-crypto/crc32/build/main/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/main/index.js +0 -108
- package/node_modules/@aws-crypto/crc32/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js +0 -28
- package/node_modules/@aws-crypto/crc32/build/module/aws_crc32.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32/build/module/index.js +0 -103
- package/node_modules/@aws-crypto/crc32/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32/package.json +0 -32
- package/node_modules/@aws-crypto/crc32/src/aws_crc32.ts +0 -24
- package/node_modules/@aws-crypto/crc32/src/index.ts +0 -92
- package/node_modules/@aws-crypto/crc32/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/crc32c/CHANGELOG.md +0 -76
- package/node_modules/@aws-crypto/crc32c/LICENSE +0 -201
- package/node_modules/@aws-crypto/crc32c/README.md +0 -16
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js +0 -31
- package/node_modules/@aws-crypto/crc32c/build/main/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/main/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/main/index.js +0 -78
- package/node_modules/@aws-crypto/crc32c/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js +0 -28
- package/node_modules/@aws-crypto/crc32c/build/module/aws_crc32c.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/build/module/index.d.ts +0 -7
- package/node_modules/@aws-crypto/crc32c/build/module/index.js +0 -73
- package/node_modules/@aws-crypto/crc32c/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/crc32c/package.json +0 -32
- package/node_modules/@aws-crypto/crc32c/src/aws_crc32c.ts +0 -24
- package/node_modules/@aws-crypto/crc32c/src/index.ts +0 -64
- package/node_modules/@aws-crypto/crc32c/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/crc32c/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha1-browser/CHANGELOG.md +0 -62
- package/node_modules/@aws-crypto/sha1-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha1-browser/README.md +0 -21
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js +0 -31
- package/node_modules/@aws-crypto/sha1-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js +0 -29
- package/node_modules/@aws-crypto/sha1-browser/build/main/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha1-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js +0 -61
- package/node_modules/@aws-crypto/sha1-browser/build/main/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js +0 -28
- package/node_modules/@aws-crypto/sha1-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.d.ts +0 -8
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js +0 -26
- package/node_modules/@aws-crypto/sha1-browser/build/module/crossPlatformSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha1-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha1-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.d.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js +0 -58
- package/node_modules/@aws-crypto/sha1-browser/build/module/webCryptoSha1.js.map +0 -1
- package/node_modules/@aws-crypto/sha1-browser/package.json +0 -35
- package/node_modules/@aws-crypto/sha1-browser/src/constants.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/crossPlatformSha1.ts +0 -29
- package/node_modules/@aws-crypto/sha1-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha1-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha1-browser/src/webCryptoSha1.ts +0 -79
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha1-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-browser/CHANGELOG.md +0 -118
- package/node_modules/@aws-crypto/sha256-browser/LICENSE +0 -202
- package/node_modules/@aws-crypto/sha256-browser/README.md +0 -31
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js +0 -43
- package/node_modules/@aws-crypto/sha256-browser/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js +0 -30
- package/node_modules/@aws-crypto/sha256-browser/build/main/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js +0 -11
- package/node_modules/@aws-crypto/sha256-browser/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js +0 -56
- package/node_modules/@aws-crypto/sha256-browser/build/main/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js +0 -40
- package/node_modules/@aws-crypto/sha256-browser/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.d.ts +0 -8
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js +0 -27
- package/node_modules/@aws-crypto/sha256-browser/build/module/crossPlatformSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js +0 -3
- package/node_modules/@aws-crypto/sha256-browser/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js +0 -7
- package/node_modules/@aws-crypto/sha256-browser/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.d.ts +0 -10
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js +0 -53
- package/node_modules/@aws-crypto/sha256-browser/build/module/webCryptoSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-browser/package.json +0 -33
- package/node_modules/@aws-crypto/sha256-browser/src/constants.ts +0 -41
- package/node_modules/@aws-crypto/sha256-browser/src/crossPlatformSha256.ts +0 -30
- package/node_modules/@aws-crypto/sha256-browser/src/index.ts +0 -2
- package/node_modules/@aws-crypto/sha256-browser/src/isEmptyData.ts +0 -9
- package/node_modules/@aws-crypto/sha256-browser/src/webCryptoSha256.ts +0 -71
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-browser/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/sha256-js/CHANGELOG.md +0 -106
- package/node_modules/@aws-crypto/sha256-js/LICENSE +0 -201
- package/node_modules/@aws-crypto/sha256-js/README.md +0 -29
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js +0 -124
- package/node_modules/@aws-crypto/sha256-js/build/main/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js +0 -98
- package/node_modules/@aws-crypto/sha256-js/build/main/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js +0 -85
- package/node_modules/@aws-crypto/sha256-js/build/main/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js +0 -322
- package/node_modules/@aws-crypto/sha256-js/build/main/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.d.ts +0 -17
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js +0 -121
- package/node_modules/@aws-crypto/sha256-js/build/module/RawSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.d.ts +0 -20
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js +0 -95
- package/node_modules/@aws-crypto/sha256-js/build/module/constants.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/sha256-js/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.d.ts +0 -12
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js +0 -82
- package/node_modules/@aws-crypto/sha256-js/build/module/jsSha256.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.d.ts +0 -5
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js +0 -319
- package/node_modules/@aws-crypto/sha256-js/build/module/knownHashes.fixture.js.map +0 -1
- package/node_modules/@aws-crypto/sha256-js/package.json +0 -32
- package/node_modules/@aws-crypto/sha256-js/src/RawSha256.ts +0 -164
- package/node_modules/@aws-crypto/sha256-js/src/constants.ts +0 -98
- package/node_modules/@aws-crypto/sha256-js/src/index.ts +0 -1
- package/node_modules/@aws-crypto/sha256-js/src/jsSha256.ts +0 -94
- package/node_modules/@aws-crypto/sha256-js/src/knownHashes.fixture.ts +0 -401
- package/node_modules/@aws-crypto/sha256-js/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/sha256-js/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/supports-web-crypto/CHANGELOG.md +0 -66
- package/node_modules/@aws-crypto/supports-web-crypto/LICENSE +0 -202
- package/node_modules/@aws-crypto/supports-web-crypto/README.md +0 -32
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js +0 -5
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js +0 -69
- package/node_modules/@aws-crypto/supports-web-crypto/build/main/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.d.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js +0 -2
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.d.ts +0 -4
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js +0 -62
- package/node_modules/@aws-crypto/supports-web-crypto/build/module/supportsWebCrypto.js.map +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/package.json +0 -28
- package/node_modules/@aws-crypto/supports-web-crypto/src/index.ts +0 -1
- package/node_modules/@aws-crypto/supports-web-crypto/src/supportsWebCrypto.ts +0 -76
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.json +0 -10
- package/node_modules/@aws-crypto/supports-web-crypto/tsconfig.module.json +0 -7
- package/node_modules/@aws-crypto/util/CHANGELOG.md +0 -71
- package/node_modules/@aws-crypto/util/LICENSE +0 -201
- package/node_modules/@aws-crypto/util/README.md +0 -16
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js +0 -24
- package/node_modules/@aws-crypto/util/build/main/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/main/index.js +0 -14
- package/node_modules/@aws-crypto/util/build/main/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js +0 -13
- package/node_modules/@aws-crypto/util/build/main/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js +0 -15
- package/node_modules/@aws-crypto/util/build/main/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js +0 -20
- package/node_modules/@aws-crypto/util/build/main/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js +0 -20
- package/node_modules/@aws-crypto/util/build/module/convertToBuffer.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/index.d.ts +0 -4
- package/node_modules/@aws-crypto/util/build/module/index.js +0 -7
- package/node_modules/@aws-crypto/util/build/module/index.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.d.ts +0 -2
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js +0 -9
- package/node_modules/@aws-crypto/util/build/module/isEmptyData.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js +0 -11
- package/node_modules/@aws-crypto/util/build/module/numToUint8.js.map +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.d.ts +0 -1
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js +0 -16
- package/node_modules/@aws-crypto/util/build/module/uint32ArrayFrom.js.map +0 -1
- package/node_modules/@aws-crypto/util/package.json +0 -32
- package/node_modules/@aws-crypto/util/src/convertToBuffer.ts +0 -30
- package/node_modules/@aws-crypto/util/src/index.ts +0 -7
- package/node_modules/@aws-crypto/util/src/isEmptyData.ts +0 -12
- package/node_modules/@aws-crypto/util/src/numToUint8.ts +0 -11
- package/node_modules/@aws-crypto/util/src/uint32ArrayFrom.ts +0 -16
- package/node_modules/@aws-crypto/util/tsconfig.json +0 -9
- package/node_modules/@aws-crypto/util/tsconfig.module.json +0 -7
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +0 -21
- package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +0 -2
- package/node_modules/@aws-sdk/checksums/dist-es/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +0 -21
- package/node_modules/@aws-sdk/checksums/dist-types/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/checksums/dist-types/flexible-checksums/getCrc32ChecksumAlgorithmFunction.d.ts +0 -10
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/flexible-checksums/getCrc32ChecksumAlgorithmFunction.d.ts +0 -12
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +0 -407
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +0 -3022
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +0 -227
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +0 -35
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +0 -48
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +0 -40
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +0 -1600
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +0 -33485
- package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +0 -82
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +0 -431
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +0 -3676
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +0 -46
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +0 -865
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +0 -34
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +0 -47
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +0 -38
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +0 -3086
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +0 -122
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +0 -758
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +0 -29
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +0 -257
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +0 -39
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +0 -58
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +0 -50
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +0 -3789
- package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +0 -52
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +0 -415
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +0 -1179
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +0 -337
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +0 -34
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +0 -46
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +0 -836
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +0 -49
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +0 -8
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +0 -1915
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +0 -32
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +0 -45
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +0 -12
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +0 -39
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +0 -6200
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +0 -869
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +0 -862
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +0 -42
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +0 -27
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +0 -71
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +0 -49
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +0 -13
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +0 -2
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +0 -29
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +0 -25
- package/node_modules/@aws-sdk/middleware-flexible-checksums/LICENSE +0 -201
- package/node_modules/@aws-sdk/middleware-flexible-checksums/README.md +0 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +0 -18
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-es/index.js +0 -1
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-types/index.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +0 -42
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +0 -1026
- package/node_modules/@aws-sdk/util-locate-window/LICENSE +0 -201
- package/node_modules/@aws-sdk/util-locate-window/README.md +0 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -12
- package/node_modules/@aws-sdk/util-locate-window/dist-es/index.js +0 -10
- package/node_modules/@aws-sdk/util-locate-window/dist-types/index.d.ts +0 -6
- package/node_modules/@aws-sdk/util-locate-window/dist-types/ts3.4/index.d.ts +0 -1
- package/node_modules/@aws-sdk/util-locate-window/package.json +0 -54
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +0 -57
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +0 -234
- package/node_modules/@smithy/is-array-buffer/LICENSE +0 -201
- package/node_modules/@smithy/is-array-buffer/README.md +0 -10
- package/node_modules/@smithy/is-array-buffer/dist-cjs/index.js +0 -32
- package/node_modules/@smithy/is-array-buffer/dist-es/index.js +0 -2
- package/node_modules/@smithy/is-array-buffer/dist-types/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/dist-types/ts3.4/index.d.ts +0 -4
- package/node_modules/@smithy/is-array-buffer/package.json +0 -60
- package/node_modules/@smithy/util-buffer-from/LICENSE +0 -201
- package/node_modules/@smithy/util-buffer-from/README.md +0 -10
- package/node_modules/@smithy/util-buffer-from/dist-cjs/index.js +0 -47
- package/node_modules/@smithy/util-buffer-from/dist-es/index.js +0 -14
- package/node_modules/@smithy/util-buffer-from/dist-types/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/dist-types/ts3.4/index.d.ts +0 -13
- package/node_modules/@smithy/util-buffer-from/package.json +0 -61
- package/node_modules/@smithy/util-utf8/LICENSE +0 -201
- package/node_modules/@smithy/util-utf8/README.md +0 -4
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/fromUtf8.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/index.js +0 -65
- package/node_modules/@smithy/util-utf8/dist-cjs/toUint8Array.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-cjs/toUtf8.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.browser.js +0 -1
- package/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js +0 -5
- package/node_modules/@smithy/util-utf8/dist-es/index.js +0 -3
- package/node_modules/@smithy/util-utf8/dist-es/toUint8Array.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.browser.js +0 -9
- package/node_modules/@smithy/util-utf8/dist-es/toUtf8.js +0 -10
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.browser.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/fromUtf8.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/index.d.ts +0 -3
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUint8Array.d.ts +0 -1
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.browser.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/dist-types/ts3.4/toUtf8.d.ts +0 -7
- package/node_modules/@smithy/util-utf8/package.json +0 -66
- /package/node_modules/@aws-sdk/checksums/dist-es/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/configuration.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/constants.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksum.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/hasHeader.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/isStreaming.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/stringHasher.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/types.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-es/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.js +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{crc64-nvme → submodules/crc/crc64-nvme}/crc64-nvme-crt-container.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/NODE_REQUEST_CHECKSUM_CALCULATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/NODE_RESPONSE_CHECKSUM_VALIDATION_CONFIG_OPTIONS.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/configuration.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/constants.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsInputMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/flexibleChecksumsResponseMiddleware.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksum.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmForRequest.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumAlgorithmListForResponse.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getChecksumLocationName.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/getFlexibleChecksumsPlugin.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/hasHeader.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/hasHeaderWithPrefix.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/isChecksumWithPartNumber.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/isStreaming.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/resolveFlexibleChecksumsConfig.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/selectChecksumAlgorithmFunction.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/stringHasher.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/stringUnionSelector.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/types.d.ts +0 -0
- /package/node_modules/@aws-sdk/checksums/dist-types/ts3.4/{flexible-checksums → submodules/flexible-checksums}/validateChecksumFromResponse.d.ts +0 -0
- /package/node_modules/{@smithy/core/dist-es/submodules/endpoints/middleware-endpoint/types.js → @aws-sdk/client-ec2/dist-es/models/models_8.js} +0 -0
- /package/node_modules/@smithy/{core/dist-types/submodules/endpoints/middleware-endpoint/types.d.ts → types/dist-types/endpoints/EndpointParameterInstructions.d.ts} +0 -0
|
@@ -1,3086 +0,0 @@
|
|
|
1
|
-
const _A = "Action";
|
|
2
|
-
const _AA = "AliasArn";
|
|
3
|
-
const _AC = "AliasConfiguration";
|
|
4
|
-
const _ACc = "AccessConfigs";
|
|
5
|
-
const _ACl = "AllowCredentials";
|
|
6
|
-
const _AFSC = "AppliedFunctionScalingConfig";
|
|
7
|
-
const _AH = "AllowHeaders";
|
|
8
|
-
const _AIT = "AllowedInstanceTypes";
|
|
9
|
-
const _AL = "AccountLimit";
|
|
10
|
-
const _ALEE = "AliasLimitExceededException";
|
|
11
|
-
const _ALL = "ApplicationLogLevel";
|
|
12
|
-
const _ALVP = "AddLayerVersionPermission";
|
|
13
|
-
const _ALVPR = "AddLayerVersionPermissionRequest";
|
|
14
|
-
const _ALVPRd = "AddLayerVersionPermissionResponse";
|
|
15
|
-
const _ALl = "AliasList";
|
|
16
|
-
const _AM = "AllowMethods";
|
|
17
|
-
const _AMKESC = "AmazonManagedKafkaEventSourceConfig";
|
|
18
|
-
const _AO = "AllowOrigins";
|
|
19
|
-
const _AOp = "ApplyOn";
|
|
20
|
-
const _AP = "AllowedPublishers";
|
|
21
|
-
const _APCE = "AvailableProvisionedConcurrentExecutions";
|
|
22
|
-
const _APCEl = "AllocatedProvisionedConcurrentExecutions";
|
|
23
|
-
const _APR = "AddPermissionRequest";
|
|
24
|
-
const _APRd = "AddPermissionResponse";
|
|
25
|
-
const _APd = "AddPermission";
|
|
26
|
-
const _ARC = "AliasRoutingConfiguration";
|
|
27
|
-
const _AT = "AuthType";
|
|
28
|
-
const _AU = "AccountUsage";
|
|
29
|
-
const _AVW = "AdditionalVersionWeights";
|
|
30
|
-
const _Al = "Aliases";
|
|
31
|
-
const _Ar = "Architectures";
|
|
32
|
-
const _Arn = "Arn";
|
|
33
|
-
const _At = "Attribute";
|
|
34
|
-
const _Att = "Attempt";
|
|
35
|
-
const _B = "Blob";
|
|
36
|
-
const _BBOFE = "BisectBatchOnFunctionError";
|
|
37
|
-
const _BOP = "BinaryOperationPayload";
|
|
38
|
-
const _BS = "BlobStream";
|
|
39
|
-
const _BSa = "BatchSize";
|
|
40
|
-
const _C = "Concurrency";
|
|
41
|
-
const _CA = "CompatibleArchitectures";
|
|
42
|
-
const _CAR = "CreateAliasRequest";
|
|
43
|
-
const _CAUDE = "CodeArtifactUserDeletedException";
|
|
44
|
-
const _CAUFE = "CodeArtifactUserFailedException";
|
|
45
|
-
const _CAUPE = "CodeArtifactUserPendingException";
|
|
46
|
-
const _CAo = "CompatibleArchitecture";
|
|
47
|
-
const _CAr = "CreateAlias";
|
|
48
|
-
const _CAu = "CurrentAttempt";
|
|
49
|
-
const _CC = "ClientContext";
|
|
50
|
-
const _CCP = "CreateCapacityProvider";
|
|
51
|
-
const _CCPR = "CreateCapacityProviderRequest";
|
|
52
|
-
const _CCPRr = "CreateCapacityProviderResponse";
|
|
53
|
-
const _CCSC = "CreateCodeSigningConfig";
|
|
54
|
-
const _CCSCR = "CreateCodeSigningConfigRequest";
|
|
55
|
-
const _CCSCRr = "CreateCodeSigningConfigResponse";
|
|
56
|
-
const _CD = "CallbackDetails";
|
|
57
|
-
const _CDE = "CheckpointDurableExecution";
|
|
58
|
-
const _CDER = "CheckpointDurableExecutionRequest";
|
|
59
|
-
const _CDERh = "CheckpointDurableExecutionResponse";
|
|
60
|
-
const _CDo = "ContextDetails";
|
|
61
|
-
const _CDr = "CreatedDate";
|
|
62
|
-
const _CE = "ConcurrentExecutions";
|
|
63
|
-
const _CESM = "CreateEventSourceMapping";
|
|
64
|
-
const _CESMR = "CreateEventSourceMappingRequest";
|
|
65
|
-
const _CF = "CreateFunction";
|
|
66
|
-
const _CFD = "CallbackFailedDetails";
|
|
67
|
-
const _CFDo = "ContextFailedDetails";
|
|
68
|
-
const _CFR = "CreateFunctionRequest";
|
|
69
|
-
const _CFUC = "CreateFunctionUrlConfig";
|
|
70
|
-
const _CFUCR = "CreateFunctionUrlConfigRequest";
|
|
71
|
-
const _CFUCRr = "CreateFunctionUrlConfigResponse";
|
|
72
|
-
const _CGI = "ConsumerGroupId";
|
|
73
|
-
const _CI = "CallbackId";
|
|
74
|
-
const _CID = "ChainedInvokeDetails";
|
|
75
|
-
const _CIFD = "ChainedInvokeFailedDetails";
|
|
76
|
-
const _CIO = "ChainedInvokeOptions";
|
|
77
|
-
const _CISD = "ChainedInvokeStartedDetails";
|
|
78
|
-
const _CISDh = "ChainedInvokeStoppedDetails";
|
|
79
|
-
const _CISDha = "ChainedInvokeSucceededDetails";
|
|
80
|
-
const _CITOD = "ChainedInvokeTimedOutDetails";
|
|
81
|
-
const _CN = "CollectionName";
|
|
82
|
-
const _CO = "CallbackOptions";
|
|
83
|
-
const _COo = "ContextOptions";
|
|
84
|
-
const _CP = "CapacityProvider";
|
|
85
|
-
const _CPA = "CapacityProviderArn";
|
|
86
|
-
const _CPC = "CapacityProviderConfig";
|
|
87
|
-
const _CPL = "CapacityProvidersList";
|
|
88
|
-
const _CPLEE = "CapacityProviderLimitExceededException";
|
|
89
|
-
const _CPN = "CapacityProviderName";
|
|
90
|
-
const _CPORA = "CapacityProviderOperatorRoleArn";
|
|
91
|
-
const _CPPC = "CapacityProviderPermissionsConfig";
|
|
92
|
-
const _CPSC = "CapacityProviderScalingConfig";
|
|
93
|
-
const _CPSPL = "CapacityProviderScalingPoliciesList";
|
|
94
|
-
const _CPVC = "CapacityProviderVpcConfig";
|
|
95
|
-
const _CPa = "CapacityProviders";
|
|
96
|
-
const _CR = "CompatibleRuntimes";
|
|
97
|
-
const _CRo = "CompatibleRuntime";
|
|
98
|
-
const _CS = "CodeSize";
|
|
99
|
-
const _CSC = "CodeSigningConfig";
|
|
100
|
-
const _CSCA = "CodeSigningConfigArn";
|
|
101
|
-
const _CSCI = "CodeSigningConfigId";
|
|
102
|
-
const _CSCL = "CodeSigningConfigList";
|
|
103
|
-
const _CSCNFE = "CodeSigningConfigNotFoundException";
|
|
104
|
-
const _CSCo = "CodeSigningConfigs";
|
|
105
|
-
const _CSD = "CallbackStartedDetails";
|
|
106
|
-
const _CSDa = "CallbackSucceededDetails";
|
|
107
|
-
const _CSDo = "ContextStartedDetails";
|
|
108
|
-
const _CSDon = "ContextSucceededDetails";
|
|
109
|
-
const _CSEE = "CodeStorageExceededException";
|
|
110
|
-
const _CSP = "CodeSigningPolicies";
|
|
111
|
-
const _CSU = "CodeSizeUnzipped";
|
|
112
|
-
const _CSZ = "CodeSizeZipped";
|
|
113
|
-
const _CSo = "CodeSha256";
|
|
114
|
-
const _CSon = "ConfigSha256";
|
|
115
|
-
const _CT = "CheckpointToken";
|
|
116
|
-
const _CTE = "CallbackTimeoutException";
|
|
117
|
-
const _CTOD = "CallbackTimedOutDetails";
|
|
118
|
-
const _CT_ = "Content-Type";
|
|
119
|
-
const _CTl = "ClientToken";
|
|
120
|
-
const _CTr = "CreationTime";
|
|
121
|
-
const _CUES = "CheckpointUpdatedExecutionState";
|
|
122
|
-
const _CVFE = "CodeVerificationFailedException";
|
|
123
|
-
const _Co = "Cors";
|
|
124
|
-
const _Cod = "Code";
|
|
125
|
-
const _Com = "Command";
|
|
126
|
-
const _Con = "Configuration";
|
|
127
|
-
const _Cont = "Content";
|
|
128
|
-
const _D = "Description";
|
|
129
|
-
const _DA = "DeleteAlias";
|
|
130
|
-
const _DAR = "DeleteAliasRequest";
|
|
131
|
-
const _DC = "DestinationConfig";
|
|
132
|
-
const _DCP = "DeleteCapacityProvider";
|
|
133
|
-
const _DCPR = "DeleteCapacityProviderRequest";
|
|
134
|
-
const _DCPRe = "DeleteCapacityProviderResponse";
|
|
135
|
-
const _DCSC = "DeleteCodeSigningConfig";
|
|
136
|
-
const _DCSCR = "DeleteCodeSigningConfigRequest";
|
|
137
|
-
const _DCSCRe = "DeleteCodeSigningConfigResponse";
|
|
138
|
-
const _DCu = "DurableConfig";
|
|
139
|
-
const _DDBESC = "DocumentDBEventSourceConfig";
|
|
140
|
-
const _DE = "DurableExecutions";
|
|
141
|
-
const _DEA = "DurableExecutionArn";
|
|
142
|
-
const _DEASE = "DurableExecutionAlreadyStartedException";
|
|
143
|
-
const _DEN = "DurableExecutionName";
|
|
144
|
-
const _DESM = "DeleteEventSourceMapping";
|
|
145
|
-
const _DESMR = "DeleteEventSourceMappingRequest";
|
|
146
|
-
const _DF = "DeleteFunction";
|
|
147
|
-
const _DFC = "DeleteFunctionConcurrency";
|
|
148
|
-
const _DFCR = "DeleteFunctionConcurrencyRequest";
|
|
149
|
-
const _DFCSC = "DeleteFunctionCodeSigningConfig";
|
|
150
|
-
const _DFCSCR = "DeleteFunctionCodeSigningConfigRequest";
|
|
151
|
-
const _DFEIC = "DeleteFunctionEventInvokeConfig";
|
|
152
|
-
const _DFEICR = "DeleteFunctionEventInvokeConfigRequest";
|
|
153
|
-
const _DFR = "DeleteFunctionRequest";
|
|
154
|
-
const _DFRe = "DeleteFunctionResponse";
|
|
155
|
-
const _DFUC = "DeleteFunctionUrlConfig";
|
|
156
|
-
const _DFUCR = "DeleteFunctionUrlConfigRequest";
|
|
157
|
-
const _DLC = "DeadLetterConfig";
|
|
158
|
-
const _DLV = "DeleteLayerVersion";
|
|
159
|
-
const _DLVR = "DeleteLayerVersionRequest";
|
|
160
|
-
const _DN = "DatabaseName";
|
|
161
|
-
const _DPCC = "DeleteProvisionedConcurrencyConfig";
|
|
162
|
-
const _DPCCR = "DeleteProvisionedConcurrencyConfigRequest";
|
|
163
|
-
const _DR = "DryRun";
|
|
164
|
-
const _De = "Destination";
|
|
165
|
-
const _Du = "Duration";
|
|
166
|
-
const _E = "Error";
|
|
167
|
-
const _EC = "ErrorCode";
|
|
168
|
-
const _ECADE = "EC2AccessDeniedException";
|
|
169
|
-
const _ECEC = "EC2ErrorCode";
|
|
170
|
-
const _ECTE = "EC2ThrottledException";
|
|
171
|
-
const _ECUE = "EC2UnexpectedException";
|
|
172
|
-
const _ED = "ErrorData";
|
|
173
|
-
const _EDr = "ErrorDetails";
|
|
174
|
-
const _EDx = "ExecutionDetails";
|
|
175
|
-
const _EE = "EnvironmentError";
|
|
176
|
-
const _EEMGBPVC = "ExecutionEnvironmentMemoryGiBPerVCpu";
|
|
177
|
-
const _EEv = "EventError";
|
|
178
|
-
const _EFD = "ExecutionFailedDetails";
|
|
179
|
-
const _EFSIOE = "EFSIOException";
|
|
180
|
-
const _EFSMCE = "EFSMountConnectivityException";
|
|
181
|
-
const _EFSMFE = "EFSMountFailureException";
|
|
182
|
-
const _EFSMTE = "EFSMountTimeoutException";
|
|
183
|
-
const _EH = "ExposeHeaders";
|
|
184
|
-
const _EI = "EventId";
|
|
185
|
-
const _EIT = "ExcludedInstanceTypes";
|
|
186
|
-
const _EIv = "EventInput";
|
|
187
|
-
const _EM = "ErrorMessage";
|
|
188
|
-
const _ENILRE = "ENILimitReachedException";
|
|
189
|
-
const _ENINRE = "ENINotReadyException";
|
|
190
|
-
const _EO = "ErrorObject";
|
|
191
|
-
const _EP = "EntryPoint";
|
|
192
|
-
const _ER = "EnvironmentResponse";
|
|
193
|
-
const _ERF = "EventRecordFormat";
|
|
194
|
-
const _ERv = "EventResult";
|
|
195
|
-
const _ES = "EphemeralStorage";
|
|
196
|
-
const _ESA = "EventSourceArn";
|
|
197
|
-
const _ESD = "ExecutionStartedDetails";
|
|
198
|
-
const _ESDx = "ExecutionSucceededDetails";
|
|
199
|
-
const _ESDxe = "ExecutionStoppedDetails";
|
|
200
|
-
const _ESM = "EventSourceMappings";
|
|
201
|
-
const _ESMA = "EventSourceMappingArn";
|
|
202
|
-
const _ESMC = "EventSourceMappingConfiguration";
|
|
203
|
-
const _ESML = "EventSourceMappingsList";
|
|
204
|
-
const _ESMLC = "EventSourceMappingLoggingConfig";
|
|
205
|
-
const _ESMMC = "EventSourceMappingMetricsConfig";
|
|
206
|
-
const _EST = "EventSourceToken";
|
|
207
|
-
const _ESv = "EventStream";
|
|
208
|
-
const _ET = "ErrorType";
|
|
209
|
-
const _ETOD = "ExecutionTimedOutDetails";
|
|
210
|
-
const _ETn = "EndTimestamp";
|
|
211
|
-
const _ETv = "EventType";
|
|
212
|
-
const _ETve = "EventTimestamp";
|
|
213
|
-
const _ETx = "ExecutionTimeout";
|
|
214
|
-
const _ETxp = "ExplicitTags";
|
|
215
|
-
const _EV = "ExecutedVersion";
|
|
216
|
-
const _EVN = "EnvironmentVariableName";
|
|
217
|
-
const _EVV = "EnvironmentVariableValue";
|
|
218
|
-
const _EVn = "EnvironmentVariables";
|
|
219
|
-
const _En = "Enabled";
|
|
220
|
-
const _End = "Endpoints";
|
|
221
|
-
const _Env = "Environment";
|
|
222
|
-
const _Ev = "Event";
|
|
223
|
-
const _Eve = "Events";
|
|
224
|
-
const _Ex = "Execution";
|
|
225
|
-
const _F = "Filter";
|
|
226
|
-
const _FA = "FunctionArn";
|
|
227
|
-
const _FAu = "FunctionArns";
|
|
228
|
-
const _FC = "FunctionCount";
|
|
229
|
-
const _FCE = "FilterCriteriaError";
|
|
230
|
-
const _FCL = "FunctionCodeLocation";
|
|
231
|
-
const _FCi = "FilterCriteria";
|
|
232
|
-
const _FCu = "FunctionCode";
|
|
233
|
-
const _FCun = "FunctionConfiguration";
|
|
234
|
-
const _FD = "FullDocument";
|
|
235
|
-
const _FE = "FunctionError";
|
|
236
|
-
const _FEIC = "FunctionEventInvokeConfig";
|
|
237
|
-
const _FEICL = "FunctionEventInvokeConfigList";
|
|
238
|
-
const _FEICu = "FunctionEventInvokeConfigs";
|
|
239
|
-
const _FL = "FilterList";
|
|
240
|
-
const _FLu = "FunctionList";
|
|
241
|
-
const _FN = "FunctionName";
|
|
242
|
-
const _FRT = "FunctionResponseTypes";
|
|
243
|
-
const _FS = "FunctionState";
|
|
244
|
-
const _FSC = "FileSystemConfigs";
|
|
245
|
-
const _FSCL = "FileSystemConfigList";
|
|
246
|
-
const _FSCi = "FileSystemConfig";
|
|
247
|
-
const _FSCu = "FunctionScalingConfig";
|
|
248
|
-
const _FU = "FunctionUrl";
|
|
249
|
-
const _FUAT = "FunctionUrlAuthType";
|
|
250
|
-
const _FUC = "FunctionUrlConfig";
|
|
251
|
-
const _FUCL = "FunctionUrlConfigList";
|
|
252
|
-
const _FUCu = "FunctionUrlConfigs";
|
|
253
|
-
const _FV = "FunctionVersion";
|
|
254
|
-
const _FVBCPL = "FunctionVersionsByCapacityProviderList";
|
|
255
|
-
const _FVBCPLI = "FunctionVersionsByCapacityProviderListItem";
|
|
256
|
-
const _FVPCPLEE = "FunctionVersionsPerCapacityProviderLimitExceededException";
|
|
257
|
-
const _FVu = "FunctionVersions";
|
|
258
|
-
const _Fi = "Filters";
|
|
259
|
-
const _Fu = "Functions";
|
|
260
|
-
const _GA = "GetAlias";
|
|
261
|
-
const _GAR = "GetAliasRequest";
|
|
262
|
-
const _GAS = "GetAccountSettings";
|
|
263
|
-
const _GASR = "GetAccountSettingsRequest";
|
|
264
|
-
const _GASRe = "GetAccountSettingsResponse";
|
|
265
|
-
const _GCP = "GetCapacityProvider";
|
|
266
|
-
const _GCPR = "GetCapacityProviderRequest";
|
|
267
|
-
const _GCPRe = "GetCapacityProviderResponse";
|
|
268
|
-
const _GCSC = "GetCodeSigningConfig";
|
|
269
|
-
const _GCSCR = "GetCodeSigningConfigRequest";
|
|
270
|
-
const _GCSCRe = "GetCodeSigningConfigResponse";
|
|
271
|
-
const _GDE = "GetDurableExecution";
|
|
272
|
-
const _GDEH = "GetDurableExecutionHistory";
|
|
273
|
-
const _GDEHR = "GetDurableExecutionHistoryRequest";
|
|
274
|
-
const _GDEHRe = "GetDurableExecutionHistoryResponse";
|
|
275
|
-
const _GDER = "GetDurableExecutionRequest";
|
|
276
|
-
const _GDERe = "GetDurableExecutionResponse";
|
|
277
|
-
const _GDES = "GetDurableExecutionState";
|
|
278
|
-
const _GDESR = "GetDurableExecutionStateRequest";
|
|
279
|
-
const _GDESRe = "GetDurableExecutionStateResponse";
|
|
280
|
-
const _GESM = "GetEventSourceMapping";
|
|
281
|
-
const _GESMR = "GetEventSourceMappingRequest";
|
|
282
|
-
const _GF = "GetFunction";
|
|
283
|
-
const _GFC = "GetFunctionConcurrency";
|
|
284
|
-
const _GFCR = "GetFunctionConcurrencyRequest";
|
|
285
|
-
const _GFCRe = "GetFunctionConcurrencyResponse";
|
|
286
|
-
const _GFCRet = "GetFunctionConfigurationRequest";
|
|
287
|
-
const _GFCSC = "GetFunctionCodeSigningConfig";
|
|
288
|
-
const _GFCSCR = "GetFunctionCodeSigningConfigRequest";
|
|
289
|
-
const _GFCSCRe = "GetFunctionCodeSigningConfigResponse";
|
|
290
|
-
const _GFCe = "GetFunctionConfiguration";
|
|
291
|
-
const _GFEIC = "GetFunctionEventInvokeConfig";
|
|
292
|
-
const _GFEICR = "GetFunctionEventInvokeConfigRequest";
|
|
293
|
-
const _GFR = "GetFunctionRequest";
|
|
294
|
-
const _GFRC = "GetFunctionRecursionConfig";
|
|
295
|
-
const _GFRCR = "GetFunctionRecursionConfigRequest";
|
|
296
|
-
const _GFRCRe = "GetFunctionRecursionConfigResponse";
|
|
297
|
-
const _GFRe = "GetFunctionResponse";
|
|
298
|
-
const _GFSC = "GetFunctionScalingConfig";
|
|
299
|
-
const _GFSCR = "GetFunctionScalingConfigRequest";
|
|
300
|
-
const _GFSCRe = "GetFunctionScalingConfigResponse";
|
|
301
|
-
const _GFUC = "GetFunctionUrlConfig";
|
|
302
|
-
const _GFUCR = "GetFunctionUrlConfigRequest";
|
|
303
|
-
const _GFUCRe = "GetFunctionUrlConfigResponse";
|
|
304
|
-
const _GLV = "GetLayerVersion";
|
|
305
|
-
const _GLVBA = "GetLayerVersionByArn";
|
|
306
|
-
const _GLVBAR = "GetLayerVersionByArnRequest";
|
|
307
|
-
const _GLVP = "GetLayerVersionPolicy";
|
|
308
|
-
const _GLVPR = "GetLayerVersionPolicyRequest";
|
|
309
|
-
const _GLVPRe = "GetLayerVersionPolicyResponse";
|
|
310
|
-
const _GLVR = "GetLayerVersionRequest";
|
|
311
|
-
const _GLVRe = "GetLayerVersionResponse";
|
|
312
|
-
const _GP = "GetPolicy";
|
|
313
|
-
const _GPCC = "GetProvisionedConcurrencyConfig";
|
|
314
|
-
const _GPCCR = "GetProvisionedConcurrencyConfigRequest";
|
|
315
|
-
const _GPCCRe = "GetProvisionedConcurrencyConfigResponse";
|
|
316
|
-
const _GPR = "GetPolicyRequest";
|
|
317
|
-
const _GPRe = "GetPolicyResponse";
|
|
318
|
-
const _GRMC = "GetRuntimeManagementConfig";
|
|
319
|
-
const _GRMCR = "GetRuntimeManagementConfigRequest";
|
|
320
|
-
const _GRMCRe = "GetRuntimeManagementConfigResponse";
|
|
321
|
-
const _H = "Handler";
|
|
322
|
-
const _HT = "HeartbeatTimeout";
|
|
323
|
-
const _HTS = "HeartbeatTimeoutSeconds";
|
|
324
|
-
const _I = "Input";
|
|
325
|
-
const _IA = "InvokeArgs";
|
|
326
|
-
const _IAFDS = "Ipv6AllowedForDualStack";
|
|
327
|
-
const _IAR = "InvokeAsyncRequest";
|
|
328
|
-
const _IARn = "InvokeAsyncResponse";
|
|
329
|
-
const _IAn = "InvokeAsync";
|
|
330
|
-
const _IC = "ImageConfig";
|
|
331
|
-
const _ICD = "InvocationCompletedDetails";
|
|
332
|
-
const _ICE = "ImageConfigError";
|
|
333
|
-
const _ICR = "ImageConfigResponse";
|
|
334
|
-
const _ICSE = "InvalidCodeSignatureException";
|
|
335
|
-
const _ICn = "InvokeComplete";
|
|
336
|
-
const _IED = "IncludeExecutionData";
|
|
337
|
-
const _IM = "InvokeMode";
|
|
338
|
-
const _IP = "InputPayload";
|
|
339
|
-
const _IPVE = "InvalidParameterValueException";
|
|
340
|
-
const _IR = "InstanceRequirements";
|
|
341
|
-
const _IRCE = "InvalidRequestContentException";
|
|
342
|
-
const _IRE = "InvalidRuntimeException";
|
|
343
|
-
const _IRSU = "InvokeResponseStreamUpdate";
|
|
344
|
-
const _IRn = "InvocationRequest";
|
|
345
|
-
const _IRnv = "InvocationResponse";
|
|
346
|
-
const _ISGIDE = "InvalidSecurityGroupIDException";
|
|
347
|
-
const _ISIDE = "InvalidSubnetIDException";
|
|
348
|
-
const _IT = "InvocationType";
|
|
349
|
-
const _IU = "ImageUri";
|
|
350
|
-
const _IVFU = "InvokedViaFunctionUrl";
|
|
351
|
-
const _IWRS = "InvokeWithResponseStream";
|
|
352
|
-
const _IWRSCE = "InvokeWithResponseStreamCompleteEvent";
|
|
353
|
-
const _IWRSR = "InvokeWithResponseStreamRequest";
|
|
354
|
-
const _IWRSRE = "InvokeWithResponseStreamResponseEvent";
|
|
355
|
-
const _IWRSRn = "InvokeWithResponseStreamResponse";
|
|
356
|
-
const _IZFE = "InvalidZipFileException";
|
|
357
|
-
const _Id = "Id";
|
|
358
|
-
const _In = "Invoke";
|
|
359
|
-
const _K = "Key";
|
|
360
|
-
const _KKA = "KmsKeyArn";
|
|
361
|
-
const _KMSADE = "KMSAccessDeniedException";
|
|
362
|
-
const _KMSDE = "KMSDisabledException";
|
|
363
|
-
const _KMSISE = "KMSInvalidStateException";
|
|
364
|
-
const _KMSKA = "KMSKeyArn";
|
|
365
|
-
const _KMSNFE = "KMSNotFoundException";
|
|
366
|
-
const _KSRAC = "KafkaSchemaRegistryAccessConfig";
|
|
367
|
-
const _KSRACL = "KafkaSchemaRegistryAccessConfigList";
|
|
368
|
-
const _KSRC = "KafkaSchemaRegistryConfig";
|
|
369
|
-
const _KSVC = "KafkaSchemaValidationConfig";
|
|
370
|
-
const _KSVCL = "KafkaSchemaValidationConfigList";
|
|
371
|
-
const _L = "Layers";
|
|
372
|
-
const _LA = "LayerArn";
|
|
373
|
-
const _LAR = "ListAliasesRequest";
|
|
374
|
-
const _LARi = "ListAliasesResponse";
|
|
375
|
-
const _LAi = "ListAliases";
|
|
376
|
-
const _LC = "LoggingConfig";
|
|
377
|
-
const _LCP = "ListCapacityProviders";
|
|
378
|
-
const _LCPR = "ListCapacityProvidersRequest";
|
|
379
|
-
const _LCPRi = "ListCapacityProvidersResponse";
|
|
380
|
-
const _LCSC = "ListCodeSigningConfigs";
|
|
381
|
-
const _LCSCR = "ListCodeSigningConfigsRequest";
|
|
382
|
-
const _LCSCRi = "ListCodeSigningConfigsResponse";
|
|
383
|
-
const _LDEBF = "ListDurableExecutionsByFunction";
|
|
384
|
-
const _LDEBFR = "ListDurableExecutionsByFunctionRequest";
|
|
385
|
-
const _LDEBFRi = "ListDurableExecutionsByFunctionResponse";
|
|
386
|
-
const _LESM = "ListEventSourceMappings";
|
|
387
|
-
const _LESMR = "ListEventSourceMappingsRequest";
|
|
388
|
-
const _LESMRi = "ListEventSourceMappingsResponse";
|
|
389
|
-
const _LF = "LogFormat";
|
|
390
|
-
const _LFBCSC = "ListFunctionsByCodeSigningConfig";
|
|
391
|
-
const _LFBCSCR = "ListFunctionsByCodeSigningConfigRequest";
|
|
392
|
-
const _LFBCSCRi = "ListFunctionsByCodeSigningConfigResponse";
|
|
393
|
-
const _LFEIC = "ListFunctionEventInvokeConfigs";
|
|
394
|
-
const _LFEICR = "ListFunctionEventInvokeConfigsRequest";
|
|
395
|
-
const _LFEICRi = "ListFunctionEventInvokeConfigsResponse";
|
|
396
|
-
const _LFR = "ListFunctionsRequest";
|
|
397
|
-
const _LFRi = "ListFunctionsResponse";
|
|
398
|
-
const _LFUC = "ListFunctionUrlConfigs";
|
|
399
|
-
const _LFUCR = "ListFunctionUrlConfigsRequest";
|
|
400
|
-
const _LFUCRi = "ListFunctionUrlConfigsResponse";
|
|
401
|
-
const _LFVBCP = "ListFunctionVersionsByCapacityProvider";
|
|
402
|
-
const _LFVBCPR = "ListFunctionVersionsByCapacityProviderRequest";
|
|
403
|
-
const _LFVBCPRi = "ListFunctionVersionsByCapacityProviderResponse";
|
|
404
|
-
const _LFi = "ListFunctions";
|
|
405
|
-
const _LG = "LogGroup";
|
|
406
|
-
const _LI = "LicenseInfo";
|
|
407
|
-
const _LL = "LayersList";
|
|
408
|
-
const _LLI = "LayersListItem";
|
|
409
|
-
const _LLR = "ListLayersRequest";
|
|
410
|
-
const _LLRi = "ListLayersResponse";
|
|
411
|
-
const _LLV = "ListLayerVersions";
|
|
412
|
-
const _LLVR = "ListLayerVersionsRequest";
|
|
413
|
-
const _LLVRi = "ListLayerVersionsResponse";
|
|
414
|
-
const _LLi = "ListLayers";
|
|
415
|
-
const _LM = "LastModified";
|
|
416
|
-
const _LMICPC = "LambdaManagedInstancesCapacityProviderConfig";
|
|
417
|
-
const _LMP = "LocalMountPath";
|
|
418
|
-
const _LMT = "LastModifiedTime";
|
|
419
|
-
const _LMV = "LatestMatchingVersion";
|
|
420
|
-
const _LN = "LayerName";
|
|
421
|
-
const _LPCC = "ListProvisionedConcurrencyConfigs";
|
|
422
|
-
const _LPCCR = "ListProvisionedConcurrencyConfigsRequest";
|
|
423
|
-
const _LPCCRi = "ListProvisionedConcurrencyConfigsResponse";
|
|
424
|
-
const _LPR = "LastProcessingResult";
|
|
425
|
-
const _LR = "LogResult";
|
|
426
|
-
const _LRL = "LayersReferenceList";
|
|
427
|
-
const _LT = "LogType";
|
|
428
|
-
const _LTR = "ListTagsRequest";
|
|
429
|
-
const _LTRi = "ListTagsResponse";
|
|
430
|
-
const _LTi = "ListTags";
|
|
431
|
-
const _LUS = "LastUpdateStatus";
|
|
432
|
-
const _LUSR = "LastUpdateStatusReason";
|
|
433
|
-
const _LUSRC = "LastUpdateStatusReasonCode";
|
|
434
|
-
const _LV = "LayerVersions";
|
|
435
|
-
const _LVA = "LayerVersionArn";
|
|
436
|
-
const _LVBF = "ListVersionsByFunction";
|
|
437
|
-
const _LVBFR = "ListVersionsByFunctionRequest";
|
|
438
|
-
const _LVBFRi = "ListVersionsByFunctionResponse";
|
|
439
|
-
const _LVCI = "LayerVersionContentInput";
|
|
440
|
-
const _LVCO = "LayerVersionContentOutput";
|
|
441
|
-
const _LVL = "LayerVersionsList";
|
|
442
|
-
const _LVLI = "LayerVersionsListItem";
|
|
443
|
-
const _La = "Layer";
|
|
444
|
-
const _Lo = "Location";
|
|
445
|
-
const _M = "Message";
|
|
446
|
-
const _MA = "MaxAge";
|
|
447
|
-
const _MAa = "MasterArn";
|
|
448
|
-
const _MBWIS = "MaximumBatchingWindowInSeconds";
|
|
449
|
-
const _MC = "MetricsConfig";
|
|
450
|
-
const _MCa = "MaximumConcurrency";
|
|
451
|
-
const _MEAIS = "MaximumEventAgeInSeconds";
|
|
452
|
-
const _MEE = "MinExecutionEnvironments";
|
|
453
|
-
const _MEEa = "MaxExecutionEnvironments";
|
|
454
|
-
const _MI = "MaxItems";
|
|
455
|
-
const _MNSE = "ModeNotSupportedException";
|
|
456
|
-
const _MP = "MinimumPollers";
|
|
457
|
-
const _MPa = "MaximumPollers";
|
|
458
|
-
const _MR = "MasterRegion";
|
|
459
|
-
const _MRA = "MaximumRetryAttempts";
|
|
460
|
-
const _MRAIS = "MaximumRecordAgeInSeconds";
|
|
461
|
-
const _MS = "MemorySize";
|
|
462
|
-
const _MVCC = "MaxVCpuCount";
|
|
463
|
-
const _Ma = "Marker";
|
|
464
|
-
const _Me = "Metrics";
|
|
465
|
-
const _Mo = "Mode";
|
|
466
|
-
const _N = "Name";
|
|
467
|
-
const _NADS = "NextAttemptDelaySeconds";
|
|
468
|
-
const _NAT = "NextAttemptTimestamp";
|
|
469
|
-
const _NES = "NewExecutionState";
|
|
470
|
-
const _NM = "NextMarker";
|
|
471
|
-
const _NPVE = "NoPublishedVersionException";
|
|
472
|
-
const _O = "Operations";
|
|
473
|
-
const _OF = "OnFailure";
|
|
474
|
-
const _OI = "OrganizationId";
|
|
475
|
-
const _OP = "OperationPayload";
|
|
476
|
-
const _OPu = "OutputPayload";
|
|
477
|
-
const _OS = "OnSuccess";
|
|
478
|
-
const _OSp = "OptimizationStatus";
|
|
479
|
-
const _OU = "OperationUpdate";
|
|
480
|
-
const _OUp = "OperationUpdates";
|
|
481
|
-
const _Op = "Operation";
|
|
482
|
-
const _P = "Principal";
|
|
483
|
-
const _PC = "PermissionsConfig";
|
|
484
|
-
const _PCC = "ProvisionedConcurrencyConfigs";
|
|
485
|
-
const _PCCL = "ProvisionedConcurrencyConfigList";
|
|
486
|
-
const _PCCLI = "ProvisionedConcurrencyConfigListItem";
|
|
487
|
-
const _PCCNFE = "ProvisionedConcurrencyConfigNotFoundException";
|
|
488
|
-
const _PCE = "ProvisionedConcurrentExecutions";
|
|
489
|
-
const _PCa = "PayloadChunk";
|
|
490
|
-
const _PEEMC = "PerExecutionEnvironmentMaxConcurrency";
|
|
491
|
-
const _PF = "ParallelizationFactor";
|
|
492
|
-
const _PFC = "PutFunctionConcurrency";
|
|
493
|
-
const _PFCR = "PutFunctionConcurrencyRequest";
|
|
494
|
-
const _PFCSC = "PutFunctionCodeSigningConfig";
|
|
495
|
-
const _PFCSCR = "PutFunctionCodeSigningConfigRequest";
|
|
496
|
-
const _PFCSCRu = "PutFunctionCodeSigningConfigResponse";
|
|
497
|
-
const _PFE = "PreconditionFailedException";
|
|
498
|
-
const _PFEIC = "PutFunctionEventInvokeConfig";
|
|
499
|
-
const _PFEICR = "PutFunctionEventInvokeConfigRequest";
|
|
500
|
-
const _PFRC = "PutFunctionRecursionConfig";
|
|
501
|
-
const _PFRCR = "PutFunctionRecursionConfigRequest";
|
|
502
|
-
const _PFRCRu = "PutFunctionRecursionConfigResponse";
|
|
503
|
-
const _PFSC = "PutFunctionScalingConfig";
|
|
504
|
-
const _PFSCR = "PutFunctionScalingConfigRequest";
|
|
505
|
-
const _PFSCRu = "PutFunctionScalingConfigResponse";
|
|
506
|
-
const _PGN = "PollerGroupName";
|
|
507
|
-
const _PI = "ParentId";
|
|
508
|
-
const _PLEE = "PolicyLengthExceededException";
|
|
509
|
-
const _PLV = "PublishLayerVersion";
|
|
510
|
-
const _PLVR = "PublishLayerVersionRequest";
|
|
511
|
-
const _PLVRu = "PublishLayerVersionResponse";
|
|
512
|
-
const _PMT = "PredefinedMetricType";
|
|
513
|
-
const _POID = "PrincipalOrgID";
|
|
514
|
-
const _PPC = "ProvisionedPollerConfig";
|
|
515
|
-
const _PPCC = "PutProvisionedConcurrencyConfig";
|
|
516
|
-
const _PPCCR = "PutProvisionedConcurrencyConfigRequest";
|
|
517
|
-
const _PPCCRu = "PutProvisionedConcurrencyConfigResponse";
|
|
518
|
-
const _PPE = "PublicPolicyException";
|
|
519
|
-
const _PRMC = "PutRuntimeManagementConfig";
|
|
520
|
-
const _PRMCR = "PutRuntimeManagementConfigRequest";
|
|
521
|
-
const _PRMCRu = "PutRuntimeManagementConfigResponse";
|
|
522
|
-
const _PT = "PropagateTags";
|
|
523
|
-
const _PTa = "PackageType";
|
|
524
|
-
const _PTu = "PublishTo";
|
|
525
|
-
const _PV = "PublishVersion";
|
|
526
|
-
const _PVR = "PublishVersionRequest";
|
|
527
|
-
const _Pa = "Payload";
|
|
528
|
-
const _Pat = "Pattern";
|
|
529
|
-
const _Po = "Policy";
|
|
530
|
-
const _Pu = "Publish";
|
|
531
|
-
const _Q = "Qualifier";
|
|
532
|
-
const _Qu = "Queues";
|
|
533
|
-
const _R = "Reason";
|
|
534
|
-
const _RA = "Retry-After";
|
|
535
|
-
const _RC = "RoutingConfig";
|
|
536
|
-
const _RCE = "ResourceConflictException";
|
|
537
|
-
const _RCEe = "ReservedConcurrentExecutions";
|
|
538
|
-
const _RCe = "ReplayChildren";
|
|
539
|
-
const _RD = "RetryDetails";
|
|
540
|
-
const _RFSC = "RequestedFunctionScalingConfig";
|
|
541
|
-
const _RI = "RevisionId";
|
|
542
|
-
const _RIE = "RecursiveInvocationException";
|
|
543
|
-
const _RIU = "ResolvedImageUri";
|
|
544
|
-
const _RIUE = "ResourceInUseException";
|
|
545
|
-
const _RIe = "RequestId";
|
|
546
|
-
const _RL = "RecursiveLoop";
|
|
547
|
-
const _RLVP = "RemoveLayerVersionPermission";
|
|
548
|
-
const _RLVPR = "RemoveLayerVersionPermissionRequest";
|
|
549
|
-
const _RNFE = "ResourceNotFoundException";
|
|
550
|
-
const _RNRE = "ResourceNotReadyException";
|
|
551
|
-
const _RO = "ReverseOrder";
|
|
552
|
-
const _RP = "RemovePermission";
|
|
553
|
-
const _RPCE = "RequestedProvisionedConcurrentExecutions";
|
|
554
|
-
const _RPID = "RetentionPeriodInDays";
|
|
555
|
-
const _RPR = "RemovePermissionRequest";
|
|
556
|
-
const _RSCT = "ResponseStreamContentType";
|
|
557
|
-
const _RT = "RepositoryType";
|
|
558
|
-
const _RTLE = "RequestTooLargeException";
|
|
559
|
-
const _RVA = "RuntimeVersionArn";
|
|
560
|
-
const _RVC = "RuntimeVersionConfig";
|
|
561
|
-
const _RVE = "RuntimeVersionError";
|
|
562
|
-
const _Re = "Result";
|
|
563
|
-
const _Res = "Resource";
|
|
564
|
-
const _Ro = "Role";
|
|
565
|
-
const _Ru = "Runtime";
|
|
566
|
-
const _S = "Statement";
|
|
567
|
-
const _SA = "SourceArn";
|
|
568
|
-
const _SAC = "SourceAccessConfigurations";
|
|
569
|
-
const _SACo = "SourceAccessConfiguration";
|
|
570
|
-
const _SAo = "SourceAccount";
|
|
571
|
-
const _SAt = "StartedAfter";
|
|
572
|
-
const _SB = "S3Bucket";
|
|
573
|
-
const _SBt = "StartedBefore";
|
|
574
|
-
const _SC = "ScalingConfig";
|
|
575
|
-
const _SCt = "StatusCode";
|
|
576
|
-
const _SD = "StepDetails";
|
|
577
|
-
const _SDE = "StopDurableExecution";
|
|
578
|
-
const _SDECF = "SendDurableExecutionCallbackFailure";
|
|
579
|
-
const _SDECFR = "SendDurableExecutionCallbackFailureRequest";
|
|
580
|
-
const _SDECFRe = "SendDurableExecutionCallbackFailureResponse";
|
|
581
|
-
const _SDECH = "SendDurableExecutionCallbackHeartbeat";
|
|
582
|
-
const _SDECHR = "SendDurableExecutionCallbackHeartbeatRequest";
|
|
583
|
-
const _SDECHRe = "SendDurableExecutionCallbackHeartbeatResponse";
|
|
584
|
-
const _SDECS = "SendDurableExecutionCallbackSuccess";
|
|
585
|
-
const _SDECSR = "SendDurableExecutionCallbackSuccessRequest";
|
|
586
|
-
const _SDECSRe = "SendDurableExecutionCallbackSuccessResponse";
|
|
587
|
-
const _SDER = "StopDurableExecutionRequest";
|
|
588
|
-
const _SDERt = "StopDurableExecutionResponse";
|
|
589
|
-
const _SE = "ServiceException";
|
|
590
|
-
const _SET = "ScheduledEndTimestamp";
|
|
591
|
-
const _SFD = "StepFailedDetails";
|
|
592
|
-
const _SFMCE = "S3FilesMountConnectivityException";
|
|
593
|
-
const _SFMFE = "S3FilesMountFailureException";
|
|
594
|
-
const _SFMTE = "S3FilesMountTimeoutException";
|
|
595
|
-
const _SGI = "SecurityGroupIds";
|
|
596
|
-
const _SI = "StatementId";
|
|
597
|
-
const _SIPALRE = "SubnetIPAddressLimitReachedException";
|
|
598
|
-
const _SIu = "SubnetIds";
|
|
599
|
-
const _SJA = "SigningJobArn";
|
|
600
|
-
const _SK = "S3Key";
|
|
601
|
-
const _SKMSKA = "SourceKMSKeyArn";
|
|
602
|
-
const _SLL = "SystemLogLevel";
|
|
603
|
-
const _SM = "ScalingMode";
|
|
604
|
-
const _SMES = "SelfManagedEventSource";
|
|
605
|
-
const _SMKESC = "SelfManagedKafkaEventSourceConfig";
|
|
606
|
-
const _SO = "StepOptions";
|
|
607
|
-
const _SOV = "S3ObjectVersion";
|
|
608
|
-
const _SP = "ScalingPolicies";
|
|
609
|
-
const _SPT = "StartingPositionTimestamp";
|
|
610
|
-
const _SPVA = "SigningProfileVersionArns";
|
|
611
|
-
const _SPVAi = "SigningProfileVersionArn";
|
|
612
|
-
const _SPt = "StartingPosition";
|
|
613
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
614
|
-
const _SR = "StateReason";
|
|
615
|
-
const _SRC = "SchemaRegistryConfig";
|
|
616
|
-
const _SRCt = "StateReasonCode";
|
|
617
|
-
const _SRETLE = "SerializedRequestEntityTooLargeException";
|
|
618
|
-
const _SRURI = "SchemaRegistryURI";
|
|
619
|
-
const _SRt = "StatusReason";
|
|
620
|
-
const _SS = "SensitiveString";
|
|
621
|
-
const _SSD = "StepStartedDetails";
|
|
622
|
-
const _SSDt = "StepSucceededDetails";
|
|
623
|
-
const _SSE = "SnapStartException";
|
|
624
|
-
const _SSNRE = "SnapStartNotReadyException";
|
|
625
|
-
const _SSR = "SnapStartResponse";
|
|
626
|
-
const _SSRFE = "SnapStartRegenerationFailureException";
|
|
627
|
-
const _SSTE = "SnapStartTimeoutException";
|
|
628
|
-
const _SSn = "SnapStart";
|
|
629
|
-
const _ST = "StackTrace";
|
|
630
|
-
const _STE = "StackTraceEntry";
|
|
631
|
-
const _STEt = "StackTraceEntries";
|
|
632
|
-
const _STR = "StateTransitionReason";
|
|
633
|
-
const _STt = "StartTimestamp";
|
|
634
|
-
const _STto = "StopTimestamp";
|
|
635
|
-
const _STu = "SubType";
|
|
636
|
-
const _SVC = "SchemaValidationConfigs";
|
|
637
|
-
const _Si = "Size";
|
|
638
|
-
const _St = "State";
|
|
639
|
-
const _Sta = "Status";
|
|
640
|
-
const _Stat = "Statuses";
|
|
641
|
-
const _T = "Type";
|
|
642
|
-
const _TA = "TargetArn";
|
|
643
|
-
const _TC = "TracingConfig";
|
|
644
|
-
const _TCR = "TracingConfigResponse";
|
|
645
|
-
const _TCS = "TotalCodeSize";
|
|
646
|
-
const _TCe = "TenancyConfig";
|
|
647
|
-
const _TE = "TagsError";
|
|
648
|
-
const _TH = "TraceHeader";
|
|
649
|
-
const _TI = "TenantId";
|
|
650
|
-
const _TIM = "TenantIsolationMode";
|
|
651
|
-
const _TK = "TagKeys";
|
|
652
|
-
const _TKL = "TagKeyList";
|
|
653
|
-
const _TMRE = "TooManyRequestsException";
|
|
654
|
-
const _TR = "TagResource";
|
|
655
|
-
const _TRR = "TagResourceRequest";
|
|
656
|
-
const _TS = "TimeoutSeconds";
|
|
657
|
-
const _TTSP = "TargetTrackingScalingPolicy";
|
|
658
|
-
const _TV = "TargetValue";
|
|
659
|
-
const _TWIS = "TumblingWindowInSeconds";
|
|
660
|
-
const _Ta = "Tags";
|
|
661
|
-
const _Ti = "Timeout";
|
|
662
|
-
const _To = "Topics";
|
|
663
|
-
const _Tr = "Truncated";
|
|
664
|
-
const _U = "Updates";
|
|
665
|
-
const _UA = "UpdateAlias";
|
|
666
|
-
const _UAOD = "UntrustedArtifactOnDeployment";
|
|
667
|
-
const _UAR = "UpdateAliasRequest";
|
|
668
|
-
const _UCE = "UnreservedConcurrentExecutions";
|
|
669
|
-
const _UCP = "UpdateCapacityProvider";
|
|
670
|
-
const _UCPR = "UpdateCapacityProviderRequest";
|
|
671
|
-
const _UCPRp = "UpdateCapacityProviderResponse";
|
|
672
|
-
const _UCSC = "UpdateCodeSigningConfig";
|
|
673
|
-
const _UCSCR = "UpdateCodeSigningConfigRequest";
|
|
674
|
-
const _UCSCRp = "UpdateCodeSigningConfigResponse";
|
|
675
|
-
const _UESM = "UpdateEventSourceMapping";
|
|
676
|
-
const _UESMR = "UpdateEventSourceMappingRequest";
|
|
677
|
-
const _UFC = "UpdateFunctionCode";
|
|
678
|
-
const _UFCR = "UpdateFunctionCodeRequest";
|
|
679
|
-
const _UFCRp = "UpdateFunctionConfigurationRequest";
|
|
680
|
-
const _UFCp = "UpdateFunctionConfiguration";
|
|
681
|
-
const _UFEIC = "UpdateFunctionEventInvokeConfig";
|
|
682
|
-
const _UFEICR = "UpdateFunctionEventInvokeConfigRequest";
|
|
683
|
-
const _UFUC = "UpdateFunctionUrlConfig";
|
|
684
|
-
const _UFUCR = "UpdateFunctionUrlConfigRequest";
|
|
685
|
-
const _UFUCRp = "UpdateFunctionUrlConfigResponse";
|
|
686
|
-
const _UMTE = "UnsupportedMediaTypeException";
|
|
687
|
-
const _UR = "UntagResource";
|
|
688
|
-
const _URI = "URI";
|
|
689
|
-
const _URO = "UpdateRuntimeOn";
|
|
690
|
-
const _URR = "UntagResourceRequest";
|
|
691
|
-
const _UUID = "UUID";
|
|
692
|
-
const _V = "Variables";
|
|
693
|
-
const _VC = "VpcConfig";
|
|
694
|
-
const _VCR = "VpcConfigResponse";
|
|
695
|
-
const _VI = "VpcId";
|
|
696
|
-
const _VN = "VersionNumber";
|
|
697
|
-
const _Ve = "Version";
|
|
698
|
-
const _Ver = "Versions";
|
|
699
|
-
const _WCD = "WaitCancelledDetails";
|
|
700
|
-
const _WD = "WorkingDirectory";
|
|
701
|
-
const _WDa = "WaitDetails";
|
|
702
|
-
const _WO = "WaitOptions";
|
|
703
|
-
const _WS = "WaitSeconds";
|
|
704
|
-
const _WSD = "WaitStartedDetails";
|
|
705
|
-
const _WSDa = "WaitSucceededDetails";
|
|
706
|
-
const _XACC = "X-Amz-Client-Context";
|
|
707
|
-
const _XADEA = "X-Amz-Durable-Execution-Arn";
|
|
708
|
-
const _XADEN = "X-Amz-Durable-Execution-Name";
|
|
709
|
-
const _XAEV = "X-Amz-Executed-Version";
|
|
710
|
-
const _XAFE = "X-Amz-Function-Error";
|
|
711
|
-
const _XAIT = "X-Amz-Invocation-Type";
|
|
712
|
-
const _XALR = "X-Amz-Log-Result";
|
|
713
|
-
const _XALT = "X-Amz-Log-Type";
|
|
714
|
-
const _XATI = "X-Amz-Tenant-Id";
|
|
715
|
-
const _XATIm = "XAmznTraceId";
|
|
716
|
-
const _ZF = "ZipFile";
|
|
717
|
-
const _c = "client";
|
|
718
|
-
const _e = "error";
|
|
719
|
-
const _eP = "eventPayload";
|
|
720
|
-
const _h = "http";
|
|
721
|
-
const _hE = "httpError";
|
|
722
|
-
const _hH = "httpHeader";
|
|
723
|
-
const _hQ = "httpQuery";
|
|
724
|
-
const _m = "message";
|
|
725
|
-
const _rAS = "retryAfterSeconds";
|
|
726
|
-
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.lambda";
|
|
727
|
-
const _se = "server";
|
|
728
|
-
const _st = "streaming";
|
|
729
|
-
const _tK = "tagKeys";
|
|
730
|
-
const _xN = "xmlName";
|
|
731
|
-
const n0 = "com.amazonaws.lambda";
|
|
732
|
-
const { TypeRegistry } = require("@smithy/core/schema");
|
|
733
|
-
const { AliasLimitExceededException, CallbackTimeoutException, CapacityProviderLimitExceededException, CodeArtifactUserDeletedException, CodeArtifactUserFailedException, CodeArtifactUserPendingException, CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, DurableExecutionAlreadyStartedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, ENINotReadyException, FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, ModeNotSupportedException, NoPublishedVersionException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, PublicPolicyException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, S3FilesMountConnectivityException, S3FilesMountFailureException, S3FilesMountTimeoutException, SerializedRequestEntityTooLargeException, ServiceException, ServiceQuotaExceededException, SnapStartException, SnapStartNotReadyException, SnapStartRegenerationFailureException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException } = require("../models/errors");
|
|
734
|
-
const { LambdaServiceException } = require("../models/LambdaServiceException");
|
|
735
|
-
const _s_registry = TypeRegistry.for(_s);
|
|
736
|
-
const LambdaServiceException$ = [-3, _s, "LambdaServiceException", 0, [], []];
|
|
737
|
-
exports.LambdaServiceException$ = LambdaServiceException$;
|
|
738
|
-
_s_registry.registerError(LambdaServiceException$, LambdaServiceException);
|
|
739
|
-
const n0_registry = TypeRegistry.for(n0);
|
|
740
|
-
const AliasLimitExceededException$ = [-3, n0, _ALEE,
|
|
741
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
742
|
-
[_T, _m],
|
|
743
|
-
[0, 0]
|
|
744
|
-
];
|
|
745
|
-
exports.AliasLimitExceededException$ = AliasLimitExceededException$;
|
|
746
|
-
n0_registry.registerError(AliasLimitExceededException$, AliasLimitExceededException);
|
|
747
|
-
const CallbackTimeoutException$ = [-3, n0, _CTE,
|
|
748
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
749
|
-
[_T, _M],
|
|
750
|
-
[0, 0]
|
|
751
|
-
];
|
|
752
|
-
exports.CallbackTimeoutException$ = CallbackTimeoutException$;
|
|
753
|
-
n0_registry.registerError(CallbackTimeoutException$, CallbackTimeoutException);
|
|
754
|
-
const CapacityProviderLimitExceededException$ = [-3, n0, _CPLEE,
|
|
755
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
756
|
-
[_T, _m],
|
|
757
|
-
[0, 0]
|
|
758
|
-
];
|
|
759
|
-
exports.CapacityProviderLimitExceededException$ = CapacityProviderLimitExceededException$;
|
|
760
|
-
n0_registry.registerError(CapacityProviderLimitExceededException$, CapacityProviderLimitExceededException);
|
|
761
|
-
const CodeArtifactUserDeletedException$ = [-3, n0, _CAUDE,
|
|
762
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
763
|
-
[_T, _m],
|
|
764
|
-
[0, 0]
|
|
765
|
-
];
|
|
766
|
-
exports.CodeArtifactUserDeletedException$ = CodeArtifactUserDeletedException$;
|
|
767
|
-
n0_registry.registerError(CodeArtifactUserDeletedException$, CodeArtifactUserDeletedException);
|
|
768
|
-
const CodeArtifactUserFailedException$ = [-3, n0, _CAUFE,
|
|
769
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
770
|
-
[_T, _m],
|
|
771
|
-
[0, 0]
|
|
772
|
-
];
|
|
773
|
-
exports.CodeArtifactUserFailedException$ = CodeArtifactUserFailedException$;
|
|
774
|
-
n0_registry.registerError(CodeArtifactUserFailedException$, CodeArtifactUserFailedException);
|
|
775
|
-
const CodeArtifactUserPendingException$ = [-3, n0, _CAUPE,
|
|
776
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
777
|
-
[_T, _m],
|
|
778
|
-
[0, 0]
|
|
779
|
-
];
|
|
780
|
-
exports.CodeArtifactUserPendingException$ = CodeArtifactUserPendingException$;
|
|
781
|
-
n0_registry.registerError(CodeArtifactUserPendingException$, CodeArtifactUserPendingException);
|
|
782
|
-
const CodeSigningConfigNotFoundException$ = [-3, n0, _CSCNFE,
|
|
783
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
784
|
-
[_T, _M],
|
|
785
|
-
[0, 0]
|
|
786
|
-
];
|
|
787
|
-
exports.CodeSigningConfigNotFoundException$ = CodeSigningConfigNotFoundException$;
|
|
788
|
-
n0_registry.registerError(CodeSigningConfigNotFoundException$, CodeSigningConfigNotFoundException);
|
|
789
|
-
const CodeStorageExceededException$ = [-3, n0, _CSEE,
|
|
790
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
791
|
-
[_T, _m],
|
|
792
|
-
[0, 0]
|
|
793
|
-
];
|
|
794
|
-
exports.CodeStorageExceededException$ = CodeStorageExceededException$;
|
|
795
|
-
n0_registry.registerError(CodeStorageExceededException$, CodeStorageExceededException);
|
|
796
|
-
const CodeVerificationFailedException$ = [-3, n0, _CVFE,
|
|
797
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
798
|
-
[_T, _M],
|
|
799
|
-
[0, 0]
|
|
800
|
-
];
|
|
801
|
-
exports.CodeVerificationFailedException$ = CodeVerificationFailedException$;
|
|
802
|
-
n0_registry.registerError(CodeVerificationFailedException$, CodeVerificationFailedException);
|
|
803
|
-
const DurableExecutionAlreadyStartedException$ = [-3, n0, _DEASE,
|
|
804
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
805
|
-
[_T, _M],
|
|
806
|
-
[0, 0]
|
|
807
|
-
];
|
|
808
|
-
exports.DurableExecutionAlreadyStartedException$ = DurableExecutionAlreadyStartedException$;
|
|
809
|
-
n0_registry.registerError(DurableExecutionAlreadyStartedException$, DurableExecutionAlreadyStartedException);
|
|
810
|
-
const EC2AccessDeniedException$ = [-3, n0, _ECADE,
|
|
811
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
812
|
-
[_T, _M],
|
|
813
|
-
[0, 0]
|
|
814
|
-
];
|
|
815
|
-
exports.EC2AccessDeniedException$ = EC2AccessDeniedException$;
|
|
816
|
-
n0_registry.registerError(EC2AccessDeniedException$, EC2AccessDeniedException);
|
|
817
|
-
const EC2ThrottledException$ = [-3, n0, _ECTE,
|
|
818
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
819
|
-
[_T, _M],
|
|
820
|
-
[0, 0]
|
|
821
|
-
];
|
|
822
|
-
exports.EC2ThrottledException$ = EC2ThrottledException$;
|
|
823
|
-
n0_registry.registerError(EC2ThrottledException$, EC2ThrottledException);
|
|
824
|
-
const EC2UnexpectedException$ = [-3, n0, _ECUE,
|
|
825
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
826
|
-
[_T, _M, _ECEC],
|
|
827
|
-
[0, 0, 0]
|
|
828
|
-
];
|
|
829
|
-
exports.EC2UnexpectedException$ = EC2UnexpectedException$;
|
|
830
|
-
n0_registry.registerError(EC2UnexpectedException$, EC2UnexpectedException);
|
|
831
|
-
const EFSIOException$ = [-3, n0, _EFSIOE,
|
|
832
|
-
{ [_e]: _c, [_hE]: 410 },
|
|
833
|
-
[_T, _M],
|
|
834
|
-
[0, 0]
|
|
835
|
-
];
|
|
836
|
-
exports.EFSIOException$ = EFSIOException$;
|
|
837
|
-
n0_registry.registerError(EFSIOException$, EFSIOException);
|
|
838
|
-
const EFSMountConnectivityException$ = [-3, n0, _EFSMCE,
|
|
839
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
840
|
-
[_T, _M],
|
|
841
|
-
[0, 0]
|
|
842
|
-
];
|
|
843
|
-
exports.EFSMountConnectivityException$ = EFSMountConnectivityException$;
|
|
844
|
-
n0_registry.registerError(EFSMountConnectivityException$, EFSMountConnectivityException);
|
|
845
|
-
const EFSMountFailureException$ = [-3, n0, _EFSMFE,
|
|
846
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
847
|
-
[_T, _M],
|
|
848
|
-
[0, 0]
|
|
849
|
-
];
|
|
850
|
-
exports.EFSMountFailureException$ = EFSMountFailureException$;
|
|
851
|
-
n0_registry.registerError(EFSMountFailureException$, EFSMountFailureException);
|
|
852
|
-
const EFSMountTimeoutException$ = [-3, n0, _EFSMTE,
|
|
853
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
854
|
-
[_T, _M],
|
|
855
|
-
[0, 0]
|
|
856
|
-
];
|
|
857
|
-
exports.EFSMountTimeoutException$ = EFSMountTimeoutException$;
|
|
858
|
-
n0_registry.registerError(EFSMountTimeoutException$, EFSMountTimeoutException);
|
|
859
|
-
const ENILimitReachedException$ = [-3, n0, _ENILRE,
|
|
860
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
861
|
-
[_T, _M],
|
|
862
|
-
[0, 0]
|
|
863
|
-
];
|
|
864
|
-
exports.ENILimitReachedException$ = ENILimitReachedException$;
|
|
865
|
-
n0_registry.registerError(ENILimitReachedException$, ENILimitReachedException);
|
|
866
|
-
const ENINotReadyException$ = [-3, n0, _ENINRE,
|
|
867
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
868
|
-
[_T, _M],
|
|
869
|
-
[0, 0]
|
|
870
|
-
];
|
|
871
|
-
exports.ENINotReadyException$ = ENINotReadyException$;
|
|
872
|
-
n0_registry.registerError(ENINotReadyException$, ENINotReadyException);
|
|
873
|
-
const FunctionVersionsPerCapacityProviderLimitExceededException$ = [-3, n0, _FVPCPLEE,
|
|
874
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
875
|
-
[_T, _m],
|
|
876
|
-
[0, 0]
|
|
877
|
-
];
|
|
878
|
-
exports.FunctionVersionsPerCapacityProviderLimitExceededException$ = FunctionVersionsPerCapacityProviderLimitExceededException$;
|
|
879
|
-
n0_registry.registerError(FunctionVersionsPerCapacityProviderLimitExceededException$, FunctionVersionsPerCapacityProviderLimitExceededException);
|
|
880
|
-
const InvalidCodeSignatureException$ = [-3, n0, _ICSE,
|
|
881
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
882
|
-
[_T, _M],
|
|
883
|
-
[0, 0]
|
|
884
|
-
];
|
|
885
|
-
exports.InvalidCodeSignatureException$ = InvalidCodeSignatureException$;
|
|
886
|
-
n0_registry.registerError(InvalidCodeSignatureException$, InvalidCodeSignatureException);
|
|
887
|
-
const InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
888
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
889
|
-
[_T, _m],
|
|
890
|
-
[0, 0]
|
|
891
|
-
];
|
|
892
|
-
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
893
|
-
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
894
|
-
const InvalidRequestContentException$ = [-3, n0, _IRCE,
|
|
895
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
896
|
-
[_T, _m],
|
|
897
|
-
[0, 0]
|
|
898
|
-
];
|
|
899
|
-
exports.InvalidRequestContentException$ = InvalidRequestContentException$;
|
|
900
|
-
n0_registry.registerError(InvalidRequestContentException$, InvalidRequestContentException);
|
|
901
|
-
const InvalidRuntimeException$ = [-3, n0, _IRE,
|
|
902
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
903
|
-
[_T, _M],
|
|
904
|
-
[0, 0]
|
|
905
|
-
];
|
|
906
|
-
exports.InvalidRuntimeException$ = InvalidRuntimeException$;
|
|
907
|
-
n0_registry.registerError(InvalidRuntimeException$, InvalidRuntimeException);
|
|
908
|
-
const InvalidSecurityGroupIDException$ = [-3, n0, _ISGIDE,
|
|
909
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
910
|
-
[_T, _M],
|
|
911
|
-
[0, 0]
|
|
912
|
-
];
|
|
913
|
-
exports.InvalidSecurityGroupIDException$ = InvalidSecurityGroupIDException$;
|
|
914
|
-
n0_registry.registerError(InvalidSecurityGroupIDException$, InvalidSecurityGroupIDException);
|
|
915
|
-
const InvalidSubnetIDException$ = [-3, n0, _ISIDE,
|
|
916
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
917
|
-
[_T, _M],
|
|
918
|
-
[0, 0]
|
|
919
|
-
];
|
|
920
|
-
exports.InvalidSubnetIDException$ = InvalidSubnetIDException$;
|
|
921
|
-
n0_registry.registerError(InvalidSubnetIDException$, InvalidSubnetIDException);
|
|
922
|
-
const InvalidZipFileException$ = [-3, n0, _IZFE,
|
|
923
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
924
|
-
[_T, _M],
|
|
925
|
-
[0, 0]
|
|
926
|
-
];
|
|
927
|
-
exports.InvalidZipFileException$ = InvalidZipFileException$;
|
|
928
|
-
n0_registry.registerError(InvalidZipFileException$, InvalidZipFileException);
|
|
929
|
-
const KMSAccessDeniedException$ = [-3, n0, _KMSADE,
|
|
930
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
931
|
-
[_T, _M],
|
|
932
|
-
[0, 0]
|
|
933
|
-
];
|
|
934
|
-
exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
|
|
935
|
-
n0_registry.registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
|
|
936
|
-
const KMSDisabledException$ = [-3, n0, _KMSDE,
|
|
937
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
938
|
-
[_T, _M],
|
|
939
|
-
[0, 0]
|
|
940
|
-
];
|
|
941
|
-
exports.KMSDisabledException$ = KMSDisabledException$;
|
|
942
|
-
n0_registry.registerError(KMSDisabledException$, KMSDisabledException);
|
|
943
|
-
const KMSInvalidStateException$ = [-3, n0, _KMSISE,
|
|
944
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
945
|
-
[_T, _M],
|
|
946
|
-
[0, 0]
|
|
947
|
-
];
|
|
948
|
-
exports.KMSInvalidStateException$ = KMSInvalidStateException$;
|
|
949
|
-
n0_registry.registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
950
|
-
const KMSNotFoundException$ = [-3, n0, _KMSNFE,
|
|
951
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
952
|
-
[_T, _M],
|
|
953
|
-
[0, 0]
|
|
954
|
-
];
|
|
955
|
-
exports.KMSNotFoundException$ = KMSNotFoundException$;
|
|
956
|
-
n0_registry.registerError(KMSNotFoundException$, KMSNotFoundException);
|
|
957
|
-
const ModeNotSupportedException$ = [-3, n0, _MNSE,
|
|
958
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
959
|
-
[_T, _m],
|
|
960
|
-
[0, 0]
|
|
961
|
-
];
|
|
962
|
-
exports.ModeNotSupportedException$ = ModeNotSupportedException$;
|
|
963
|
-
n0_registry.registerError(ModeNotSupportedException$, ModeNotSupportedException);
|
|
964
|
-
const NoPublishedVersionException$ = [-3, n0, _NPVE,
|
|
965
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
966
|
-
[_T, _M],
|
|
967
|
-
[0, 0]
|
|
968
|
-
];
|
|
969
|
-
exports.NoPublishedVersionException$ = NoPublishedVersionException$;
|
|
970
|
-
n0_registry.registerError(NoPublishedVersionException$, NoPublishedVersionException);
|
|
971
|
-
const PolicyLengthExceededException$ = [-3, n0, _PLEE,
|
|
972
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
973
|
-
[_T, _m],
|
|
974
|
-
[0, 0]
|
|
975
|
-
];
|
|
976
|
-
exports.PolicyLengthExceededException$ = PolicyLengthExceededException$;
|
|
977
|
-
n0_registry.registerError(PolicyLengthExceededException$, PolicyLengthExceededException);
|
|
978
|
-
const PreconditionFailedException$ = [-3, n0, _PFE,
|
|
979
|
-
{ [_e]: _c, [_hE]: 412 },
|
|
980
|
-
[_T, _m],
|
|
981
|
-
[0, 0]
|
|
982
|
-
];
|
|
983
|
-
exports.PreconditionFailedException$ = PreconditionFailedException$;
|
|
984
|
-
n0_registry.registerError(PreconditionFailedException$, PreconditionFailedException);
|
|
985
|
-
const ProvisionedConcurrencyConfigNotFoundException$ = [-3, n0, _PCCNFE,
|
|
986
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
987
|
-
[_T, _m],
|
|
988
|
-
[0, 0]
|
|
989
|
-
];
|
|
990
|
-
exports.ProvisionedConcurrencyConfigNotFoundException$ = ProvisionedConcurrencyConfigNotFoundException$;
|
|
991
|
-
n0_registry.registerError(ProvisionedConcurrencyConfigNotFoundException$, ProvisionedConcurrencyConfigNotFoundException);
|
|
992
|
-
const PublicPolicyException$ = [-3, n0, _PPE,
|
|
993
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
994
|
-
[_T, _M],
|
|
995
|
-
[0, 0]
|
|
996
|
-
];
|
|
997
|
-
exports.PublicPolicyException$ = PublicPolicyException$;
|
|
998
|
-
n0_registry.registerError(PublicPolicyException$, PublicPolicyException);
|
|
999
|
-
const RecursiveInvocationException$ = [-3, n0, _RIE,
|
|
1000
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1001
|
-
[_T, _M],
|
|
1002
|
-
[0, 0]
|
|
1003
|
-
];
|
|
1004
|
-
exports.RecursiveInvocationException$ = RecursiveInvocationException$;
|
|
1005
|
-
n0_registry.registerError(RecursiveInvocationException$, RecursiveInvocationException);
|
|
1006
|
-
const RequestTooLargeException$ = [-3, n0, _RTLE,
|
|
1007
|
-
{ [_e]: _c, [_hE]: 413 },
|
|
1008
|
-
[_T, _m],
|
|
1009
|
-
[0, 0]
|
|
1010
|
-
];
|
|
1011
|
-
exports.RequestTooLargeException$ = RequestTooLargeException$;
|
|
1012
|
-
n0_registry.registerError(RequestTooLargeException$, RequestTooLargeException);
|
|
1013
|
-
const ResourceConflictException$ = [-3, n0, _RCE,
|
|
1014
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1015
|
-
[_T, _m],
|
|
1016
|
-
[0, 0]
|
|
1017
|
-
];
|
|
1018
|
-
exports.ResourceConflictException$ = ResourceConflictException$;
|
|
1019
|
-
n0_registry.registerError(ResourceConflictException$, ResourceConflictException);
|
|
1020
|
-
const ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1021
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1022
|
-
[_T, _M],
|
|
1023
|
-
[0, 0]
|
|
1024
|
-
];
|
|
1025
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
1026
|
-
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
1027
|
-
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1028
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1029
|
-
[_T, _M],
|
|
1030
|
-
[0, 0]
|
|
1031
|
-
];
|
|
1032
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1033
|
-
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1034
|
-
const ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
1035
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
1036
|
-
[_T, _m],
|
|
1037
|
-
[0, 0]
|
|
1038
|
-
];
|
|
1039
|
-
exports.ResourceNotReadyException$ = ResourceNotReadyException$;
|
|
1040
|
-
n0_registry.registerError(ResourceNotReadyException$, ResourceNotReadyException);
|
|
1041
|
-
const S3FilesMountConnectivityException$ = [-3, n0, _SFMCE,
|
|
1042
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
1043
|
-
[_T, _M],
|
|
1044
|
-
[0, 0]
|
|
1045
|
-
];
|
|
1046
|
-
exports.S3FilesMountConnectivityException$ = S3FilesMountConnectivityException$;
|
|
1047
|
-
n0_registry.registerError(S3FilesMountConnectivityException$, S3FilesMountConnectivityException);
|
|
1048
|
-
const S3FilesMountFailureException$ = [-3, n0, _SFMFE,
|
|
1049
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
1050
|
-
[_T, _M],
|
|
1051
|
-
[0, 0]
|
|
1052
|
-
];
|
|
1053
|
-
exports.S3FilesMountFailureException$ = S3FilesMountFailureException$;
|
|
1054
|
-
n0_registry.registerError(S3FilesMountFailureException$, S3FilesMountFailureException);
|
|
1055
|
-
const S3FilesMountTimeoutException$ = [-3, n0, _SFMTE,
|
|
1056
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
1057
|
-
[_T, _M],
|
|
1058
|
-
[0, 0]
|
|
1059
|
-
];
|
|
1060
|
-
exports.S3FilesMountTimeoutException$ = S3FilesMountTimeoutException$;
|
|
1061
|
-
n0_registry.registerError(S3FilesMountTimeoutException$, S3FilesMountTimeoutException);
|
|
1062
|
-
const SerializedRequestEntityTooLargeException$ = [-3, n0, _SRETLE,
|
|
1063
|
-
{ [_e]: _c, [_hE]: 413 },
|
|
1064
|
-
[_T, _m],
|
|
1065
|
-
[0, 0]
|
|
1066
|
-
];
|
|
1067
|
-
exports.SerializedRequestEntityTooLargeException$ = SerializedRequestEntityTooLargeException$;
|
|
1068
|
-
n0_registry.registerError(SerializedRequestEntityTooLargeException$, SerializedRequestEntityTooLargeException);
|
|
1069
|
-
const ServiceException$ = [-3, n0, _SE,
|
|
1070
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1071
|
-
[_T, _M],
|
|
1072
|
-
[0, 0]
|
|
1073
|
-
];
|
|
1074
|
-
exports.ServiceException$ = ServiceException$;
|
|
1075
|
-
n0_registry.registerError(ServiceException$, ServiceException);
|
|
1076
|
-
const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1077
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1078
|
-
[_T, _M],
|
|
1079
|
-
[0, 0]
|
|
1080
|
-
];
|
|
1081
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1082
|
-
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1083
|
-
const SnapStartException$ = [-3, n0, _SSE,
|
|
1084
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1085
|
-
[_T, _M],
|
|
1086
|
-
[0, 0]
|
|
1087
|
-
];
|
|
1088
|
-
exports.SnapStartException$ = SnapStartException$;
|
|
1089
|
-
n0_registry.registerError(SnapStartException$, SnapStartException);
|
|
1090
|
-
const SnapStartNotReadyException$ = [-3, n0, _SSNRE,
|
|
1091
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1092
|
-
[_T, _M],
|
|
1093
|
-
[0, 0]
|
|
1094
|
-
];
|
|
1095
|
-
exports.SnapStartNotReadyException$ = SnapStartNotReadyException$;
|
|
1096
|
-
n0_registry.registerError(SnapStartNotReadyException$, SnapStartNotReadyException);
|
|
1097
|
-
const SnapStartRegenerationFailureException$ = [-3, n0, _SSRFE,
|
|
1098
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
1099
|
-
[_T, _M],
|
|
1100
|
-
[0, 0]
|
|
1101
|
-
];
|
|
1102
|
-
exports.SnapStartRegenerationFailureException$ = SnapStartRegenerationFailureException$;
|
|
1103
|
-
n0_registry.registerError(SnapStartRegenerationFailureException$, SnapStartRegenerationFailureException);
|
|
1104
|
-
const SnapStartTimeoutException$ = [-3, n0, _SSTE,
|
|
1105
|
-
{ [_e]: _c, [_hE]: 408 },
|
|
1106
|
-
[_T, _M],
|
|
1107
|
-
[0, 0]
|
|
1108
|
-
];
|
|
1109
|
-
exports.SnapStartTimeoutException$ = SnapStartTimeoutException$;
|
|
1110
|
-
n0_registry.registerError(SnapStartTimeoutException$, SnapStartTimeoutException);
|
|
1111
|
-
const SubnetIPAddressLimitReachedException$ = [-3, n0, _SIPALRE,
|
|
1112
|
-
{ [_e]: _se, [_hE]: 502 },
|
|
1113
|
-
[_T, _M],
|
|
1114
|
-
[0, 0]
|
|
1115
|
-
];
|
|
1116
|
-
exports.SubnetIPAddressLimitReachedException$ = SubnetIPAddressLimitReachedException$;
|
|
1117
|
-
n0_registry.registerError(SubnetIPAddressLimitReachedException$, SubnetIPAddressLimitReachedException);
|
|
1118
|
-
const TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1119
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1120
|
-
[_rAS, _T, _m, _R],
|
|
1121
|
-
[[0, { [_hH]: _RA }], 0, 0, 0]
|
|
1122
|
-
];
|
|
1123
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1124
|
-
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1125
|
-
const UnsupportedMediaTypeException$ = [-3, n0, _UMTE,
|
|
1126
|
-
{ [_e]: _c, [_hE]: 415 },
|
|
1127
|
-
[_T, _m],
|
|
1128
|
-
[0, 0]
|
|
1129
|
-
];
|
|
1130
|
-
exports.UnsupportedMediaTypeException$ = UnsupportedMediaTypeException$;
|
|
1131
|
-
n0_registry.registerError(UnsupportedMediaTypeException$, UnsupportedMediaTypeException);
|
|
1132
|
-
exports.errorTypeRegistries = [
|
|
1133
|
-
_s_registry,
|
|
1134
|
-
n0_registry,
|
|
1135
|
-
];
|
|
1136
|
-
var BinaryOperationPayload = [0, n0, _BOP, 8, 21];
|
|
1137
|
-
var _Blob = [0, n0, _B, 8, 21];
|
|
1138
|
-
var BlobStream = [0, n0, _BS, { [_st]: 1 }, 42];
|
|
1139
|
-
var EnvironmentVariableName = [0, n0, _EVN, 8, 0];
|
|
1140
|
-
var EnvironmentVariableValue = [0, n0, _EVV, 8, 0];
|
|
1141
|
-
var ErrorData = [0, n0, _ED, 8, 0];
|
|
1142
|
-
var ErrorMessage = [0, n0, _EM, 8, 0];
|
|
1143
|
-
var ErrorType = [0, n0, _ET, 8, 0];
|
|
1144
|
-
var InputPayload = [0, n0, _IP, 8, 0];
|
|
1145
|
-
var OperationPayload = [0, n0, _OP, 8, 0];
|
|
1146
|
-
var OutputPayload = [0, n0, _OPu, 8, 0];
|
|
1147
|
-
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
1148
|
-
var StackTraceEntry = [0, n0, _STE, 8, 0];
|
|
1149
|
-
const AccountLimit$ = [3, n0, _AL,
|
|
1150
|
-
0,
|
|
1151
|
-
[_TCS, _CSU, _CSZ, _CE, _UCE],
|
|
1152
|
-
[1, 1, 1, 1, 1]
|
|
1153
|
-
];
|
|
1154
|
-
exports.AccountLimit$ = AccountLimit$;
|
|
1155
|
-
const AccountUsage$ = [3, n0, _AU,
|
|
1156
|
-
0,
|
|
1157
|
-
[_TCS, _FC],
|
|
1158
|
-
[1, 1]
|
|
1159
|
-
];
|
|
1160
|
-
exports.AccountUsage$ = AccountUsage$;
|
|
1161
|
-
const AddLayerVersionPermissionRequest$ = [3, n0, _ALVPR,
|
|
1162
|
-
0,
|
|
1163
|
-
[_LN, _VN, _SI, _A, _P, _OI, _RI],
|
|
1164
|
-
[[0, 1], [1, 1], 0, 0, 0, 0, [0, { [_hQ]: _RI }]], 5
|
|
1165
|
-
];
|
|
1166
|
-
exports.AddLayerVersionPermissionRequest$ = AddLayerVersionPermissionRequest$;
|
|
1167
|
-
const AddLayerVersionPermissionResponse$ = [3, n0, _ALVPRd,
|
|
1168
|
-
0,
|
|
1169
|
-
[_S, _RI],
|
|
1170
|
-
[0, 0]
|
|
1171
|
-
];
|
|
1172
|
-
exports.AddLayerVersionPermissionResponse$ = AddLayerVersionPermissionResponse$;
|
|
1173
|
-
const AddPermissionRequest$ = [3, n0, _APR,
|
|
1174
|
-
0,
|
|
1175
|
-
[_FN, _SI, _A, _P, _SA, _FUAT, _IVFU, _SAo, _EST, _Q, _RI, _POID],
|
|
1176
|
-
[[0, 1], 0, 0, 0, 0, 0, 2, 0, 0, [0, { [_hQ]: _Q }], 0, 0], 4
|
|
1177
|
-
];
|
|
1178
|
-
exports.AddPermissionRequest$ = AddPermissionRequest$;
|
|
1179
|
-
const AddPermissionResponse$ = [3, n0, _APRd,
|
|
1180
|
-
0,
|
|
1181
|
-
[_S],
|
|
1182
|
-
[0]
|
|
1183
|
-
];
|
|
1184
|
-
exports.AddPermissionResponse$ = AddPermissionResponse$;
|
|
1185
|
-
const AliasConfiguration$ = [3, n0, _AC,
|
|
1186
|
-
0,
|
|
1187
|
-
[_AA, _N, _FV, _D, _RC, _RI],
|
|
1188
|
-
[0, 0, 0, 0, () => AliasRoutingConfiguration$, 0]
|
|
1189
|
-
];
|
|
1190
|
-
exports.AliasConfiguration$ = AliasConfiguration$;
|
|
1191
|
-
const AliasRoutingConfiguration$ = [3, n0, _ARC,
|
|
1192
|
-
0,
|
|
1193
|
-
[_AVW],
|
|
1194
|
-
[128 | 1]
|
|
1195
|
-
];
|
|
1196
|
-
exports.AliasRoutingConfiguration$ = AliasRoutingConfiguration$;
|
|
1197
|
-
const AllowedPublishers$ = [3, n0, _AP,
|
|
1198
|
-
0,
|
|
1199
|
-
[_SPVA],
|
|
1200
|
-
[64 | 0], 1
|
|
1201
|
-
];
|
|
1202
|
-
exports.AllowedPublishers$ = AllowedPublishers$;
|
|
1203
|
-
const AmazonManagedKafkaEventSourceConfig$ = [3, n0, _AMKESC,
|
|
1204
|
-
0,
|
|
1205
|
-
[_CGI, _SRC],
|
|
1206
|
-
[0, () => KafkaSchemaRegistryConfig$]
|
|
1207
|
-
];
|
|
1208
|
-
exports.AmazonManagedKafkaEventSourceConfig$ = AmazonManagedKafkaEventSourceConfig$;
|
|
1209
|
-
const CallbackDetails$ = [3, n0, _CD,
|
|
1210
|
-
0,
|
|
1211
|
-
[_CI, _Re, _E],
|
|
1212
|
-
[0, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
1213
|
-
];
|
|
1214
|
-
exports.CallbackDetails$ = CallbackDetails$;
|
|
1215
|
-
const CallbackFailedDetails$ = [3, n0, _CFD,
|
|
1216
|
-
0,
|
|
1217
|
-
[_E],
|
|
1218
|
-
[[() => EventError$, 0]], 1
|
|
1219
|
-
];
|
|
1220
|
-
exports.CallbackFailedDetails$ = CallbackFailedDetails$;
|
|
1221
|
-
const CallbackOptions$ = [3, n0, _CO,
|
|
1222
|
-
0,
|
|
1223
|
-
[_TS, _HTS],
|
|
1224
|
-
[1, 1]
|
|
1225
|
-
];
|
|
1226
|
-
exports.CallbackOptions$ = CallbackOptions$;
|
|
1227
|
-
const CallbackStartedDetails$ = [3, n0, _CSD,
|
|
1228
|
-
0,
|
|
1229
|
-
[_CI, _HT, _Ti],
|
|
1230
|
-
[0, 1, 1], 1
|
|
1231
|
-
];
|
|
1232
|
-
exports.CallbackStartedDetails$ = CallbackStartedDetails$;
|
|
1233
|
-
const CallbackSucceededDetails$ = [3, n0, _CSDa,
|
|
1234
|
-
0,
|
|
1235
|
-
[_Re],
|
|
1236
|
-
[[() => EventResult$, 0]], 1
|
|
1237
|
-
];
|
|
1238
|
-
exports.CallbackSucceededDetails$ = CallbackSucceededDetails$;
|
|
1239
|
-
const CallbackTimedOutDetails$ = [3, n0, _CTOD,
|
|
1240
|
-
0,
|
|
1241
|
-
[_E],
|
|
1242
|
-
[[() => EventError$, 0]], 1
|
|
1243
|
-
];
|
|
1244
|
-
exports.CallbackTimedOutDetails$ = CallbackTimedOutDetails$;
|
|
1245
|
-
const CapacityProvider$ = [3, n0, _CP,
|
|
1246
|
-
0,
|
|
1247
|
-
[_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM, _PT],
|
|
1248
|
-
[0, 0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 0, () => PropagateTags$], 4
|
|
1249
|
-
];
|
|
1250
|
-
exports.CapacityProvider$ = CapacityProvider$;
|
|
1251
|
-
const CapacityProviderConfig$ = [3, n0, _CPC,
|
|
1252
|
-
0,
|
|
1253
|
-
[_LMICPC],
|
|
1254
|
-
[() => LambdaManagedInstancesCapacityProviderConfig$], 1
|
|
1255
|
-
];
|
|
1256
|
-
exports.CapacityProviderConfig$ = CapacityProviderConfig$;
|
|
1257
|
-
const CapacityProviderPermissionsConfig$ = [3, n0, _CPPC,
|
|
1258
|
-
0,
|
|
1259
|
-
[_CPORA],
|
|
1260
|
-
[0], 1
|
|
1261
|
-
];
|
|
1262
|
-
exports.CapacityProviderPermissionsConfig$ = CapacityProviderPermissionsConfig$;
|
|
1263
|
-
const CapacityProviderScalingConfig$ = [3, n0, _CPSC,
|
|
1264
|
-
0,
|
|
1265
|
-
[_MVCC, _SM, _SP],
|
|
1266
|
-
[1, 0, () => CapacityProviderScalingPoliciesList]
|
|
1267
|
-
];
|
|
1268
|
-
exports.CapacityProviderScalingConfig$ = CapacityProviderScalingConfig$;
|
|
1269
|
-
const CapacityProviderVpcConfig$ = [3, n0, _CPVC,
|
|
1270
|
-
0,
|
|
1271
|
-
[_SIu, _SGI],
|
|
1272
|
-
[64 | 0, 64 | 0], 2
|
|
1273
|
-
];
|
|
1274
|
-
exports.CapacityProviderVpcConfig$ = CapacityProviderVpcConfig$;
|
|
1275
|
-
const ChainedInvokeDetails$ = [3, n0, _CID,
|
|
1276
|
-
0,
|
|
1277
|
-
[_Re, _E],
|
|
1278
|
-
[[() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
1279
|
-
];
|
|
1280
|
-
exports.ChainedInvokeDetails$ = ChainedInvokeDetails$;
|
|
1281
|
-
const ChainedInvokeFailedDetails$ = [3, n0, _CIFD,
|
|
1282
|
-
0,
|
|
1283
|
-
[_E],
|
|
1284
|
-
[[() => EventError$, 0]], 1
|
|
1285
|
-
];
|
|
1286
|
-
exports.ChainedInvokeFailedDetails$ = ChainedInvokeFailedDetails$;
|
|
1287
|
-
const ChainedInvokeOptions$ = [3, n0, _CIO,
|
|
1288
|
-
0,
|
|
1289
|
-
[_FN, _TI],
|
|
1290
|
-
[0, 0], 1
|
|
1291
|
-
];
|
|
1292
|
-
exports.ChainedInvokeOptions$ = ChainedInvokeOptions$;
|
|
1293
|
-
const ChainedInvokeStartedDetails$ = [3, n0, _CISD,
|
|
1294
|
-
0,
|
|
1295
|
-
[_FN, _TI, _I, _EV, _DEA],
|
|
1296
|
-
[0, 0, [() => EventInput$, 0], 0, 0], 1
|
|
1297
|
-
];
|
|
1298
|
-
exports.ChainedInvokeStartedDetails$ = ChainedInvokeStartedDetails$;
|
|
1299
|
-
const ChainedInvokeStoppedDetails$ = [3, n0, _CISDh,
|
|
1300
|
-
0,
|
|
1301
|
-
[_E],
|
|
1302
|
-
[[() => EventError$, 0]], 1
|
|
1303
|
-
];
|
|
1304
|
-
exports.ChainedInvokeStoppedDetails$ = ChainedInvokeStoppedDetails$;
|
|
1305
|
-
const ChainedInvokeSucceededDetails$ = [3, n0, _CISDha,
|
|
1306
|
-
0,
|
|
1307
|
-
[_Re],
|
|
1308
|
-
[[() => EventResult$, 0]], 1
|
|
1309
|
-
];
|
|
1310
|
-
exports.ChainedInvokeSucceededDetails$ = ChainedInvokeSucceededDetails$;
|
|
1311
|
-
const ChainedInvokeTimedOutDetails$ = [3, n0, _CITOD,
|
|
1312
|
-
0,
|
|
1313
|
-
[_E],
|
|
1314
|
-
[[() => EventError$, 0]], 1
|
|
1315
|
-
];
|
|
1316
|
-
exports.ChainedInvokeTimedOutDetails$ = ChainedInvokeTimedOutDetails$;
|
|
1317
|
-
const CheckpointDurableExecutionRequest$ = [3, n0, _CDER,
|
|
1318
|
-
0,
|
|
1319
|
-
[_DEA, _CT, _U, _CTl],
|
|
1320
|
-
[[0, 1], 0, [() => OperationUpdates, 0], [0, 4]], 2
|
|
1321
|
-
];
|
|
1322
|
-
exports.CheckpointDurableExecutionRequest$ = CheckpointDurableExecutionRequest$;
|
|
1323
|
-
const CheckpointDurableExecutionResponse$ = [3, n0, _CDERh,
|
|
1324
|
-
0,
|
|
1325
|
-
[_NES, _CT],
|
|
1326
|
-
[[() => CheckpointUpdatedExecutionState$, 0], 0], 1
|
|
1327
|
-
];
|
|
1328
|
-
exports.CheckpointDurableExecutionResponse$ = CheckpointDurableExecutionResponse$;
|
|
1329
|
-
const CheckpointUpdatedExecutionState$ = [3, n0, _CUES,
|
|
1330
|
-
0,
|
|
1331
|
-
[_O, _NM],
|
|
1332
|
-
[[() => Operations, 0], 0]
|
|
1333
|
-
];
|
|
1334
|
-
exports.CheckpointUpdatedExecutionState$ = CheckpointUpdatedExecutionState$;
|
|
1335
|
-
const CodeSigningConfig$ = [3, n0, _CSC,
|
|
1336
|
-
0,
|
|
1337
|
-
[_CSCI, _CSCA, _AP, _CSP, _LM, _D],
|
|
1338
|
-
[0, 0, () => AllowedPublishers$, () => CodeSigningPolicies$, 0, 0], 5
|
|
1339
|
-
];
|
|
1340
|
-
exports.CodeSigningConfig$ = CodeSigningConfig$;
|
|
1341
|
-
const CodeSigningPolicies$ = [3, n0, _CSP,
|
|
1342
|
-
0,
|
|
1343
|
-
[_UAOD],
|
|
1344
|
-
[0]
|
|
1345
|
-
];
|
|
1346
|
-
exports.CodeSigningPolicies$ = CodeSigningPolicies$;
|
|
1347
|
-
const Concurrency$ = [3, n0, _C,
|
|
1348
|
-
0,
|
|
1349
|
-
[_RCEe],
|
|
1350
|
-
[1]
|
|
1351
|
-
];
|
|
1352
|
-
exports.Concurrency$ = Concurrency$;
|
|
1353
|
-
const ContextDetails$ = [3, n0, _CDo,
|
|
1354
|
-
0,
|
|
1355
|
-
[_RCe, _Re, _E],
|
|
1356
|
-
[2, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
1357
|
-
];
|
|
1358
|
-
exports.ContextDetails$ = ContextDetails$;
|
|
1359
|
-
const ContextFailedDetails$ = [3, n0, _CFDo,
|
|
1360
|
-
0,
|
|
1361
|
-
[_E],
|
|
1362
|
-
[[() => EventError$, 0]], 1
|
|
1363
|
-
];
|
|
1364
|
-
exports.ContextFailedDetails$ = ContextFailedDetails$;
|
|
1365
|
-
const ContextOptions$ = [3, n0, _COo,
|
|
1366
|
-
0,
|
|
1367
|
-
[_RCe],
|
|
1368
|
-
[2]
|
|
1369
|
-
];
|
|
1370
|
-
exports.ContextOptions$ = ContextOptions$;
|
|
1371
|
-
const ContextStartedDetails$ = [3, n0, _CSDo,
|
|
1372
|
-
0,
|
|
1373
|
-
[],
|
|
1374
|
-
[]
|
|
1375
|
-
];
|
|
1376
|
-
exports.ContextStartedDetails$ = ContextStartedDetails$;
|
|
1377
|
-
const ContextSucceededDetails$ = [3, n0, _CSDon,
|
|
1378
|
-
0,
|
|
1379
|
-
[_Re],
|
|
1380
|
-
[[() => EventResult$, 0]], 1
|
|
1381
|
-
];
|
|
1382
|
-
exports.ContextSucceededDetails$ = ContextSucceededDetails$;
|
|
1383
|
-
const Cors$ = [3, n0, _Co,
|
|
1384
|
-
0,
|
|
1385
|
-
[_ACl, _AH, _AM, _AO, _EH, _MA],
|
|
1386
|
-
[2, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 1]
|
|
1387
|
-
];
|
|
1388
|
-
exports.Cors$ = Cors$;
|
|
1389
|
-
const CreateAliasRequest$ = [3, n0, _CAR,
|
|
1390
|
-
0,
|
|
1391
|
-
[_FN, _N, _FV, _D, _RC],
|
|
1392
|
-
[[0, 1], 0, 0, 0, () => AliasRoutingConfiguration$], 3
|
|
1393
|
-
];
|
|
1394
|
-
exports.CreateAliasRequest$ = CreateAliasRequest$;
|
|
1395
|
-
const CreateCapacityProviderRequest$ = [3, n0, _CCPR,
|
|
1396
|
-
0,
|
|
1397
|
-
[_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta, _PT],
|
|
1398
|
-
[0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 128 | 0, () => PropagateTags$], 3
|
|
1399
|
-
];
|
|
1400
|
-
exports.CreateCapacityProviderRequest$ = CreateCapacityProviderRequest$;
|
|
1401
|
-
const CreateCapacityProviderResponse$ = [3, n0, _CCPRr,
|
|
1402
|
-
0,
|
|
1403
|
-
[_CP],
|
|
1404
|
-
[() => CapacityProvider$], 1
|
|
1405
|
-
];
|
|
1406
|
-
exports.CreateCapacityProviderResponse$ = CreateCapacityProviderResponse$;
|
|
1407
|
-
const CreateCodeSigningConfigRequest$ = [3, n0, _CCSCR,
|
|
1408
|
-
0,
|
|
1409
|
-
[_AP, _D, _CSP, _Ta],
|
|
1410
|
-
[() => AllowedPublishers$, 0, () => CodeSigningPolicies$, 128 | 0], 1
|
|
1411
|
-
];
|
|
1412
|
-
exports.CreateCodeSigningConfigRequest$ = CreateCodeSigningConfigRequest$;
|
|
1413
|
-
const CreateCodeSigningConfigResponse$ = [3, n0, _CCSCRr,
|
|
1414
|
-
0,
|
|
1415
|
-
[_CSC],
|
|
1416
|
-
[() => CodeSigningConfig$], 1
|
|
1417
|
-
];
|
|
1418
|
-
exports.CreateCodeSigningConfigResponse$ = CreateCodeSigningConfigResponse$;
|
|
1419
|
-
const CreateEventSourceMappingRequest$ = [3, n0, _CESMR,
|
|
1420
|
-
0,
|
|
1421
|
-
[_FN, _ESA, _En, _BSa, _FCi, _KMSKA, _MC, _LC, _SC, _MBWIS, _PF, _SPt, _SPT, _DC, _MRAIS, _BBOFE, _MRA, _Ta, _TWIS, _To, _Qu, _SAC, _SMES, _FRT, _AMKESC, _SMKESC, _DDBESC, _PPC],
|
|
1422
|
-
[0, 0, 2, 1, () => FilterCriteria$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ScalingConfig$, 1, 1, 0, 4, () => DestinationConfig$, 1, 2, 1, 128 | 0, 1, 64 | 0, 64 | 0, () => SourceAccessConfigurations, () => SelfManagedEventSource$, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => DocumentDBEventSourceConfig$, () => ProvisionedPollerConfig$], 1
|
|
1423
|
-
];
|
|
1424
|
-
exports.CreateEventSourceMappingRequest$ = CreateEventSourceMappingRequest$;
|
|
1425
|
-
const CreateFunctionRequest$ = [3, n0, _CFR,
|
|
1426
|
-
0,
|
|
1427
|
-
[_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _PTu, _VC, _PTa, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC, _CSCA, _IC, _Ar, _ES, _SSn, _LC, _TCe, _CPC, _DCu],
|
|
1428
|
-
[0, 0, [() => FunctionCode$, 0], 0, 0, 0, 1, 1, 2, 0, () => VpcConfig$, 0, () => DeadLetterConfig$, [() => Environment$, 0], 0, () => TracingConfig$, 128 | 0, 64 | 0, () => FileSystemConfigList, 0, () => ImageConfig$, 64 | 0, () => EphemeralStorage$, () => SnapStart$, () => LoggingConfig$, () => TenancyConfig$, () => CapacityProviderConfig$, () => DurableConfig$], 3
|
|
1429
|
-
];
|
|
1430
|
-
exports.CreateFunctionRequest$ = CreateFunctionRequest$;
|
|
1431
|
-
const CreateFunctionUrlConfigRequest$ = [3, n0, _CFUCR,
|
|
1432
|
-
0,
|
|
1433
|
-
[_FN, _AT, _Q, _Co, _IM],
|
|
1434
|
-
[[0, 1], 0, [0, { [_hQ]: _Q }], () => Cors$, 0], 2
|
|
1435
|
-
];
|
|
1436
|
-
exports.CreateFunctionUrlConfigRequest$ = CreateFunctionUrlConfigRequest$;
|
|
1437
|
-
const CreateFunctionUrlConfigResponse$ = [3, n0, _CFUCRr,
|
|
1438
|
-
0,
|
|
1439
|
-
[_FU, _FA, _AT, _CTr, _Co, _IM],
|
|
1440
|
-
[0, 0, 0, 0, () => Cors$, 0], 4
|
|
1441
|
-
];
|
|
1442
|
-
exports.CreateFunctionUrlConfigResponse$ = CreateFunctionUrlConfigResponse$;
|
|
1443
|
-
const DeadLetterConfig$ = [3, n0, _DLC,
|
|
1444
|
-
0,
|
|
1445
|
-
[_TA],
|
|
1446
|
-
[0]
|
|
1447
|
-
];
|
|
1448
|
-
exports.DeadLetterConfig$ = DeadLetterConfig$;
|
|
1449
|
-
const DeleteAliasRequest$ = [3, n0, _DAR,
|
|
1450
|
-
0,
|
|
1451
|
-
[_FN, _N],
|
|
1452
|
-
[[0, 1], [0, 1]], 2
|
|
1453
|
-
];
|
|
1454
|
-
exports.DeleteAliasRequest$ = DeleteAliasRequest$;
|
|
1455
|
-
const DeleteCapacityProviderRequest$ = [3, n0, _DCPR,
|
|
1456
|
-
0,
|
|
1457
|
-
[_CPN],
|
|
1458
|
-
[[0, 1]], 1
|
|
1459
|
-
];
|
|
1460
|
-
exports.DeleteCapacityProviderRequest$ = DeleteCapacityProviderRequest$;
|
|
1461
|
-
const DeleteCapacityProviderResponse$ = [3, n0, _DCPRe,
|
|
1462
|
-
0,
|
|
1463
|
-
[_CP],
|
|
1464
|
-
[() => CapacityProvider$], 1
|
|
1465
|
-
];
|
|
1466
|
-
exports.DeleteCapacityProviderResponse$ = DeleteCapacityProviderResponse$;
|
|
1467
|
-
const DeleteCodeSigningConfigRequest$ = [3, n0, _DCSCR,
|
|
1468
|
-
0,
|
|
1469
|
-
[_CSCA],
|
|
1470
|
-
[[0, 1]], 1
|
|
1471
|
-
];
|
|
1472
|
-
exports.DeleteCodeSigningConfigRequest$ = DeleteCodeSigningConfigRequest$;
|
|
1473
|
-
const DeleteCodeSigningConfigResponse$ = [3, n0, _DCSCRe,
|
|
1474
|
-
0,
|
|
1475
|
-
[],
|
|
1476
|
-
[]
|
|
1477
|
-
];
|
|
1478
|
-
exports.DeleteCodeSigningConfigResponse$ = DeleteCodeSigningConfigResponse$;
|
|
1479
|
-
const DeleteEventSourceMappingRequest$ = [3, n0, _DESMR,
|
|
1480
|
-
0,
|
|
1481
|
-
[_UUID],
|
|
1482
|
-
[[0, 1]], 1
|
|
1483
|
-
];
|
|
1484
|
-
exports.DeleteEventSourceMappingRequest$ = DeleteEventSourceMappingRequest$;
|
|
1485
|
-
const DeleteFunctionCodeSigningConfigRequest$ = [3, n0, _DFCSCR,
|
|
1486
|
-
0,
|
|
1487
|
-
[_FN],
|
|
1488
|
-
[[0, 1]], 1
|
|
1489
|
-
];
|
|
1490
|
-
exports.DeleteFunctionCodeSigningConfigRequest$ = DeleteFunctionCodeSigningConfigRequest$;
|
|
1491
|
-
const DeleteFunctionConcurrencyRequest$ = [3, n0, _DFCR,
|
|
1492
|
-
0,
|
|
1493
|
-
[_FN],
|
|
1494
|
-
[[0, 1]], 1
|
|
1495
|
-
];
|
|
1496
|
-
exports.DeleteFunctionConcurrencyRequest$ = DeleteFunctionConcurrencyRequest$;
|
|
1497
|
-
const DeleteFunctionEventInvokeConfigRequest$ = [3, n0, _DFEICR,
|
|
1498
|
-
0,
|
|
1499
|
-
[_FN, _Q],
|
|
1500
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1501
|
-
];
|
|
1502
|
-
exports.DeleteFunctionEventInvokeConfigRequest$ = DeleteFunctionEventInvokeConfigRequest$;
|
|
1503
|
-
const DeleteFunctionRequest$ = [3, n0, _DFR,
|
|
1504
|
-
0,
|
|
1505
|
-
[_FN, _Q],
|
|
1506
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1507
|
-
];
|
|
1508
|
-
exports.DeleteFunctionRequest$ = DeleteFunctionRequest$;
|
|
1509
|
-
const DeleteFunctionResponse$ = [3, n0, _DFRe,
|
|
1510
|
-
0,
|
|
1511
|
-
[_SCt],
|
|
1512
|
-
[[1, 32]]
|
|
1513
|
-
];
|
|
1514
|
-
exports.DeleteFunctionResponse$ = DeleteFunctionResponse$;
|
|
1515
|
-
const DeleteFunctionUrlConfigRequest$ = [3, n0, _DFUCR,
|
|
1516
|
-
0,
|
|
1517
|
-
[_FN, _Q],
|
|
1518
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1519
|
-
];
|
|
1520
|
-
exports.DeleteFunctionUrlConfigRequest$ = DeleteFunctionUrlConfigRequest$;
|
|
1521
|
-
const DeleteLayerVersionRequest$ = [3, n0, _DLVR,
|
|
1522
|
-
0,
|
|
1523
|
-
[_LN, _VN],
|
|
1524
|
-
[[0, 1], [1, 1]], 2
|
|
1525
|
-
];
|
|
1526
|
-
exports.DeleteLayerVersionRequest$ = DeleteLayerVersionRequest$;
|
|
1527
|
-
const DeleteProvisionedConcurrencyConfigRequest$ = [3, n0, _DPCCR,
|
|
1528
|
-
0,
|
|
1529
|
-
[_FN, _Q],
|
|
1530
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 2
|
|
1531
|
-
];
|
|
1532
|
-
exports.DeleteProvisionedConcurrencyConfigRequest$ = DeleteProvisionedConcurrencyConfigRequest$;
|
|
1533
|
-
const DestinationConfig$ = [3, n0, _DC,
|
|
1534
|
-
0,
|
|
1535
|
-
[_OS, _OF],
|
|
1536
|
-
[() => OnSuccess$, () => OnFailure$]
|
|
1537
|
-
];
|
|
1538
|
-
exports.DestinationConfig$ = DestinationConfig$;
|
|
1539
|
-
const DocumentDBEventSourceConfig$ = [3, n0, _DDBESC,
|
|
1540
|
-
0,
|
|
1541
|
-
[_DN, _CN, _FD],
|
|
1542
|
-
[0, 0, 0]
|
|
1543
|
-
];
|
|
1544
|
-
exports.DocumentDBEventSourceConfig$ = DocumentDBEventSourceConfig$;
|
|
1545
|
-
const DurableConfig$ = [3, n0, _DCu,
|
|
1546
|
-
0,
|
|
1547
|
-
[_RPID, _ETx],
|
|
1548
|
-
[1, 1]
|
|
1549
|
-
];
|
|
1550
|
-
exports.DurableConfig$ = DurableConfig$;
|
|
1551
|
-
const Environment$ = [3, n0, _Env,
|
|
1552
|
-
0,
|
|
1553
|
-
[_V],
|
|
1554
|
-
[[() => EnvironmentVariables, 0]]
|
|
1555
|
-
];
|
|
1556
|
-
exports.Environment$ = Environment$;
|
|
1557
|
-
const EnvironmentError$ = [3, n0, _EE,
|
|
1558
|
-
0,
|
|
1559
|
-
[_EC, _M],
|
|
1560
|
-
[0, [() => SensitiveString, 0]]
|
|
1561
|
-
];
|
|
1562
|
-
exports.EnvironmentError$ = EnvironmentError$;
|
|
1563
|
-
const EnvironmentResponse$ = [3, n0, _ER,
|
|
1564
|
-
0,
|
|
1565
|
-
[_V, _E],
|
|
1566
|
-
[[() => EnvironmentVariables, 0], [() => EnvironmentError$, 0]]
|
|
1567
|
-
];
|
|
1568
|
-
exports.EnvironmentResponse$ = EnvironmentResponse$;
|
|
1569
|
-
const EphemeralStorage$ = [3, n0, _ES,
|
|
1570
|
-
0,
|
|
1571
|
-
[_Si],
|
|
1572
|
-
[1], 1
|
|
1573
|
-
];
|
|
1574
|
-
exports.EphemeralStorage$ = EphemeralStorage$;
|
|
1575
|
-
const ErrorObject$ = [3, n0, _EO,
|
|
1576
|
-
0,
|
|
1577
|
-
[_EM, _ET, _ED, _ST],
|
|
1578
|
-
[[() => ErrorMessage, 0], [() => ErrorType, 0], [() => ErrorData, 0], [() => StackTraceEntries, 0]]
|
|
1579
|
-
];
|
|
1580
|
-
exports.ErrorObject$ = ErrorObject$;
|
|
1581
|
-
const Event$ = [3, n0, _Ev,
|
|
1582
|
-
0,
|
|
1583
|
-
[_ETv, _STu, _EI, _Id, _N, _ETve, _PI, _ESD, _ESDx, _EFD, _ETOD, _ESDxe, _CSDo, _CSDon, _CFDo, _WSD, _WSDa, _WCD, _SSD, _SSDt, _SFD, _CISD, _CISDha, _CIFD, _CITOD, _CISDh, _CSD, _CSDa, _CFD, _CTOD, _ICD],
|
|
1584
|
-
[0, 0, 1, 0, 0, 4, 0, [() => ExecutionStartedDetails$, 0], [() => ExecutionSucceededDetails$, 0], [() => ExecutionFailedDetails$, 0], [() => ExecutionTimedOutDetails$, 0], [() => ExecutionStoppedDetails$, 0], () => ContextStartedDetails$, [() => ContextSucceededDetails$, 0], [() => ContextFailedDetails$, 0], () => WaitStartedDetails$, () => WaitSucceededDetails$, [() => WaitCancelledDetails$, 0], () => StepStartedDetails$, [() => StepSucceededDetails$, 0], [() => StepFailedDetails$, 0], [() => ChainedInvokeStartedDetails$, 0], [() => ChainedInvokeSucceededDetails$, 0], [() => ChainedInvokeFailedDetails$, 0], [() => ChainedInvokeTimedOutDetails$, 0], [() => ChainedInvokeStoppedDetails$, 0], () => CallbackStartedDetails$, [() => CallbackSucceededDetails$, 0], [() => CallbackFailedDetails$, 0], [() => CallbackTimedOutDetails$, 0], [() => InvocationCompletedDetails$, 0]]
|
|
1585
|
-
];
|
|
1586
|
-
exports.Event$ = Event$;
|
|
1587
|
-
const EventError$ = [3, n0, _EEv,
|
|
1588
|
-
0,
|
|
1589
|
-
[_Pa, _Tr],
|
|
1590
|
-
[[() => ErrorObject$, 0], 2]
|
|
1591
|
-
];
|
|
1592
|
-
exports.EventError$ = EventError$;
|
|
1593
|
-
const EventInput$ = [3, n0, _EIv,
|
|
1594
|
-
0,
|
|
1595
|
-
[_Pa, _Tr],
|
|
1596
|
-
[[() => InputPayload, 0], 2]
|
|
1597
|
-
];
|
|
1598
|
-
exports.EventInput$ = EventInput$;
|
|
1599
|
-
const EventResult$ = [3, n0, _ERv,
|
|
1600
|
-
0,
|
|
1601
|
-
[_Pa, _Tr],
|
|
1602
|
-
[[() => OperationPayload, 0], 2]
|
|
1603
|
-
];
|
|
1604
|
-
exports.EventResult$ = EventResult$;
|
|
1605
|
-
const EventSourceMappingConfiguration$ = [3, n0, _ESMC,
|
|
1606
|
-
0,
|
|
1607
|
-
[_UUID, _SPt, _SPT, _BSa, _MBWIS, _PF, _ESA, _FCi, _FCE, _KMSKA, _MC, _LC, _SC, _FA, _LM, _LPR, _St, _STR, _DC, _To, _Qu, _SAC, _SMES, _MRAIS, _BBOFE, _MRA, _TWIS, _FRT, _AMKESC, _SMKESC, _DDBESC, _ESMA, _PPC],
|
|
1608
|
-
[0, 0, 4, 1, 1, 1, 0, () => FilterCriteria$, () => FilterCriteriaError$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ScalingConfig$, 0, 4, 0, 0, 0, () => DestinationConfig$, 64 | 0, 64 | 0, () => SourceAccessConfigurations, () => SelfManagedEventSource$, 1, 2, 1, 1, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => DocumentDBEventSourceConfig$, 0, () => ProvisionedPollerConfig$]
|
|
1609
|
-
];
|
|
1610
|
-
exports.EventSourceMappingConfiguration$ = EventSourceMappingConfiguration$;
|
|
1611
|
-
const EventSourceMappingLoggingConfig$ = [3, n0, _ESMLC,
|
|
1612
|
-
0,
|
|
1613
|
-
[_SLL],
|
|
1614
|
-
[0]
|
|
1615
|
-
];
|
|
1616
|
-
exports.EventSourceMappingLoggingConfig$ = EventSourceMappingLoggingConfig$;
|
|
1617
|
-
const EventSourceMappingMetricsConfig$ = [3, n0, _ESMMC,
|
|
1618
|
-
0,
|
|
1619
|
-
[_Me],
|
|
1620
|
-
[64 | 0]
|
|
1621
|
-
];
|
|
1622
|
-
exports.EventSourceMappingMetricsConfig$ = EventSourceMappingMetricsConfig$;
|
|
1623
|
-
const Execution$ = [3, n0, _Ex,
|
|
1624
|
-
0,
|
|
1625
|
-
[_DEA, _DEN, _FA, _Sta, _STt, _ETn],
|
|
1626
|
-
[0, 0, 0, 0, 4, 4], 5
|
|
1627
|
-
];
|
|
1628
|
-
exports.Execution$ = Execution$;
|
|
1629
|
-
const ExecutionDetails$ = [3, n0, _EDx,
|
|
1630
|
-
0,
|
|
1631
|
-
[_IP],
|
|
1632
|
-
[[() => InputPayload, 0]]
|
|
1633
|
-
];
|
|
1634
|
-
exports.ExecutionDetails$ = ExecutionDetails$;
|
|
1635
|
-
const ExecutionFailedDetails$ = [3, n0, _EFD,
|
|
1636
|
-
0,
|
|
1637
|
-
[_E],
|
|
1638
|
-
[[() => EventError$, 0]], 1
|
|
1639
|
-
];
|
|
1640
|
-
exports.ExecutionFailedDetails$ = ExecutionFailedDetails$;
|
|
1641
|
-
const ExecutionStartedDetails$ = [3, n0, _ESD,
|
|
1642
|
-
0,
|
|
1643
|
-
[_I, _ETx],
|
|
1644
|
-
[[() => EventInput$, 0], 1], 2
|
|
1645
|
-
];
|
|
1646
|
-
exports.ExecutionStartedDetails$ = ExecutionStartedDetails$;
|
|
1647
|
-
const ExecutionStoppedDetails$ = [3, n0, _ESDxe,
|
|
1648
|
-
0,
|
|
1649
|
-
[_E],
|
|
1650
|
-
[[() => EventError$, 0]], 1
|
|
1651
|
-
];
|
|
1652
|
-
exports.ExecutionStoppedDetails$ = ExecutionStoppedDetails$;
|
|
1653
|
-
const ExecutionSucceededDetails$ = [3, n0, _ESDx,
|
|
1654
|
-
0,
|
|
1655
|
-
[_Re],
|
|
1656
|
-
[[() => EventResult$, 0]], 1
|
|
1657
|
-
];
|
|
1658
|
-
exports.ExecutionSucceededDetails$ = ExecutionSucceededDetails$;
|
|
1659
|
-
const ExecutionTimedOutDetails$ = [3, n0, _ETOD,
|
|
1660
|
-
0,
|
|
1661
|
-
[_E],
|
|
1662
|
-
[[() => EventError$, 0]]
|
|
1663
|
-
];
|
|
1664
|
-
exports.ExecutionTimedOutDetails$ = ExecutionTimedOutDetails$;
|
|
1665
|
-
const FileSystemConfig$ = [3, n0, _FSCi,
|
|
1666
|
-
0,
|
|
1667
|
-
[_Arn, _LMP],
|
|
1668
|
-
[0, 0], 2
|
|
1669
|
-
];
|
|
1670
|
-
exports.FileSystemConfig$ = FileSystemConfig$;
|
|
1671
|
-
const Filter$ = [3, n0, _F,
|
|
1672
|
-
0,
|
|
1673
|
-
[_Pat],
|
|
1674
|
-
[0]
|
|
1675
|
-
];
|
|
1676
|
-
exports.Filter$ = Filter$;
|
|
1677
|
-
const FilterCriteria$ = [3, n0, _FCi,
|
|
1678
|
-
0,
|
|
1679
|
-
[_Fi],
|
|
1680
|
-
[() => FilterList]
|
|
1681
|
-
];
|
|
1682
|
-
exports.FilterCriteria$ = FilterCriteria$;
|
|
1683
|
-
const FilterCriteriaError$ = [3, n0, _FCE,
|
|
1684
|
-
0,
|
|
1685
|
-
[_EC, _M],
|
|
1686
|
-
[0, 0]
|
|
1687
|
-
];
|
|
1688
|
-
exports.FilterCriteriaError$ = FilterCriteriaError$;
|
|
1689
|
-
const FunctionCode$ = [3, n0, _FCu,
|
|
1690
|
-
0,
|
|
1691
|
-
[_ZF, _SB, _SK, _SOV, _IU, _SKMSKA],
|
|
1692
|
-
[[() => _Blob, 0], 0, 0, 0, 0, 0]
|
|
1693
|
-
];
|
|
1694
|
-
exports.FunctionCode$ = FunctionCode$;
|
|
1695
|
-
const FunctionCodeLocation$ = [3, n0, _FCL,
|
|
1696
|
-
0,
|
|
1697
|
-
[_RT, _Lo, _IU, _RIU, _SKMSKA],
|
|
1698
|
-
[0, 0, 0, 0, 0]
|
|
1699
|
-
];
|
|
1700
|
-
exports.FunctionCodeLocation$ = FunctionCodeLocation$;
|
|
1701
|
-
const FunctionConfiguration$ = [3, n0, _FCun,
|
|
1702
|
-
0,
|
|
1703
|
-
[_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC, _SPVAi, _SJA, _PTa, _ICR, _Ar, _ES, _SSn, _RVC, _LC, _TCe, _CPC, _CSon, _DCu],
|
|
1704
|
-
[0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, () => VpcConfigResponse$, () => DeadLetterConfig$, [() => EnvironmentResponse$, 0], 0, () => TracingConfigResponse$, 0, 0, () => LayersReferenceList, 0, 0, 0, 0, 0, 0, () => FileSystemConfigList, 0, 0, 0, [() => ImageConfigResponse$, 0], 64 | 0, () => EphemeralStorage$, () => SnapStartResponse$, [() => RuntimeVersionConfig$, 0], () => LoggingConfig$, () => TenancyConfig$, () => CapacityProviderConfig$, 0, () => DurableConfig$]
|
|
1705
|
-
];
|
|
1706
|
-
exports.FunctionConfiguration$ = FunctionConfiguration$;
|
|
1707
|
-
const FunctionEventInvokeConfig$ = [3, n0, _FEIC,
|
|
1708
|
-
0,
|
|
1709
|
-
[_LM, _FA, _MRA, _MEAIS, _DC],
|
|
1710
|
-
[4, 0, 1, 1, () => DestinationConfig$]
|
|
1711
|
-
];
|
|
1712
|
-
exports.FunctionEventInvokeConfig$ = FunctionEventInvokeConfig$;
|
|
1713
|
-
const FunctionScalingConfig$ = [3, n0, _FSCu,
|
|
1714
|
-
0,
|
|
1715
|
-
[_MEE, _MEEa],
|
|
1716
|
-
[1, 1]
|
|
1717
|
-
];
|
|
1718
|
-
exports.FunctionScalingConfig$ = FunctionScalingConfig$;
|
|
1719
|
-
const FunctionUrlConfig$ = [3, n0, _FUC,
|
|
1720
|
-
0,
|
|
1721
|
-
[_FU, _FA, _CTr, _LMT, _AT, _Co, _IM],
|
|
1722
|
-
[0, 0, 0, 0, 0, () => Cors$, 0], 5
|
|
1723
|
-
];
|
|
1724
|
-
exports.FunctionUrlConfig$ = FunctionUrlConfig$;
|
|
1725
|
-
const FunctionVersionsByCapacityProviderListItem$ = [3, n0, _FVBCPLI,
|
|
1726
|
-
0,
|
|
1727
|
-
[_FA, _St],
|
|
1728
|
-
[0, 0], 2
|
|
1729
|
-
];
|
|
1730
|
-
exports.FunctionVersionsByCapacityProviderListItem$ = FunctionVersionsByCapacityProviderListItem$;
|
|
1731
|
-
const GetAccountSettingsRequest$ = [3, n0, _GASR,
|
|
1732
|
-
0,
|
|
1733
|
-
[],
|
|
1734
|
-
[]
|
|
1735
|
-
];
|
|
1736
|
-
exports.GetAccountSettingsRequest$ = GetAccountSettingsRequest$;
|
|
1737
|
-
const GetAccountSettingsResponse$ = [3, n0, _GASRe,
|
|
1738
|
-
0,
|
|
1739
|
-
[_AL, _AU],
|
|
1740
|
-
[() => AccountLimit$, () => AccountUsage$]
|
|
1741
|
-
];
|
|
1742
|
-
exports.GetAccountSettingsResponse$ = GetAccountSettingsResponse$;
|
|
1743
|
-
const GetAliasRequest$ = [3, n0, _GAR,
|
|
1744
|
-
0,
|
|
1745
|
-
[_FN, _N],
|
|
1746
|
-
[[0, 1], [0, 1]], 2
|
|
1747
|
-
];
|
|
1748
|
-
exports.GetAliasRequest$ = GetAliasRequest$;
|
|
1749
|
-
const GetCapacityProviderRequest$ = [3, n0, _GCPR,
|
|
1750
|
-
0,
|
|
1751
|
-
[_CPN],
|
|
1752
|
-
[[0, 1]], 1
|
|
1753
|
-
];
|
|
1754
|
-
exports.GetCapacityProviderRequest$ = GetCapacityProviderRequest$;
|
|
1755
|
-
const GetCapacityProviderResponse$ = [3, n0, _GCPRe,
|
|
1756
|
-
0,
|
|
1757
|
-
[_CP],
|
|
1758
|
-
[() => CapacityProvider$], 1
|
|
1759
|
-
];
|
|
1760
|
-
exports.GetCapacityProviderResponse$ = GetCapacityProviderResponse$;
|
|
1761
|
-
const GetCodeSigningConfigRequest$ = [3, n0, _GCSCR,
|
|
1762
|
-
0,
|
|
1763
|
-
[_CSCA],
|
|
1764
|
-
[[0, 1]], 1
|
|
1765
|
-
];
|
|
1766
|
-
exports.GetCodeSigningConfigRequest$ = GetCodeSigningConfigRequest$;
|
|
1767
|
-
const GetCodeSigningConfigResponse$ = [3, n0, _GCSCRe,
|
|
1768
|
-
0,
|
|
1769
|
-
[_CSC],
|
|
1770
|
-
[() => CodeSigningConfig$], 1
|
|
1771
|
-
];
|
|
1772
|
-
exports.GetCodeSigningConfigResponse$ = GetCodeSigningConfigResponse$;
|
|
1773
|
-
const GetDurableExecutionHistoryRequest$ = [3, n0, _GDEHR,
|
|
1774
|
-
0,
|
|
1775
|
-
[_DEA, _IED, _MI, _Ma, _RO],
|
|
1776
|
-
[[0, 1], [2, { [_hQ]: _IED }], [1, { [_hQ]: _MI }], [0, { [_hQ]: _Ma }], [2, { [_hQ]: _RO }]], 1
|
|
1777
|
-
];
|
|
1778
|
-
exports.GetDurableExecutionHistoryRequest$ = GetDurableExecutionHistoryRequest$;
|
|
1779
|
-
const GetDurableExecutionHistoryResponse$ = [3, n0, _GDEHRe,
|
|
1780
|
-
0,
|
|
1781
|
-
[_Eve, _NM],
|
|
1782
|
-
[[() => Events, 0], 0], 1
|
|
1783
|
-
];
|
|
1784
|
-
exports.GetDurableExecutionHistoryResponse$ = GetDurableExecutionHistoryResponse$;
|
|
1785
|
-
const GetDurableExecutionRequest$ = [3, n0, _GDER,
|
|
1786
|
-
0,
|
|
1787
|
-
[_DEA],
|
|
1788
|
-
[[0, 1]], 1
|
|
1789
|
-
];
|
|
1790
|
-
exports.GetDurableExecutionRequest$ = GetDurableExecutionRequest$;
|
|
1791
|
-
const GetDurableExecutionResponse$ = [3, n0, _GDERe,
|
|
1792
|
-
0,
|
|
1793
|
-
[_DEA, _DEN, _FA, _STt, _Sta, _IP, _Re, _E, _ETn, _Ve, _TH],
|
|
1794
|
-
[0, 0, 0, 4, 0, [() => InputPayload, 0], [() => OutputPayload, 0], [() => ErrorObject$, 0], 4, 0, () => TraceHeader$], 5
|
|
1795
|
-
];
|
|
1796
|
-
exports.GetDurableExecutionResponse$ = GetDurableExecutionResponse$;
|
|
1797
|
-
const GetDurableExecutionStateRequest$ = [3, n0, _GDESR,
|
|
1798
|
-
0,
|
|
1799
|
-
[_DEA, _CT, _Ma, _MI],
|
|
1800
|
-
[[0, 1], [0, { [_hQ]: _CT }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 2
|
|
1801
|
-
];
|
|
1802
|
-
exports.GetDurableExecutionStateRequest$ = GetDurableExecutionStateRequest$;
|
|
1803
|
-
const GetDurableExecutionStateResponse$ = [3, n0, _GDESRe,
|
|
1804
|
-
0,
|
|
1805
|
-
[_O, _NM],
|
|
1806
|
-
[[() => Operations, 0], 0], 1
|
|
1807
|
-
];
|
|
1808
|
-
exports.GetDurableExecutionStateResponse$ = GetDurableExecutionStateResponse$;
|
|
1809
|
-
const GetEventSourceMappingRequest$ = [3, n0, _GESMR,
|
|
1810
|
-
0,
|
|
1811
|
-
[_UUID],
|
|
1812
|
-
[[0, 1]], 1
|
|
1813
|
-
];
|
|
1814
|
-
exports.GetEventSourceMappingRequest$ = GetEventSourceMappingRequest$;
|
|
1815
|
-
const GetFunctionCodeSigningConfigRequest$ = [3, n0, _GFCSCR,
|
|
1816
|
-
0,
|
|
1817
|
-
[_FN],
|
|
1818
|
-
[[0, 1]], 1
|
|
1819
|
-
];
|
|
1820
|
-
exports.GetFunctionCodeSigningConfigRequest$ = GetFunctionCodeSigningConfigRequest$;
|
|
1821
|
-
const GetFunctionCodeSigningConfigResponse$ = [3, n0, _GFCSCRe,
|
|
1822
|
-
0,
|
|
1823
|
-
[_CSCA, _FN],
|
|
1824
|
-
[0, 0], 2
|
|
1825
|
-
];
|
|
1826
|
-
exports.GetFunctionCodeSigningConfigResponse$ = GetFunctionCodeSigningConfigResponse$;
|
|
1827
|
-
const GetFunctionConcurrencyRequest$ = [3, n0, _GFCR,
|
|
1828
|
-
0,
|
|
1829
|
-
[_FN],
|
|
1830
|
-
[[0, 1]], 1
|
|
1831
|
-
];
|
|
1832
|
-
exports.GetFunctionConcurrencyRequest$ = GetFunctionConcurrencyRequest$;
|
|
1833
|
-
const GetFunctionConcurrencyResponse$ = [3, n0, _GFCRe,
|
|
1834
|
-
0,
|
|
1835
|
-
[_RCEe],
|
|
1836
|
-
[1]
|
|
1837
|
-
];
|
|
1838
|
-
exports.GetFunctionConcurrencyResponse$ = GetFunctionConcurrencyResponse$;
|
|
1839
|
-
const GetFunctionConfigurationRequest$ = [3, n0, _GFCRet,
|
|
1840
|
-
0,
|
|
1841
|
-
[_FN, _Q],
|
|
1842
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1843
|
-
];
|
|
1844
|
-
exports.GetFunctionConfigurationRequest$ = GetFunctionConfigurationRequest$;
|
|
1845
|
-
const GetFunctionEventInvokeConfigRequest$ = [3, n0, _GFEICR,
|
|
1846
|
-
0,
|
|
1847
|
-
[_FN, _Q],
|
|
1848
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1849
|
-
];
|
|
1850
|
-
exports.GetFunctionEventInvokeConfigRequest$ = GetFunctionEventInvokeConfigRequest$;
|
|
1851
|
-
const GetFunctionRecursionConfigRequest$ = [3, n0, _GFRCR,
|
|
1852
|
-
0,
|
|
1853
|
-
[_FN],
|
|
1854
|
-
[[0, 1]], 1
|
|
1855
|
-
];
|
|
1856
|
-
exports.GetFunctionRecursionConfigRequest$ = GetFunctionRecursionConfigRequest$;
|
|
1857
|
-
const GetFunctionRecursionConfigResponse$ = [3, n0, _GFRCRe,
|
|
1858
|
-
0,
|
|
1859
|
-
[_RL],
|
|
1860
|
-
[0]
|
|
1861
|
-
];
|
|
1862
|
-
exports.GetFunctionRecursionConfigResponse$ = GetFunctionRecursionConfigResponse$;
|
|
1863
|
-
const GetFunctionRequest$ = [3, n0, _GFR,
|
|
1864
|
-
0,
|
|
1865
|
-
[_FN, _Q],
|
|
1866
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1867
|
-
];
|
|
1868
|
-
exports.GetFunctionRequest$ = GetFunctionRequest$;
|
|
1869
|
-
const GetFunctionResponse$ = [3, n0, _GFRe,
|
|
1870
|
-
0,
|
|
1871
|
-
[_Con, _Cod, _Ta, _TE, _C],
|
|
1872
|
-
[[() => FunctionConfiguration$, 0], () => FunctionCodeLocation$, 128 | 0, () => TagsError$, () => Concurrency$]
|
|
1873
|
-
];
|
|
1874
|
-
exports.GetFunctionResponse$ = GetFunctionResponse$;
|
|
1875
|
-
const GetFunctionScalingConfigRequest$ = [3, n0, _GFSCR,
|
|
1876
|
-
0,
|
|
1877
|
-
[_FN, _Q],
|
|
1878
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 2
|
|
1879
|
-
];
|
|
1880
|
-
exports.GetFunctionScalingConfigRequest$ = GetFunctionScalingConfigRequest$;
|
|
1881
|
-
const GetFunctionScalingConfigResponse$ = [3, n0, _GFSCRe,
|
|
1882
|
-
0,
|
|
1883
|
-
[_FA, _AFSC, _RFSC],
|
|
1884
|
-
[0, () => FunctionScalingConfig$, () => FunctionScalingConfig$]
|
|
1885
|
-
];
|
|
1886
|
-
exports.GetFunctionScalingConfigResponse$ = GetFunctionScalingConfigResponse$;
|
|
1887
|
-
const GetFunctionUrlConfigRequest$ = [3, n0, _GFUCR,
|
|
1888
|
-
0,
|
|
1889
|
-
[_FN, _Q],
|
|
1890
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1891
|
-
];
|
|
1892
|
-
exports.GetFunctionUrlConfigRequest$ = GetFunctionUrlConfigRequest$;
|
|
1893
|
-
const GetFunctionUrlConfigResponse$ = [3, n0, _GFUCRe,
|
|
1894
|
-
0,
|
|
1895
|
-
[_FU, _FA, _AT, _CTr, _LMT, _Co, _IM],
|
|
1896
|
-
[0, 0, 0, 0, 0, () => Cors$, 0], 5
|
|
1897
|
-
];
|
|
1898
|
-
exports.GetFunctionUrlConfigResponse$ = GetFunctionUrlConfigResponse$;
|
|
1899
|
-
const GetLayerVersionByArnRequest$ = [3, n0, _GLVBAR,
|
|
1900
|
-
0,
|
|
1901
|
-
[_Arn],
|
|
1902
|
-
[[0, { [_hQ]: _Arn }]], 1
|
|
1903
|
-
];
|
|
1904
|
-
exports.GetLayerVersionByArnRequest$ = GetLayerVersionByArnRequest$;
|
|
1905
|
-
const GetLayerVersionPolicyRequest$ = [3, n0, _GLVPR,
|
|
1906
|
-
0,
|
|
1907
|
-
[_LN, _VN],
|
|
1908
|
-
[[0, 1], [1, 1]], 2
|
|
1909
|
-
];
|
|
1910
|
-
exports.GetLayerVersionPolicyRequest$ = GetLayerVersionPolicyRequest$;
|
|
1911
|
-
const GetLayerVersionPolicyResponse$ = [3, n0, _GLVPRe,
|
|
1912
|
-
0,
|
|
1913
|
-
[_Po, _RI],
|
|
1914
|
-
[0, 0]
|
|
1915
|
-
];
|
|
1916
|
-
exports.GetLayerVersionPolicyResponse$ = GetLayerVersionPolicyResponse$;
|
|
1917
|
-
const GetLayerVersionRequest$ = [3, n0, _GLVR,
|
|
1918
|
-
0,
|
|
1919
|
-
[_LN, _VN],
|
|
1920
|
-
[[0, 1], [1, 1]], 2
|
|
1921
|
-
];
|
|
1922
|
-
exports.GetLayerVersionRequest$ = GetLayerVersionRequest$;
|
|
1923
|
-
const GetLayerVersionResponse$ = [3, n0, _GLVRe,
|
|
1924
|
-
0,
|
|
1925
|
-
[_Cont, _LA, _LVA, _D, _CDr, _Ve, _CA, _CR, _LI],
|
|
1926
|
-
[() => LayerVersionContentOutput$, 0, 0, 0, 0, 1, 64 | 0, 64 | 0, 0]
|
|
1927
|
-
];
|
|
1928
|
-
exports.GetLayerVersionResponse$ = GetLayerVersionResponse$;
|
|
1929
|
-
const GetPolicyRequest$ = [3, n0, _GPR,
|
|
1930
|
-
0,
|
|
1931
|
-
[_FN, _Q],
|
|
1932
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1933
|
-
];
|
|
1934
|
-
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
1935
|
-
const GetPolicyResponse$ = [3, n0, _GPRe,
|
|
1936
|
-
0,
|
|
1937
|
-
[_Po, _RI],
|
|
1938
|
-
[0, 0]
|
|
1939
|
-
];
|
|
1940
|
-
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
1941
|
-
const GetProvisionedConcurrencyConfigRequest$ = [3, n0, _GPCCR,
|
|
1942
|
-
0,
|
|
1943
|
-
[_FN, _Q],
|
|
1944
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 2
|
|
1945
|
-
];
|
|
1946
|
-
exports.GetProvisionedConcurrencyConfigRequest$ = GetProvisionedConcurrencyConfigRequest$;
|
|
1947
|
-
const GetProvisionedConcurrencyConfigResponse$ = [3, n0, _GPCCRe,
|
|
1948
|
-
0,
|
|
1949
|
-
[_RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
|
|
1950
|
-
[1, 1, 1, 0, 0, 0]
|
|
1951
|
-
];
|
|
1952
|
-
exports.GetProvisionedConcurrencyConfigResponse$ = GetProvisionedConcurrencyConfigResponse$;
|
|
1953
|
-
const GetRuntimeManagementConfigRequest$ = [3, n0, _GRMCR,
|
|
1954
|
-
0,
|
|
1955
|
-
[_FN, _Q],
|
|
1956
|
-
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1957
|
-
];
|
|
1958
|
-
exports.GetRuntimeManagementConfigRequest$ = GetRuntimeManagementConfigRequest$;
|
|
1959
|
-
const GetRuntimeManagementConfigResponse$ = [3, n0, _GRMCRe,
|
|
1960
|
-
0,
|
|
1961
|
-
[_URO, _FA, _RVA],
|
|
1962
|
-
[0, 0, 0]
|
|
1963
|
-
];
|
|
1964
|
-
exports.GetRuntimeManagementConfigResponse$ = GetRuntimeManagementConfigResponse$;
|
|
1965
|
-
const ImageConfig$ = [3, n0, _IC,
|
|
1966
|
-
0,
|
|
1967
|
-
[_EP, _Com, _WD],
|
|
1968
|
-
[64 | 0, 64 | 0, 0]
|
|
1969
|
-
];
|
|
1970
|
-
exports.ImageConfig$ = ImageConfig$;
|
|
1971
|
-
const ImageConfigError$ = [3, n0, _ICE,
|
|
1972
|
-
0,
|
|
1973
|
-
[_EC, _M],
|
|
1974
|
-
[0, [() => SensitiveString, 0]]
|
|
1975
|
-
];
|
|
1976
|
-
exports.ImageConfigError$ = ImageConfigError$;
|
|
1977
|
-
const ImageConfigResponse$ = [3, n0, _ICR,
|
|
1978
|
-
0,
|
|
1979
|
-
[_IC, _E],
|
|
1980
|
-
[() => ImageConfig$, [() => ImageConfigError$, 0]]
|
|
1981
|
-
];
|
|
1982
|
-
exports.ImageConfigResponse$ = ImageConfigResponse$;
|
|
1983
|
-
const InstanceRequirements$ = [3, n0, _IR,
|
|
1984
|
-
0,
|
|
1985
|
-
[_Ar, _AIT, _EIT],
|
|
1986
|
-
[64 | 0, 64 | 0, 64 | 0]
|
|
1987
|
-
];
|
|
1988
|
-
exports.InstanceRequirements$ = InstanceRequirements$;
|
|
1989
|
-
const InvocationCompletedDetails$ = [3, n0, _ICD,
|
|
1990
|
-
0,
|
|
1991
|
-
[_STt, _ETn, _RIe, _E],
|
|
1992
|
-
[4, 4, 0, [() => EventError$, 0]], 3
|
|
1993
|
-
];
|
|
1994
|
-
exports.InvocationCompletedDetails$ = InvocationCompletedDetails$;
|
|
1995
|
-
const InvocationRequest$ = [3, n0, _IRn,
|
|
1996
|
-
0,
|
|
1997
|
-
[_FN, _IT, _LT, _CC, _DEN, _Pa, _Q, _TI],
|
|
1998
|
-
[[0, 1], [0, { [_hH]: _XAIT }], [0, { [_hH]: _XALT }], [0, { [_hH]: _XACC }], [0, { [_hH]: _XADEN }], [() => _Blob, 16], [0, { [_hQ]: _Q }], [0, { [_hH]: _XATI }]], 1
|
|
1999
|
-
];
|
|
2000
|
-
exports.InvocationRequest$ = InvocationRequest$;
|
|
2001
|
-
const InvocationResponse$ = [3, n0, _IRnv,
|
|
2002
|
-
0,
|
|
2003
|
-
[_SCt, _FE, _LR, _Pa, _EV, _DEA],
|
|
2004
|
-
[[1, 32], [0, { [_hH]: _XAFE }], [0, { [_hH]: _XALR }], [() => _Blob, 16], [0, { [_hH]: _XAEV }], [0, { [_hH]: _XADEA }]]
|
|
2005
|
-
];
|
|
2006
|
-
exports.InvocationResponse$ = InvocationResponse$;
|
|
2007
|
-
const InvokeAsyncRequest$ = [3, n0, _IAR,
|
|
2008
|
-
0,
|
|
2009
|
-
[_FN, _IA],
|
|
2010
|
-
[[0, 1], [() => BlobStream, 16]], 2
|
|
2011
|
-
];
|
|
2012
|
-
exports.InvokeAsyncRequest$ = InvokeAsyncRequest$;
|
|
2013
|
-
const InvokeAsyncResponse$ = [3, n0, _IARn,
|
|
2014
|
-
0,
|
|
2015
|
-
[_Sta],
|
|
2016
|
-
[[1, 32]]
|
|
2017
|
-
];
|
|
2018
|
-
exports.InvokeAsyncResponse$ = InvokeAsyncResponse$;
|
|
2019
|
-
const InvokeResponseStreamUpdate$ = [3, n0, _IRSU,
|
|
2020
|
-
0,
|
|
2021
|
-
[_Pa],
|
|
2022
|
-
[[() => _Blob, { [_eP]: 1 }]]
|
|
2023
|
-
];
|
|
2024
|
-
exports.InvokeResponseStreamUpdate$ = InvokeResponseStreamUpdate$;
|
|
2025
|
-
const InvokeWithResponseStreamCompleteEvent$ = [3, n0, _IWRSCE,
|
|
2026
|
-
0,
|
|
2027
|
-
[_EC, _EDr, _LR],
|
|
2028
|
-
[0, 0, 0]
|
|
2029
|
-
];
|
|
2030
|
-
exports.InvokeWithResponseStreamCompleteEvent$ = InvokeWithResponseStreamCompleteEvent$;
|
|
2031
|
-
const InvokeWithResponseStreamRequest$ = [3, n0, _IWRSR,
|
|
2032
|
-
0,
|
|
2033
|
-
[_FN, _IT, _LT, _CC, _Q, _Pa, _TI],
|
|
2034
|
-
[[0, 1], [0, { [_hH]: _XAIT }], [0, { [_hH]: _XALT }], [0, { [_hH]: _XACC }], [0, { [_hQ]: _Q }], [() => _Blob, 16], [0, { [_hH]: _XATI }]], 1
|
|
2035
|
-
];
|
|
2036
|
-
exports.InvokeWithResponseStreamRequest$ = InvokeWithResponseStreamRequest$;
|
|
2037
|
-
const InvokeWithResponseStreamResponse$ = [3, n0, _IWRSRn,
|
|
2038
|
-
0,
|
|
2039
|
-
[_SCt, _EV, _ESv, _RSCT],
|
|
2040
|
-
[[1, 32], [0, { [_hH]: _XAEV }], [() => InvokeWithResponseStreamResponseEvent$, 16], [0, { [_hH]: _CT_ }]]
|
|
2041
|
-
];
|
|
2042
|
-
exports.InvokeWithResponseStreamResponse$ = InvokeWithResponseStreamResponse$;
|
|
2043
|
-
const KafkaSchemaRegistryAccessConfig$ = [3, n0, _KSRAC,
|
|
2044
|
-
0,
|
|
2045
|
-
[_T, _URI],
|
|
2046
|
-
[0, 0]
|
|
2047
|
-
];
|
|
2048
|
-
exports.KafkaSchemaRegistryAccessConfig$ = KafkaSchemaRegistryAccessConfig$;
|
|
2049
|
-
const KafkaSchemaRegistryConfig$ = [3, n0, _KSRC,
|
|
2050
|
-
0,
|
|
2051
|
-
[_SRURI, _ERF, _ACc, _SVC],
|
|
2052
|
-
[0, 0, () => KafkaSchemaRegistryAccessConfigList, () => KafkaSchemaValidationConfigList]
|
|
2053
|
-
];
|
|
2054
|
-
exports.KafkaSchemaRegistryConfig$ = KafkaSchemaRegistryConfig$;
|
|
2055
|
-
const KafkaSchemaValidationConfig$ = [3, n0, _KSVC,
|
|
2056
|
-
0,
|
|
2057
|
-
[_At],
|
|
2058
|
-
[0]
|
|
2059
|
-
];
|
|
2060
|
-
exports.KafkaSchemaValidationConfig$ = KafkaSchemaValidationConfig$;
|
|
2061
|
-
const LambdaManagedInstancesCapacityProviderConfig$ = [3, n0, _LMICPC,
|
|
2062
|
-
0,
|
|
2063
|
-
[_CPA, _PEEMC, _EEMGBPVC],
|
|
2064
|
-
[0, 1, 1], 1
|
|
2065
|
-
];
|
|
2066
|
-
exports.LambdaManagedInstancesCapacityProviderConfig$ = LambdaManagedInstancesCapacityProviderConfig$;
|
|
2067
|
-
const Layer$ = [3, n0, _La,
|
|
2068
|
-
0,
|
|
2069
|
-
[_Arn, _CS, _SPVAi, _SJA],
|
|
2070
|
-
[0, 1, 0, 0]
|
|
2071
|
-
];
|
|
2072
|
-
exports.Layer$ = Layer$;
|
|
2073
|
-
const LayersListItem$ = [3, n0, _LLI,
|
|
2074
|
-
0,
|
|
2075
|
-
[_LN, _LA, _LMV],
|
|
2076
|
-
[0, 0, () => LayerVersionsListItem$]
|
|
2077
|
-
];
|
|
2078
|
-
exports.LayersListItem$ = LayersListItem$;
|
|
2079
|
-
const LayerVersionContentInput$ = [3, n0, _LVCI,
|
|
2080
|
-
0,
|
|
2081
|
-
[_SB, _SK, _SOV, _ZF],
|
|
2082
|
-
[0, 0, 0, [() => _Blob, 0]]
|
|
2083
|
-
];
|
|
2084
|
-
exports.LayerVersionContentInput$ = LayerVersionContentInput$;
|
|
2085
|
-
const LayerVersionContentOutput$ = [3, n0, _LVCO,
|
|
2086
|
-
0,
|
|
2087
|
-
[_Lo, _CSo, _CS, _SPVAi, _SJA],
|
|
2088
|
-
[0, 0, 1, 0, 0]
|
|
2089
|
-
];
|
|
2090
|
-
exports.LayerVersionContentOutput$ = LayerVersionContentOutput$;
|
|
2091
|
-
const LayerVersionsListItem$ = [3, n0, _LVLI,
|
|
2092
|
-
0,
|
|
2093
|
-
[_LVA, _Ve, _D, _CDr, _CA, _CR, _LI],
|
|
2094
|
-
[0, 1, 0, 0, 64 | 0, 64 | 0, 0]
|
|
2095
|
-
];
|
|
2096
|
-
exports.LayerVersionsListItem$ = LayerVersionsListItem$;
|
|
2097
|
-
const ListAliasesRequest$ = [3, n0, _LAR,
|
|
2098
|
-
0,
|
|
2099
|
-
[_FN, _FV, _Ma, _MI],
|
|
2100
|
-
[[0, 1], [0, { [_hQ]: _FV }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2101
|
-
];
|
|
2102
|
-
exports.ListAliasesRequest$ = ListAliasesRequest$;
|
|
2103
|
-
const ListAliasesResponse$ = [3, n0, _LARi,
|
|
2104
|
-
0,
|
|
2105
|
-
[_NM, _Al],
|
|
2106
|
-
[0, () => AliasList]
|
|
2107
|
-
];
|
|
2108
|
-
exports.ListAliasesResponse$ = ListAliasesResponse$;
|
|
2109
|
-
const ListCapacityProvidersRequest$ = [3, n0, _LCPR,
|
|
2110
|
-
0,
|
|
2111
|
-
[_St, _Ma, _MI],
|
|
2112
|
-
[[0, { [_hQ]: _St }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
2113
|
-
];
|
|
2114
|
-
exports.ListCapacityProvidersRequest$ = ListCapacityProvidersRequest$;
|
|
2115
|
-
const ListCapacityProvidersResponse$ = [3, n0, _LCPRi,
|
|
2116
|
-
0,
|
|
2117
|
-
[_CPa, _NM],
|
|
2118
|
-
[() => CapacityProvidersList, 0], 1
|
|
2119
|
-
];
|
|
2120
|
-
exports.ListCapacityProvidersResponse$ = ListCapacityProvidersResponse$;
|
|
2121
|
-
const ListCodeSigningConfigsRequest$ = [3, n0, _LCSCR,
|
|
2122
|
-
0,
|
|
2123
|
-
[_Ma, _MI],
|
|
2124
|
-
[[0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
2125
|
-
];
|
|
2126
|
-
exports.ListCodeSigningConfigsRequest$ = ListCodeSigningConfigsRequest$;
|
|
2127
|
-
const ListCodeSigningConfigsResponse$ = [3, n0, _LCSCRi,
|
|
2128
|
-
0,
|
|
2129
|
-
[_NM, _CSCo],
|
|
2130
|
-
[0, () => CodeSigningConfigList]
|
|
2131
|
-
];
|
|
2132
|
-
exports.ListCodeSigningConfigsResponse$ = ListCodeSigningConfigsResponse$;
|
|
2133
|
-
const ListDurableExecutionsByFunctionRequest$ = [3, n0, _LDEBFR,
|
|
2134
|
-
0,
|
|
2135
|
-
[_FN, _Q, _DEN, _Stat, _SAt, _SBt, _RO, _Ma, _MI],
|
|
2136
|
-
[[0, 1], [0, { [_hQ]: _Q }], [0, { [_hQ]: _DEN }], [64 | 0, { [_hQ]: _Stat }], [4, { [_hQ]: _SAt }], [4, { [_hQ]: _SBt }], [2, { [_hQ]: _RO }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2137
|
-
];
|
|
2138
|
-
exports.ListDurableExecutionsByFunctionRequest$ = ListDurableExecutionsByFunctionRequest$;
|
|
2139
|
-
const ListDurableExecutionsByFunctionResponse$ = [3, n0, _LDEBFRi,
|
|
2140
|
-
0,
|
|
2141
|
-
[_DE, _NM],
|
|
2142
|
-
[() => DurableExecutions, 0]
|
|
2143
|
-
];
|
|
2144
|
-
exports.ListDurableExecutionsByFunctionResponse$ = ListDurableExecutionsByFunctionResponse$;
|
|
2145
|
-
const ListEventSourceMappingsRequest$ = [3, n0, _LESMR,
|
|
2146
|
-
0,
|
|
2147
|
-
[_ESA, _FN, _Ma, _MI],
|
|
2148
|
-
[[0, { [_hQ]: _ESA }], [0, { [_hQ]: _FN }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
2149
|
-
];
|
|
2150
|
-
exports.ListEventSourceMappingsRequest$ = ListEventSourceMappingsRequest$;
|
|
2151
|
-
const ListEventSourceMappingsResponse$ = [3, n0, _LESMRi,
|
|
2152
|
-
0,
|
|
2153
|
-
[_NM, _ESM],
|
|
2154
|
-
[0, () => EventSourceMappingsList]
|
|
2155
|
-
];
|
|
2156
|
-
exports.ListEventSourceMappingsResponse$ = ListEventSourceMappingsResponse$;
|
|
2157
|
-
const ListFunctionEventInvokeConfigsRequest$ = [3, n0, _LFEICR,
|
|
2158
|
-
0,
|
|
2159
|
-
[_FN, _Ma, _MI],
|
|
2160
|
-
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2161
|
-
];
|
|
2162
|
-
exports.ListFunctionEventInvokeConfigsRequest$ = ListFunctionEventInvokeConfigsRequest$;
|
|
2163
|
-
const ListFunctionEventInvokeConfigsResponse$ = [3, n0, _LFEICRi,
|
|
2164
|
-
0,
|
|
2165
|
-
[_FEICu, _NM],
|
|
2166
|
-
[() => FunctionEventInvokeConfigList, 0]
|
|
2167
|
-
];
|
|
2168
|
-
exports.ListFunctionEventInvokeConfigsResponse$ = ListFunctionEventInvokeConfigsResponse$;
|
|
2169
|
-
const ListFunctionsByCodeSigningConfigRequest$ = [3, n0, _LFBCSCR,
|
|
2170
|
-
0,
|
|
2171
|
-
[_CSCA, _Ma, _MI],
|
|
2172
|
-
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2173
|
-
];
|
|
2174
|
-
exports.ListFunctionsByCodeSigningConfigRequest$ = ListFunctionsByCodeSigningConfigRequest$;
|
|
2175
|
-
const ListFunctionsByCodeSigningConfigResponse$ = [3, n0, _LFBCSCRi,
|
|
2176
|
-
0,
|
|
2177
|
-
[_NM, _FAu],
|
|
2178
|
-
[0, 64 | 0]
|
|
2179
|
-
];
|
|
2180
|
-
exports.ListFunctionsByCodeSigningConfigResponse$ = ListFunctionsByCodeSigningConfigResponse$;
|
|
2181
|
-
const ListFunctionsRequest$ = [3, n0, _LFR,
|
|
2182
|
-
0,
|
|
2183
|
-
[_MR, _FV, _Ma, _MI],
|
|
2184
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _FV }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
2185
|
-
];
|
|
2186
|
-
exports.ListFunctionsRequest$ = ListFunctionsRequest$;
|
|
2187
|
-
const ListFunctionsResponse$ = [3, n0, _LFRi,
|
|
2188
|
-
0,
|
|
2189
|
-
[_NM, _Fu],
|
|
2190
|
-
[0, [() => FunctionList, 0]]
|
|
2191
|
-
];
|
|
2192
|
-
exports.ListFunctionsResponse$ = ListFunctionsResponse$;
|
|
2193
|
-
const ListFunctionUrlConfigsRequest$ = [3, n0, _LFUCR,
|
|
2194
|
-
0,
|
|
2195
|
-
[_FN, _Ma, _MI],
|
|
2196
|
-
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2197
|
-
];
|
|
2198
|
-
exports.ListFunctionUrlConfigsRequest$ = ListFunctionUrlConfigsRequest$;
|
|
2199
|
-
const ListFunctionUrlConfigsResponse$ = [3, n0, _LFUCRi,
|
|
2200
|
-
0,
|
|
2201
|
-
[_FUCu, _NM],
|
|
2202
|
-
[() => FunctionUrlConfigList, 0], 1
|
|
2203
|
-
];
|
|
2204
|
-
exports.ListFunctionUrlConfigsResponse$ = ListFunctionUrlConfigsResponse$;
|
|
2205
|
-
const ListFunctionVersionsByCapacityProviderRequest$ = [3, n0, _LFVBCPR,
|
|
2206
|
-
0,
|
|
2207
|
-
[_CPN, _Ma, _MI],
|
|
2208
|
-
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2209
|
-
];
|
|
2210
|
-
exports.ListFunctionVersionsByCapacityProviderRequest$ = ListFunctionVersionsByCapacityProviderRequest$;
|
|
2211
|
-
const ListFunctionVersionsByCapacityProviderResponse$ = [3, n0, _LFVBCPRi,
|
|
2212
|
-
0,
|
|
2213
|
-
[_CPA, _FVu, _NM],
|
|
2214
|
-
[0, () => FunctionVersionsByCapacityProviderList, 0], 2
|
|
2215
|
-
];
|
|
2216
|
-
exports.ListFunctionVersionsByCapacityProviderResponse$ = ListFunctionVersionsByCapacityProviderResponse$;
|
|
2217
|
-
const ListLayersRequest$ = [3, n0, _LLR,
|
|
2218
|
-
0,
|
|
2219
|
-
[_CAo, _CRo, _Ma, _MI],
|
|
2220
|
-
[[0, { [_hQ]: _CAo }], [0, { [_hQ]: _CRo }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
2221
|
-
];
|
|
2222
|
-
exports.ListLayersRequest$ = ListLayersRequest$;
|
|
2223
|
-
const ListLayersResponse$ = [3, n0, _LLRi,
|
|
2224
|
-
0,
|
|
2225
|
-
[_NM, _L],
|
|
2226
|
-
[0, () => LayersList]
|
|
2227
|
-
];
|
|
2228
|
-
exports.ListLayersResponse$ = ListLayersResponse$;
|
|
2229
|
-
const ListLayerVersionsRequest$ = [3, n0, _LLVR,
|
|
2230
|
-
0,
|
|
2231
|
-
[_LN, _CAo, _CRo, _Ma, _MI],
|
|
2232
|
-
[[0, 1], [0, { [_hQ]: _CAo }], [0, { [_hQ]: _CRo }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2233
|
-
];
|
|
2234
|
-
exports.ListLayerVersionsRequest$ = ListLayerVersionsRequest$;
|
|
2235
|
-
const ListLayerVersionsResponse$ = [3, n0, _LLVRi,
|
|
2236
|
-
0,
|
|
2237
|
-
[_NM, _LV],
|
|
2238
|
-
[0, () => LayerVersionsList]
|
|
2239
|
-
];
|
|
2240
|
-
exports.ListLayerVersionsResponse$ = ListLayerVersionsResponse$;
|
|
2241
|
-
const ListProvisionedConcurrencyConfigsRequest$ = [3, n0, _LPCCR,
|
|
2242
|
-
0,
|
|
2243
|
-
[_FN, _Ma, _MI],
|
|
2244
|
-
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2245
|
-
];
|
|
2246
|
-
exports.ListProvisionedConcurrencyConfigsRequest$ = ListProvisionedConcurrencyConfigsRequest$;
|
|
2247
|
-
const ListProvisionedConcurrencyConfigsResponse$ = [3, n0, _LPCCRi,
|
|
2248
|
-
0,
|
|
2249
|
-
[_PCC, _NM],
|
|
2250
|
-
[() => ProvisionedConcurrencyConfigList, 0]
|
|
2251
|
-
];
|
|
2252
|
-
exports.ListProvisionedConcurrencyConfigsResponse$ = ListProvisionedConcurrencyConfigsResponse$;
|
|
2253
|
-
const ListTagsRequest$ = [3, n0, _LTR,
|
|
2254
|
-
0,
|
|
2255
|
-
[_Res],
|
|
2256
|
-
[[0, 1]], 1
|
|
2257
|
-
];
|
|
2258
|
-
exports.ListTagsRequest$ = ListTagsRequest$;
|
|
2259
|
-
const ListTagsResponse$ = [3, n0, _LTRi,
|
|
2260
|
-
0,
|
|
2261
|
-
[_Ta],
|
|
2262
|
-
[128 | 0]
|
|
2263
|
-
];
|
|
2264
|
-
exports.ListTagsResponse$ = ListTagsResponse$;
|
|
2265
|
-
const ListVersionsByFunctionRequest$ = [3, n0, _LVBFR,
|
|
2266
|
-
0,
|
|
2267
|
-
[_FN, _Ma, _MI],
|
|
2268
|
-
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
2269
|
-
];
|
|
2270
|
-
exports.ListVersionsByFunctionRequest$ = ListVersionsByFunctionRequest$;
|
|
2271
|
-
const ListVersionsByFunctionResponse$ = [3, n0, _LVBFRi,
|
|
2272
|
-
0,
|
|
2273
|
-
[_NM, _Ver],
|
|
2274
|
-
[0, [() => FunctionList, 0]]
|
|
2275
|
-
];
|
|
2276
|
-
exports.ListVersionsByFunctionResponse$ = ListVersionsByFunctionResponse$;
|
|
2277
|
-
const LoggingConfig$ = [3, n0, _LC,
|
|
2278
|
-
0,
|
|
2279
|
-
[_LF, _ALL, _SLL, _LG],
|
|
2280
|
-
[0, 0, 0, 0]
|
|
2281
|
-
];
|
|
2282
|
-
exports.LoggingConfig$ = LoggingConfig$;
|
|
2283
|
-
const OnFailure$ = [3, n0, _OF,
|
|
2284
|
-
0,
|
|
2285
|
-
[_De],
|
|
2286
|
-
[0]
|
|
2287
|
-
];
|
|
2288
|
-
exports.OnFailure$ = OnFailure$;
|
|
2289
|
-
const OnSuccess$ = [3, n0, _OS,
|
|
2290
|
-
0,
|
|
2291
|
-
[_De],
|
|
2292
|
-
[0]
|
|
2293
|
-
];
|
|
2294
|
-
exports.OnSuccess$ = OnSuccess$;
|
|
2295
|
-
const Operation$ = [3, n0, _Op,
|
|
2296
|
-
0,
|
|
2297
|
-
[_Id, _T, _STt, _Sta, _PI, _N, _STu, _ETn, _EDx, _CDo, _SD, _WDa, _CD, _CID],
|
|
2298
|
-
[0, 0, 4, 0, 0, 0, 0, 4, [() => ExecutionDetails$, 0], [() => ContextDetails$, 0], [() => StepDetails$, 0], () => WaitDetails$, [() => CallbackDetails$, 0], [() => ChainedInvokeDetails$, 0]], 4
|
|
2299
|
-
];
|
|
2300
|
-
exports.Operation$ = Operation$;
|
|
2301
|
-
const OperationUpdate$ = [3, n0, _OU,
|
|
2302
|
-
0,
|
|
2303
|
-
[_Id, _T, _A, _PI, _N, _STu, _Pa, _E, _COo, _SO, _WO, _CO, _CIO],
|
|
2304
|
-
[0, 0, 0, 0, 0, 0, [() => OperationPayload, 0], [() => ErrorObject$, 0], () => ContextOptions$, () => StepOptions$, () => WaitOptions$, () => CallbackOptions$, () => ChainedInvokeOptions$], 3
|
|
2305
|
-
];
|
|
2306
|
-
exports.OperationUpdate$ = OperationUpdate$;
|
|
2307
|
-
const PropagateTags$ = [3, n0, _PT,
|
|
2308
|
-
0,
|
|
2309
|
-
[_Mo, _ETxp],
|
|
2310
|
-
[0, 128 | 0]
|
|
2311
|
-
];
|
|
2312
|
-
exports.PropagateTags$ = PropagateTags$;
|
|
2313
|
-
const ProvisionedConcurrencyConfigListItem$ = [3, n0, _PCCLI,
|
|
2314
|
-
0,
|
|
2315
|
-
[_FA, _RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
|
|
2316
|
-
[0, 1, 1, 1, 0, 0, 0]
|
|
2317
|
-
];
|
|
2318
|
-
exports.ProvisionedConcurrencyConfigListItem$ = ProvisionedConcurrencyConfigListItem$;
|
|
2319
|
-
const ProvisionedPollerConfig$ = [3, n0, _PPC,
|
|
2320
|
-
0,
|
|
2321
|
-
[_MP, _MPa, _PGN],
|
|
2322
|
-
[1, 1, 0]
|
|
2323
|
-
];
|
|
2324
|
-
exports.ProvisionedPollerConfig$ = ProvisionedPollerConfig$;
|
|
2325
|
-
const PublishLayerVersionRequest$ = [3, n0, _PLVR,
|
|
2326
|
-
0,
|
|
2327
|
-
[_LN, _Cont, _D, _CA, _CR, _LI],
|
|
2328
|
-
[[0, 1], [() => LayerVersionContentInput$, 0], 0, 64 | 0, 64 | 0, 0], 2
|
|
2329
|
-
];
|
|
2330
|
-
exports.PublishLayerVersionRequest$ = PublishLayerVersionRequest$;
|
|
2331
|
-
const PublishLayerVersionResponse$ = [3, n0, _PLVRu,
|
|
2332
|
-
0,
|
|
2333
|
-
[_Cont, _LA, _LVA, _D, _CDr, _Ve, _CA, _CR, _LI],
|
|
2334
|
-
[() => LayerVersionContentOutput$, 0, 0, 0, 0, 1, 64 | 0, 64 | 0, 0]
|
|
2335
|
-
];
|
|
2336
|
-
exports.PublishLayerVersionResponse$ = PublishLayerVersionResponse$;
|
|
2337
|
-
const PublishVersionRequest$ = [3, n0, _PVR,
|
|
2338
|
-
0,
|
|
2339
|
-
[_FN, _CSo, _D, _RI, _PTu],
|
|
2340
|
-
[[0, 1], 0, 0, 0, 0], 1
|
|
2341
|
-
];
|
|
2342
|
-
exports.PublishVersionRequest$ = PublishVersionRequest$;
|
|
2343
|
-
const PutFunctionCodeSigningConfigRequest$ = [3, n0, _PFCSCR,
|
|
2344
|
-
0,
|
|
2345
|
-
[_CSCA, _FN],
|
|
2346
|
-
[0, [0, 1]], 2
|
|
2347
|
-
];
|
|
2348
|
-
exports.PutFunctionCodeSigningConfigRequest$ = PutFunctionCodeSigningConfigRequest$;
|
|
2349
|
-
const PutFunctionCodeSigningConfigResponse$ = [3, n0, _PFCSCRu,
|
|
2350
|
-
0,
|
|
2351
|
-
[_CSCA, _FN],
|
|
2352
|
-
[0, 0], 2
|
|
2353
|
-
];
|
|
2354
|
-
exports.PutFunctionCodeSigningConfigResponse$ = PutFunctionCodeSigningConfigResponse$;
|
|
2355
|
-
const PutFunctionConcurrencyRequest$ = [3, n0, _PFCR,
|
|
2356
|
-
0,
|
|
2357
|
-
[_FN, _RCEe],
|
|
2358
|
-
[[0, 1], 1], 2
|
|
2359
|
-
];
|
|
2360
|
-
exports.PutFunctionConcurrencyRequest$ = PutFunctionConcurrencyRequest$;
|
|
2361
|
-
const PutFunctionEventInvokeConfigRequest$ = [3, n0, _PFEICR,
|
|
2362
|
-
0,
|
|
2363
|
-
[_FN, _Q, _MRA, _MEAIS, _DC],
|
|
2364
|
-
[[0, 1], [0, { [_hQ]: _Q }], 1, 1, () => DestinationConfig$], 1
|
|
2365
|
-
];
|
|
2366
|
-
exports.PutFunctionEventInvokeConfigRequest$ = PutFunctionEventInvokeConfigRequest$;
|
|
2367
|
-
const PutFunctionRecursionConfigRequest$ = [3, n0, _PFRCR,
|
|
2368
|
-
0,
|
|
2369
|
-
[_FN, _RL],
|
|
2370
|
-
[[0, 1], 0], 2
|
|
2371
|
-
];
|
|
2372
|
-
exports.PutFunctionRecursionConfigRequest$ = PutFunctionRecursionConfigRequest$;
|
|
2373
|
-
const PutFunctionRecursionConfigResponse$ = [3, n0, _PFRCRu,
|
|
2374
|
-
0,
|
|
2375
|
-
[_RL],
|
|
2376
|
-
[0]
|
|
2377
|
-
];
|
|
2378
|
-
exports.PutFunctionRecursionConfigResponse$ = PutFunctionRecursionConfigResponse$;
|
|
2379
|
-
const PutFunctionScalingConfigRequest$ = [3, n0, _PFSCR,
|
|
2380
|
-
0,
|
|
2381
|
-
[_FN, _Q, _FSCu],
|
|
2382
|
-
[[0, 1], [0, { [_hQ]: _Q }], () => FunctionScalingConfig$], 2
|
|
2383
|
-
];
|
|
2384
|
-
exports.PutFunctionScalingConfigRequest$ = PutFunctionScalingConfigRequest$;
|
|
2385
|
-
const PutFunctionScalingConfigResponse$ = [3, n0, _PFSCRu,
|
|
2386
|
-
0,
|
|
2387
|
-
[_FS],
|
|
2388
|
-
[0]
|
|
2389
|
-
];
|
|
2390
|
-
exports.PutFunctionScalingConfigResponse$ = PutFunctionScalingConfigResponse$;
|
|
2391
|
-
const PutProvisionedConcurrencyConfigRequest$ = [3, n0, _PPCCR,
|
|
2392
|
-
0,
|
|
2393
|
-
[_FN, _Q, _PCE],
|
|
2394
|
-
[[0, 1], [0, { [_hQ]: _Q }], 1], 3
|
|
2395
|
-
];
|
|
2396
|
-
exports.PutProvisionedConcurrencyConfigRequest$ = PutProvisionedConcurrencyConfigRequest$;
|
|
2397
|
-
const PutProvisionedConcurrencyConfigResponse$ = [3, n0, _PPCCRu,
|
|
2398
|
-
0,
|
|
2399
|
-
[_RPCE, _APCEl, _APCE, _Sta, _SRt, _LM],
|
|
2400
|
-
[1, 1, 1, 0, 0, 0]
|
|
2401
|
-
];
|
|
2402
|
-
exports.PutProvisionedConcurrencyConfigResponse$ = PutProvisionedConcurrencyConfigResponse$;
|
|
2403
|
-
const PutRuntimeManagementConfigRequest$ = [3, n0, _PRMCR,
|
|
2404
|
-
0,
|
|
2405
|
-
[_FN, _URO, _Q, _RVA],
|
|
2406
|
-
[[0, 1], 0, [0, { [_hQ]: _Q }], 0], 2
|
|
2407
|
-
];
|
|
2408
|
-
exports.PutRuntimeManagementConfigRequest$ = PutRuntimeManagementConfigRequest$;
|
|
2409
|
-
const PutRuntimeManagementConfigResponse$ = [3, n0, _PRMCRu,
|
|
2410
|
-
0,
|
|
2411
|
-
[_URO, _FA, _RVA],
|
|
2412
|
-
[0, 0, 0], 2
|
|
2413
|
-
];
|
|
2414
|
-
exports.PutRuntimeManagementConfigResponse$ = PutRuntimeManagementConfigResponse$;
|
|
2415
|
-
const RemoveLayerVersionPermissionRequest$ = [3, n0, _RLVPR,
|
|
2416
|
-
0,
|
|
2417
|
-
[_LN, _VN, _SI, _RI],
|
|
2418
|
-
[[0, 1], [1, 1], [0, 1], [0, { [_hQ]: _RI }]], 3
|
|
2419
|
-
];
|
|
2420
|
-
exports.RemoveLayerVersionPermissionRequest$ = RemoveLayerVersionPermissionRequest$;
|
|
2421
|
-
const RemovePermissionRequest$ = [3, n0, _RPR,
|
|
2422
|
-
0,
|
|
2423
|
-
[_FN, _SI, _Q, _RI],
|
|
2424
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _Q }], [0, { [_hQ]: _RI }]], 2
|
|
2425
|
-
];
|
|
2426
|
-
exports.RemovePermissionRequest$ = RemovePermissionRequest$;
|
|
2427
|
-
const RetryDetails$ = [3, n0, _RD,
|
|
2428
|
-
0,
|
|
2429
|
-
[_CAu, _NADS],
|
|
2430
|
-
[1, 1]
|
|
2431
|
-
];
|
|
2432
|
-
exports.RetryDetails$ = RetryDetails$;
|
|
2433
|
-
const RuntimeVersionConfig$ = [3, n0, _RVC,
|
|
2434
|
-
0,
|
|
2435
|
-
[_RVA, _E],
|
|
2436
|
-
[0, [() => RuntimeVersionError$, 0]]
|
|
2437
|
-
];
|
|
2438
|
-
exports.RuntimeVersionConfig$ = RuntimeVersionConfig$;
|
|
2439
|
-
const RuntimeVersionError$ = [3, n0, _RVE,
|
|
2440
|
-
0,
|
|
2441
|
-
[_EC, _M],
|
|
2442
|
-
[0, [() => SensitiveString, 0]]
|
|
2443
|
-
];
|
|
2444
|
-
exports.RuntimeVersionError$ = RuntimeVersionError$;
|
|
2445
|
-
const ScalingConfig$ = [3, n0, _SC,
|
|
2446
|
-
0,
|
|
2447
|
-
[_MCa],
|
|
2448
|
-
[1]
|
|
2449
|
-
];
|
|
2450
|
-
exports.ScalingConfig$ = ScalingConfig$;
|
|
2451
|
-
const SelfManagedEventSource$ = [3, n0, _SMES,
|
|
2452
|
-
0,
|
|
2453
|
-
[_End],
|
|
2454
|
-
[[2, n0, _End, 0, 0, 64 | 0]]
|
|
2455
|
-
];
|
|
2456
|
-
exports.SelfManagedEventSource$ = SelfManagedEventSource$;
|
|
2457
|
-
const SelfManagedKafkaEventSourceConfig$ = [3, n0, _SMKESC,
|
|
2458
|
-
0,
|
|
2459
|
-
[_CGI, _SRC],
|
|
2460
|
-
[0, () => KafkaSchemaRegistryConfig$]
|
|
2461
|
-
];
|
|
2462
|
-
exports.SelfManagedKafkaEventSourceConfig$ = SelfManagedKafkaEventSourceConfig$;
|
|
2463
|
-
const SendDurableExecutionCallbackFailureRequest$ = [3, n0, _SDECFR,
|
|
2464
|
-
0,
|
|
2465
|
-
[_CI, _E],
|
|
2466
|
-
[[0, 1], [() => ErrorObject$, 16]], 1
|
|
2467
|
-
];
|
|
2468
|
-
exports.SendDurableExecutionCallbackFailureRequest$ = SendDurableExecutionCallbackFailureRequest$;
|
|
2469
|
-
const SendDurableExecutionCallbackFailureResponse$ = [3, n0, _SDECFRe,
|
|
2470
|
-
0,
|
|
2471
|
-
[],
|
|
2472
|
-
[]
|
|
2473
|
-
];
|
|
2474
|
-
exports.SendDurableExecutionCallbackFailureResponse$ = SendDurableExecutionCallbackFailureResponse$;
|
|
2475
|
-
const SendDurableExecutionCallbackHeartbeatRequest$ = [3, n0, _SDECHR,
|
|
2476
|
-
0,
|
|
2477
|
-
[_CI],
|
|
2478
|
-
[[0, 1]], 1
|
|
2479
|
-
];
|
|
2480
|
-
exports.SendDurableExecutionCallbackHeartbeatRequest$ = SendDurableExecutionCallbackHeartbeatRequest$;
|
|
2481
|
-
const SendDurableExecutionCallbackHeartbeatResponse$ = [3, n0, _SDECHRe,
|
|
2482
|
-
0,
|
|
2483
|
-
[],
|
|
2484
|
-
[]
|
|
2485
|
-
];
|
|
2486
|
-
exports.SendDurableExecutionCallbackHeartbeatResponse$ = SendDurableExecutionCallbackHeartbeatResponse$;
|
|
2487
|
-
const SendDurableExecutionCallbackSuccessRequest$ = [3, n0, _SDECSR,
|
|
2488
|
-
0,
|
|
2489
|
-
[_CI, _Re],
|
|
2490
|
-
[[0, 1], [() => BinaryOperationPayload, 16]], 1
|
|
2491
|
-
];
|
|
2492
|
-
exports.SendDurableExecutionCallbackSuccessRequest$ = SendDurableExecutionCallbackSuccessRequest$;
|
|
2493
|
-
const SendDurableExecutionCallbackSuccessResponse$ = [3, n0, _SDECSRe,
|
|
2494
|
-
0,
|
|
2495
|
-
[],
|
|
2496
|
-
[]
|
|
2497
|
-
];
|
|
2498
|
-
exports.SendDurableExecutionCallbackSuccessResponse$ = SendDurableExecutionCallbackSuccessResponse$;
|
|
2499
|
-
const SnapStart$ = [3, n0, _SSn,
|
|
2500
|
-
0,
|
|
2501
|
-
[_AOp],
|
|
2502
|
-
[0]
|
|
2503
|
-
];
|
|
2504
|
-
exports.SnapStart$ = SnapStart$;
|
|
2505
|
-
const SnapStartResponse$ = [3, n0, _SSR,
|
|
2506
|
-
0,
|
|
2507
|
-
[_AOp, _OSp],
|
|
2508
|
-
[0, 0]
|
|
2509
|
-
];
|
|
2510
|
-
exports.SnapStartResponse$ = SnapStartResponse$;
|
|
2511
|
-
const SourceAccessConfiguration$ = [3, n0, _SACo,
|
|
2512
|
-
0,
|
|
2513
|
-
[_T, _URI],
|
|
2514
|
-
[0, 0]
|
|
2515
|
-
];
|
|
2516
|
-
exports.SourceAccessConfiguration$ = SourceAccessConfiguration$;
|
|
2517
|
-
const StepDetails$ = [3, n0, _SD,
|
|
2518
|
-
0,
|
|
2519
|
-
[_Att, _NAT, _Re, _E],
|
|
2520
|
-
[1, 4, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
2521
|
-
];
|
|
2522
|
-
exports.StepDetails$ = StepDetails$;
|
|
2523
|
-
const StepFailedDetails$ = [3, n0, _SFD,
|
|
2524
|
-
0,
|
|
2525
|
-
[_E, _RD],
|
|
2526
|
-
[[() => EventError$, 0], () => RetryDetails$], 2
|
|
2527
|
-
];
|
|
2528
|
-
exports.StepFailedDetails$ = StepFailedDetails$;
|
|
2529
|
-
const StepOptions$ = [3, n0, _SO,
|
|
2530
|
-
0,
|
|
2531
|
-
[_NADS],
|
|
2532
|
-
[1]
|
|
2533
|
-
];
|
|
2534
|
-
exports.StepOptions$ = StepOptions$;
|
|
2535
|
-
const StepStartedDetails$ = [3, n0, _SSD,
|
|
2536
|
-
0,
|
|
2537
|
-
[],
|
|
2538
|
-
[]
|
|
2539
|
-
];
|
|
2540
|
-
exports.StepStartedDetails$ = StepStartedDetails$;
|
|
2541
|
-
const StepSucceededDetails$ = [3, n0, _SSDt,
|
|
2542
|
-
0,
|
|
2543
|
-
[_Re, _RD],
|
|
2544
|
-
[[() => EventResult$, 0], () => RetryDetails$], 2
|
|
2545
|
-
];
|
|
2546
|
-
exports.StepSucceededDetails$ = StepSucceededDetails$;
|
|
2547
|
-
const StopDurableExecutionRequest$ = [3, n0, _SDER,
|
|
2548
|
-
0,
|
|
2549
|
-
[_DEA, _E],
|
|
2550
|
-
[[0, 1], [() => ErrorObject$, 16]], 1
|
|
2551
|
-
];
|
|
2552
|
-
exports.StopDurableExecutionRequest$ = StopDurableExecutionRequest$;
|
|
2553
|
-
const StopDurableExecutionResponse$ = [3, n0, _SDERt,
|
|
2554
|
-
0,
|
|
2555
|
-
[_STto],
|
|
2556
|
-
[4], 1
|
|
2557
|
-
];
|
|
2558
|
-
exports.StopDurableExecutionResponse$ = StopDurableExecutionResponse$;
|
|
2559
|
-
const TagResourceRequest$ = [3, n0, _TRR,
|
|
2560
|
-
0,
|
|
2561
|
-
[_Res, _Ta],
|
|
2562
|
-
[[0, 1], 128 | 0], 2
|
|
2563
|
-
];
|
|
2564
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2565
|
-
const TagsError$ = [3, n0, _TE,
|
|
2566
|
-
0,
|
|
2567
|
-
[_EC, _M],
|
|
2568
|
-
[0, 0], 2
|
|
2569
|
-
];
|
|
2570
|
-
exports.TagsError$ = TagsError$;
|
|
2571
|
-
const TargetTrackingScalingPolicy$ = [3, n0, _TTSP,
|
|
2572
|
-
0,
|
|
2573
|
-
[_PMT, _TV],
|
|
2574
|
-
[0, 1], 2
|
|
2575
|
-
];
|
|
2576
|
-
exports.TargetTrackingScalingPolicy$ = TargetTrackingScalingPolicy$;
|
|
2577
|
-
const TenancyConfig$ = [3, n0, _TCe,
|
|
2578
|
-
0,
|
|
2579
|
-
[_TIM],
|
|
2580
|
-
[0], 1
|
|
2581
|
-
];
|
|
2582
|
-
exports.TenancyConfig$ = TenancyConfig$;
|
|
2583
|
-
const TraceHeader$ = [3, n0, _TH,
|
|
2584
|
-
0,
|
|
2585
|
-
[_XATIm],
|
|
2586
|
-
[0]
|
|
2587
|
-
];
|
|
2588
|
-
exports.TraceHeader$ = TraceHeader$;
|
|
2589
|
-
const TracingConfig$ = [3, n0, _TC,
|
|
2590
|
-
0,
|
|
2591
|
-
[_Mo],
|
|
2592
|
-
[0]
|
|
2593
|
-
];
|
|
2594
|
-
exports.TracingConfig$ = TracingConfig$;
|
|
2595
|
-
const TracingConfigResponse$ = [3, n0, _TCR,
|
|
2596
|
-
0,
|
|
2597
|
-
[_Mo],
|
|
2598
|
-
[0]
|
|
2599
|
-
];
|
|
2600
|
-
exports.TracingConfigResponse$ = TracingConfigResponse$;
|
|
2601
|
-
const UntagResourceRequest$ = [3, n0, _URR,
|
|
2602
|
-
0,
|
|
2603
|
-
[_Res, _TK],
|
|
2604
|
-
[[0, 1], [() => TagKeyList, { [_hQ]: _tK }]], 2
|
|
2605
|
-
];
|
|
2606
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2607
|
-
const UpdateAliasRequest$ = [3, n0, _UAR,
|
|
2608
|
-
0,
|
|
2609
|
-
[_FN, _N, _FV, _D, _RC, _RI],
|
|
2610
|
-
[[0, 1], [0, 1], 0, 0, () => AliasRoutingConfiguration$, 0], 2
|
|
2611
|
-
];
|
|
2612
|
-
exports.UpdateAliasRequest$ = UpdateAliasRequest$;
|
|
2613
|
-
const UpdateCapacityProviderRequest$ = [3, n0, _UCPR,
|
|
2614
|
-
0,
|
|
2615
|
-
[_CPN, _CPSC, _PT],
|
|
2616
|
-
[[0, 1], () => CapacityProviderScalingConfig$, () => PropagateTags$], 1
|
|
2617
|
-
];
|
|
2618
|
-
exports.UpdateCapacityProviderRequest$ = UpdateCapacityProviderRequest$;
|
|
2619
|
-
const UpdateCapacityProviderResponse$ = [3, n0, _UCPRp,
|
|
2620
|
-
0,
|
|
2621
|
-
[_CP],
|
|
2622
|
-
[() => CapacityProvider$], 1
|
|
2623
|
-
];
|
|
2624
|
-
exports.UpdateCapacityProviderResponse$ = UpdateCapacityProviderResponse$;
|
|
2625
|
-
const UpdateCodeSigningConfigRequest$ = [3, n0, _UCSCR,
|
|
2626
|
-
0,
|
|
2627
|
-
[_CSCA, _D, _AP, _CSP],
|
|
2628
|
-
[[0, 1], 0, () => AllowedPublishers$, () => CodeSigningPolicies$], 1
|
|
2629
|
-
];
|
|
2630
|
-
exports.UpdateCodeSigningConfigRequest$ = UpdateCodeSigningConfigRequest$;
|
|
2631
|
-
const UpdateCodeSigningConfigResponse$ = [3, n0, _UCSCRp,
|
|
2632
|
-
0,
|
|
2633
|
-
[_CSC],
|
|
2634
|
-
[() => CodeSigningConfig$], 1
|
|
2635
|
-
];
|
|
2636
|
-
exports.UpdateCodeSigningConfigResponse$ = UpdateCodeSigningConfigResponse$;
|
|
2637
|
-
const UpdateEventSourceMappingRequest$ = [3, n0, _UESMR,
|
|
2638
|
-
0,
|
|
2639
|
-
[_UUID, _FN, _En, _BSa, _FCi, _KMSKA, _MC, _LC, _SC, _MBWIS, _PF, _DC, _MRAIS, _BBOFE, _MRA, _TWIS, _SAC, _FRT, _AMKESC, _SMKESC, _DDBESC, _PPC],
|
|
2640
|
-
[[0, 1], 0, 2, 1, () => FilterCriteria$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ScalingConfig$, 1, 1, () => DestinationConfig$, 1, 2, 1, 1, () => SourceAccessConfigurations, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => DocumentDBEventSourceConfig$, () => ProvisionedPollerConfig$], 1
|
|
2641
|
-
];
|
|
2642
|
-
exports.UpdateEventSourceMappingRequest$ = UpdateEventSourceMappingRequest$;
|
|
2643
|
-
const UpdateFunctionCodeRequest$ = [3, n0, _UFCR,
|
|
2644
|
-
0,
|
|
2645
|
-
[_FN, _ZF, _SB, _SK, _SOV, _IU, _Ar, _Pu, _PTu, _DR, _RI, _SKMSKA],
|
|
2646
|
-
[[0, 1], [() => _Blob, 0], 0, 0, 0, 0, 64 | 0, 2, 0, 2, 0, 0], 1
|
|
2647
|
-
];
|
|
2648
|
-
exports.UpdateFunctionCodeRequest$ = UpdateFunctionCodeRequest$;
|
|
2649
|
-
const UpdateFunctionConfigurationRequest$ = [3, n0, _UFCRp,
|
|
2650
|
-
0,
|
|
2651
|
-
[_FN, _Ro, _H, _D, _Ti, _MS, _VC, _Env, _Ru, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC, _DCu],
|
|
2652
|
-
[[0, 1], 0, 0, 0, 1, 1, () => VpcConfig$, [() => Environment$, 0], 0, () => DeadLetterConfig$, 0, () => TracingConfig$, 0, 64 | 0, () => FileSystemConfigList, () => ImageConfig$, () => EphemeralStorage$, () => SnapStart$, () => LoggingConfig$, () => CapacityProviderConfig$, () => DurableConfig$], 1
|
|
2653
|
-
];
|
|
2654
|
-
exports.UpdateFunctionConfigurationRequest$ = UpdateFunctionConfigurationRequest$;
|
|
2655
|
-
const UpdateFunctionEventInvokeConfigRequest$ = [3, n0, _UFEICR,
|
|
2656
|
-
0,
|
|
2657
|
-
[_FN, _Q, _MRA, _MEAIS, _DC],
|
|
2658
|
-
[[0, 1], [0, { [_hQ]: _Q }], 1, 1, () => DestinationConfig$], 1
|
|
2659
|
-
];
|
|
2660
|
-
exports.UpdateFunctionEventInvokeConfigRequest$ = UpdateFunctionEventInvokeConfigRequest$;
|
|
2661
|
-
const UpdateFunctionUrlConfigRequest$ = [3, n0, _UFUCR,
|
|
2662
|
-
0,
|
|
2663
|
-
[_FN, _Q, _AT, _Co, _IM],
|
|
2664
|
-
[[0, 1], [0, { [_hQ]: _Q }], 0, () => Cors$, 0], 1
|
|
2665
|
-
];
|
|
2666
|
-
exports.UpdateFunctionUrlConfigRequest$ = UpdateFunctionUrlConfigRequest$;
|
|
2667
|
-
const UpdateFunctionUrlConfigResponse$ = [3, n0, _UFUCRp,
|
|
2668
|
-
0,
|
|
2669
|
-
[_FU, _FA, _AT, _CTr, _LMT, _Co, _IM],
|
|
2670
|
-
[0, 0, 0, 0, 0, () => Cors$, 0], 5
|
|
2671
|
-
];
|
|
2672
|
-
exports.UpdateFunctionUrlConfigResponse$ = UpdateFunctionUrlConfigResponse$;
|
|
2673
|
-
const VpcConfig$ = [3, n0, _VC,
|
|
2674
|
-
0,
|
|
2675
|
-
[_SIu, _SGI, _IAFDS],
|
|
2676
|
-
[64 | 0, 64 | 0, 2]
|
|
2677
|
-
];
|
|
2678
|
-
exports.VpcConfig$ = VpcConfig$;
|
|
2679
|
-
const VpcConfigResponse$ = [3, n0, _VCR,
|
|
2680
|
-
0,
|
|
2681
|
-
[_SIu, _SGI, _VI, _IAFDS],
|
|
2682
|
-
[64 | 0, 64 | 0, 0, 2]
|
|
2683
|
-
];
|
|
2684
|
-
exports.VpcConfigResponse$ = VpcConfigResponse$;
|
|
2685
|
-
const WaitCancelledDetails$ = [3, n0, _WCD,
|
|
2686
|
-
0,
|
|
2687
|
-
[_E],
|
|
2688
|
-
[[() => EventError$, 0]]
|
|
2689
|
-
];
|
|
2690
|
-
exports.WaitCancelledDetails$ = WaitCancelledDetails$;
|
|
2691
|
-
const WaitDetails$ = [3, n0, _WDa,
|
|
2692
|
-
0,
|
|
2693
|
-
[_SET],
|
|
2694
|
-
[4]
|
|
2695
|
-
];
|
|
2696
|
-
exports.WaitDetails$ = WaitDetails$;
|
|
2697
|
-
const WaitOptions$ = [3, n0, _WO,
|
|
2698
|
-
0,
|
|
2699
|
-
[_WS],
|
|
2700
|
-
[1]
|
|
2701
|
-
];
|
|
2702
|
-
exports.WaitOptions$ = WaitOptions$;
|
|
2703
|
-
const WaitStartedDetails$ = [3, n0, _WSD,
|
|
2704
|
-
0,
|
|
2705
|
-
[_Du, _SET],
|
|
2706
|
-
[1, 4], 2
|
|
2707
|
-
];
|
|
2708
|
-
exports.WaitStartedDetails$ = WaitStartedDetails$;
|
|
2709
|
-
const WaitSucceededDetails$ = [3, n0, _WSDa,
|
|
2710
|
-
0,
|
|
2711
|
-
[_Du],
|
|
2712
|
-
[1]
|
|
2713
|
-
];
|
|
2714
|
-
exports.WaitSucceededDetails$ = WaitSucceededDetails$;
|
|
2715
|
-
var __Unit = "unit";
|
|
2716
|
-
var AliasList = [1, n0, _ALl,
|
|
2717
|
-
0, () => AliasConfiguration$
|
|
2718
|
-
];
|
|
2719
|
-
var AllowMethodsList = 64 | 0;
|
|
2720
|
-
var AllowOriginsList = 64 | 0;
|
|
2721
|
-
var ArchitecturesList = 64 | 0;
|
|
2722
|
-
var CapacityProviderScalingPoliciesList = [1, n0, _CPSPL,
|
|
2723
|
-
0, () => TargetTrackingScalingPolicy$
|
|
2724
|
-
];
|
|
2725
|
-
var CapacityProviderSecurityGroupIds = 64 | 0;
|
|
2726
|
-
var CapacityProvidersList = [1, n0, _CPL,
|
|
2727
|
-
0, () => CapacityProvider$
|
|
2728
|
-
];
|
|
2729
|
-
var CapacityProviderSubnetIds = 64 | 0;
|
|
2730
|
-
var CodeSigningConfigList = [1, n0, _CSCL,
|
|
2731
|
-
0, () => CodeSigningConfig$
|
|
2732
|
-
];
|
|
2733
|
-
var CompatibleArchitectures = 64 | 0;
|
|
2734
|
-
var CompatibleRuntimes = 64 | 0;
|
|
2735
|
-
var DurableExecutions = [1, n0, _DE,
|
|
2736
|
-
0, () => Execution$
|
|
2737
|
-
];
|
|
2738
|
-
var EndpointLists = 64 | 0;
|
|
2739
|
-
var Events = [1, n0, _Eve,
|
|
2740
|
-
0, [() => Event$,
|
|
2741
|
-
0]
|
|
2742
|
-
];
|
|
2743
|
-
var EventSourceMappingMetricList = 64 | 0;
|
|
2744
|
-
var EventSourceMappingsList = [1, n0, _ESML,
|
|
2745
|
-
0, () => EventSourceMappingConfiguration$
|
|
2746
|
-
];
|
|
2747
|
-
var ExecutionStatusList = 64 | 0;
|
|
2748
|
-
var FileSystemConfigList = [1, n0, _FSCL,
|
|
2749
|
-
0, () => FileSystemConfig$
|
|
2750
|
-
];
|
|
2751
|
-
var FilterList = [1, n0, _FL,
|
|
2752
|
-
0, () => Filter$
|
|
2753
|
-
];
|
|
2754
|
-
var FunctionArnList = 64 | 0;
|
|
2755
|
-
var FunctionEventInvokeConfigList = [1, n0, _FEICL,
|
|
2756
|
-
0, () => FunctionEventInvokeConfig$
|
|
2757
|
-
];
|
|
2758
|
-
var FunctionList = [1, n0, _FLu,
|
|
2759
|
-
0, [() => FunctionConfiguration$,
|
|
2760
|
-
0]
|
|
2761
|
-
];
|
|
2762
|
-
var FunctionResponseTypeList = 64 | 0;
|
|
2763
|
-
var FunctionUrlConfigList = [1, n0, _FUCL,
|
|
2764
|
-
0, () => FunctionUrlConfig$
|
|
2765
|
-
];
|
|
2766
|
-
var FunctionVersionsByCapacityProviderList = [1, n0, _FVBCPL,
|
|
2767
|
-
0, () => FunctionVersionsByCapacityProviderListItem$
|
|
2768
|
-
];
|
|
2769
|
-
var HeadersList = 64 | 0;
|
|
2770
|
-
var InstanceTypeSet = 64 | 0;
|
|
2771
|
-
var KafkaSchemaRegistryAccessConfigList = [1, n0, _KSRACL,
|
|
2772
|
-
0, () => KafkaSchemaRegistryAccessConfig$
|
|
2773
|
-
];
|
|
2774
|
-
var KafkaSchemaValidationConfigList = [1, n0, _KSVCL,
|
|
2775
|
-
0, () => KafkaSchemaValidationConfig$
|
|
2776
|
-
];
|
|
2777
|
-
var LayerList = 64 | 0;
|
|
2778
|
-
var LayersList = [1, n0, _LL,
|
|
2779
|
-
0, () => LayersListItem$
|
|
2780
|
-
];
|
|
2781
|
-
var LayersReferenceList = [1, n0, _LRL,
|
|
2782
|
-
0, () => Layer$
|
|
2783
|
-
];
|
|
2784
|
-
var LayerVersionsList = [1, n0, _LVL,
|
|
2785
|
-
0, () => LayerVersionsListItem$
|
|
2786
|
-
];
|
|
2787
|
-
var Operations = [1, n0, _O,
|
|
2788
|
-
0, [() => Operation$,
|
|
2789
|
-
0]
|
|
2790
|
-
];
|
|
2791
|
-
var OperationUpdates = [1, n0, _OUp,
|
|
2792
|
-
0, [() => OperationUpdate$,
|
|
2793
|
-
0]
|
|
2794
|
-
];
|
|
2795
|
-
var ProvisionedConcurrencyConfigList = [1, n0, _PCCL,
|
|
2796
|
-
0, () => ProvisionedConcurrencyConfigListItem$
|
|
2797
|
-
];
|
|
2798
|
-
var Queues = 64 | 0;
|
|
2799
|
-
var SecurityGroupIds = 64 | 0;
|
|
2800
|
-
var SigningProfileVersionArns = 64 | 0;
|
|
2801
|
-
var SourceAccessConfigurations = [1, n0, _SAC,
|
|
2802
|
-
0, () => SourceAccessConfiguration$
|
|
2803
|
-
];
|
|
2804
|
-
var StackTraceEntries = [1, n0, _STEt,
|
|
2805
|
-
0, [() => StackTraceEntry,
|
|
2806
|
-
0]
|
|
2807
|
-
];
|
|
2808
|
-
var StringList = 64 | 0;
|
|
2809
|
-
var SubnetIds = 64 | 0;
|
|
2810
|
-
var TagKeyList = [1, n0, _TKL,
|
|
2811
|
-
0, [0,
|
|
2812
|
-
{ [_xN]: _K }]
|
|
2813
|
-
];
|
|
2814
|
-
var Topics = 64 | 0;
|
|
2815
|
-
var AdditionalVersionWeights = 128 | 1;
|
|
2816
|
-
var Endpoints = [2, n0, _End,
|
|
2817
|
-
0, 0, 64 | 0
|
|
2818
|
-
];
|
|
2819
|
-
var EnvironmentVariables = [2, n0, _EVn,
|
|
2820
|
-
8, [() => EnvironmentVariableName,
|
|
2821
|
-
0],
|
|
2822
|
-
[() => EnvironmentVariableValue,
|
|
2823
|
-
0]
|
|
2824
|
-
];
|
|
2825
|
-
var Tags = 128 | 0;
|
|
2826
|
-
const InvokeWithResponseStreamResponseEvent$ = [4, n0, _IWRSRE,
|
|
2827
|
-
{ [_st]: 1 },
|
|
2828
|
-
[_PCa, _ICn],
|
|
2829
|
-
[[() => InvokeResponseStreamUpdate$, 0], () => InvokeWithResponseStreamCompleteEvent$]
|
|
2830
|
-
];
|
|
2831
|
-
exports.InvokeWithResponseStreamResponseEvent$ = InvokeWithResponseStreamResponseEvent$;
|
|
2832
|
-
exports.AddLayerVersionPermission$ = [9, n0, _ALVP,
|
|
2833
|
-
{ [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 201] }, () => AddLayerVersionPermissionRequest$, () => AddLayerVersionPermissionResponse$
|
|
2834
|
-
];
|
|
2835
|
-
exports.AddPermission$ = [9, n0, _APd,
|
|
2836
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/policy", 201] }, () => AddPermissionRequest$, () => AddPermissionResponse$
|
|
2837
|
-
];
|
|
2838
|
-
exports.CheckpointDurableExecution$ = [9, n0, _CDE,
|
|
2839
|
-
{ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/checkpoint", 200] }, () => CheckpointDurableExecutionRequest$, () => CheckpointDurableExecutionResponse$
|
|
2840
|
-
];
|
|
2841
|
-
exports.CreateAlias$ = [9, n0, _CAr,
|
|
2842
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/aliases", 201] }, () => CreateAliasRequest$, () => AliasConfiguration$
|
|
2843
|
-
];
|
|
2844
|
-
exports.CreateCapacityProvider$ = [9, n0, _CCP,
|
|
2845
|
-
{ [_h]: ["POST", "/2025-11-30/capacity-providers", 202] }, () => CreateCapacityProviderRequest$, () => CreateCapacityProviderResponse$
|
|
2846
|
-
];
|
|
2847
|
-
exports.CreateCodeSigningConfig$ = [9, n0, _CCSC,
|
|
2848
|
-
{ [_h]: ["POST", "/2020-04-22/code-signing-configs", 201] }, () => CreateCodeSigningConfigRequest$, () => CreateCodeSigningConfigResponse$
|
|
2849
|
-
];
|
|
2850
|
-
exports.CreateEventSourceMapping$ = [9, n0, _CESM,
|
|
2851
|
-
{ [_h]: ["POST", "/2015-03-31/event-source-mappings", 202] }, () => CreateEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
2852
|
-
];
|
|
2853
|
-
exports.CreateFunction$ = [9, n0, _CF,
|
|
2854
|
-
{ [_h]: ["POST", "/2015-03-31/functions", 201] }, () => CreateFunctionRequest$, () => FunctionConfiguration$
|
|
2855
|
-
];
|
|
2856
|
-
exports.CreateFunctionUrlConfig$ = [9, n0, _CFUC,
|
|
2857
|
-
{ [_h]: ["POST", "/2021-10-31/functions/{FunctionName}/url", 201] }, () => CreateFunctionUrlConfigRequest$, () => CreateFunctionUrlConfigResponse$
|
|
2858
|
-
];
|
|
2859
|
-
exports.DeleteAlias$ = [9, n0, _DA,
|
|
2860
|
-
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 204] }, () => DeleteAliasRequest$, () => __Unit
|
|
2861
|
-
];
|
|
2862
|
-
exports.DeleteCapacityProvider$ = [9, n0, _DCP,
|
|
2863
|
-
{ [_h]: ["DELETE", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () => DeleteCapacityProviderRequest$, () => DeleteCapacityProviderResponse$
|
|
2864
|
-
];
|
|
2865
|
-
exports.DeleteCodeSigningConfig$ = [9, n0, _DCSC,
|
|
2866
|
-
{ [_h]: ["DELETE", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 204] }, () => DeleteCodeSigningConfigRequest$, () => DeleteCodeSigningConfigResponse$
|
|
2867
|
-
];
|
|
2868
|
-
exports.DeleteEventSourceMapping$ = [9, n0, _DESM,
|
|
2869
|
-
{ [_h]: ["DELETE", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () => DeleteEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
2870
|
-
];
|
|
2871
|
-
exports.DeleteFunction$ = [9, n0, _DF,
|
|
2872
|
-
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}", 200] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
|
|
2873
|
-
];
|
|
2874
|
-
exports.DeleteFunctionCodeSigningConfig$ = [9, n0, _DFCSC,
|
|
2875
|
-
{ [_h]: ["DELETE", "/2020-06-30/functions/{FunctionName}/code-signing-config", 204] }, () => DeleteFunctionCodeSigningConfigRequest$, () => __Unit
|
|
2876
|
-
];
|
|
2877
|
-
exports.DeleteFunctionConcurrency$ = [9, n0, _DFC,
|
|
2878
|
-
{ [_h]: ["DELETE", "/2017-10-31/functions/{FunctionName}/concurrency", 204] }, () => DeleteFunctionConcurrencyRequest$, () => __Unit
|
|
2879
|
-
];
|
|
2880
|
-
exports.DeleteFunctionEventInvokeConfig$ = [9, n0, _DFEIC,
|
|
2881
|
-
{ [_h]: ["DELETE", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 204] }, () => DeleteFunctionEventInvokeConfigRequest$, () => __Unit
|
|
2882
|
-
];
|
|
2883
|
-
exports.DeleteFunctionUrlConfig$ = [9, n0, _DFUC,
|
|
2884
|
-
{ [_h]: ["DELETE", "/2021-10-31/functions/{FunctionName}/url", 204] }, () => DeleteFunctionUrlConfigRequest$, () => __Unit
|
|
2885
|
-
];
|
|
2886
|
-
exports.DeleteLayerVersion$ = [9, n0, _DLV,
|
|
2887
|
-
{ [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 204] }, () => DeleteLayerVersionRequest$, () => __Unit
|
|
2888
|
-
];
|
|
2889
|
-
exports.DeleteProvisionedConcurrencyConfig$ = [9, n0, _DPCC,
|
|
2890
|
-
{ [_h]: ["DELETE", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 204] }, () => DeleteProvisionedConcurrencyConfigRequest$, () => __Unit
|
|
2891
|
-
];
|
|
2892
|
-
exports.GetAccountSettings$ = [9, n0, _GAS,
|
|
2893
|
-
{ [_h]: ["GET", "/2016-08-19/account-settings", 200] }, () => GetAccountSettingsRequest$, () => GetAccountSettingsResponse$
|
|
2894
|
-
];
|
|
2895
|
-
exports.GetAlias$ = [9, n0, _GA,
|
|
2896
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () => GetAliasRequest$, () => AliasConfiguration$
|
|
2897
|
-
];
|
|
2898
|
-
exports.GetCapacityProvider$ = [9, n0, _GCP,
|
|
2899
|
-
{ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}", 200] }, () => GetCapacityProviderRequest$, () => GetCapacityProviderResponse$
|
|
2900
|
-
];
|
|
2901
|
-
exports.GetCodeSigningConfig$ = [9, n0, _GCSC,
|
|
2902
|
-
{ [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () => GetCodeSigningConfigRequest$, () => GetCodeSigningConfigResponse$
|
|
2903
|
-
];
|
|
2904
|
-
exports.GetDurableExecution$ = [9, n0, _GDE,
|
|
2905
|
-
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}", 200] }, () => GetDurableExecutionRequest$, () => GetDurableExecutionResponse$
|
|
2906
|
-
];
|
|
2907
|
-
exports.GetDurableExecutionHistory$ = [9, n0, _GDEH,
|
|
2908
|
-
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/history", 200] }, () => GetDurableExecutionHistoryRequest$, () => GetDurableExecutionHistoryResponse$
|
|
2909
|
-
];
|
|
2910
|
-
exports.GetDurableExecutionState$ = [9, n0, _GDES,
|
|
2911
|
-
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/state", 200] }, () => GetDurableExecutionStateRequest$, () => GetDurableExecutionStateResponse$
|
|
2912
|
-
];
|
|
2913
|
-
exports.GetEventSourceMapping$ = [9, n0, _GESM,
|
|
2914
|
-
{ [_h]: ["GET", "/2015-03-31/event-source-mappings/{UUID}", 200] }, () => GetEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
2915
|
-
];
|
|
2916
|
-
exports.GetFunction$ = [9, n0, _GF,
|
|
2917
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
|
|
2918
|
-
];
|
|
2919
|
-
exports.GetFunctionCodeSigningConfig$ = [9, n0, _GFCSC,
|
|
2920
|
-
{ [_h]: ["GET", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () => GetFunctionCodeSigningConfigRequest$, () => GetFunctionCodeSigningConfigResponse$
|
|
2921
|
-
];
|
|
2922
|
-
exports.GetFunctionConcurrency$ = [9, n0, _GFC,
|
|
2923
|
-
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/concurrency", 200] }, () => GetFunctionConcurrencyRequest$, () => GetFunctionConcurrencyResponse$
|
|
2924
|
-
];
|
|
2925
|
-
exports.GetFunctionConfiguration$ = [9, n0, _GFCe,
|
|
2926
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () => GetFunctionConfigurationRequest$, () => FunctionConfiguration$
|
|
2927
|
-
];
|
|
2928
|
-
exports.GetFunctionEventInvokeConfig$ = [9, n0, _GFEIC,
|
|
2929
|
-
{ [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => GetFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
|
|
2930
|
-
];
|
|
2931
|
-
exports.GetFunctionRecursionConfig$ = [9, n0, _GFRC,
|
|
2932
|
-
{ [_h]: ["GET", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () => GetFunctionRecursionConfigRequest$, () => GetFunctionRecursionConfigResponse$
|
|
2933
|
-
];
|
|
2934
|
-
exports.GetFunctionScalingConfig$ = [9, n0, _GFSC,
|
|
2935
|
-
{ [_h]: ["GET", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 200] }, () => GetFunctionScalingConfigRequest$, () => GetFunctionScalingConfigResponse$
|
|
2936
|
-
];
|
|
2937
|
-
exports.GetFunctionUrlConfig$ = [9, n0, _GFUC,
|
|
2938
|
-
{ [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/url", 200] }, () => GetFunctionUrlConfigRequest$, () => GetFunctionUrlConfigResponse$
|
|
2939
|
-
];
|
|
2940
|
-
exports.GetLayerVersion$ = [9, n0, _GLV,
|
|
2941
|
-
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 200] }, () => GetLayerVersionRequest$, () => GetLayerVersionResponse$
|
|
2942
|
-
];
|
|
2943
|
-
exports.GetLayerVersionByArn$ = [9, n0, _GLVBA,
|
|
2944
|
-
{ [_h]: ["GET", "/2018-10-31/layers?find=LayerVersion", 200] }, () => GetLayerVersionByArnRequest$, () => GetLayerVersionResponse$
|
|
2945
|
-
];
|
|
2946
|
-
exports.GetLayerVersionPolicy$ = [9, n0, _GLVP,
|
|
2947
|
-
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 200] }, () => GetLayerVersionPolicyRequest$, () => GetLayerVersionPolicyResponse$
|
|
2948
|
-
];
|
|
2949
|
-
exports.GetPolicy$ = [9, n0, _GP,
|
|
2950
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/policy", 200] }, () => GetPolicyRequest$, () => GetPolicyResponse$
|
|
2951
|
-
];
|
|
2952
|
-
exports.GetProvisionedConcurrencyConfig$ = [9, n0, _GPCC,
|
|
2953
|
-
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 200] }, () => GetProvisionedConcurrencyConfigRequest$, () => GetProvisionedConcurrencyConfigResponse$
|
|
2954
|
-
];
|
|
2955
|
-
exports.GetRuntimeManagementConfig$ = [9, n0, _GRMC,
|
|
2956
|
-
{ [_h]: ["GET", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () => GetRuntimeManagementConfigRequest$, () => GetRuntimeManagementConfigResponse$
|
|
2957
|
-
];
|
|
2958
|
-
exports.Invoke$ = [9, n0, _In,
|
|
2959
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/invocations", 200] }, () => InvocationRequest$, () => InvocationResponse$
|
|
2960
|
-
];
|
|
2961
|
-
exports.InvokeAsync$ = [9, n0, _IAn,
|
|
2962
|
-
{ [_h]: ["POST", "/2014-11-13/functions/{FunctionName}/invoke-async", 202] }, () => InvokeAsyncRequest$, () => InvokeAsyncResponse$
|
|
2963
|
-
];
|
|
2964
|
-
exports.InvokeWithResponseStream$ = [9, n0, _IWRS,
|
|
2965
|
-
{ [_h]: ["POST", "/2021-11-15/functions/{FunctionName}/response-streaming-invocations", 200] }, () => InvokeWithResponseStreamRequest$, () => InvokeWithResponseStreamResponse$
|
|
2966
|
-
];
|
|
2967
|
-
exports.ListAliases$ = [9, n0, _LAi,
|
|
2968
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases", 200] }, () => ListAliasesRequest$, () => ListAliasesResponse$
|
|
2969
|
-
];
|
|
2970
|
-
exports.ListCapacityProviders$ = [9, n0, _LCP,
|
|
2971
|
-
{ [_h]: ["GET", "/2025-11-30/capacity-providers", 200] }, () => ListCapacityProvidersRequest$, () => ListCapacityProvidersResponse$
|
|
2972
|
-
];
|
|
2973
|
-
exports.ListCodeSigningConfigs$ = [9, n0, _LCSC,
|
|
2974
|
-
{ [_h]: ["GET", "/2020-04-22/code-signing-configs", 200] }, () => ListCodeSigningConfigsRequest$, () => ListCodeSigningConfigsResponse$
|
|
2975
|
-
];
|
|
2976
|
-
exports.ListDurableExecutionsByFunction$ = [9, n0, _LDEBF,
|
|
2977
|
-
{ [_h]: ["GET", "/2025-12-01/functions/{FunctionName}/durable-executions", 200] }, () => ListDurableExecutionsByFunctionRequest$, () => ListDurableExecutionsByFunctionResponse$
|
|
2978
|
-
];
|
|
2979
|
-
exports.ListEventSourceMappings$ = [9, n0, _LESM,
|
|
2980
|
-
{ [_h]: ["GET", "/2015-03-31/event-source-mappings", 200] }, () => ListEventSourceMappingsRequest$, () => ListEventSourceMappingsResponse$
|
|
2981
|
-
];
|
|
2982
|
-
exports.ListFunctionEventInvokeConfigs$ = [9, n0, _LFEIC,
|
|
2983
|
-
{ [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config/list", 200] }, () => ListFunctionEventInvokeConfigsRequest$, () => ListFunctionEventInvokeConfigsResponse$
|
|
2984
|
-
];
|
|
2985
|
-
exports.ListFunctions$ = [9, n0, _LFi,
|
|
2986
|
-
{ [_h]: ["GET", "/2015-03-31/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
|
|
2987
|
-
];
|
|
2988
|
-
exports.ListFunctionsByCodeSigningConfig$ = [9, n0, _LFBCSC,
|
|
2989
|
-
{ [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}/functions", 200] }, () => ListFunctionsByCodeSigningConfigRequest$, () => ListFunctionsByCodeSigningConfigResponse$
|
|
2990
|
-
];
|
|
2991
|
-
exports.ListFunctionUrlConfigs$ = [9, n0, _LFUC,
|
|
2992
|
-
{ [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/urls", 200] }, () => ListFunctionUrlConfigsRequest$, () => ListFunctionUrlConfigsResponse$
|
|
2993
|
-
];
|
|
2994
|
-
exports.ListFunctionVersionsByCapacityProvider$ = [9, n0, _LFVBCP,
|
|
2995
|
-
{ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}/function-versions", 200] }, () => ListFunctionVersionsByCapacityProviderRequest$, () => ListFunctionVersionsByCapacityProviderResponse$
|
|
2996
|
-
];
|
|
2997
|
-
exports.ListLayers$ = [9, n0, _LLi,
|
|
2998
|
-
{ [_h]: ["GET", "/2018-10-31/layers", 200] }, () => ListLayersRequest$, () => ListLayersResponse$
|
|
2999
|
-
];
|
|
3000
|
-
exports.ListLayerVersions$ = [9, n0, _LLV,
|
|
3001
|
-
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions", 200] }, () => ListLayerVersionsRequest$, () => ListLayerVersionsResponse$
|
|
3002
|
-
];
|
|
3003
|
-
exports.ListProvisionedConcurrencyConfigs$ = [9, n0, _LPCC,
|
|
3004
|
-
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency?List=ALL", 200] }, () => ListProvisionedConcurrencyConfigsRequest$, () => ListProvisionedConcurrencyConfigsResponse$
|
|
3005
|
-
];
|
|
3006
|
-
exports.ListTags$ = [9, n0, _LTi,
|
|
3007
|
-
{ [_h]: ["GET", "/2017-03-31/tags/{Resource}", 200] }, () => ListTagsRequest$, () => ListTagsResponse$
|
|
3008
|
-
];
|
|
3009
|
-
exports.ListVersionsByFunction$ = [9, n0, _LVBF,
|
|
3010
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/versions", 200] }, () => ListVersionsByFunctionRequest$, () => ListVersionsByFunctionResponse$
|
|
3011
|
-
];
|
|
3012
|
-
exports.PublishLayerVersion$ = [9, n0, _PLV,
|
|
3013
|
-
{ [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions", 201] }, () => PublishLayerVersionRequest$, () => PublishLayerVersionResponse$
|
|
3014
|
-
];
|
|
3015
|
-
exports.PublishVersion$ = [9, n0, _PV,
|
|
3016
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/versions", 201] }, () => PublishVersionRequest$, () => FunctionConfiguration$
|
|
3017
|
-
];
|
|
3018
|
-
exports.PutFunctionCodeSigningConfig$ = [9, n0, _PFCSC,
|
|
3019
|
-
{ [_h]: ["PUT", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () => PutFunctionCodeSigningConfigRequest$, () => PutFunctionCodeSigningConfigResponse$
|
|
3020
|
-
];
|
|
3021
|
-
exports.PutFunctionConcurrency$ = [9, n0, _PFC,
|
|
3022
|
-
{ [_h]: ["PUT", "/2017-10-31/functions/{FunctionName}/concurrency", 200] }, () => PutFunctionConcurrencyRequest$, () => Concurrency$
|
|
3023
|
-
];
|
|
3024
|
-
exports.PutFunctionEventInvokeConfig$ = [9, n0, _PFEIC,
|
|
3025
|
-
{ [_h]: ["PUT", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => PutFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
|
|
3026
|
-
];
|
|
3027
|
-
exports.PutFunctionRecursionConfig$ = [9, n0, _PFRC,
|
|
3028
|
-
{ [_h]: ["PUT", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () => PutFunctionRecursionConfigRequest$, () => PutFunctionRecursionConfigResponse$
|
|
3029
|
-
];
|
|
3030
|
-
exports.PutFunctionScalingConfig$ = [9, n0, _PFSC,
|
|
3031
|
-
{ [_h]: ["PUT", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 202] }, () => PutFunctionScalingConfigRequest$, () => PutFunctionScalingConfigResponse$
|
|
3032
|
-
];
|
|
3033
|
-
exports.PutProvisionedConcurrencyConfig$ = [9, n0, _PPCC,
|
|
3034
|
-
{ [_h]: ["PUT", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 202] }, () => PutProvisionedConcurrencyConfigRequest$, () => PutProvisionedConcurrencyConfigResponse$
|
|
3035
|
-
];
|
|
3036
|
-
exports.PutRuntimeManagementConfig$ = [9, n0, _PRMC,
|
|
3037
|
-
{ [_h]: ["PUT", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () => PutRuntimeManagementConfigRequest$, () => PutRuntimeManagementConfigResponse$
|
|
3038
|
-
];
|
|
3039
|
-
exports.RemoveLayerVersionPermission$ = [9, n0, _RLVP,
|
|
3040
|
-
{ [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy/{StatementId}", 204] }, () => RemoveLayerVersionPermissionRequest$, () => __Unit
|
|
3041
|
-
];
|
|
3042
|
-
exports.RemovePermission$ = [9, n0, _RP,
|
|
3043
|
-
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/policy/{StatementId}", 204] }, () => RemovePermissionRequest$, () => __Unit
|
|
3044
|
-
];
|
|
3045
|
-
exports.SendDurableExecutionCallbackFailure$ = [9, n0, _SDECF,
|
|
3046
|
-
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/fail", 200] }, () => SendDurableExecutionCallbackFailureRequest$, () => SendDurableExecutionCallbackFailureResponse$
|
|
3047
|
-
];
|
|
3048
|
-
exports.SendDurableExecutionCallbackHeartbeat$ = [9, n0, _SDECH,
|
|
3049
|
-
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/heartbeat", 200] }, () => SendDurableExecutionCallbackHeartbeatRequest$, () => SendDurableExecutionCallbackHeartbeatResponse$
|
|
3050
|
-
];
|
|
3051
|
-
exports.SendDurableExecutionCallbackSuccess$ = [9, n0, _SDECS,
|
|
3052
|
-
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/succeed", 200] }, () => SendDurableExecutionCallbackSuccessRequest$, () => SendDurableExecutionCallbackSuccessResponse$
|
|
3053
|
-
];
|
|
3054
|
-
exports.StopDurableExecution$ = [9, n0, _SDE,
|
|
3055
|
-
{ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/stop", 200] }, () => StopDurableExecutionRequest$, () => StopDurableExecutionResponse$
|
|
3056
|
-
];
|
|
3057
|
-
exports.TagResource$ = [9, n0, _TR,
|
|
3058
|
-
{ [_h]: ["POST", "/2017-03-31/tags/{Resource}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
3059
|
-
];
|
|
3060
|
-
exports.UntagResource$ = [9, n0, _UR,
|
|
3061
|
-
{ [_h]: ["DELETE", "/2017-03-31/tags/{Resource}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
3062
|
-
];
|
|
3063
|
-
exports.UpdateAlias$ = [9, n0, _UA,
|
|
3064
|
-
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () => UpdateAliasRequest$, () => AliasConfiguration$
|
|
3065
|
-
];
|
|
3066
|
-
exports.UpdateCapacityProvider$ = [9, n0, _UCP,
|
|
3067
|
-
{ [_h]: ["PUT", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () => UpdateCapacityProviderRequest$, () => UpdateCapacityProviderResponse$
|
|
3068
|
-
];
|
|
3069
|
-
exports.UpdateCodeSigningConfig$ = [9, n0, _UCSC,
|
|
3070
|
-
{ [_h]: ["PUT", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () => UpdateCodeSigningConfigRequest$, () => UpdateCodeSigningConfigResponse$
|
|
3071
|
-
];
|
|
3072
|
-
exports.UpdateEventSourceMapping$ = [9, n0, _UESM,
|
|
3073
|
-
{ [_h]: ["PUT", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () => UpdateEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
3074
|
-
];
|
|
3075
|
-
exports.UpdateFunctionCode$ = [9, n0, _UFC,
|
|
3076
|
-
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/code", 200] }, () => UpdateFunctionCodeRequest$, () => FunctionConfiguration$
|
|
3077
|
-
];
|
|
3078
|
-
exports.UpdateFunctionConfiguration$ = [9, n0, _UFCp,
|
|
3079
|
-
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () => UpdateFunctionConfigurationRequest$, () => FunctionConfiguration$
|
|
3080
|
-
];
|
|
3081
|
-
exports.UpdateFunctionEventInvokeConfig$ = [9, n0, _UFEIC,
|
|
3082
|
-
{ [_h]: ["POST", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => UpdateFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
|
|
3083
|
-
];
|
|
3084
|
-
exports.UpdateFunctionUrlConfig$ = [9, n0, _UFUC,
|
|
3085
|
-
{ [_h]: ["PUT", "/2021-10-31/functions/{FunctionName}/url", 200] }, () => UpdateFunctionUrlConfigRequest$, () => UpdateFunctionUrlConfigResponse$
|
|
3086
|
-
];
|