@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
|
@@ -1,11 +1,130 @@
|
|
|
1
|
-
import type { _InstanceType, AddressAttributeName, AmdSevSnpSpecification, ApplianceModeSupportValue, ArchitectureValues, AutoAcceptSharedAttachmentsValue, BootModeValues, CapacityManagerStatus, CapacityReservationInstancePlatform, CurrencyCodeValues, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DnsSupportValue, EncryptionSupportOptionValue, HostnameType, HttpTokensState, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InternetGatewayBlockMode, InternetGatewayExclusionMode, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, Ipv6SupportValue, MarketType, MembershipType, NestedVirtualizationSpecification, PayerResponsibility, ReportInstanceReasonCodes, ReportStatusType, ResetFpgaImageAttributeName, ResetImageAttributeName, RuleAction, SecondaryInterfaceType, SecurityGroupReferencingSupportValue, ShutdownBehavior, SnapshotAttributeName, SnapshotState, SpotInstanceType, SSEType, Status, TpmSupportValues, TrafficMirrorSessionField, TransitGatewayAttachmentResourceType, VerificationMethod, VerifiedAccessEndpointProtocol, VolumeType, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcTenancy, VpnEcmpSupportValue } from "./enums";
|
|
1
|
+
import type { _InstanceType, AddressAttributeName, AmdSevSnpSpecification, ApplianceModeSupportValue, ArchitectureValues, AutoAcceptSharedAttachmentsValue, BootModeValues, CapacityManagerStatus, CapacityReservationInstancePlatform, CurrencyCodeValues, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DnsSupportValue, EncryptionSupportOptionValue, HostnameType, HttpTokensState, ImdsSupportValues, InstanceAttributeName, InstanceAutoRecoveryState, InstanceBandwidthWeighting, InstanceInterruptionBehavior, InstanceMetadataEndpointState, InstanceMetadataProtocolState, InstanceMetadataTagsState, InternetGatewayBlockMode, InternetGatewayExclusionMode, InterruptibleCapacityReservationAllocationStatus, InterruptionType, IpAddressType, Ipv6SupportValue, MarketType, MembershipType, NestedVirtualizationSpecification, PayerResponsibility, ReportInstanceReasonCodes, ReportStatusType, ResetFpgaImageAttributeName, ResetImageAttributeName, RuleAction, SecondaryInterfaceType, SecurityGroupReferencingSupportValue, ShutdownBehavior, SnapshotAttributeName, SnapshotState, SpotInstanceType, SSEType, Status, TpmSupportValues, TrafficDirection, TrafficMirrorFilterRuleField, TrafficMirrorNetworkService, TrafficMirrorRuleAction, TrafficMirrorSessionField, TransitGatewayAttachmentResourceType, VerificationMethod, VerifiedAccessEndpointProtocol, VolumeType, VpcEncryptionControlExclusionStateInput, VpcEncryptionControlMode, VpcTenancy, VpnEcmpSupportValue } from "./enums";
|
|
2
2
|
import type { AddedPrincipal, AddressAttribute, ByoipCidr, CapacityReservation, ClientVpnAuthorizationRuleStatus, IamInstanceProfileAssociation, IamInstanceProfileSpecification, IpPermission, NatGatewayAddress, PortRange, RouteTableAssociationState, TagSpecification, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider, VpcEncryptionControl } from "./models_0";
|
|
3
3
|
import type { BlockDeviceMapping, CreditSpecificationRequest, ElasticGpuSpecification, IcmpTypeCode, InstanceIpv6Address, LocalGatewayRoute, ManagedPrefixList, OperatorRequest, Placement } from "./models_1";
|
|
4
|
-
import type { DnsOptionsSpecification, IKEVersionsRequestListValue, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, SubnetConfiguration, TrafficMirrorSession, TransitGateway, TransitGatewayMeteringPolicy, TransitGatewayPrefixListReference, TransitGatewayRoute, VerifiedAccessEndpoint, VerifiedAccessGroup, VerifiedAccessSseSpecificationRequest, VpcBlockPublicAccessExclusion, VpnConnection, VpnTunnelLogOptionsSpecification } from "./models_2";
|
|
4
|
+
import type { DnsOptionsSpecification, IKEVersionsRequestListValue, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, SubnetConfiguration, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorPortRangeRequest, TrafficMirrorSession, TransitGateway, TransitGatewayMeteringPolicy, TransitGatewayPrefixListReference, TransitGatewayRoute, VerifiedAccessEndpoint, VerifiedAccessGroup, VerifiedAccessSseSpecificationRequest, VpcBlockPublicAccessExclusion, VpnConnection, VpnTunnelLogOptionsSpecification } from "./models_2";
|
|
5
5
|
import type { AttributeBooleanValue, Byoasn, CapacityBlock, CapacityBlockExtension, ClientVpnConnectionStatus, Filter, InstanceTagNotificationAttribute, IpamPoolCidr } from "./models_3";
|
|
6
6
|
import type { InstanceNetworkInterfaceSpecification, InstanceState, Monitoring, NetworkInsightsAccessScopeAnalysis, NetworkInsightsAnalysis, PublicIpv4PoolRange, RunInstancesMonitoringEnabled, ScheduledInstance, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement } from "./models_4";
|
|
7
|
-
import type { VerifiedAccessInstanceLoggingConfiguration, VolumeModification, VpcBlockPublicAccessOptions } from "./models_5";
|
|
7
|
+
import type { CapacityManagerMonitoredTagKey, VerifiedAccessInstanceLoggingConfiguration, VolumeModification, VpcBlockPublicAccessOptions } from "./models_5";
|
|
8
8
|
import type { CapacityReservationSpecification, Purchase } from "./models_6";
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export interface ModifyTrafficMirrorFilterNetworkServicesRequest {
|
|
13
|
+
/**
|
|
14
|
+
* <p>The ID of the Traffic Mirror filter.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
TrafficMirrorFilterId: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The network service, for example Amazon DNS, that you want to mirror.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
AddNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
23
|
+
/**
|
|
24
|
+
* <p>The network service, for example Amazon DNS, that you no longer want to mirror.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
RemoveNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
30
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
31
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
32
|
+
* @public
|
|
33
|
+
*/
|
|
34
|
+
DryRun?: boolean | undefined;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export interface ModifyTrafficMirrorFilterNetworkServicesResult {
|
|
40
|
+
/**
|
|
41
|
+
* <p>The Traffic Mirror filter that the network service is associated with.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
TrafficMirrorFilter?: TrafficMirrorFilter | undefined;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
50
|
+
/**
|
|
51
|
+
* <p>The ID of the Traffic Mirror rule.</p>
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
TrafficMirrorFilterRuleId: string | undefined;
|
|
55
|
+
/**
|
|
56
|
+
* <p>The type of traffic to assign to the rule.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
TrafficDirection?: TrafficDirection | undefined;
|
|
60
|
+
/**
|
|
61
|
+
* <p>The number of the Traffic Mirror rule. This number must be unique for each Traffic Mirror rule in a given
|
|
62
|
+
* direction. The rules are processed in ascending order by rule number.</p>
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
65
|
+
RuleNumber?: number | undefined;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The action to assign to the rule.</p>
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
RuleAction?: TrafficMirrorRuleAction | undefined;
|
|
71
|
+
/**
|
|
72
|
+
* <p>The destination ports that are associated with the Traffic Mirror rule.</p>
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
DestinationPortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* <p>The port range to assign to the Traffic Mirror rule.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
SourcePortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
81
|
+
/**
|
|
82
|
+
* <p>The protocol, for example TCP, to assign to the Traffic Mirror rule.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
Protocol?: number | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* <p>The destination CIDR block to assign to the Traffic Mirror rule.</p>
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
DestinationCidrBlock?: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* <p>The source CIDR block to assign to the Traffic Mirror rule.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
SourceCidrBlock?: string | undefined;
|
|
96
|
+
/**
|
|
97
|
+
* <p>The description to assign to the Traffic Mirror rule.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
Description?: string | undefined;
|
|
101
|
+
/**
|
|
102
|
+
* <p>The properties that you want to remove from the Traffic Mirror filter rule.</p>
|
|
103
|
+
* <p>When you remove a property from a Traffic Mirror filter rule, the property is set to the default.</p>
|
|
104
|
+
* @public
|
|
105
|
+
*/
|
|
106
|
+
RemoveFields?: TrafficMirrorFilterRuleField[] | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
109
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
110
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
DryRun?: boolean | undefined;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export interface ModifyTrafficMirrorFilterRuleResult {
|
|
119
|
+
/**
|
|
120
|
+
* <note>
|
|
121
|
+
* <p>Tags are not returned for ModifyTrafficMirrorFilterRule.</p>
|
|
122
|
+
* </note>
|
|
123
|
+
* <p>A Traffic Mirror rule.</p>
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
126
|
+
TrafficMirrorFilterRule?: TrafficMirrorFilterRule | undefined;
|
|
127
|
+
}
|
|
9
128
|
/**
|
|
10
129
|
* @public
|
|
11
130
|
*/
|
|
@@ -7024,6 +7143,52 @@ export interface UnmonitorInstancesResult {
|
|
|
7024
7143
|
*/
|
|
7025
7144
|
InstanceMonitorings?: InstanceMonitoring[] | undefined;
|
|
7026
7145
|
}
|
|
7146
|
+
/**
|
|
7147
|
+
* @public
|
|
7148
|
+
*/
|
|
7149
|
+
export interface UpdateCapacityManagerMonitoredTagKeysRequest {
|
|
7150
|
+
/**
|
|
7151
|
+
* <p>
|
|
7152
|
+
* The tag keys to activate for monitoring. Once activated, these tag keys will be included as dimensions in capacity metric data.
|
|
7153
|
+
* </p>
|
|
7154
|
+
* @public
|
|
7155
|
+
*/
|
|
7156
|
+
ActivateTagKeys?: string[] | undefined;
|
|
7157
|
+
/**
|
|
7158
|
+
* <p>
|
|
7159
|
+
* The tag keys to deactivate. Deactivated tag keys will no longer be included as dimensions in capacity metric data.
|
|
7160
|
+
* </p>
|
|
7161
|
+
* @public
|
|
7162
|
+
*/
|
|
7163
|
+
DeactivateTagKeys?: string[] | undefined;
|
|
7164
|
+
/**
|
|
7165
|
+
* <p>
|
|
7166
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
|
|
7167
|
+
* If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.
|
|
7168
|
+
* </p>
|
|
7169
|
+
* @public
|
|
7170
|
+
*/
|
|
7171
|
+
DryRun?: boolean | undefined;
|
|
7172
|
+
/**
|
|
7173
|
+
* <p>
|
|
7174
|
+
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
|
|
7175
|
+
* </p>
|
|
7176
|
+
* @public
|
|
7177
|
+
*/
|
|
7178
|
+
ClientToken?: string | undefined;
|
|
7179
|
+
}
|
|
7180
|
+
/**
|
|
7181
|
+
* @public
|
|
7182
|
+
*/
|
|
7183
|
+
export interface UpdateCapacityManagerMonitoredTagKeysResult {
|
|
7184
|
+
/**
|
|
7185
|
+
* <p>
|
|
7186
|
+
* The list of tag keys affected by the update, including their current status and metadata.
|
|
7187
|
+
* </p>
|
|
7188
|
+
* @public
|
|
7189
|
+
*/
|
|
7190
|
+
CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
|
|
7191
|
+
}
|
|
7027
7192
|
/**
|
|
7028
7193
|
* @public
|
|
7029
7194
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { GetCapacityManagerMonitoredTagKeysCommandInput, GetCapacityManagerMonitoredTagKeysCommandOutput } from "../commands/GetCapacityManagerMonitoredTagKeysCommand";
|
|
3
|
+
import type { EC2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateGetCapacityManagerMonitoredTagKeys: (config: EC2PaginationConfiguration, input: GetCapacityManagerMonitoredTagKeysCommandInput, ...rest: any[]) => Paginator<GetCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
@@ -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,6 +188,8 @@ export declare var CapacityBlockStatus$: StaticStructureSchema;
|
|
|
188
188
|
export declare var CapacityManagerCondition$: StaticStructureSchema;
|
|
189
189
|
export declare var CapacityManagerDataExportResponse$: StaticStructureSchema;
|
|
190
190
|
export declare var CapacityManagerDimension$: StaticStructureSchema;
|
|
191
|
+
export declare var CapacityManagerMonitoredTagKey$: StaticStructureSchema;
|
|
192
|
+
export declare var CapacityManagerTagDimension$: StaticStructureSchema;
|
|
191
193
|
export declare var CapacityReservation$: StaticStructureSchema;
|
|
192
194
|
export declare var CapacityReservationBillingRequest$: StaticStructureSchema;
|
|
193
195
|
export declare var CapacityReservationCommitmentInfo$: StaticStructureSchema;
|
|
@@ -1294,6 +1296,8 @@ export declare var GetCapacityManagerMetricDataRequest$: StaticStructureSchema;
|
|
|
1294
1296
|
export declare var GetCapacityManagerMetricDataResult$: StaticStructureSchema;
|
|
1295
1297
|
export declare var GetCapacityManagerMetricDimensionsRequest$: StaticStructureSchema;
|
|
1296
1298
|
export declare var GetCapacityManagerMetricDimensionsResult$: StaticStructureSchema;
|
|
1299
|
+
export declare var GetCapacityManagerMonitoredTagKeysRequest$: StaticStructureSchema;
|
|
1300
|
+
export declare var GetCapacityManagerMonitoredTagKeysResult$: StaticStructureSchema;
|
|
1297
1301
|
export declare var GetCapacityReservationUsageRequest$: StaticStructureSchema;
|
|
1298
1302
|
export declare var GetCapacityReservationUsageResult$: StaticStructureSchema;
|
|
1299
1303
|
export declare var GetCoipPoolUsageRequest$: StaticStructureSchema;
|
|
@@ -2276,6 +2280,8 @@ export declare var UnsuccessfulInstanceCreditSpecificationItem$: StaticStructure
|
|
|
2276
2280
|
export declare var UnsuccessfulInstanceCreditSpecificationItemError$: StaticStructureSchema;
|
|
2277
2281
|
export declare var UnsuccessfulItem$: StaticStructureSchema;
|
|
2278
2282
|
export declare var UnsuccessfulItemError$: StaticStructureSchema;
|
|
2283
|
+
export declare var UpdateCapacityManagerMonitoredTagKeysRequest$: StaticStructureSchema;
|
|
2284
|
+
export declare var UpdateCapacityManagerMonitoredTagKeysResult$: StaticStructureSchema;
|
|
2279
2285
|
export declare var UpdateCapacityManagerOrganizationsAccessRequest$: StaticStructureSchema;
|
|
2280
2286
|
export declare var UpdateCapacityManagerOrganizationsAccessResult$: StaticStructureSchema;
|
|
2281
2287
|
export declare var UpdateInterruptibleCapacityReservationAllocationRequest$: StaticStructureSchema;
|
|
@@ -2896,6 +2902,7 @@ export declare var GetAwsNetworkPerformanceData$: StaticOperationSchema;
|
|
|
2896
2902
|
export declare var GetCapacityManagerAttributes$: StaticOperationSchema;
|
|
2897
2903
|
export declare var GetCapacityManagerMetricData$: StaticOperationSchema;
|
|
2898
2904
|
export declare var GetCapacityManagerMetricDimensions$: StaticOperationSchema;
|
|
2905
|
+
export declare var GetCapacityManagerMonitoredTagKeys$: StaticOperationSchema;
|
|
2899
2906
|
export declare var GetCapacityReservationUsage$: StaticOperationSchema;
|
|
2900
2907
|
export declare var GetCoipPoolUsage$: StaticOperationSchema;
|
|
2901
2908
|
export declare var GetConsoleOutput$: StaticOperationSchema;
|
|
@@ -3116,6 +3123,7 @@ export declare var UnassignPrivateIpAddresses$: StaticOperationSchema;
|
|
|
3116
3123
|
export declare var UnassignPrivateNatGatewayAddress$: StaticOperationSchema;
|
|
3117
3124
|
export declare var UnlockSnapshot$: StaticOperationSchema;
|
|
3118
3125
|
export declare var UnmonitorInstances$: StaticOperationSchema;
|
|
3126
|
+
export declare var UpdateCapacityManagerMonitoredTagKeys$: StaticOperationSchema;
|
|
3119
3127
|
export declare var UpdateCapacityManagerOrganizationsAccess$: StaticOperationSchema;
|
|
3120
3128
|
export declare var UpdateInterruptibleCapacityReservationAllocation$: StaticOperationSchema;
|
|
3121
3129
|
export declare var UpdateSecurityGroupRuleDescriptionsEgress$: StaticOperationSchema;
|
|
@@ -2129,6 +2129,10 @@ import {
|
|
|
2129
2129
|
GetCapacityManagerMetricDimensionsCommandInput,
|
|
2130
2130
|
GetCapacityManagerMetricDimensionsCommandOutput,
|
|
2131
2131
|
} from "./commands/GetCapacityManagerMetricDimensionsCommand";
|
|
2132
|
+
import {
|
|
2133
|
+
GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
2134
|
+
GetCapacityManagerMonitoredTagKeysCommandOutput,
|
|
2135
|
+
} from "./commands/GetCapacityManagerMonitoredTagKeysCommand";
|
|
2132
2136
|
import {
|
|
2133
2137
|
GetCapacityReservationUsageCommandInput,
|
|
2134
2138
|
GetCapacityReservationUsageCommandOutput,
|
|
@@ -3009,6 +3013,10 @@ import {
|
|
|
3009
3013
|
UnmonitorInstancesCommandInput,
|
|
3010
3014
|
UnmonitorInstancesCommandOutput,
|
|
3011
3015
|
} from "./commands/UnmonitorInstancesCommand";
|
|
3016
|
+
import {
|
|
3017
|
+
UpdateCapacityManagerMonitoredTagKeysCommandInput,
|
|
3018
|
+
UpdateCapacityManagerMonitoredTagKeysCommandOutput,
|
|
3019
|
+
} from "./commands/UpdateCapacityManagerMonitoredTagKeysCommand";
|
|
3012
3020
|
import {
|
|
3013
3021
|
UpdateCapacityManagerOrganizationsAccessCommandInput,
|
|
3014
3022
|
UpdateCapacityManagerOrganizationsAccessCommandOutput,
|
|
@@ -10896,6 +10904,26 @@ export interface EC2 {
|
|
|
10896
10904
|
data?: GetCapacityManagerMetricDimensionsCommandOutput
|
|
10897
10905
|
) => void
|
|
10898
10906
|
): void;
|
|
10907
|
+
getCapacityManagerMonitoredTagKeys(): Promise<GetCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
10908
|
+
getCapacityManagerMonitoredTagKeys(
|
|
10909
|
+
args: GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
10910
|
+
options?: __HttpHandlerOptions
|
|
10911
|
+
): Promise<GetCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
10912
|
+
getCapacityManagerMonitoredTagKeys(
|
|
10913
|
+
args: GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
10914
|
+
cb: (
|
|
10915
|
+
err: any,
|
|
10916
|
+
data?: GetCapacityManagerMonitoredTagKeysCommandOutput
|
|
10917
|
+
) => void
|
|
10918
|
+
): void;
|
|
10919
|
+
getCapacityManagerMonitoredTagKeys(
|
|
10920
|
+
args: GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
10921
|
+
options: __HttpHandlerOptions,
|
|
10922
|
+
cb: (
|
|
10923
|
+
err: any,
|
|
10924
|
+
data?: GetCapacityManagerMonitoredTagKeysCommandOutput
|
|
10925
|
+
) => void
|
|
10926
|
+
): void;
|
|
10899
10927
|
getCapacityReservationUsage(
|
|
10900
10928
|
args: GetCapacityReservationUsageCommandInput,
|
|
10901
10929
|
options?: __HttpHandlerOptions
|
|
@@ -14083,6 +14111,26 @@ export interface EC2 {
|
|
|
14083
14111
|
options: __HttpHandlerOptions,
|
|
14084
14112
|
cb: (err: any, data?: UnmonitorInstancesCommandOutput) => void
|
|
14085
14113
|
): void;
|
|
14114
|
+
updateCapacityManagerMonitoredTagKeys(): Promise<UpdateCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
14115
|
+
updateCapacityManagerMonitoredTagKeys(
|
|
14116
|
+
args: UpdateCapacityManagerMonitoredTagKeysCommandInput,
|
|
14117
|
+
options?: __HttpHandlerOptions
|
|
14118
|
+
): Promise<UpdateCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
14119
|
+
updateCapacityManagerMonitoredTagKeys(
|
|
14120
|
+
args: UpdateCapacityManagerMonitoredTagKeysCommandInput,
|
|
14121
|
+
cb: (
|
|
14122
|
+
err: any,
|
|
14123
|
+
data?: UpdateCapacityManagerMonitoredTagKeysCommandOutput
|
|
14124
|
+
) => void
|
|
14125
|
+
): void;
|
|
14126
|
+
updateCapacityManagerMonitoredTagKeys(
|
|
14127
|
+
args: UpdateCapacityManagerMonitoredTagKeysCommandInput,
|
|
14128
|
+
options: __HttpHandlerOptions,
|
|
14129
|
+
cb: (
|
|
14130
|
+
err: any,
|
|
14131
|
+
data?: UpdateCapacityManagerMonitoredTagKeysCommandOutput
|
|
14132
|
+
) => void
|
|
14133
|
+
): void;
|
|
14086
14134
|
updateCapacityManagerOrganizationsAccess(
|
|
14087
14135
|
args: UpdateCapacityManagerOrganizationsAccessCommandInput,
|
|
14088
14136
|
options?: __HttpHandlerOptions
|
|
@@ -15147,6 +15195,13 @@ export interface EC2 {
|
|
|
15147
15195
|
Exclude<keyof PaginationConfiguration, "client">
|
|
15148
15196
|
>
|
|
15149
15197
|
): Paginator<GetCapacityManagerMetricDimensionsCommandOutput>;
|
|
15198
|
+
paginateGetCapacityManagerMonitoredTagKeys(
|
|
15199
|
+
args?: GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
15200
|
+
paginationConfig?: Pick<
|
|
15201
|
+
PaginationConfiguration,
|
|
15202
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
15203
|
+
>
|
|
15204
|
+
): Paginator<GetCapacityManagerMonitoredTagKeysCommandOutput>;
|
|
15150
15205
|
paginateGetGroupsForCapacityReservation(
|
|
15151
15206
|
args: GetGroupsForCapacityReservationCommandInput,
|
|
15152
15207
|
paginationConfig?: Pick<
|
|
@@ -2168,6 +2168,10 @@ import {
|
|
|
2168
2168
|
GetCapacityManagerMetricDimensionsCommandInput,
|
|
2169
2169
|
GetCapacityManagerMetricDimensionsCommandOutput,
|
|
2170
2170
|
} from "./commands/GetCapacityManagerMetricDimensionsCommand";
|
|
2171
|
+
import {
|
|
2172
|
+
GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
2173
|
+
GetCapacityManagerMonitoredTagKeysCommandOutput,
|
|
2174
|
+
} from "./commands/GetCapacityManagerMonitoredTagKeysCommand";
|
|
2171
2175
|
import {
|
|
2172
2176
|
GetCapacityReservationUsageCommandInput,
|
|
2173
2177
|
GetCapacityReservationUsageCommandOutput,
|
|
@@ -3048,6 +3052,10 @@ import {
|
|
|
3048
3052
|
UnmonitorInstancesCommandInput,
|
|
3049
3053
|
UnmonitorInstancesCommandOutput,
|
|
3050
3054
|
} from "./commands/UnmonitorInstancesCommand";
|
|
3055
|
+
import {
|
|
3056
|
+
UpdateCapacityManagerMonitoredTagKeysCommandInput,
|
|
3057
|
+
UpdateCapacityManagerMonitoredTagKeysCommandOutput,
|
|
3058
|
+
} from "./commands/UpdateCapacityManagerMonitoredTagKeysCommand";
|
|
3051
3059
|
import {
|
|
3052
3060
|
UpdateCapacityManagerOrganizationsAccessCommandInput,
|
|
3053
3061
|
UpdateCapacityManagerOrganizationsAccessCommandOutput,
|
|
@@ -3607,6 +3615,7 @@ export type ServiceInputTypes =
|
|
|
3607
3615
|
| GetCapacityManagerAttributesCommandInput
|
|
3608
3616
|
| GetCapacityManagerMetricDataCommandInput
|
|
3609
3617
|
| GetCapacityManagerMetricDimensionsCommandInput
|
|
3618
|
+
| GetCapacityManagerMonitoredTagKeysCommandInput
|
|
3610
3619
|
| GetCapacityReservationUsageCommandInput
|
|
3611
3620
|
| GetCoipPoolUsageCommandInput
|
|
3612
3621
|
| GetConsoleOutputCommandInput
|
|
@@ -3827,6 +3836,7 @@ export type ServiceInputTypes =
|
|
|
3827
3836
|
| UnassignPrivateNatGatewayAddressCommandInput
|
|
3828
3837
|
| UnlockSnapshotCommandInput
|
|
3829
3838
|
| UnmonitorInstancesCommandInput
|
|
3839
|
+
| UpdateCapacityManagerMonitoredTagKeysCommandInput
|
|
3830
3840
|
| UpdateCapacityManagerOrganizationsAccessCommandInput
|
|
3831
3841
|
| UpdateInterruptibleCapacityReservationAllocationCommandInput
|
|
3832
3842
|
| UpdateSecurityGroupRuleDescriptionsEgressCommandInput
|
|
@@ -4364,6 +4374,7 @@ export type ServiceOutputTypes =
|
|
|
4364
4374
|
| GetCapacityManagerAttributesCommandOutput
|
|
4365
4375
|
| GetCapacityManagerMetricDataCommandOutput
|
|
4366
4376
|
| GetCapacityManagerMetricDimensionsCommandOutput
|
|
4377
|
+
| GetCapacityManagerMonitoredTagKeysCommandOutput
|
|
4367
4378
|
| GetCapacityReservationUsageCommandOutput
|
|
4368
4379
|
| GetCoipPoolUsageCommandOutput
|
|
4369
4380
|
| GetConsoleOutputCommandOutput
|
|
@@ -4584,6 +4595,7 @@ export type ServiceOutputTypes =
|
|
|
4584
4595
|
| UnassignPrivateNatGatewayAddressCommandOutput
|
|
4585
4596
|
| UnlockSnapshotCommandOutput
|
|
4586
4597
|
| UnmonitorInstancesCommandOutput
|
|
4598
|
+
| UpdateCapacityManagerMonitoredTagKeysCommandOutput
|
|
4587
4599
|
| UpdateCapacityManagerOrganizationsAccessCommandOutput
|
|
4588
4600
|
| UpdateInterruptibleCapacityReservationAllocationCommandOutput
|
|
4589
4601
|
| UpdateSecurityGroupRuleDescriptionsEgressCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EC2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EC2Client";
|
|
8
|
+
import {
|
|
9
|
+
GetCapacityManagerMonitoredTagKeysRequest,
|
|
10
|
+
GetCapacityManagerMonitoredTagKeysResult,
|
|
11
|
+
} from "../models/models_5";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetCapacityManagerMonitoredTagKeysCommandInput
|
|
15
|
+
extends GetCapacityManagerMonitoredTagKeysRequest {}
|
|
16
|
+
export interface GetCapacityManagerMonitoredTagKeysCommandOutput
|
|
17
|
+
extends GetCapacityManagerMonitoredTagKeysResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetCapacityManagerMonitoredTagKeysCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetCapacityManagerMonitoredTagKeysCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
24
|
+
GetCapacityManagerMonitoredTagKeysCommandOutput,
|
|
25
|
+
EC2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [GetCapacityManagerMonitoredTagKeysCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
33
|
+
GetCapacityManagerMonitoredTagKeysCommandOutput,
|
|
34
|
+
EC2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetCapacityManagerMonitoredTagKeysCommand extends GetCapacityManagerMonitoredTagKeysCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetCapacityManagerMonitoredTagKeysRequest;
|
|
44
|
+
output: GetCapacityManagerMonitoredTagKeysResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetCapacityManagerMonitoredTagKeysCommandInput;
|
|
48
|
+
output: GetCapacityManagerMonitoredTagKeysCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../EC2Client";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetDeclarativePoliciesReportSummaryRequest,
|
|
10
|
+
GetDeclarativePoliciesReportSummaryResult,
|
|
11
|
+
} from "../models/models_6";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface GetDeclarativePoliciesReportSummaryCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ModifyTrafficMirrorFilterNetworkServicesRequest,
|
|
10
10
|
ModifyTrafficMirrorFilterNetworkServicesResult,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_7";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ModifyTrafficMirrorFilterNetworkServicesCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ModifyTrafficMirrorFilterRuleRequest,
|
|
10
10
|
ModifyTrafficMirrorFilterRuleResult,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_7";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface ModifyTrafficMirrorFilterRuleCommandInput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EC2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EC2Client";
|
|
8
|
+
import {
|
|
9
|
+
UpdateCapacityManagerMonitoredTagKeysRequest,
|
|
10
|
+
UpdateCapacityManagerMonitoredTagKeysResult,
|
|
11
|
+
} from "../models/models_7";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateCapacityManagerMonitoredTagKeysCommandInput
|
|
15
|
+
extends UpdateCapacityManagerMonitoredTagKeysRequest {}
|
|
16
|
+
export interface UpdateCapacityManagerMonitoredTagKeysCommandOutput
|
|
17
|
+
extends UpdateCapacityManagerMonitoredTagKeysResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateCapacityManagerMonitoredTagKeysCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateCapacityManagerMonitoredTagKeysCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateCapacityManagerMonitoredTagKeysCommandInput,
|
|
24
|
+
UpdateCapacityManagerMonitoredTagKeysCommandOutput,
|
|
25
|
+
EC2ClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [UpdateCapacityManagerMonitoredTagKeysCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateCapacityManagerMonitoredTagKeysCommandInput,
|
|
33
|
+
UpdateCapacityManagerMonitoredTagKeysCommandOutput,
|
|
34
|
+
EC2ClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateCapacityManagerMonitoredTagKeysCommand extends UpdateCapacityManagerMonitoredTagKeysCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateCapacityManagerMonitoredTagKeysRequest;
|
|
44
|
+
output: UpdateCapacityManagerMonitoredTagKeysResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateCapacityManagerMonitoredTagKeysCommandInput;
|
|
48
|
+
output: UpdateCapacityManagerMonitoredTagKeysCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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";
|
|
@@ -4276,6 +4276,7 @@ export declare const Comparison: {
|
|
|
4276
4276
|
export type Comparison = (typeof Comparison)[keyof typeof Comparison];
|
|
4277
4277
|
export declare const FilterByDimension: {
|
|
4278
4278
|
readonly ACCOUNT_ID: "account-id";
|
|
4279
|
+
readonly ACCOUNT_NAME: "account-name";
|
|
4279
4280
|
readonly AVAILABILITY_ZONE_ID: "availability-zone-id";
|
|
4280
4281
|
readonly INSTANCE_FAMILY: "instance-family";
|
|
4281
4282
|
readonly INSTANCE_PLATFORM: "instance-platform";
|
|
@@ -4297,6 +4298,7 @@ export type FilterByDimension =
|
|
|
4297
4298
|
(typeof FilterByDimension)[keyof typeof FilterByDimension];
|
|
4298
4299
|
export declare const GroupBy: {
|
|
4299
4300
|
readonly ACCOUNT_ID: "account-id";
|
|
4301
|
+
readonly ACCOUNT_NAME: "account-name";
|
|
4300
4302
|
readonly AVAILABILITY_ZONE_ID: "availability-zone-id";
|
|
4301
4303
|
readonly INSTANCE_FAMILY: "instance-family";
|
|
4302
4304
|
readonly INSTANCE_PLATFORM: "instance-platform";
|
|
@@ -4385,6 +4387,14 @@ export declare const CapacityTenancy: {
|
|
|
4385
4387
|
};
|
|
4386
4388
|
export type CapacityTenancy =
|
|
4387
4389
|
(typeof CapacityTenancy)[keyof typeof CapacityTenancy];
|
|
4390
|
+
export declare const CapacityManagerMonitoredTagKeyStatus: {
|
|
4391
|
+
readonly ACTIVATED: "activated";
|
|
4392
|
+
readonly ACTIVATING: "activating";
|
|
4393
|
+
readonly DEACTIVATING: "deactivating";
|
|
4394
|
+
readonly SUSPENDED: "suspended";
|
|
4395
|
+
};
|
|
4396
|
+
export type CapacityManagerMonitoredTagKeyStatus =
|
|
4397
|
+
(typeof CapacityManagerMonitoredTagKeyStatus)[keyof typeof CapacityManagerMonitoredTagKeyStatus];
|
|
4388
4398
|
export declare const UnlimitedSupportedInstanceFamily: {
|
|
4389
4399
|
readonly t2: "t2";
|
|
4390
4400
|
readonly t3: "t3";
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AllowedImagesSettingsDisabledState,
|
|
3
3
|
AllowedImagesSettingsEnabledState,
|
|
4
|
+
CapacityManagerMonitoredTagKeyStatus,
|
|
4
5
|
CapacityManagerStatus,
|
|
5
6
|
CapacityReservationState,
|
|
6
7
|
CapacityTenancy,
|
|
@@ -1543,10 +1544,15 @@ export interface GetCapacityManagerMetricDataRequest {
|
|
|
1543
1544
|
NextToken?: string | undefined;
|
|
1544
1545
|
DryRun?: boolean | undefined;
|
|
1545
1546
|
}
|
|
1547
|
+
export interface CapacityManagerTagDimension {
|
|
1548
|
+
Key?: string | undefined;
|
|
1549
|
+
Value?: string | undefined;
|
|
1550
|
+
}
|
|
1546
1551
|
export interface CapacityManagerDimension {
|
|
1547
1552
|
ResourceRegion?: string | undefined;
|
|
1548
1553
|
AvailabilityZoneId?: string | undefined;
|
|
1549
1554
|
AccountId?: string | undefined;
|
|
1555
|
+
AccountName?: string | undefined;
|
|
1550
1556
|
InstanceFamily?: string | undefined;
|
|
1551
1557
|
InstanceType?: string | undefined;
|
|
1552
1558
|
InstancePlatform?: string | undefined;
|
|
@@ -1561,6 +1567,7 @@ export interface CapacityManagerDimension {
|
|
|
1561
1567
|
ReservationState?: ReservationState | undefined;
|
|
1562
1568
|
ReservationInstanceMatchCriteria?: string | undefined;
|
|
1563
1569
|
ReservationUnusedFinancialOwner?: string | undefined;
|
|
1570
|
+
Tags?: CapacityManagerTagDimension[] | undefined;
|
|
1564
1571
|
}
|
|
1565
1572
|
export interface MetricValue {
|
|
1566
1573
|
Metric?: Metric | undefined;
|
|
@@ -1589,6 +1596,22 @@ export interface GetCapacityManagerMetricDimensionsResult {
|
|
|
1589
1596
|
MetricDimensionResults?: CapacityManagerDimension[] | undefined;
|
|
1590
1597
|
NextToken?: string | undefined;
|
|
1591
1598
|
}
|
|
1599
|
+
export interface GetCapacityManagerMonitoredTagKeysRequest {
|
|
1600
|
+
MaxResults?: number | undefined;
|
|
1601
|
+
NextToken?: string | undefined;
|
|
1602
|
+
DryRun?: boolean | undefined;
|
|
1603
|
+
}
|
|
1604
|
+
export interface CapacityManagerMonitoredTagKey {
|
|
1605
|
+
TagKey?: string | undefined;
|
|
1606
|
+
Status?: CapacityManagerMonitoredTagKeyStatus | undefined;
|
|
1607
|
+
StatusMessage?: string | undefined;
|
|
1608
|
+
CapacityManagerProvided?: boolean | undefined;
|
|
1609
|
+
EarliestDatapointTimestamp?: Date | undefined;
|
|
1610
|
+
}
|
|
1611
|
+
export interface GetCapacityManagerMonitoredTagKeysResult {
|
|
1612
|
+
CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
|
|
1613
|
+
NextToken?: string | undefined;
|
|
1614
|
+
}
|
|
1592
1615
|
export interface GetCapacityReservationUsageRequest {
|
|
1593
1616
|
CapacityReservationId: string | undefined;
|
|
1594
1617
|
NextToken?: string | undefined;
|
|
@@ -1640,21 +1663,3 @@ export interface GetConsoleOutputResult {
|
|
|
1640
1663
|
Timestamp?: Date | undefined;
|
|
1641
1664
|
Output?: string | undefined;
|
|
1642
1665
|
}
|
|
1643
|
-
export interface GetConsoleScreenshotRequest {
|
|
1644
|
-
DryRun?: boolean | undefined;
|
|
1645
|
-
InstanceId: string | undefined;
|
|
1646
|
-
WakeUp?: boolean | undefined;
|
|
1647
|
-
}
|
|
1648
|
-
export interface GetConsoleScreenshotResult {
|
|
1649
|
-
ImageData?: string | undefined;
|
|
1650
|
-
InstanceId?: string | undefined;
|
|
1651
|
-
}
|
|
1652
|
-
export interface GetDeclarativePoliciesReportSummaryRequest {
|
|
1653
|
-
DryRun?: boolean | undefined;
|
|
1654
|
-
ReportId: string | undefined;
|
|
1655
|
-
}
|
|
1656
|
-
export interface RegionalSummary {
|
|
1657
|
-
RegionName?: string | undefined;
|
|
1658
|
-
NumberOfMatchedAccounts?: number | undefined;
|
|
1659
|
-
NumberOfUnmatchedAccounts?: number | undefined;
|
|
1660
|
-
}
|