@cdklabs/cdk-ssm-documents 0.0.55 → 0.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +12 -12
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/package.json +34 -34
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +36 -36
- package/node_modules/@aws-sdk/client-ec2/README.md +14 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +41 -0
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +156 -78
- package/node_modules/@aws-sdk/client-ec2/dist-es/EC2.js +6 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/GetCapacityManagerMonitoredTagKeysCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/UpdateCapacityManagerMonitoredTagKeysCommand.js +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/commands/index.js +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/models/enums.js +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/GetCapacityManagerMonitoredTagKeysPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-es/schemas/schemas_0.js +96 -18
- 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 +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDataCommand.d.ts +9 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMetricDimensionsCommand.d.ts +9 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +87 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetConsoleScreenshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +91 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/enums.d.ts +16 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_5.d.ts +126 -79
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_6.d.ts +81 -122
- package/node_modules/@aws-sdk/client-ec2/dist-types/models/models_7.d.ts +168 -3
- package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/GetCapacityManagerMonitoredTagKeysPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/schemas/schemas_0.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2.d.ts +55 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetCapacityManagerMonitoredTagKeysCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetConsoleScreenshotCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/GetDeclarativePoliciesReportSummaryCommand.d.ts +4 -2
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterNetworkServicesCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/ModifyTrafficMirrorFilterRuleCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/UpdateCapacityManagerMonitoredTagKeysCommand.d.ts +51 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/enums.d.ts +10 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_5.d.ts +23 -18
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_6.d.ts +19 -34
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/models/models_7.d.ts +43 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/GetCapacityManagerMonitoredTagKeysPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-ec2/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/node_modules/@aws-sdk/client-ec2/package.json +36 -36
- package/node_modules/@aws-sdk/client-iam/package.json +35 -35
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +52 -1
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +29 -8
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +48 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +22 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +66 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +38 -38
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/package.json +50 -50
- package/node_modules/@aws-sdk/client-sns/package.json +33 -33
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +2 -0
- package/node_modules/@aws-sdk/client-sqs/dist-es/commands/ReceiveMessageCommand.js +2 -0
- package/node_modules/@aws-sdk/client-sqs/package.json +36 -36
- package/node_modules/@aws-sdk/client-ssm/package.json +34 -34
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +17 -0
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +17 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/index.js +1 -0
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/longPollMiddleware.js +15 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/submodules/client/longPollMiddleware.d.ts +14 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/index.d.ts +1 -0
- package/node_modules/@aws-sdk/core/dist-types/ts3.4/submodules/client/longPollMiddleware.d.ts +15 -0
- package/node_modules/@aws-sdk/core/package.json +11 -11
- package/node_modules/@aws-sdk/crc64-nvme/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-env/package.json +5 -5
- package/node_modules/@aws-sdk/credential-provider-http/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +14 -14
- package/node_modules/@aws-sdk/credential-provider-login/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-node/package.json +12 -12
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-bucket-endpoint/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-expect-continue/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +10 -10
- package/node_modules/@aws-sdk/middleware-host-header/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-location-constraint/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-logger/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-recursion-detection/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +8 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +11 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +4 -4
- package/node_modules/@aws-sdk/middleware-ssec/package.json +3 -3
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +8 -8
- package/node_modules/@aws-sdk/nested-clients/package.json +32 -32
- package/node_modules/@aws-sdk/region-config-resolver/package.json +5 -5
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +6 -6
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/package.json +2 -2
- package/node_modules/@aws-sdk/util-endpoints/package.json +5 -5
- package/node_modules/@aws-sdk/util-format-url/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-browser/package.json +3 -3
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +5 -5
- package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/package.json +1 -1
- package/node_modules/@aws-sdk/xml-builder/package.json +2 -2
- package/node_modules/@smithy/config-resolver/package.json +2 -2
- package/node_modules/@smithy/middleware-retry/package.json +2 -2
- package/node_modules/@smithy/util-defaults-mode-node/package.json +2 -2
- package/node_modules/@smithy/util-endpoints/dist-cjs/index.js +154 -61
- package/node_modules/@smithy/util-endpoints/dist-es/bdd/BinaryDecisionDiagram.js +15 -0
- package/node_modules/@smithy/util-endpoints/dist-es/decideEndpoint.js +41 -0
- package/node_modules/@smithy/util-endpoints/dist-es/index.js +2 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/coalesce.js +8 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/index.js +3 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/ite.js +3 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/split.js +13 -0
- package/node_modules/@smithy/util-endpoints/dist-es/lib/substring.js +1 -1
- package/node_modules/@smithy/util-endpoints/dist-es/utils/endpointFunctions.js +4 -1
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateExpression.js +20 -5
- package/node_modules/@smithy/util-endpoints/dist-es/utils/evaluateTemplate.js +3 -6
- package/node_modules/@smithy/util-endpoints/dist-es/utils/getReferenceValue.js +1 -5
- package/node_modules/@smithy/util-endpoints/dist-types/bdd/BinaryDecisionDiagram.d.ts +22 -0
- package/node_modules/@smithy/util-endpoints/dist-types/decideEndpoint.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/index.d.ts +2 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/coalesce.d.ts +7 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/index.d.ts +3 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/ite.d.ts +6 -0
- package/node_modules/@smithy/util-endpoints/dist-types/lib/split.d.ts +11 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/endpointFunctions.d.ts +4 -0
- package/node_modules/@smithy/util-endpoints/dist-types/utils/getReferenceValue.d.ts +3 -1
- package/node_modules/@smithy/util-endpoints/package.json +1 -1
- package/node_modules/@smithy/util-retry/dist-cjs/index.js +6 -0
- package/node_modules/@smithy/util-retry/dist-es/AdaptiveRetryStrategy.js +3 -0
- package/node_modules/@smithy/util-retry/dist-es/StandardRetryStrategy.js +3 -0
- package/node_modules/@smithy/util-retry/dist-types/AdaptiveRetryStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/dist-types/StandardRetryStrategy.d.ts +5 -0
- package/node_modules/@smithy/util-retry/package.json +1 -1
- package/node_modules/path-expression-matcher/README.md +214 -62
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +111 -0
- package/node_modules/path-expression-matcher/lib/pem.min.js +1 -1
- package/node_modules/path-expression-matcher/lib/pem.min.js.map +1 -1
- package/node_modules/path-expression-matcher/package.json +1 -1
- package/node_modules/path-expression-matcher/src/Expression.js +2 -2
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +209 -0
- package/node_modules/path-expression-matcher/src/Matcher.js +235 -177
- package/node_modules/path-expression-matcher/src/index.d.ts +199 -194
- package/node_modules/path-expression-matcher/src/index.js +3 -2
- package/package.json +10 -10
- package/node_modules/strnum/.github/SECURITY.md +0 -5
- package/node_modules/strnum/.vscode/launch.json +0 -25
- package/node_modules/strnum/algo.stflow +0 -84
- package/node_modules/strnum/tests/infinity_test.js +0 -18
- package/node_modules/strnum/tests/strnum_test.js +0 -175
- package/node_modules/strnum/tests/temp.js +0 -8
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/CHANGELOG.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/LICENSE +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/README.md +0 -0
- /package/node_modules/{strnum → @aws-sdk/xml-builder/node_modules/strnum}/strnum.js +0 -0
|
@@ -530,6 +530,7 @@ import { GetAwsNetworkPerformanceDataCommand, } from "./commands/GetAwsNetworkPe
|
|
|
530
530
|
import { GetCapacityManagerAttributesCommand, } from "./commands/GetCapacityManagerAttributesCommand";
|
|
531
531
|
import { GetCapacityManagerMetricDataCommand, } from "./commands/GetCapacityManagerMetricDataCommand";
|
|
532
532
|
import { GetCapacityManagerMetricDimensionsCommand, } from "./commands/GetCapacityManagerMetricDimensionsCommand";
|
|
533
|
+
import { GetCapacityManagerMonitoredTagKeysCommand, } from "./commands/GetCapacityManagerMonitoredTagKeysCommand";
|
|
533
534
|
import { GetCapacityReservationUsageCommand, } from "./commands/GetCapacityReservationUsageCommand";
|
|
534
535
|
import { GetCoipPoolUsageCommand, } from "./commands/GetCoipPoolUsageCommand";
|
|
535
536
|
import { GetConsoleOutputCommand, } from "./commands/GetConsoleOutputCommand";
|
|
@@ -750,6 +751,7 @@ import { UnassignPrivateIpAddressesCommand, } from "./commands/UnassignPrivateIp
|
|
|
750
751
|
import { UnassignPrivateNatGatewayAddressCommand, } from "./commands/UnassignPrivateNatGatewayAddressCommand";
|
|
751
752
|
import { UnlockSnapshotCommand, } from "./commands/UnlockSnapshotCommand";
|
|
752
753
|
import { UnmonitorInstancesCommand, } from "./commands/UnmonitorInstancesCommand";
|
|
754
|
+
import { UpdateCapacityManagerMonitoredTagKeysCommand, } from "./commands/UpdateCapacityManagerMonitoredTagKeysCommand";
|
|
753
755
|
import { UpdateCapacityManagerOrganizationsAccessCommand, } from "./commands/UpdateCapacityManagerOrganizationsAccessCommand";
|
|
754
756
|
import { UpdateInterruptibleCapacityReservationAllocationCommand, } from "./commands/UpdateInterruptibleCapacityReservationAllocationCommand";
|
|
755
757
|
import { UpdateSecurityGroupRuleDescriptionsEgressCommand, } from "./commands/UpdateSecurityGroupRuleDescriptionsEgressCommand";
|
|
@@ -895,6 +897,7 @@ import { paginateGetAssociatedIpv6PoolCidrs } from "./pagination/GetAssociatedIp
|
|
|
895
897
|
import { paginateGetAwsNetworkPerformanceData } from "./pagination/GetAwsNetworkPerformanceDataPaginator";
|
|
896
898
|
import { paginateGetCapacityManagerMetricData } from "./pagination/GetCapacityManagerMetricDataPaginator";
|
|
897
899
|
import { paginateGetCapacityManagerMetricDimensions } from "./pagination/GetCapacityManagerMetricDimensionsPaginator";
|
|
900
|
+
import { paginateGetCapacityManagerMonitoredTagKeys } from "./pagination/GetCapacityManagerMonitoredTagKeysPaginator";
|
|
898
901
|
import { paginateGetGroupsForCapacityReservation } from "./pagination/GetGroupsForCapacityReservationPaginator";
|
|
899
902
|
import { paginateGetInstanceTypesFromInstanceRequirements, } from "./pagination/GetInstanceTypesFromInstanceRequirementsPaginator";
|
|
900
903
|
import { paginateGetIpamAddressHistory } from "./pagination/GetIpamAddressHistoryPaginator";
|
|
@@ -1498,6 +1501,7 @@ const commands = {
|
|
|
1498
1501
|
GetCapacityManagerAttributesCommand,
|
|
1499
1502
|
GetCapacityManagerMetricDataCommand,
|
|
1500
1503
|
GetCapacityManagerMetricDimensionsCommand,
|
|
1504
|
+
GetCapacityManagerMonitoredTagKeysCommand,
|
|
1501
1505
|
GetCapacityReservationUsageCommand,
|
|
1502
1506
|
GetCoipPoolUsageCommand,
|
|
1503
1507
|
GetConsoleOutputCommand,
|
|
@@ -1718,6 +1722,7 @@ const commands = {
|
|
|
1718
1722
|
UnassignPrivateNatGatewayAddressCommand,
|
|
1719
1723
|
UnlockSnapshotCommand,
|
|
1720
1724
|
UnmonitorInstancesCommand,
|
|
1725
|
+
UpdateCapacityManagerMonitoredTagKeysCommand,
|
|
1721
1726
|
UpdateCapacityManagerOrganizationsAccessCommand,
|
|
1722
1727
|
UpdateInterruptibleCapacityReservationAllocationCommand,
|
|
1723
1728
|
UpdateSecurityGroupRuleDescriptionsEgressCommand,
|
|
@@ -1864,6 +1869,7 @@ const paginators = {
|
|
|
1864
1869
|
paginateGetAwsNetworkPerformanceData,
|
|
1865
1870
|
paginateGetCapacityManagerMetricData,
|
|
1866
1871
|
paginateGetCapacityManagerMetricDimensions,
|
|
1872
|
+
paginateGetCapacityManagerMonitoredTagKeys,
|
|
1867
1873
|
paginateGetGroupsForCapacityReservation,
|
|
1868
1874
|
paginateGetInstanceTypesFromInstanceRequirements,
|
|
1869
1875
|
paginateGetIpamAddressHistory,
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetCapacityManagerMonitoredTagKeys$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetCapacityManagerMonitoredTagKeysCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "GetCapacityManagerMonitoredTagKeys", {})
|
|
13
|
+
.n("EC2Client", "GetCapacityManagerMonitoredTagKeysCommand")
|
|
14
|
+
.sc(GetCapacityManagerMonitoredTagKeys$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateCapacityManagerMonitoredTagKeys$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateCapacityManagerMonitoredTagKeysCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonEC2", "UpdateCapacityManagerMonitoredTagKeys", {})
|
|
13
|
+
.n("EC2Client", "UpdateCapacityManagerMonitoredTagKeysCommand")
|
|
14
|
+
.sc(UpdateCapacityManagerMonitoredTagKeys$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -529,6 +529,7 @@ export * from "./GetAwsNetworkPerformanceDataCommand";
|
|
|
529
529
|
export * from "./GetCapacityManagerAttributesCommand";
|
|
530
530
|
export * from "./GetCapacityManagerMetricDataCommand";
|
|
531
531
|
export * from "./GetCapacityManagerMetricDimensionsCommand";
|
|
532
|
+
export * from "./GetCapacityManagerMonitoredTagKeysCommand";
|
|
532
533
|
export * from "./GetCapacityReservationUsageCommand";
|
|
533
534
|
export * from "./GetCoipPoolUsageCommand";
|
|
534
535
|
export * from "./GetConsoleOutputCommand";
|
|
@@ -749,6 +750,7 @@ export * from "./UnassignPrivateIpAddressesCommand";
|
|
|
749
750
|
export * from "./UnassignPrivateNatGatewayAddressCommand";
|
|
750
751
|
export * from "./UnlockSnapshotCommand";
|
|
751
752
|
export * from "./UnmonitorInstancesCommand";
|
|
753
|
+
export * from "./UpdateCapacityManagerMonitoredTagKeysCommand";
|
|
752
754
|
export * from "./UpdateCapacityManagerOrganizationsAccessCommand";
|
|
753
755
|
export * from "./UpdateInterruptibleCapacityReservationAllocationCommand";
|
|
754
756
|
export * from "./UpdateSecurityGroupRuleDescriptionsEgressCommand";
|
|
@@ -3561,6 +3561,7 @@ export const Comparison = {
|
|
|
3561
3561
|
};
|
|
3562
3562
|
export const FilterByDimension = {
|
|
3563
3563
|
ACCOUNT_ID: "account-id",
|
|
3564
|
+
ACCOUNT_NAME: "account-name",
|
|
3564
3565
|
AVAILABILITY_ZONE_ID: "availability-zone-id",
|
|
3565
3566
|
INSTANCE_FAMILY: "instance-family",
|
|
3566
3567
|
INSTANCE_PLATFORM: "instance-platform",
|
|
@@ -3580,6 +3581,7 @@ export const FilterByDimension = {
|
|
|
3580
3581
|
};
|
|
3581
3582
|
export const GroupBy = {
|
|
3582
3583
|
ACCOUNT_ID: "account-id",
|
|
3584
|
+
ACCOUNT_NAME: "account-name",
|
|
3583
3585
|
AVAILABILITY_ZONE_ID: "availability-zone-id",
|
|
3584
3586
|
INSTANCE_FAMILY: "instance-family",
|
|
3585
3587
|
INSTANCE_PLATFORM: "instance-platform",
|
|
@@ -3660,6 +3662,12 @@ export const CapacityTenancy = {
|
|
|
3660
3662
|
DEDICATED: "dedicated",
|
|
3661
3663
|
DEFAULT: "default",
|
|
3662
3664
|
};
|
|
3665
|
+
export const CapacityManagerMonitoredTagKeyStatus = {
|
|
3666
|
+
ACTIVATED: "activated",
|
|
3667
|
+
ACTIVATING: "activating",
|
|
3668
|
+
DEACTIVATING: "deactivating",
|
|
3669
|
+
SUSPENDED: "suspended",
|
|
3670
|
+
};
|
|
3663
3671
|
export const UnlimitedSupportedInstanceFamily = {
|
|
3664
3672
|
t2: "t2",
|
|
3665
3673
|
t3: "t3",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { GetCapacityManagerMonitoredTagKeysCommand, } from "../commands/GetCapacityManagerMonitoredTagKeysCommand";
|
|
3
|
+
import { EC2Client } from "../EC2Client";
|
|
4
|
+
export const paginateGetCapacityManagerMonitoredTagKeys = createPaginator(EC2Client, GetCapacityManagerMonitoredTagKeysCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -138,6 +138,7 @@ export * from "./GetAssociatedIpv6PoolCidrsPaginator";
|
|
|
138
138
|
export * from "./GetAwsNetworkPerformanceDataPaginator";
|
|
139
139
|
export * from "./GetCapacityManagerMetricDataPaginator";
|
|
140
140
|
export * from "./GetCapacityManagerMetricDimensionsPaginator";
|
|
141
|
+
export * from "./GetCapacityManagerMonitoredTagKeysPaginator";
|
|
141
142
|
export * from "./GetGroupsForCapacityReservationPaginator";
|
|
142
143
|
export * from "./GetInstanceTypesFromInstanceRequirementsPaginator";
|
|
143
144
|
export * from "./GetIpamAddressHistoryPaginator";
|
|
@@ -188,8 +188,9 @@ const _ANLBAd = "AddNetworkLoadBalancerArn";
|
|
|
188
188
|
const _ANS = "AddNetworkServices";
|
|
189
189
|
const _ANSc = "AcceleratorNameSet";
|
|
190
190
|
const _ANSd = "AddNetworkService";
|
|
191
|
-
const _ANc = "
|
|
192
|
-
const _ANcc = "
|
|
191
|
+
const _ANc = "AccountName";
|
|
192
|
+
const _ANcc = "AcceleratorNames";
|
|
193
|
+
const _ANcce = "AcceleratorName";
|
|
193
194
|
const _ANt = "AttributeNames";
|
|
194
195
|
const _AO = "AuthenticationOptions";
|
|
195
196
|
const _AOI = "AddressOwnerId";
|
|
@@ -341,6 +342,8 @@ const _ATI = "AccepterTgwInfo";
|
|
|
341
342
|
const _ATIR = "AssociateTrunkInterfaceRequest";
|
|
342
343
|
const _ATIRs = "AssociateTrunkInterfaceResult";
|
|
343
344
|
const _ATIs = "AssociateTrunkInterface";
|
|
345
|
+
const _ATK = "ActivateTagKeys";
|
|
346
|
+
const _ATKc = "ActivateTagKey";
|
|
344
347
|
const _ATL = "AddressTransferList";
|
|
345
348
|
const _ATLr = "ArchitectureTypeList";
|
|
346
349
|
const _ATMMB = "AcceleratorTotalMemoryMiB";
|
|
@@ -777,6 +780,9 @@ const _CMDEIa = "CapacityManagerDataExportIds";
|
|
|
777
780
|
const _CMDER = "CapacityManagerDataExportResponse";
|
|
778
781
|
const _CMDERS = "CapacityManagerDataExportResponseSet";
|
|
779
782
|
const _CMKE = "CustomerManagedKeyEnabled";
|
|
783
|
+
const _CMMTK = "CapacityManagerMonitoredTagKey";
|
|
784
|
+
const _CMMTKL = "CapacityManagerMonitoredTagKeyList";
|
|
785
|
+
const _CMP = "CapacityManagerProvided";
|
|
780
786
|
const _CMPL = "CreateManagedPrefixList";
|
|
781
787
|
const _CMPLR = "CreateManagedPrefixListRequest";
|
|
782
788
|
const _CMPLRr = "CreateManagedPrefixListResult";
|
|
@@ -785,6 +791,9 @@ const _CMSIPMT = "CreateMacSystemIntegrityProtectionModificationTask";
|
|
|
785
791
|
const _CMSIPMTR = "CreateMacSystemIntegrityProtectionModificationTaskRequest";
|
|
786
792
|
const _CMSIPMTRr = "CreateMacSystemIntegrityProtectionModificationTaskResult";
|
|
787
793
|
const _CMSp = "CpuManufacturerSet";
|
|
794
|
+
const _CMTD = "CapacityManagerTagDimension";
|
|
795
|
+
const _CMTDS = "CapacityManagerTagDimensionSet";
|
|
796
|
+
const _CMTK = "CapacityManagerTagKeys";
|
|
788
797
|
const _CMp = "CpuManufacturer";
|
|
789
798
|
const _CN = "CommonName";
|
|
790
799
|
const _CNA = "CoreNetworkArn";
|
|
@@ -2103,6 +2112,8 @@ const _DTIAR = "DescribeTrunkInterfaceAssociationsRequest";
|
|
|
2103
2112
|
const _DTIARe = "DescribeTrunkInterfaceAssociationsResult";
|
|
2104
2113
|
const _DTIR = "DisassociateTrunkInterfaceRequest";
|
|
2105
2114
|
const _DTIRi = "DisassociateTrunkInterfaceResult";
|
|
2115
|
+
const _DTK = "DeactivateTagKeys";
|
|
2116
|
+
const _DTKe = "DeactivateTagKey";
|
|
2106
2117
|
const _DTMF = "DeleteTrafficMirrorFilter";
|
|
2107
2118
|
const _DTMFR = "DeleteTrafficMirrorFilterRequest";
|
|
2108
2119
|
const _DTMFRR = "DeleteTrafficMirrorFilterRuleRequest";
|
|
@@ -2348,8 +2359,8 @@ const _EDH = "EnableDnsHostnames";
|
|
|
2348
2359
|
const _EDP = "EndpointDomainPrefix";
|
|
2349
2360
|
const _EDR = "EndDateRange";
|
|
2350
2361
|
const _EDS = "EnableDnsSupport";
|
|
2351
|
-
const _EDT = "
|
|
2352
|
-
const
|
|
2362
|
+
const _EDT = "EarliestDatapointTimestamp";
|
|
2363
|
+
const _EDTn = "EndDateType";
|
|
2353
2364
|
const _EDVI = "ExcludeDataVolumeIds";
|
|
2354
2365
|
const _EDVIx = "ExcludeDataVolumeId";
|
|
2355
2366
|
const _EDf = "EffectiveDate";
|
|
@@ -2704,6 +2715,9 @@ const _GCMMDRe = "GetCapacityManagerMetricDataResult";
|
|
|
2704
2715
|
const _GCMMDRet = "GetCapacityManagerMetricDimensionsRequest";
|
|
2705
2716
|
const _GCMMDReta = "GetCapacityManagerMetricDimensionsResult";
|
|
2706
2717
|
const _GCMMDe = "GetCapacityManagerMetricDimensions";
|
|
2718
|
+
const _GCMMTK = "GetCapacityManagerMonitoredTagKeys";
|
|
2719
|
+
const _GCMMTKR = "GetCapacityManagerMonitoredTagKeysRequest";
|
|
2720
|
+
const _GCMMTKRe = "GetCapacityManagerMonitoredTagKeysResult";
|
|
2707
2721
|
const _GCO = "GetConsoleOutput";
|
|
2708
2722
|
const _GCOR = "GetConsoleOutputRequest";
|
|
2709
2723
|
const _GCORe = "GetConsoleOutputResult";
|
|
@@ -5602,6 +5616,7 @@ const _TIa = "TargetId";
|
|
|
5602
5616
|
const _TIar = "TargetIops";
|
|
5603
5617
|
const _TIe = "TenantId";
|
|
5604
5618
|
const _TIer = "TerminatingInstances";
|
|
5619
|
+
const _TK = "TagKey";
|
|
5605
5620
|
const _TL = "TagList";
|
|
5606
5621
|
const _TLSGB = "TotalLocalStorageGB";
|
|
5607
5622
|
const _TLSGBR = "TotalLocalStorageGBRequest";
|
|
@@ -5704,6 +5719,9 @@ const _UA = "UpdatedAt";
|
|
|
5704
5719
|
const _UB = "UserBucket";
|
|
5705
5720
|
const _UBD = "UserBucketDetails";
|
|
5706
5721
|
const _UC = "UltraserverCount";
|
|
5722
|
+
const _UCMMTK = "UpdateCapacityManagerMonitoredTagKeys";
|
|
5723
|
+
const _UCMMTKR = "UpdateCapacityManagerMonitoredTagKeysRequest";
|
|
5724
|
+
const _UCMMTKRp = "UpdateCapacityManagerMonitoredTagKeysResult";
|
|
5707
5725
|
const _UCMOA = "UpdateCapacityManagerOrganizationsAccess";
|
|
5708
5726
|
const _UCMOAR = "UpdateCapacityManagerOrganizationsAccessRequest";
|
|
5709
5727
|
const _UCMOARp = "UpdateCapacityManagerOrganizationsAccessResult";
|
|
@@ -6102,6 +6120,7 @@ const _aMS = "acceleratorManufacturerSet";
|
|
|
6102
6120
|
const _aMSp = "applianceModeSupport";
|
|
6103
6121
|
const _aN = "attributeName";
|
|
6104
6122
|
const _aNS = "acceleratorNameSet";
|
|
6123
|
+
const _aNc = "accountName";
|
|
6105
6124
|
const _aO = "authenticationOptions";
|
|
6106
6125
|
const _aOI = "addressOwnerId";
|
|
6107
6126
|
const _aP = "autoPlacement";
|
|
@@ -6315,8 +6334,10 @@ const _cLO = "connectionLogOptions";
|
|
|
6315
6334
|
const _cMDEI = "capacityManagerDataExportId";
|
|
6316
6335
|
const _cMDES = "capacityManagerDataExportSet";
|
|
6317
6336
|
const _cMKE = "customerManagedKeyEnabled";
|
|
6337
|
+
const _cMP = "capacityManagerProvided";
|
|
6318
6338
|
const _cMS = "capacityManagerStatus";
|
|
6319
6339
|
const _cMSp = "cpuManufacturerSet";
|
|
6340
|
+
const _cMTKS = "capacityManagerTagKeySet";
|
|
6320
6341
|
const _cN = "commonName";
|
|
6321
6342
|
const _cNA = "coreNetworkArn";
|
|
6322
6343
|
const _cNAA = "coreNetworkAttachmentArn";
|
|
@@ -6531,8 +6552,8 @@ const _eCx = "explanationCode";
|
|
|
6531
6552
|
const _eD = "endDate";
|
|
6532
6553
|
const _eDH = "enableDnsHostnames";
|
|
6533
6554
|
const _eDS = "enableDnsSupport";
|
|
6534
|
-
const _eDT = "
|
|
6535
|
-
const
|
|
6555
|
+
const _eDT = "earliestDatapointTimestamp";
|
|
6556
|
+
const _eDTn = "endDateType";
|
|
6536
6557
|
const _eDf = "effectiveDate";
|
|
6537
6558
|
const _eDn = "enableDns64";
|
|
6538
6559
|
const _eDnd = "endpointDomain";
|
|
@@ -7900,6 +7921,7 @@ const _tIWE = "terminateInstancesWithExpiration";
|
|
|
7900
7921
|
const _tIa = "targetId";
|
|
7901
7922
|
const _tIar = "targetIops";
|
|
7902
7923
|
const _tIe = "tenantId";
|
|
7924
|
+
const _tK = "tagKey";
|
|
7903
7925
|
const _tLSGB = "totalLocalStorageGB";
|
|
7904
7926
|
const _tLV = "trackLatestVersion";
|
|
7905
7927
|
const _tMAE = "targetMultiAttachEnabled";
|
|
@@ -9445,11 +9467,12 @@ export var CapacityManagerDataExportResponse$ = [3, n0, _CMDER,
|
|
|
9445
9467
|
];
|
|
9446
9468
|
export var CapacityManagerDimension$ = [3, n0, _CMD,
|
|
9447
9469
|
0,
|
|
9448
|
-
[_RR, _AZI, _AIc, _IF, _IT, _IPn, _RAe, _RIe, _RT, _RCT, _RST, _RET, _REDT, _Te, _RSe, _RIMC, _RUFO],
|
|
9470
|
+
[_RR, _AZI, _AIc, _ANc, _IF, _IT, _IPn, _RAe, _RIe, _RT, _RCT, _RST, _RET, _REDT, _Te, _RSe, _RIMC, _RUFO, _T],
|
|
9449
9471
|
[[0, { [_eQN]: `ResourceRegion`,
|
|
9450
9472
|
[_xN]: _rR }], [0, { [_eQN]: `AvailabilityZoneId`,
|
|
9451
9473
|
[_xN]: _aZI }], [0, { [_eQN]: `AccountId`,
|
|
9452
|
-
[_xN]: _aIc }], [0, { [_eQN]: `
|
|
9474
|
+
[_xN]: _aIc }], [0, { [_eQN]: `AccountName`,
|
|
9475
|
+
[_xN]: _aNc }], [0, { [_eQN]: `InstanceFamily`,
|
|
9453
9476
|
[_xN]: _iF }], [0, { [_eQN]: `InstanceType`,
|
|
9454
9477
|
[_xN]: _iT }], [0, { [_eQN]: `InstancePlatform`,
|
|
9455
9478
|
[_xN]: _iPn }], [0, { [_eQN]: `ReservationArn`,
|
|
@@ -9463,11 +9486,29 @@ export var CapacityManagerDimension$ = [3, n0, _CMD,
|
|
|
9463
9486
|
[_xN]: _t }], [0, { [_eQN]: `ReservationState`,
|
|
9464
9487
|
[_xN]: _rS }], [0, { [_eQN]: `ReservationInstanceMatchCriteria`,
|
|
9465
9488
|
[_xN]: _rIMC }], [0, { [_eQN]: `ReservationUnusedFinancialOwner`,
|
|
9466
|
-
[_xN]: _rUFO }]]
|
|
9489
|
+
[_xN]: _rUFO }], [() => CapacityManagerTagDimensionSet, { [_eQN]: `TagSet`,
|
|
9490
|
+
[_xN]: _tS }]]
|
|
9491
|
+
];
|
|
9492
|
+
export var CapacityManagerMonitoredTagKey$ = [3, n0, _CMMTK,
|
|
9493
|
+
0,
|
|
9494
|
+
[_TK, _Sta, _SMt, _CMP, _EDT],
|
|
9495
|
+
[[0, { [_eQN]: `TagKey`,
|
|
9496
|
+
[_xN]: _tK }], [0, { [_eQN]: `Status`,
|
|
9497
|
+
[_xN]: _sta }], [0, { [_eQN]: `StatusMessage`,
|
|
9498
|
+
[_xN]: _sMt }], [2, { [_eQN]: `CapacityManagerProvided`,
|
|
9499
|
+
[_xN]: _cMP }], [4, { [_eQN]: `EarliestDatapointTimestamp`,
|
|
9500
|
+
[_xN]: _eDT }]]
|
|
9501
|
+
];
|
|
9502
|
+
export var CapacityManagerTagDimension$ = [3, n0, _CMTD,
|
|
9503
|
+
0,
|
|
9504
|
+
[_K, _V],
|
|
9505
|
+
[[0, { [_eQN]: `Key`,
|
|
9506
|
+
[_xN]: _k }], [0, { [_eQN]: `Value`,
|
|
9507
|
+
[_xN]: _v }]]
|
|
9467
9508
|
];
|
|
9468
9509
|
export var CapacityReservation$ = [3, n0, _CRa,
|
|
9469
9510
|
0,
|
|
9470
|
-
[_CRI, _OI, _CRA, _AZI, _IT, _IPn, _AZ, _Te, _TIC, _AICv, _EO, _ES, _St, _SD, _ED,
|
|
9511
|
+
[_CRI, _OI, _CRA, _AZI, _IT, _IPn, _AZ, _Te, _TIC, _AICv, _EO, _ES, _St, _SD, _ED, _EDTn, _IMC, _CD, _T, _OA, _CRFIa, _PGA, _CAap, _RT, _URBOI, _CIom, _DP, _CBI, _Int, _ICA, _IIn],
|
|
9471
9512
|
[[0, { [_eQN]: `CapacityReservationId`,
|
|
9472
9513
|
[_xN]: _cRI }], [0, { [_eQN]: `OwnerId`,
|
|
9473
9514
|
[_xN]: _oI }], [0, { [_eQN]: `CapacityReservationArn`,
|
|
@@ -9484,7 +9525,7 @@ export var CapacityReservation$ = [3, n0, _CRa,
|
|
|
9484
9525
|
[_xN]: _st }], [4, { [_eQN]: `StartDate`,
|
|
9485
9526
|
[_xN]: _sD }], [4, { [_eQN]: `EndDate`,
|
|
9486
9527
|
[_xN]: _eD }], [0, { [_eQN]: `EndDateType`,
|
|
9487
|
-
[_xN]:
|
|
9528
|
+
[_xN]: _eDTn }], [0, { [_eQN]: `InstanceMatchCriteria`,
|
|
9488
9529
|
[_xN]: _iMC }], [4, { [_eQN]: `CreateDate`,
|
|
9489
9530
|
[_xN]: _cD }], [() => TagList, { [_eQN]: `TagSet`,
|
|
9490
9531
|
[_xN]: _tS }], [0, { [_eQN]: `OutpostArn`,
|
|
@@ -10084,7 +10125,7 @@ export var CreateCapacityReservationFleetResult$ = [3, n0, _CCRFRre,
|
|
|
10084
10125
|
];
|
|
10085
10126
|
export var CreateCapacityReservationRequest$ = [3, n0, _CCRRr,
|
|
10086
10127
|
0,
|
|
10087
|
-
[_IT, _IPn, _IC, _CT, _AZ, _AZI, _Te, _EO, _ES, _ED,
|
|
10128
|
+
[_IT, _IPn, _IC, _CT, _AZ, _AZI, _Te, _EO, _ES, _ED, _EDTn, _IMC, _TS, _DR, _OA, _PGA, _SD, _CDo, _DP],
|
|
10088
10129
|
[0, 0, 1, 0, 0, 0, 0, 2, 2, 4, 0, 0, [() => TagSpecificationList, 0], 2, 0, 0, 4, 1, 0], 3
|
|
10089
10130
|
];
|
|
10090
10131
|
export var CreateCapacityReservationResult$ = [3, n0, _CCRRre,
|
|
@@ -16596,14 +16637,14 @@ export var GetCapacityManagerAttributesRequest$ = [3, n0, _GCMAR,
|
|
|
16596
16637
|
];
|
|
16597
16638
|
export var GetCapacityManagerAttributesResult$ = [3, n0, _GCMARe,
|
|
16598
16639
|
0,
|
|
16599
|
-
[_CMS, _OAr, _DEC, _ISng, _ISM,
|
|
16640
|
+
[_CMS, _OAr, _DEC, _ISng, _ISM, _EDT, _LDTa],
|
|
16600
16641
|
[[0, { [_eQN]: `CapacityManagerStatus`,
|
|
16601
16642
|
[_xN]: _cMS }], [2, { [_eQN]: `OrganizationsAccess`,
|
|
16602
16643
|
[_xN]: _oAr }], [1, { [_eQN]: `DataExportCount`,
|
|
16603
16644
|
[_xN]: _dEC }], [0, { [_eQN]: `IngestionStatus`,
|
|
16604
16645
|
[_xN]: _iSng }], [0, { [_eQN]: `IngestionStatusMessage`,
|
|
16605
16646
|
[_xN]: _iSM }], [4, { [_eQN]: `EarliestDatapointTimestamp`,
|
|
16606
|
-
[_xN]:
|
|
16647
|
+
[_xN]: _eDT }], [4, { [_eQN]: `LatestDatapointTimestamp`,
|
|
16607
16648
|
[_xN]: _lDTa }]]
|
|
16608
16649
|
];
|
|
16609
16650
|
export var GetCapacityManagerMetricDataRequest$ = [3, n0, _GCMMDR,
|
|
@@ -16630,6 +16671,18 @@ export var GetCapacityManagerMetricDimensionsResult$ = [3, n0, _GCMMDReta,
|
|
|
16630
16671
|
[_xN]: _mDRSe }], [0, { [_eQN]: `NextToken`,
|
|
16631
16672
|
[_xN]: _nTe }]]
|
|
16632
16673
|
];
|
|
16674
|
+
export var GetCapacityManagerMonitoredTagKeysRequest$ = [3, n0, _GCMMTKR,
|
|
16675
|
+
0,
|
|
16676
|
+
[_MR, _NTe, _DR],
|
|
16677
|
+
[1, 0, 2]
|
|
16678
|
+
];
|
|
16679
|
+
export var GetCapacityManagerMonitoredTagKeysResult$ = [3, n0, _GCMMTKRe,
|
|
16680
|
+
0,
|
|
16681
|
+
[_CMTK, _NTe],
|
|
16682
|
+
[[() => CapacityManagerMonitoredTagKeyList, { [_eQN]: `CapacityManagerTagKeySet`,
|
|
16683
|
+
[_xN]: _cMTKS }], [0, { [_eQN]: `NextToken`,
|
|
16684
|
+
[_xN]: _nTe }]]
|
|
16685
|
+
];
|
|
16633
16686
|
export var GetCapacityReservationUsageRequest$ = [3, n0, _GCRUR,
|
|
16634
16687
|
0,
|
|
16635
16688
|
[_CRI, _NTe, _MR, _DR],
|
|
@@ -18355,7 +18408,7 @@ export var InstancePrivateIpAddress$ = [3, n0, _IPIA,
|
|
|
18355
18408
|
];
|
|
18356
18409
|
export var InstanceRequirements$ = [3, n0, _IRn,
|
|
18357
18410
|
0,
|
|
18358
|
-
[_VCC, _MMB, _CM, _MGBPVC, _EITxc, _IGns, _SMPPOLP, _ODMPPOLP, _BMa, _BP, _RHS, _NIC, _LSo, _LST, _TLSGB, _BEBM, _ATc, _AC, _AMc,
|
|
18411
|
+
[_VCC, _MMB, _CM, _MGBPVC, _EITxc, _IGns, _SMPPOLP, _ODMPPOLP, _BMa, _BP, _RHS, _NIC, _LSo, _LST, _TLSGB, _BEBM, _ATc, _AC, _AMc, _ANcc, _ATMMB, _NBGe, _AIT, _MSPAPOOODP, _BPF, _REIT],
|
|
18359
18412
|
[[() => VCpuCountRange$, { [_eQN]: `VCpuCount`,
|
|
18360
18413
|
[_xN]: _vCC }], [() => MemoryMiB$, { [_eQN]: `MemoryMiB`,
|
|
18361
18414
|
[_xN]: _mMB }], [() => CpuManufacturerSet, { [_eQN]: `CpuManufacturerSet`,
|
|
@@ -18386,8 +18439,8 @@ export var InstanceRequirements$ = [3, n0, _IRn,
|
|
|
18386
18439
|
];
|
|
18387
18440
|
export var InstanceRequirementsRequest$ = [3, n0, _IRR,
|
|
18388
18441
|
0,
|
|
18389
|
-
[_VCC, _MMB, _CM, _MGBPVC, _EITxc, _IGns, _SMPPOLP, _ODMPPOLP, _BMa, _BP, _RHS, _NIC, _LSo, _LST, _TLSGB, _BEBM, _ATc, _AC, _AMc,
|
|
18390
|
-
[() => VCpuCountRangeRequest$, () => MemoryMiBRequest$, [() => CpuManufacturerSet, { [_xN]: _CMp }], () => MemoryGiBPerVCpuRequest$, [() => ExcludedInstanceTypeSet, { [_xN]: _EITxcl }], [() => InstanceGenerationSet, { [_xN]: _IGnst }], 1, 1, 0, 0, 2, () => NetworkInterfaceCountRequest$, 0, [() => LocalStorageTypeSet, { [_xN]: _LSTo }], () => TotalLocalStorageGBRequest$, () => BaselineEbsBandwidthMbpsRequest$, [() => AcceleratorTypeSet, { [_xN]: _ATcc }], () => AcceleratorCountRequest$, [() => AcceleratorManufacturerSet, { [_xN]: _AMcc }], [() => AcceleratorNameSet, { [_xN]:
|
|
18442
|
+
[_VCC, _MMB, _CM, _MGBPVC, _EITxc, _IGns, _SMPPOLP, _ODMPPOLP, _BMa, _BP, _RHS, _NIC, _LSo, _LST, _TLSGB, _BEBM, _ATc, _AC, _AMc, _ANcc, _ATMMB, _NBGe, _AIT, _MSPAPOOODP, _BPF, _REIT],
|
|
18443
|
+
[() => VCpuCountRangeRequest$, () => MemoryMiBRequest$, [() => CpuManufacturerSet, { [_xN]: _CMp }], () => MemoryGiBPerVCpuRequest$, [() => ExcludedInstanceTypeSet, { [_xN]: _EITxcl }], [() => InstanceGenerationSet, { [_xN]: _IGnst }], 1, 1, 0, 0, 2, () => NetworkInterfaceCountRequest$, 0, [() => LocalStorageTypeSet, { [_xN]: _LSTo }], () => TotalLocalStorageGBRequest$, () => BaselineEbsBandwidthMbpsRequest$, [() => AcceleratorTypeSet, { [_xN]: _ATcc }], () => AcceleratorCountRequest$, [() => AcceleratorManufacturerSet, { [_xN]: _AMcc }], [() => AcceleratorNameSet, { [_xN]: _ANcce }], () => AcceleratorTotalMemoryMiBRequest$, () => NetworkBandwidthGbpsRequest$, [() => AllowedInstanceTypeSet, { [_xN]: _AITl }], 1, [() => BaselinePerformanceFactorsRequest$, 0], 2], 2
|
|
18391
18444
|
];
|
|
18392
18445
|
export var InstanceRequirementsWithMetadataRequest$ = [3, n0, _IRWMR,
|
|
18393
18446
|
0,
|
|
@@ -19924,7 +19977,7 @@ export var ModifyCapacityReservationFleetResult$ = [3, n0, _MCRFRo,
|
|
|
19924
19977
|
];
|
|
19925
19978
|
export var ModifyCapacityReservationRequest$ = [3, n0, _MCRR,
|
|
19926
19979
|
0,
|
|
19927
|
-
[_CRI, _IC, _ED,
|
|
19980
|
+
[_CRI, _IC, _ED, _EDTn, _Acce, _DR, _AId, _IMC],
|
|
19928
19981
|
[0, 1, 4, 0, 2, 2, 0, 0], 1
|
|
19929
19982
|
];
|
|
19930
19983
|
export var ModifyCapacityReservationResult$ = [3, n0, _MCRRo,
|
|
@@ -24592,6 +24645,17 @@ export var UnsuccessfulItemError$ = [3, n0, _UIEn,
|
|
|
24592
24645
|
[_xN]: _co }], [0, { [_eQN]: `Message`,
|
|
24593
24646
|
[_xN]: _me }]]
|
|
24594
24647
|
];
|
|
24648
|
+
export var UpdateCapacityManagerMonitoredTagKeysRequest$ = [3, n0, _UCMMTKR,
|
|
24649
|
+
0,
|
|
24650
|
+
[_ATK, _DTK, _DR, _CT],
|
|
24651
|
+
[[() => ValueStringList, { [_xN]: _ATKc }], [() => ValueStringList, { [_xN]: _DTKe }], 2, [0, 4]]
|
|
24652
|
+
];
|
|
24653
|
+
export var UpdateCapacityManagerMonitoredTagKeysResult$ = [3, n0, _UCMMTKRp,
|
|
24654
|
+
0,
|
|
24655
|
+
[_CMTK],
|
|
24656
|
+
[[() => CapacityManagerMonitoredTagKeyList, { [_eQN]: `CapacityManagerTagKeySet`,
|
|
24657
|
+
[_xN]: _cMTKS }]]
|
|
24658
|
+
];
|
|
24595
24659
|
export var UpdateCapacityManagerOrganizationsAccessRequest$ = [3, n0, _UCMOAR,
|
|
24596
24660
|
0,
|
|
24597
24661
|
[_OAr, _DR, _CT],
|
|
@@ -25741,6 +25805,14 @@ var CapacityManagerDataExportResponseSet = [1, n0, _CMDERS,
|
|
|
25741
25805
|
0, [() => CapacityManagerDataExportResponse$,
|
|
25742
25806
|
{ [_xN]: _it }]
|
|
25743
25807
|
];
|
|
25808
|
+
var CapacityManagerMonitoredTagKeyList = [1, n0, _CMMTKL,
|
|
25809
|
+
0, [() => CapacityManagerMonitoredTagKey$,
|
|
25810
|
+
{ [_xN]: _it }]
|
|
25811
|
+
];
|
|
25812
|
+
var CapacityManagerTagDimensionSet = [1, n0, _CMTDS,
|
|
25813
|
+
0, [() => CapacityManagerTagDimension$,
|
|
25814
|
+
{ [_xN]: _it }]
|
|
25815
|
+
];
|
|
25744
25816
|
var CapacityReservationBillingRequestSet = [1, n0, _CRBRS,
|
|
25745
25817
|
0, [() => CapacityReservationBillingRequest$,
|
|
25746
25818
|
{ [_xN]: _it }]
|
|
@@ -29911,6 +29983,9 @@ export var GetCapacityManagerMetricData$ = [9, n0, _GCMMD,
|
|
|
29911
29983
|
export var GetCapacityManagerMetricDimensions$ = [9, n0, _GCMMDe,
|
|
29912
29984
|
0, () => GetCapacityManagerMetricDimensionsRequest$, () => GetCapacityManagerMetricDimensionsResult$
|
|
29913
29985
|
];
|
|
29986
|
+
export var GetCapacityManagerMonitoredTagKeys$ = [9, n0, _GCMMTK,
|
|
29987
|
+
0, () => GetCapacityManagerMonitoredTagKeysRequest$, () => GetCapacityManagerMonitoredTagKeysResult$
|
|
29988
|
+
];
|
|
29914
29989
|
export var GetCapacityReservationUsage$ = [9, n0, _GCRU,
|
|
29915
29990
|
0, () => GetCapacityReservationUsageRequest$, () => GetCapacityReservationUsageResult$
|
|
29916
29991
|
];
|
|
@@ -30571,6 +30646,9 @@ export var UnlockSnapshot$ = [9, n0, _USn,
|
|
|
30571
30646
|
export var UnmonitorInstances$ = [9, n0, _UInm,
|
|
30572
30647
|
0, () => UnmonitorInstancesRequest$, () => UnmonitorInstancesResult$
|
|
30573
30648
|
];
|
|
30649
|
+
export var UpdateCapacityManagerMonitoredTagKeys$ = [9, n0, _UCMMTK,
|
|
30650
|
+
0, () => UpdateCapacityManagerMonitoredTagKeysRequest$, () => UpdateCapacityManagerMonitoredTagKeysResult$
|
|
30651
|
+
];
|
|
30574
30652
|
export var UpdateCapacityManagerOrganizationsAccess$ = [9, n0, _UCMOA,
|
|
30575
30653
|
0, () => UpdateCapacityManagerOrganizationsAccessRequest$, () => UpdateCapacityManagerOrganizationsAccessResult$
|
|
30576
30654
|
];
|
|
@@ -531,6 +531,7 @@ import { type GetAwsNetworkPerformanceDataCommandInput, type GetAwsNetworkPerfor
|
|
|
531
531
|
import { type GetCapacityManagerAttributesCommandInput, type GetCapacityManagerAttributesCommandOutput } from "./commands/GetCapacityManagerAttributesCommand";
|
|
532
532
|
import { type GetCapacityManagerMetricDataCommandInput, type GetCapacityManagerMetricDataCommandOutput } from "./commands/GetCapacityManagerMetricDataCommand";
|
|
533
533
|
import { type GetCapacityManagerMetricDimensionsCommandInput, type GetCapacityManagerMetricDimensionsCommandOutput } from "./commands/GetCapacityManagerMetricDimensionsCommand";
|
|
534
|
+
import { type GetCapacityManagerMonitoredTagKeysCommandInput, type GetCapacityManagerMonitoredTagKeysCommandOutput } from "./commands/GetCapacityManagerMonitoredTagKeysCommand";
|
|
534
535
|
import { type GetCapacityReservationUsageCommandInput, type GetCapacityReservationUsageCommandOutput } from "./commands/GetCapacityReservationUsageCommand";
|
|
535
536
|
import { type GetCoipPoolUsageCommandInput, type GetCoipPoolUsageCommandOutput } from "./commands/GetCoipPoolUsageCommand";
|
|
536
537
|
import { type GetConsoleOutputCommandInput, type GetConsoleOutputCommandOutput } from "./commands/GetConsoleOutputCommand";
|
|
@@ -751,6 +752,7 @@ import { type UnassignPrivateIpAddressesCommandInput, type UnassignPrivateIpAddr
|
|
|
751
752
|
import { type UnassignPrivateNatGatewayAddressCommandInput, type UnassignPrivateNatGatewayAddressCommandOutput } from "./commands/UnassignPrivateNatGatewayAddressCommand";
|
|
752
753
|
import { type UnlockSnapshotCommandInput, type UnlockSnapshotCommandOutput } from "./commands/UnlockSnapshotCommand";
|
|
753
754
|
import { type UnmonitorInstancesCommandInput, type UnmonitorInstancesCommandOutput } from "./commands/UnmonitorInstancesCommand";
|
|
755
|
+
import { type UpdateCapacityManagerMonitoredTagKeysCommandInput, type UpdateCapacityManagerMonitoredTagKeysCommandOutput } from "./commands/UpdateCapacityManagerMonitoredTagKeysCommand";
|
|
754
756
|
import { type UpdateCapacityManagerOrganizationsAccessCommandInput, type UpdateCapacityManagerOrganizationsAccessCommandOutput } from "./commands/UpdateCapacityManagerOrganizationsAccessCommand";
|
|
755
757
|
import { type UpdateInterruptibleCapacityReservationAllocationCommandInput, type UpdateInterruptibleCapacityReservationAllocationCommandOutput } from "./commands/UpdateInterruptibleCapacityReservationAllocationCommand";
|
|
756
758
|
import { type UpdateSecurityGroupRuleDescriptionsEgressCommandInput, type UpdateSecurityGroupRuleDescriptionsEgressCommandOutput } from "./commands/UpdateSecurityGroupRuleDescriptionsEgressCommand";
|
|
@@ -4150,6 +4152,13 @@ export interface EC2 {
|
|
|
4150
4152
|
getCapacityManagerMetricDimensions(args: GetCapacityManagerMetricDimensionsCommandInput, options?: __HttpHandlerOptions): Promise<GetCapacityManagerMetricDimensionsCommandOutput>;
|
|
4151
4153
|
getCapacityManagerMetricDimensions(args: GetCapacityManagerMetricDimensionsCommandInput, cb: (err: any, data?: GetCapacityManagerMetricDimensionsCommandOutput) => void): void;
|
|
4152
4154
|
getCapacityManagerMetricDimensions(args: GetCapacityManagerMetricDimensionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCapacityManagerMetricDimensionsCommandOutput) => void): void;
|
|
4155
|
+
/**
|
|
4156
|
+
* @see {@link GetCapacityManagerMonitoredTagKeysCommand}
|
|
4157
|
+
*/
|
|
4158
|
+
getCapacityManagerMonitoredTagKeys(): Promise<GetCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
4159
|
+
getCapacityManagerMonitoredTagKeys(args: GetCapacityManagerMonitoredTagKeysCommandInput, options?: __HttpHandlerOptions): Promise<GetCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
4160
|
+
getCapacityManagerMonitoredTagKeys(args: GetCapacityManagerMonitoredTagKeysCommandInput, cb: (err: any, data?: GetCapacityManagerMonitoredTagKeysCommandOutput) => void): void;
|
|
4161
|
+
getCapacityManagerMonitoredTagKeys(args: GetCapacityManagerMonitoredTagKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCapacityManagerMonitoredTagKeysCommandOutput) => void): void;
|
|
4153
4162
|
/**
|
|
4154
4163
|
* @see {@link GetCapacityReservationUsageCommand}
|
|
4155
4164
|
*/
|
|
@@ -5491,6 +5500,13 @@ export interface EC2 {
|
|
|
5491
5500
|
unmonitorInstances(args: UnmonitorInstancesCommandInput, options?: __HttpHandlerOptions): Promise<UnmonitorInstancesCommandOutput>;
|
|
5492
5501
|
unmonitorInstances(args: UnmonitorInstancesCommandInput, cb: (err: any, data?: UnmonitorInstancesCommandOutput) => void): void;
|
|
5493
5502
|
unmonitorInstances(args: UnmonitorInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnmonitorInstancesCommandOutput) => void): void;
|
|
5503
|
+
/**
|
|
5504
|
+
* @see {@link UpdateCapacityManagerMonitoredTagKeysCommand}
|
|
5505
|
+
*/
|
|
5506
|
+
updateCapacityManagerMonitoredTagKeys(): Promise<UpdateCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
5507
|
+
updateCapacityManagerMonitoredTagKeys(args: UpdateCapacityManagerMonitoredTagKeysCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
5508
|
+
updateCapacityManagerMonitoredTagKeys(args: UpdateCapacityManagerMonitoredTagKeysCommandInput, cb: (err: any, data?: UpdateCapacityManagerMonitoredTagKeysCommandOutput) => void): void;
|
|
5509
|
+
updateCapacityManagerMonitoredTagKeys(args: UpdateCapacityManagerMonitoredTagKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCapacityManagerMonitoredTagKeysCommandOutput) => void): void;
|
|
5494
5510
|
/**
|
|
5495
5511
|
* @see {@link UpdateCapacityManagerOrganizationsAccessCommand}
|
|
5496
5512
|
*/
|
|
@@ -6496,6 +6512,13 @@ export interface EC2 {
|
|
|
6496
6512
|
* @returns AsyncIterable of {@link GetCapacityManagerMetricDimensionsCommandOutput}.
|
|
6497
6513
|
*/
|
|
6498
6514
|
paginateGetCapacityManagerMetricDimensions(args: GetCapacityManagerMetricDimensionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCapacityManagerMetricDimensionsCommandOutput>;
|
|
6515
|
+
/**
|
|
6516
|
+
* @see {@link GetCapacityManagerMonitoredTagKeysCommand}
|
|
6517
|
+
* @param args - command input.
|
|
6518
|
+
* @param paginationConfig - optional pagination config.
|
|
6519
|
+
* @returns AsyncIterable of {@link GetCapacityManagerMonitoredTagKeysCommandOutput}.
|
|
6520
|
+
*/
|
|
6521
|
+
paginateGetCapacityManagerMonitoredTagKeys(args?: GetCapacityManagerMonitoredTagKeysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
6499
6522
|
/**
|
|
6500
6523
|
* @see {@link GetGroupsForCapacityReservationCommand}
|
|
6501
6524
|
* @param args - command input.
|