@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
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client";
|
|
4
|
+
import type { UpdateCapacityManagerMonitoredTagKeysRequest, UpdateCapacityManagerMonitoredTagKeysResult } from "../models/models_7";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateCapacityManagerMonitoredTagKeysCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateCapacityManagerMonitoredTagKeysCommandInput extends UpdateCapacityManagerMonitoredTagKeysRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateCapacityManagerMonitoredTagKeysCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateCapacityManagerMonitoredTagKeysCommandOutput extends UpdateCapacityManagerMonitoredTagKeysResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateCapacityManagerMonitoredTagKeysCommand_base: {
|
|
25
|
+
new (input: UpdateCapacityManagerMonitoredTagKeysCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCapacityManagerMonitoredTagKeysCommandInput, UpdateCapacityManagerMonitoredTagKeysCommandOutput, EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [UpdateCapacityManagerMonitoredTagKeysCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdateCapacityManagerMonitoredTagKeysCommandInput, UpdateCapacityManagerMonitoredTagKeysCommandOutput, EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>
|
|
31
|
+
* Activates or deactivates tag keys for monitoring by EC2 Capacity Manager. Activated tag keys are included as dimensions in capacity metric data, enabling you to group and filter metrics by tag values.
|
|
32
|
+
* </p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { EC2Client, UpdateCapacityManagerMonitoredTagKeysCommand } from "@aws-sdk/client-ec2"; // ES Modules import
|
|
37
|
+
* // const { EC2Client, UpdateCapacityManagerMonitoredTagKeysCommand } = require("@aws-sdk/client-ec2"); // CommonJS import
|
|
38
|
+
* // import type { EC2ClientConfig } from "@aws-sdk/client-ec2";
|
|
39
|
+
* const config = {}; // type is EC2ClientConfig
|
|
40
|
+
* const client = new EC2Client(config);
|
|
41
|
+
* const input = { // UpdateCapacityManagerMonitoredTagKeysRequest
|
|
42
|
+
* ActivateTagKeys: [ // ValueStringList
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* DeactivateTagKeys: [
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* DryRun: true || false,
|
|
49
|
+
* ClientToken: "STRING_VALUE",
|
|
50
|
+
* };
|
|
51
|
+
* const command = new UpdateCapacityManagerMonitoredTagKeysCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // UpdateCapacityManagerMonitoredTagKeysResult
|
|
54
|
+
* // CapacityManagerTagKeys: [ // CapacityManagerMonitoredTagKeyList
|
|
55
|
+
* // { // CapacityManagerMonitoredTagKey
|
|
56
|
+
* // TagKey: "STRING_VALUE",
|
|
57
|
+
* // Status: "activating" || "activated" || "deactivating" || "suspended",
|
|
58
|
+
* // StatusMessage: "STRING_VALUE",
|
|
59
|
+
* // CapacityManagerProvided: true || false,
|
|
60
|
+
* // EarliestDatapointTimestamp: new Date("TIMESTAMP"),
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param UpdateCapacityManagerMonitoredTagKeysCommandInput - {@link UpdateCapacityManagerMonitoredTagKeysCommandInput}
|
|
68
|
+
* @returns {@link UpdateCapacityManagerMonitoredTagKeysCommandOutput}
|
|
69
|
+
* @see {@link UpdateCapacityManagerMonitoredTagKeysCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link UpdateCapacityManagerMonitoredTagKeysCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link EC2ServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from EC2 service.</p>
|
|
75
|
+
*
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class UpdateCapacityManagerMonitoredTagKeysCommand extends UpdateCapacityManagerMonitoredTagKeysCommand_base {
|
|
80
|
+
/** @internal type navigation helper, not in runtime. */
|
|
81
|
+
protected static __types: {
|
|
82
|
+
api: {
|
|
83
|
+
input: UpdateCapacityManagerMonitoredTagKeysRequest;
|
|
84
|
+
output: UpdateCapacityManagerMonitoredTagKeysResult;
|
|
85
|
+
};
|
|
86
|
+
sdk: {
|
|
87
|
+
input: UpdateCapacityManagerMonitoredTagKeysCommandInput;
|
|
88
|
+
output: UpdateCapacityManagerMonitoredTagKeysCommandOutput;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
}
|
|
@@ -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";
|
|
@@ -6741,6 +6741,7 @@ export type Comparison = (typeof Comparison)[keyof typeof Comparison];
|
|
|
6741
6741
|
*/
|
|
6742
6742
|
export declare const FilterByDimension: {
|
|
6743
6743
|
readonly ACCOUNT_ID: "account-id";
|
|
6744
|
+
readonly ACCOUNT_NAME: "account-name";
|
|
6744
6745
|
readonly AVAILABILITY_ZONE_ID: "availability-zone-id";
|
|
6745
6746
|
readonly INSTANCE_FAMILY: "instance-family";
|
|
6746
6747
|
readonly INSTANCE_PLATFORM: "instance-platform";
|
|
@@ -6768,6 +6769,7 @@ export type FilterByDimension = (typeof FilterByDimension)[keyof typeof FilterBy
|
|
|
6768
6769
|
*/
|
|
6769
6770
|
export declare const GroupBy: {
|
|
6770
6771
|
readonly ACCOUNT_ID: "account-id";
|
|
6772
|
+
readonly ACCOUNT_NAME: "account-name";
|
|
6771
6773
|
readonly AVAILABILITY_ZONE_ID: "availability-zone-id";
|
|
6772
6774
|
readonly INSTANCE_FAMILY: "instance-family";
|
|
6773
6775
|
readonly INSTANCE_PLATFORM: "instance-platform";
|
|
@@ -6884,6 +6886,20 @@ export declare const CapacityTenancy: {
|
|
|
6884
6886
|
* @public
|
|
6885
6887
|
*/
|
|
6886
6888
|
export type CapacityTenancy = (typeof CapacityTenancy)[keyof typeof CapacityTenancy];
|
|
6889
|
+
/**
|
|
6890
|
+
* @public
|
|
6891
|
+
* @enum
|
|
6892
|
+
*/
|
|
6893
|
+
export declare const CapacityManagerMonitoredTagKeyStatus: {
|
|
6894
|
+
readonly ACTIVATED: "activated";
|
|
6895
|
+
readonly ACTIVATING: "activating";
|
|
6896
|
+
readonly DEACTIVATING: "deactivating";
|
|
6897
|
+
readonly SUSPENDED: "suspended";
|
|
6898
|
+
};
|
|
6899
|
+
/**
|
|
6900
|
+
* @public
|
|
6901
|
+
*/
|
|
6902
|
+
export type CapacityManagerMonitoredTagKeyStatus = (typeof CapacityManagerMonitoredTagKeyStatus)[keyof typeof CapacityManagerMonitoredTagKeyStatus];
|
|
6887
6903
|
/**
|
|
6888
6904
|
* @public
|
|
6889
6905
|
* @enum
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AllowedImagesSettingsDisabledState, AllowedImagesSettingsEnabledState, CapacityManagerStatus, CapacityReservationState, CapacityTenancy, ClientCertificateRevocationListStatusCode, Comparison, DeviceTrustProviderType, DiskImageFormat, DnsNameState, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FilterByDimension, GroupBy, ImageBlockPublicAccessDisabledState, ImageBlockPublicAccessEnabledState, IngestionStatus, InitializationType, InternetGatewayBlockMode, IpAddressType, ManagedBy, Metric, MetricType, PayerResponsibility, PeriodType, ReservationEndDateType, ReservationState, ReservationType, RouteServerPropagationState, SecurityGroupVpcAssociationState, ServiceConnectivityType, SnapshotBlockPublicAccessState, State, StatisticType, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPropagationState, UserTrustProviderType, VerifiedAccessLogDeliveryStatusCode, VolumeAttributeName, VolumeModificationState, VolumeStatusInfoStatus, VolumeStatusName, VolumeType, VpcAttributeName, VpcBlockPublicAccessExclusionsAllowed, VpcBlockPublicAccessState } from "./enums";
|
|
1
|
+
import type { AllowedImagesSettingsDisabledState, AllowedImagesSettingsEnabledState, CapacityManagerMonitoredTagKeyStatus, CapacityManagerStatus, CapacityReservationState, CapacityTenancy, ClientCertificateRevocationListStatusCode, Comparison, DeviceTrustProviderType, DiskImageFormat, DnsNameState, FastLaunchResourceType, FastLaunchStateCode, FastSnapshotRestoreStateCode, FilterByDimension, GroupBy, ImageBlockPublicAccessDisabledState, ImageBlockPublicAccessEnabledState, IngestionStatus, InitializationType, InternetGatewayBlockMode, IpAddressType, ManagedBy, Metric, MetricType, PayerResponsibility, PeriodType, ReservationEndDateType, ReservationState, ReservationType, RouteServerPropagationState, SecurityGroupVpcAssociationState, ServiceConnectivityType, SnapshotBlockPublicAccessState, State, StatisticType, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPropagationState, UserTrustProviderType, VerifiedAccessLogDeliveryStatusCode, VolumeAttributeName, VolumeModificationState, VolumeStatusInfoStatus, VolumeStatusName, VolumeType, VpcAttributeName, VpcBlockPublicAccessExclusionsAllowed, VpcBlockPublicAccessState } from "./enums";
|
|
2
2
|
import type { ActiveVpnTunnelStatus, AddressTransfer, AllowedPrincipal, AsnAssociation, AssociationStatus, IamInstanceProfileAssociation, InstanceEventWindow, InterruptibleCapacityAllocation, InterruptionInfo, IpamResourceDiscoveryAssociation, NatGatewayAddress, RouteServerAssociation, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, TransitGatewayAssociation, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayPolicyTableAssociation, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, VerifiedAccessInstance, VerifiedAccessTrustProvider, Volume, Vpc, VpcCidrBlockAssociation, VpcEncryptionControl, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
|
|
3
3
|
import type { ConnectionNotification, DnsEntry, ServiceConfiguration, ServiceTypeDetail, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMeteringPolicy, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, VpcBlockPublicAccessExclusion, VpcEndpoint, VpnConcentrator, VpnConnection, VpnGateway } from "./models_2";
|
|
4
4
|
import type { AttributeBooleanValue, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchSnapshotConfigurationResponse, Filter, ProductCode } from "./models_3";
|
|
@@ -7377,6 +7377,28 @@ export interface GetCapacityManagerMetricDataRequest {
|
|
|
7377
7377
|
*/
|
|
7378
7378
|
DryRun?: boolean | undefined;
|
|
7379
7379
|
}
|
|
7380
|
+
/**
|
|
7381
|
+
* <p>
|
|
7382
|
+
* A key-value pair representing a tag associated with a capacity resource in Capacity Manager.
|
|
7383
|
+
* </p>
|
|
7384
|
+
* @public
|
|
7385
|
+
*/
|
|
7386
|
+
export interface CapacityManagerTagDimension {
|
|
7387
|
+
/**
|
|
7388
|
+
* <p>
|
|
7389
|
+
* The tag key.
|
|
7390
|
+
* </p>
|
|
7391
|
+
* @public
|
|
7392
|
+
*/
|
|
7393
|
+
Key?: string | undefined;
|
|
7394
|
+
/**
|
|
7395
|
+
* <p>
|
|
7396
|
+
* The tag value.
|
|
7397
|
+
* </p>
|
|
7398
|
+
* @public
|
|
7399
|
+
*/
|
|
7400
|
+
Value?: string | undefined;
|
|
7401
|
+
}
|
|
7380
7402
|
/**
|
|
7381
7403
|
* <p>
|
|
7382
7404
|
* Represents dimension values for capacity metrics, including resource identifiers, geographic information, and reservation details used for grouping and filtering capacity data.
|
|
@@ -7405,6 +7427,13 @@ export interface CapacityManagerDimension {
|
|
|
7405
7427
|
* @public
|
|
7406
7428
|
*/
|
|
7407
7429
|
AccountId?: string | undefined;
|
|
7430
|
+
/**
|
|
7431
|
+
* <p>
|
|
7432
|
+
* The name of the Amazon Web Services account that owns the capacity resource. This dimension is only available when Organizations access is enabled for Capacity Manager.
|
|
7433
|
+
* </p>
|
|
7434
|
+
* @public
|
|
7435
|
+
*/
|
|
7436
|
+
AccountName?: string | undefined;
|
|
7408
7437
|
/**
|
|
7409
7438
|
* <p>
|
|
7410
7439
|
* The EC2 instance family of the capacity resource.
|
|
@@ -7504,6 +7533,13 @@ export interface CapacityManagerDimension {
|
|
|
7504
7533
|
* @public
|
|
7505
7534
|
*/
|
|
7506
7535
|
ReservationUnusedFinancialOwner?: string | undefined;
|
|
7536
|
+
/**
|
|
7537
|
+
* <p>
|
|
7538
|
+
* The tags associated with the capacity resource, represented as key-value pairs. Only tags that have been activated for monitoring via <code>UpdateCapacityManagerMonitoredTagKeys</code> are included.
|
|
7539
|
+
* </p>
|
|
7540
|
+
* @public
|
|
7541
|
+
*/
|
|
7542
|
+
Tags?: CapacityManagerTagDimension[] | undefined;
|
|
7507
7543
|
}
|
|
7508
7544
|
/**
|
|
7509
7545
|
* <p>
|
|
@@ -7657,6 +7693,95 @@ export interface GetCapacityManagerMetricDimensionsResult {
|
|
|
7657
7693
|
*/
|
|
7658
7694
|
NextToken?: string | undefined;
|
|
7659
7695
|
}
|
|
7696
|
+
/**
|
|
7697
|
+
* @public
|
|
7698
|
+
*/
|
|
7699
|
+
export interface GetCapacityManagerMonitoredTagKeysRequest {
|
|
7700
|
+
/**
|
|
7701
|
+
* <p>
|
|
7702
|
+
* The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>NextToken</code> value. If not specified, up to 1000 results are returned.
|
|
7703
|
+
* </p>
|
|
7704
|
+
* @public
|
|
7705
|
+
*/
|
|
7706
|
+
MaxResults?: number | undefined;
|
|
7707
|
+
/**
|
|
7708
|
+
* <p>
|
|
7709
|
+
* The token for the next page of results. Use the value returned from a previous call to retrieve additional results.
|
|
7710
|
+
* </p>
|
|
7711
|
+
* @public
|
|
7712
|
+
*/
|
|
7713
|
+
NextToken?: string | undefined;
|
|
7714
|
+
/**
|
|
7715
|
+
* <p>
|
|
7716
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
|
|
7717
|
+
* If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.
|
|
7718
|
+
* </p>
|
|
7719
|
+
* @public
|
|
7720
|
+
*/
|
|
7721
|
+
DryRun?: boolean | undefined;
|
|
7722
|
+
}
|
|
7723
|
+
/**
|
|
7724
|
+
* <p>
|
|
7725
|
+
* Describes a tag key that is being monitored by Capacity Manager, including its activation status and the earliest available data point.
|
|
7726
|
+
* </p>
|
|
7727
|
+
* @public
|
|
7728
|
+
*/
|
|
7729
|
+
export interface CapacityManagerMonitoredTagKey {
|
|
7730
|
+
/**
|
|
7731
|
+
* <p>
|
|
7732
|
+
* The tag key being monitored.
|
|
7733
|
+
* </p>
|
|
7734
|
+
* @public
|
|
7735
|
+
*/
|
|
7736
|
+
TagKey?: string | undefined;
|
|
7737
|
+
/**
|
|
7738
|
+
* <p>
|
|
7739
|
+
* The current status of the monitored tag key. Valid values are <code>activating</code>, <code>activated</code>, <code>deactivating</code>, and <code>suspended</code>.
|
|
7740
|
+
* </p>
|
|
7741
|
+
* @public
|
|
7742
|
+
*/
|
|
7743
|
+
Status?: CapacityManagerMonitoredTagKeyStatus | undefined;
|
|
7744
|
+
/**
|
|
7745
|
+
* <p>
|
|
7746
|
+
* A message providing additional details about the current status of the monitored tag key.
|
|
7747
|
+
* </p>
|
|
7748
|
+
* @public
|
|
7749
|
+
*/
|
|
7750
|
+
StatusMessage?: string | undefined;
|
|
7751
|
+
/**
|
|
7752
|
+
* <p>
|
|
7753
|
+
* Indicates whether this tag key is provided by Capacity Manager by default, rather than being user-activated.
|
|
7754
|
+
* </p>
|
|
7755
|
+
* @public
|
|
7756
|
+
*/
|
|
7757
|
+
CapacityManagerProvided?: boolean | undefined;
|
|
7758
|
+
/**
|
|
7759
|
+
* <p>
|
|
7760
|
+
* The earliest timestamp from which tag data is available for queries, in UTC ISO 8601 format.
|
|
7761
|
+
* </p>
|
|
7762
|
+
* @public
|
|
7763
|
+
*/
|
|
7764
|
+
EarliestDatapointTimestamp?: Date | undefined;
|
|
7765
|
+
}
|
|
7766
|
+
/**
|
|
7767
|
+
* @public
|
|
7768
|
+
*/
|
|
7769
|
+
export interface GetCapacityManagerMonitoredTagKeysResult {
|
|
7770
|
+
/**
|
|
7771
|
+
* <p>
|
|
7772
|
+
* The list of tag keys being monitored by Capacity Manager, including their current status and metadata.
|
|
7773
|
+
* </p>
|
|
7774
|
+
* @public
|
|
7775
|
+
*/
|
|
7776
|
+
CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
|
|
7777
|
+
/**
|
|
7778
|
+
* <p>
|
|
7779
|
+
* The token to use to retrieve the next page of results. This value is null when there are no more results to return.
|
|
7780
|
+
* </p>
|
|
7781
|
+
* @public
|
|
7782
|
+
*/
|
|
7783
|
+
NextToken?: string | undefined;
|
|
7784
|
+
}
|
|
7660
7785
|
/**
|
|
7661
7786
|
* @public
|
|
7662
7787
|
*/
|
|
@@ -7970,81 +8095,3 @@ export interface GetConsoleOutputResult {
|
|
|
7970
8095
|
*/
|
|
7971
8096
|
Output?: string | undefined;
|
|
7972
8097
|
}
|
|
7973
|
-
/**
|
|
7974
|
-
* @public
|
|
7975
|
-
*/
|
|
7976
|
-
export interface GetConsoleScreenshotRequest {
|
|
7977
|
-
/**
|
|
7978
|
-
* <p>Checks whether you have the required permissions for the operation, without actually making the
|
|
7979
|
-
* request, and provides an error response. If you have the required permissions, the error response is
|
|
7980
|
-
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7981
|
-
* @public
|
|
7982
|
-
*/
|
|
7983
|
-
DryRun?: boolean | undefined;
|
|
7984
|
-
/**
|
|
7985
|
-
* <p>The ID of the instance.</p>
|
|
7986
|
-
* @public
|
|
7987
|
-
*/
|
|
7988
|
-
InstanceId: string | undefined;
|
|
7989
|
-
/**
|
|
7990
|
-
* <p>When set to <code>true</code>, acts as keystroke input and wakes up an instance that's
|
|
7991
|
-
* in standby or "sleep" mode.</p>
|
|
7992
|
-
* @public
|
|
7993
|
-
*/
|
|
7994
|
-
WakeUp?: boolean | undefined;
|
|
7995
|
-
}
|
|
7996
|
-
/**
|
|
7997
|
-
* @public
|
|
7998
|
-
*/
|
|
7999
|
-
export interface GetConsoleScreenshotResult {
|
|
8000
|
-
/**
|
|
8001
|
-
* <p>The data that comprises the image.</p>
|
|
8002
|
-
* @public
|
|
8003
|
-
*/
|
|
8004
|
-
ImageData?: string | undefined;
|
|
8005
|
-
/**
|
|
8006
|
-
* <p>The ID of the instance.</p>
|
|
8007
|
-
* @public
|
|
8008
|
-
*/
|
|
8009
|
-
InstanceId?: string | undefined;
|
|
8010
|
-
}
|
|
8011
|
-
/**
|
|
8012
|
-
* @public
|
|
8013
|
-
*/
|
|
8014
|
-
export interface GetDeclarativePoliciesReportSummaryRequest {
|
|
8015
|
-
/**
|
|
8016
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
8017
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8018
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8019
|
-
* @public
|
|
8020
|
-
*/
|
|
8021
|
-
DryRun?: boolean | undefined;
|
|
8022
|
-
/**
|
|
8023
|
-
* <p>The ID of the report.</p>
|
|
8024
|
-
* @public
|
|
8025
|
-
*/
|
|
8026
|
-
ReportId: string | undefined;
|
|
8027
|
-
}
|
|
8028
|
-
/**
|
|
8029
|
-
* <p>A summary report for the attribute for a Region.</p>
|
|
8030
|
-
* @public
|
|
8031
|
-
*/
|
|
8032
|
-
export interface RegionalSummary {
|
|
8033
|
-
/**
|
|
8034
|
-
* <p>The Amazon Web Services Region.</p>
|
|
8035
|
-
* @public
|
|
8036
|
-
*/
|
|
8037
|
-
RegionName?: string | undefined;
|
|
8038
|
-
/**
|
|
8039
|
-
* <p>The number of accounts in the Region with the same configuration value for the
|
|
8040
|
-
* attribute that is most frequently observed.</p>
|
|
8041
|
-
* @public
|
|
8042
|
-
*/
|
|
8043
|
-
NumberOfMatchedAccounts?: number | undefined;
|
|
8044
|
-
/**
|
|
8045
|
-
* <p>The number of accounts in the Region with a configuration value different from the
|
|
8046
|
-
* most frequently observed value for the attribute.</p>
|
|
8047
|
-
* @public
|
|
8048
|
-
*/
|
|
8049
|
-
NumberOfUnmatchedAccounts?: number | undefined;
|
|
8050
|
-
}
|
|
@@ -1,10 +1,88 @@
|
|
|
1
|
-
import type { _InstanceType, Affinity, AnalysisStatus, ArchitectureType, ArchitectureValues, AutoPlacement, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DefaultHttpTokensEnforcedState, DefaultInstanceMetadataEndpointState, DefaultInstanceMetadataTagsState, DiskImageFormat, EkPubKeyFormat, EkPubKeyType, EndDateType, ExcessCapacityTerminationPolicy, FleetExcessCapacityTerminationPolicy, FpgaImageAttributeName, HostMaintenance, HostnameType, HostRecovery, HostTenancy, HttpTokensEnforcedState, HttpTokensState, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceMatchCriteria, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, IpAddressType, IpamAddressHistoryResourceType, IpamComplianceStatus, IpamDiscoveryFailureCode, IpamManagementState, IpamMeteredAccount, IpamNetworkInterfaceAttachmentStatus, IpamOverlapStatus, IpamPolicyManagedBy, IpamPolicyResourceType, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPublicAddressAssociationStatus, IpamPublicAddressAwsService, IpamPublicAddressType, IpamResourceCidrIpSource, IpamResourceType, IpamTier, LockMode, LockState, ManagedBy, MetadataDefaultHttpTokensState, ModifyAvailabilityZoneOptInStatus, NestedVirtualizationSpecification, OperationType, PartitionLoadFrequency, PaymentOption, PermissionGroup, PlatformValues, PublicIpDnsOption, RouteServerPersistRoutesAction, RouteServerRouteInstallationStatus, RouteServerRouteStatus, SelfServicePortal, ShutdownBehavior, SnapshotAttributeName, SnapshotBlockPublicAccessState, SSEType, TargetCapacityUnitType, TargetStorageTier,
|
|
1
|
+
import type { _InstanceType, Affinity, AnalysisStatus, ArchitectureType, ArchitectureValues, AutoPlacement, BootModeValues, CapacityReservationPreference, CurrencyCodeValues, DefaultHttpTokensEnforcedState, DefaultInstanceMetadataEndpointState, DefaultInstanceMetadataTagsState, DiskImageFormat, EkPubKeyFormat, EkPubKeyType, EndDateType, ExcessCapacityTerminationPolicy, FleetExcessCapacityTerminationPolicy, FpgaImageAttributeName, HostMaintenance, HostnameType, HostRecovery, HostTenancy, HttpTokensEnforcedState, HttpTokensState, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceMatchCriteria, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceRebootMigrationState, IpAddressType, IpamAddressHistoryResourceType, IpamComplianceStatus, IpamDiscoveryFailureCode, IpamManagementState, IpamMeteredAccount, IpamNetworkInterfaceAttachmentStatus, IpamOverlapStatus, IpamPolicyManagedBy, IpamPolicyResourceType, IpamPrefixListResolverRuleConditionOperation, IpamPrefixListResolverRuleType, IpamPublicAddressAssociationStatus, IpamPublicAddressAwsService, IpamPublicAddressType, IpamResourceCidrIpSource, IpamResourceType, IpamTier, LockMode, LockState, ManagedBy, MetadataDefaultHttpTokensState, ModifyAvailabilityZoneOptInStatus, NestedVirtualizationSpecification, OperationType, PartitionLoadFrequency, PaymentOption, PermissionGroup, PlatformValues, PublicIpDnsOption, RouteServerPersistRoutesAction, RouteServerRouteInstallationStatus, RouteServerRouteStatus, SelfServicePortal, ShutdownBehavior, SnapshotAttributeName, SnapshotBlockPublicAccessState, SSEType, TargetCapacityUnitType, TargetStorageTier, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, UnsuccessfulInstanceCreditSpecificationErrorCode, VirtualizationType, VolumeState, VolumeType } from "./enums";
|
|
2
2
|
import type { AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddIpamOrganizationalUnitExclusion, AddPrefixListEntry, AddressAttribute, ClientConnectOptions, ClientLoginBannerOptions, ClientRouteEnforcementOptions, ConnectionLogOptions, EnaSrdSpecification, InstanceEventWindow, IpamPoolAllocation, OperatorResponse, RouteServerAssociation, SubnetAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayPolicyTableAssociation, UnsuccessfulItem } from "./models_0";
|
|
3
3
|
import type { AttributeValue, CapacityReservationTarget, ConnectionTrackingSpecificationRequest, ExternalAuthorityConfiguration, FleetLaunchTemplateConfigRequest, InstanceEventWindowTimeRangeRequest, InstanceRequirementsRequest, Ipam, IpamPool, IpamPrefixListResolver, IpamPrefixListResolverRuleRequest, IpamPrefixListResolverTarget, IpamResourceDiscovery, IpamResourceTag, IpamScope, LaunchTemplate, LocalGatewayRoute, ManagedPrefixList, NetworkInsightsAccessScopeContent, Placement, RequestIpamResourceTag, ResponseLaunchTemplateData, RouteServer, TargetCapacitySpecificationRequest } from "./models_1";
|
|
4
|
-
import type { SubnetCidrReservation,
|
|
4
|
+
import type { SubnetCidrReservation, TransitGatewayMeteringPolicyEntry, TransitGatewayPrefixListReference } from "./models_2";
|
|
5
5
|
import type { AttributeBooleanValue, ConversionTask, Filter, FpgaImageAttribute, ImportImageLicenseConfigurationResponse, IpamPoolCidr, LaunchPermission, SnapshotDetail, SnapshotTaskDetail } from "./models_3";
|
|
6
6
|
import type { CreateVolumePermission, InstanceMetadataOptionsResponse, InstanceStatusEvent, LaunchTemplateConfig, ReservedInstancesConfiguration } from "./models_4";
|
|
7
|
-
import type {
|
|
7
|
+
import type { RouteServerPropagation } from "./models_5";
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface GetConsoleScreenshotRequest {
|
|
12
|
+
/**
|
|
13
|
+
* <p>Checks whether you have the required permissions for the operation, without actually making the
|
|
14
|
+
* request, and provides an error response. If you have the required permissions, the error response is
|
|
15
|
+
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
DryRun?: boolean | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The ID of the instance.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
InstanceId: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>When set to <code>true</code>, acts as keystroke input and wakes up an instance that's
|
|
26
|
+
* in standby or "sleep" mode.</p>
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
WakeUp?: boolean | undefined;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
export interface GetConsoleScreenshotResult {
|
|
35
|
+
/**
|
|
36
|
+
* <p>The data that comprises the image.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
ImageData?: string | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* <p>The ID of the instance.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
InstanceId?: string | undefined;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export interface GetDeclarativePoliciesReportSummaryRequest {
|
|
50
|
+
/**
|
|
51
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
52
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
53
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
DryRun?: boolean | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The ID of the report.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
ReportId: string | undefined;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>A summary report for the attribute for a Region.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export interface RegionalSummary {
|
|
68
|
+
/**
|
|
69
|
+
* <p>The Amazon Web Services Region.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
RegionName?: string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The number of accounts in the Region with the same configuration value for the
|
|
75
|
+
* attribute that is most frequently observed.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
NumberOfMatchedAccounts?: number | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* <p>The number of accounts in the Region with a configuration value different from the
|
|
81
|
+
* most frequently observed value for the attribute.</p>
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
NumberOfUnmatchedAccounts?: number | undefined;
|
|
85
|
+
}
|
|
8
86
|
/**
|
|
9
87
|
* <p>A summary report for the attribute across all Regions.</p>
|
|
10
88
|
* @public
|
|
@@ -8663,122 +8741,3 @@ export interface ModifySubnetAttributeRequest {
|
|
|
8663
8741
|
*/
|
|
8664
8742
|
DisableLniAtDeviceIndex?: AttributeBooleanValue | undefined;
|
|
8665
8743
|
}
|
|
8666
|
-
/**
|
|
8667
|
-
* @public
|
|
8668
|
-
*/
|
|
8669
|
-
export interface ModifyTrafficMirrorFilterNetworkServicesRequest {
|
|
8670
|
-
/**
|
|
8671
|
-
* <p>The ID of the Traffic Mirror filter.</p>
|
|
8672
|
-
* @public
|
|
8673
|
-
*/
|
|
8674
|
-
TrafficMirrorFilterId: string | undefined;
|
|
8675
|
-
/**
|
|
8676
|
-
* <p>The network service, for example Amazon DNS, that you want to mirror.</p>
|
|
8677
|
-
* @public
|
|
8678
|
-
*/
|
|
8679
|
-
AddNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
8680
|
-
/**
|
|
8681
|
-
* <p>The network service, for example Amazon DNS, that you no longer want to mirror.</p>
|
|
8682
|
-
* @public
|
|
8683
|
-
*/
|
|
8684
|
-
RemoveNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
8685
|
-
/**
|
|
8686
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
8687
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8688
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8689
|
-
* @public
|
|
8690
|
-
*/
|
|
8691
|
-
DryRun?: boolean | undefined;
|
|
8692
|
-
}
|
|
8693
|
-
/**
|
|
8694
|
-
* @public
|
|
8695
|
-
*/
|
|
8696
|
-
export interface ModifyTrafficMirrorFilterNetworkServicesResult {
|
|
8697
|
-
/**
|
|
8698
|
-
* <p>The Traffic Mirror filter that the network service is associated with.</p>
|
|
8699
|
-
* @public
|
|
8700
|
-
*/
|
|
8701
|
-
TrafficMirrorFilter?: TrafficMirrorFilter | undefined;
|
|
8702
|
-
}
|
|
8703
|
-
/**
|
|
8704
|
-
* @public
|
|
8705
|
-
*/
|
|
8706
|
-
export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
8707
|
-
/**
|
|
8708
|
-
* <p>The ID of the Traffic Mirror rule.</p>
|
|
8709
|
-
* @public
|
|
8710
|
-
*/
|
|
8711
|
-
TrafficMirrorFilterRuleId: string | undefined;
|
|
8712
|
-
/**
|
|
8713
|
-
* <p>The type of traffic to assign to the rule.</p>
|
|
8714
|
-
* @public
|
|
8715
|
-
*/
|
|
8716
|
-
TrafficDirection?: TrafficDirection | undefined;
|
|
8717
|
-
/**
|
|
8718
|
-
* <p>The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given
|
|
8719
|
-
* direction. The rules are processed in ascending order by rule number.</p>
|
|
8720
|
-
* @public
|
|
8721
|
-
*/
|
|
8722
|
-
RuleNumber?: number | undefined;
|
|
8723
|
-
/**
|
|
8724
|
-
* <p>The action to assign to the rule.</p>
|
|
8725
|
-
* @public
|
|
8726
|
-
*/
|
|
8727
|
-
RuleAction?: TrafficMirrorRuleAction | undefined;
|
|
8728
|
-
/**
|
|
8729
|
-
* <p>The destination ports that are associated with the Traffic Mirror rule.</p>
|
|
8730
|
-
* @public
|
|
8731
|
-
*/
|
|
8732
|
-
DestinationPortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
8733
|
-
/**
|
|
8734
|
-
* <p>The port range to assign to the Traffic Mirror rule.</p>
|
|
8735
|
-
* @public
|
|
8736
|
-
*/
|
|
8737
|
-
SourcePortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
8738
|
-
/**
|
|
8739
|
-
* <p>The protocol, for example TCP, to assign to the Traffic Mirror rule.</p>
|
|
8740
|
-
* @public
|
|
8741
|
-
*/
|
|
8742
|
-
Protocol?: number | undefined;
|
|
8743
|
-
/**
|
|
8744
|
-
* <p>The destination CIDR block to assign to the Traffic Mirror rule.</p>
|
|
8745
|
-
* @public
|
|
8746
|
-
*/
|
|
8747
|
-
DestinationCidrBlock?: string | undefined;
|
|
8748
|
-
/**
|
|
8749
|
-
* <p>The source CIDR block to assign to the Traffic Mirror rule.</p>
|
|
8750
|
-
* @public
|
|
8751
|
-
*/
|
|
8752
|
-
SourceCidrBlock?: string | undefined;
|
|
8753
|
-
/**
|
|
8754
|
-
* <p>The description to assign to the Traffic Mirror rule.</p>
|
|
8755
|
-
* @public
|
|
8756
|
-
*/
|
|
8757
|
-
Description?: string | undefined;
|
|
8758
|
-
/**
|
|
8759
|
-
* <p>The properties that you want to remove from the Traffic Mirror filter rule.</p>
|
|
8760
|
-
* <p>When you remove a property from a Traffic Mirror filter rule, the property is set to the default.</p>
|
|
8761
|
-
* @public
|
|
8762
|
-
*/
|
|
8763
|
-
RemoveFields?: TrafficMirrorFilterRuleField[] | undefined;
|
|
8764
|
-
/**
|
|
8765
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
8766
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
8767
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
8768
|
-
* @public
|
|
8769
|
-
*/
|
|
8770
|
-
DryRun?: boolean | undefined;
|
|
8771
|
-
}
|
|
8772
|
-
/**
|
|
8773
|
-
* @public
|
|
8774
|
-
*/
|
|
8775
|
-
export interface ModifyTrafficMirrorFilterRuleResult {
|
|
8776
|
-
/**
|
|
8777
|
-
* <note>
|
|
8778
|
-
* <p>Tags are not returned for ModifyTrafficMirrorFilterRule.</p>
|
|
8779
|
-
* </note>
|
|
8780
|
-
* <p>A Traffic Mirror rule.</p>
|
|
8781
|
-
* @public
|
|
8782
|
-
*/
|
|
8783
|
-
TrafficMirrorFilterRule?: TrafficMirrorFilterRule | undefined;
|
|
8784
|
-
}
|