@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
|
@@ -72,10 +72,6 @@ import {
|
|
|
72
72
|
SSEType,
|
|
73
73
|
TargetCapacityUnitType,
|
|
74
74
|
TargetStorageTier,
|
|
75
|
-
TrafficDirection,
|
|
76
|
-
TrafficMirrorFilterRuleField,
|
|
77
|
-
TrafficMirrorNetworkService,
|
|
78
|
-
TrafficMirrorRuleAction,
|
|
79
75
|
TransitGatewayAssociationState,
|
|
80
76
|
TransitGatewayAttachmentResourceType,
|
|
81
77
|
TransitGatewayPropagationState,
|
|
@@ -135,9 +131,6 @@ import {
|
|
|
135
131
|
} from "./models_1";
|
|
136
132
|
import {
|
|
137
133
|
SubnetCidrReservation,
|
|
138
|
-
TrafficMirrorFilter,
|
|
139
|
-
TrafficMirrorFilterRule,
|
|
140
|
-
TrafficMirrorPortRangeRequest,
|
|
141
134
|
TransitGatewayMeteringPolicyEntry,
|
|
142
135
|
TransitGatewayPrefixListReference,
|
|
143
136
|
} from "./models_2";
|
|
@@ -159,7 +152,25 @@ import {
|
|
|
159
152
|
LaunchTemplateConfig,
|
|
160
153
|
ReservedInstancesConfiguration,
|
|
161
154
|
} from "./models_4";
|
|
162
|
-
import {
|
|
155
|
+
import { RouteServerPropagation } from "./models_5";
|
|
156
|
+
export interface GetConsoleScreenshotRequest {
|
|
157
|
+
DryRun?: boolean | undefined;
|
|
158
|
+
InstanceId: string | undefined;
|
|
159
|
+
WakeUp?: boolean | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface GetConsoleScreenshotResult {
|
|
162
|
+
ImageData?: string | undefined;
|
|
163
|
+
InstanceId?: string | undefined;
|
|
164
|
+
}
|
|
165
|
+
export interface GetDeclarativePoliciesReportSummaryRequest {
|
|
166
|
+
DryRun?: boolean | undefined;
|
|
167
|
+
ReportId: string | undefined;
|
|
168
|
+
}
|
|
169
|
+
export interface RegionalSummary {
|
|
170
|
+
RegionName?: string | undefined;
|
|
171
|
+
NumberOfMatchedAccounts?: number | undefined;
|
|
172
|
+
NumberOfUnmatchedAccounts?: number | undefined;
|
|
173
|
+
}
|
|
163
174
|
export interface AttributeSummary {
|
|
164
175
|
AttributeName?: string | undefined;
|
|
165
176
|
MostFrequentValue?: string | undefined;
|
|
@@ -1881,29 +1892,3 @@ export interface ModifySubnetAttributeRequest {
|
|
|
1881
1892
|
EnableLniAtDeviceIndex?: number | undefined;
|
|
1882
1893
|
DisableLniAtDeviceIndex?: AttributeBooleanValue | undefined;
|
|
1883
1894
|
}
|
|
1884
|
-
export interface ModifyTrafficMirrorFilterNetworkServicesRequest {
|
|
1885
|
-
TrafficMirrorFilterId: string | undefined;
|
|
1886
|
-
AddNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
1887
|
-
RemoveNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
1888
|
-
DryRun?: boolean | undefined;
|
|
1889
|
-
}
|
|
1890
|
-
export interface ModifyTrafficMirrorFilterNetworkServicesResult {
|
|
1891
|
-
TrafficMirrorFilter?: TrafficMirrorFilter | undefined;
|
|
1892
|
-
}
|
|
1893
|
-
export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
1894
|
-
TrafficMirrorFilterRuleId: string | undefined;
|
|
1895
|
-
TrafficDirection?: TrafficDirection | undefined;
|
|
1896
|
-
RuleNumber?: number | undefined;
|
|
1897
|
-
RuleAction?: TrafficMirrorRuleAction | undefined;
|
|
1898
|
-
DestinationPortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
1899
|
-
SourcePortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
1900
|
-
Protocol?: number | undefined;
|
|
1901
|
-
DestinationCidrBlock?: string | undefined;
|
|
1902
|
-
SourceCidrBlock?: string | undefined;
|
|
1903
|
-
Description?: string | undefined;
|
|
1904
|
-
RemoveFields?: TrafficMirrorFilterRuleField[] | undefined;
|
|
1905
|
-
DryRun?: boolean | undefined;
|
|
1906
|
-
}
|
|
1907
|
-
export interface ModifyTrafficMirrorFilterRuleResult {
|
|
1908
|
-
TrafficMirrorFilterRule?: TrafficMirrorFilterRule | undefined;
|
|
1909
|
-
}
|
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
SSEType,
|
|
48
48
|
Status,
|
|
49
49
|
TpmSupportValues,
|
|
50
|
+
TrafficDirection,
|
|
51
|
+
TrafficMirrorFilterRuleField,
|
|
52
|
+
TrafficMirrorNetworkService,
|
|
53
|
+
TrafficMirrorRuleAction,
|
|
50
54
|
TrafficMirrorSessionField,
|
|
51
55
|
TransitGatewayAttachmentResourceType,
|
|
52
56
|
VerificationMethod,
|
|
@@ -100,6 +104,9 @@ import {
|
|
|
100
104
|
Phase2EncryptionAlgorithmsRequestListValue,
|
|
101
105
|
Phase2IntegrityAlgorithmsRequestListValue,
|
|
102
106
|
SubnetConfiguration,
|
|
107
|
+
TrafficMirrorFilter,
|
|
108
|
+
TrafficMirrorFilterRule,
|
|
109
|
+
TrafficMirrorPortRangeRequest,
|
|
103
110
|
TrafficMirrorSession,
|
|
104
111
|
TransitGateway,
|
|
105
112
|
TransitGatewayMeteringPolicy,
|
|
@@ -136,11 +143,38 @@ import {
|
|
|
136
143
|
SpotPlacement,
|
|
137
144
|
} from "./models_4";
|
|
138
145
|
import {
|
|
146
|
+
CapacityManagerMonitoredTagKey,
|
|
139
147
|
VerifiedAccessInstanceLoggingConfiguration,
|
|
140
148
|
VolumeModification,
|
|
141
149
|
VpcBlockPublicAccessOptions,
|
|
142
150
|
} from "./models_5";
|
|
143
151
|
import { CapacityReservationSpecification, Purchase } from "./models_6";
|
|
152
|
+
export interface ModifyTrafficMirrorFilterNetworkServicesRequest {
|
|
153
|
+
TrafficMirrorFilterId: string | undefined;
|
|
154
|
+
AddNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
155
|
+
RemoveNetworkServices?: TrafficMirrorNetworkService[] | undefined;
|
|
156
|
+
DryRun?: boolean | undefined;
|
|
157
|
+
}
|
|
158
|
+
export interface ModifyTrafficMirrorFilterNetworkServicesResult {
|
|
159
|
+
TrafficMirrorFilter?: TrafficMirrorFilter | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface ModifyTrafficMirrorFilterRuleRequest {
|
|
162
|
+
TrafficMirrorFilterRuleId: string | undefined;
|
|
163
|
+
TrafficDirection?: TrafficDirection | undefined;
|
|
164
|
+
RuleNumber?: number | undefined;
|
|
165
|
+
RuleAction?: TrafficMirrorRuleAction | undefined;
|
|
166
|
+
DestinationPortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
167
|
+
SourcePortRange?: TrafficMirrorPortRangeRequest | undefined;
|
|
168
|
+
Protocol?: number | undefined;
|
|
169
|
+
DestinationCidrBlock?: string | undefined;
|
|
170
|
+
SourceCidrBlock?: string | undefined;
|
|
171
|
+
Description?: string | undefined;
|
|
172
|
+
RemoveFields?: TrafficMirrorFilterRuleField[] | undefined;
|
|
173
|
+
DryRun?: boolean | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface ModifyTrafficMirrorFilterRuleResult {
|
|
176
|
+
TrafficMirrorFilterRule?: TrafficMirrorFilterRule | undefined;
|
|
177
|
+
}
|
|
144
178
|
export interface ModifyTrafficMirrorSessionRequest {
|
|
145
179
|
TrafficMirrorSessionId: string | undefined;
|
|
146
180
|
TrafficMirrorTargetId?: string | undefined;
|
|
@@ -1575,6 +1609,15 @@ export interface UnmonitorInstancesRequest {
|
|
|
1575
1609
|
export interface UnmonitorInstancesResult {
|
|
1576
1610
|
InstanceMonitorings?: InstanceMonitoring[] | undefined;
|
|
1577
1611
|
}
|
|
1612
|
+
export interface UpdateCapacityManagerMonitoredTagKeysRequest {
|
|
1613
|
+
ActivateTagKeys?: string[] | undefined;
|
|
1614
|
+
DeactivateTagKeys?: string[] | undefined;
|
|
1615
|
+
DryRun?: boolean | undefined;
|
|
1616
|
+
ClientToken?: string | undefined;
|
|
1617
|
+
}
|
|
1618
|
+
export interface UpdateCapacityManagerMonitoredTagKeysResult {
|
|
1619
|
+
CapacityManagerTagKeys?: CapacityManagerMonitoredTagKey[] | undefined;
|
|
1620
|
+
}
|
|
1578
1621
|
export interface UpdateCapacityManagerOrganizationsAccessRequest {
|
|
1579
1622
|
OrganizationsAccess: boolean | undefined;
|
|
1580
1623
|
DryRun?: boolean | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
4
|
+
GetCapacityManagerMonitoredTagKeysCommandOutput,
|
|
5
|
+
} from "../commands/GetCapacityManagerMonitoredTagKeysCommand";
|
|
6
|
+
import { EC2PaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateGetCapacityManagerMonitoredTagKeys: (
|
|
8
|
+
config: EC2PaginationConfiguration,
|
|
9
|
+
input: GetCapacityManagerMonitoredTagKeysCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => 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";
|
|
@@ -187,6 +187,8 @@ export declare var CapacityBlockStatus$: StaticStructureSchema;
|
|
|
187
187
|
export declare var CapacityManagerCondition$: StaticStructureSchema;
|
|
188
188
|
export declare var CapacityManagerDataExportResponse$: StaticStructureSchema;
|
|
189
189
|
export declare var CapacityManagerDimension$: StaticStructureSchema;
|
|
190
|
+
export declare var CapacityManagerMonitoredTagKey$: StaticStructureSchema;
|
|
191
|
+
export declare var CapacityManagerTagDimension$: StaticStructureSchema;
|
|
190
192
|
export declare var CapacityReservation$: StaticStructureSchema;
|
|
191
193
|
export declare var CapacityReservationBillingRequest$: StaticStructureSchema;
|
|
192
194
|
export declare var CapacityReservationCommitmentInfo$: StaticStructureSchema;
|
|
@@ -1293,6 +1295,8 @@ export declare var GetCapacityManagerMetricDataRequest$: StaticStructureSchema;
|
|
|
1293
1295
|
export declare var GetCapacityManagerMetricDataResult$: StaticStructureSchema;
|
|
1294
1296
|
export declare var GetCapacityManagerMetricDimensionsRequest$: StaticStructureSchema;
|
|
1295
1297
|
export declare var GetCapacityManagerMetricDimensionsResult$: StaticStructureSchema;
|
|
1298
|
+
export declare var GetCapacityManagerMonitoredTagKeysRequest$: StaticStructureSchema;
|
|
1299
|
+
export declare var GetCapacityManagerMonitoredTagKeysResult$: StaticStructureSchema;
|
|
1296
1300
|
export declare var GetCapacityReservationUsageRequest$: StaticStructureSchema;
|
|
1297
1301
|
export declare var GetCapacityReservationUsageResult$: StaticStructureSchema;
|
|
1298
1302
|
export declare var GetCoipPoolUsageRequest$: StaticStructureSchema;
|
|
@@ -2275,6 +2279,8 @@ export declare var UnsuccessfulInstanceCreditSpecificationItem$: StaticStructure
|
|
|
2275
2279
|
export declare var UnsuccessfulInstanceCreditSpecificationItemError$: StaticStructureSchema;
|
|
2276
2280
|
export declare var UnsuccessfulItem$: StaticStructureSchema;
|
|
2277
2281
|
export declare var UnsuccessfulItemError$: StaticStructureSchema;
|
|
2282
|
+
export declare var UpdateCapacityManagerMonitoredTagKeysRequest$: StaticStructureSchema;
|
|
2283
|
+
export declare var UpdateCapacityManagerMonitoredTagKeysResult$: StaticStructureSchema;
|
|
2278
2284
|
export declare var UpdateCapacityManagerOrganizationsAccessRequest$: StaticStructureSchema;
|
|
2279
2285
|
export declare var UpdateCapacityManagerOrganizationsAccessResult$: StaticStructureSchema;
|
|
2280
2286
|
export declare var UpdateInterruptibleCapacityReservationAllocationRequest$: StaticStructureSchema;
|
|
@@ -2895,6 +2901,7 @@ export declare var GetAwsNetworkPerformanceData$: StaticOperationSchema;
|
|
|
2895
2901
|
export declare var GetCapacityManagerAttributes$: StaticOperationSchema;
|
|
2896
2902
|
export declare var GetCapacityManagerMetricData$: StaticOperationSchema;
|
|
2897
2903
|
export declare var GetCapacityManagerMetricDimensions$: StaticOperationSchema;
|
|
2904
|
+
export declare var GetCapacityManagerMonitoredTagKeys$: StaticOperationSchema;
|
|
2898
2905
|
export declare var GetCapacityReservationUsage$: StaticOperationSchema;
|
|
2899
2906
|
export declare var GetCoipPoolUsage$: StaticOperationSchema;
|
|
2900
2907
|
export declare var GetConsoleOutput$: StaticOperationSchema;
|
|
@@ -3115,6 +3122,7 @@ export declare var UnassignPrivateIpAddresses$: StaticOperationSchema;
|
|
|
3115
3122
|
export declare var UnassignPrivateNatGatewayAddress$: StaticOperationSchema;
|
|
3116
3123
|
export declare var UnlockSnapshot$: StaticOperationSchema;
|
|
3117
3124
|
export declare var UnmonitorInstances$: StaticOperationSchema;
|
|
3125
|
+
export declare var UpdateCapacityManagerMonitoredTagKeys$: StaticOperationSchema;
|
|
3118
3126
|
export declare var UpdateCapacityManagerOrganizationsAccess$: StaticOperationSchema;
|
|
3119
3127
|
export declare var UpdateInterruptibleCapacityReservationAllocation$: StaticOperationSchema;
|
|
3120
3128
|
export declare var UpdateSecurityGroupRuleDescriptionsEgress$: StaticOperationSchema;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ec2",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ec2 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1029.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ec2",
|
|
@@ -25,48 +25,48 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
27
27
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
28
|
-
"@aws-sdk/core": "^3.973.
|
|
29
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
33
|
-
"@aws-sdk/middleware-sdk-ec2": "^3.972.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
35
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
36
|
-
"@aws-sdk/types": "^3.973.
|
|
37
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
38
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
39
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
40
|
-
"@smithy/config-resolver": "^4.4.
|
|
41
|
-
"@smithy/core": "^3.23.
|
|
42
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
43
|
-
"@smithy/hash-node": "^4.2.
|
|
44
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
45
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
46
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
47
|
-
"@smithy/middleware-retry": "^4.
|
|
48
|
-
"@smithy/middleware-serde": "^4.2.
|
|
49
|
-
"@smithy/middleware-stack": "^4.2.
|
|
50
|
-
"@smithy/node-config-provider": "^4.3.
|
|
51
|
-
"@smithy/node-http-handler": "^4.5.
|
|
52
|
-
"@smithy/protocol-http": "^5.3.
|
|
53
|
-
"@smithy/smithy-client": "^4.12.
|
|
54
|
-
"@smithy/types": "^4.
|
|
55
|
-
"@smithy/url-parser": "^4.2.
|
|
28
|
+
"@aws-sdk/core": "^3.973.27",
|
|
29
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
31
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
33
|
+
"@aws-sdk/middleware-sdk-ec2": "^3.972.19",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
35
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
36
|
+
"@aws-sdk/types": "^3.973.7",
|
|
37
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
38
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
39
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
40
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
41
|
+
"@smithy/core": "^3.23.14",
|
|
42
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
43
|
+
"@smithy/hash-node": "^4.2.13",
|
|
44
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
45
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
46
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
47
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
48
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
49
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
50
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
51
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
52
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
53
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
54
|
+
"@smithy/types": "^4.14.0",
|
|
55
|
+
"@smithy/url-parser": "^4.2.13",
|
|
56
56
|
"@smithy/util-base64": "^4.3.2",
|
|
57
57
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
58
58
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
59
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
60
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
61
|
-
"@smithy/util-endpoints": "^3.3.
|
|
62
|
-
"@smithy/util-middleware": "^4.2.
|
|
63
|
-
"@smithy/util-retry": "^4.
|
|
59
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
60
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
61
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
62
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
63
|
+
"@smithy/util-retry": "^4.3.0",
|
|
64
64
|
"@smithy/util-utf8": "^4.2.2",
|
|
65
|
-
"@smithy/util-waiter": "^4.2.
|
|
65
|
+
"@smithy/util-waiter": "^4.2.15",
|
|
66
66
|
"tslib": "^2.6.2"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
69
|
+
"@smithy/snapshot-testing": "^2.0.5",
|
|
70
70
|
"@tsconfig/node20": "20.1.8",
|
|
71
71
|
"@types/node": "^20.14.8",
|
|
72
72
|
"concurrently": "7.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iam",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iam Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1029.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-iam",
|
|
@@ -27,47 +27,47 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.973.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
33
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
36
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
37
|
-
"@aws-sdk/types": "^3.973.
|
|
38
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
39
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
40
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
41
|
-
"@smithy/config-resolver": "^4.4.
|
|
42
|
-
"@smithy/core": "^3.23.
|
|
43
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
44
|
-
"@smithy/hash-node": "^4.2.
|
|
45
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
46
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
47
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
48
|
-
"@smithy/middleware-retry": "^4.
|
|
49
|
-
"@smithy/middleware-serde": "^4.2.
|
|
50
|
-
"@smithy/middleware-stack": "^4.2.
|
|
51
|
-
"@smithy/node-config-provider": "^4.3.
|
|
52
|
-
"@smithy/node-http-handler": "^4.5.
|
|
53
|
-
"@smithy/protocol-http": "^5.3.
|
|
54
|
-
"@smithy/smithy-client": "^4.12.
|
|
55
|
-
"@smithy/types": "^4.
|
|
56
|
-
"@smithy/url-parser": "^4.2.
|
|
30
|
+
"@aws-sdk/core": "^3.973.27",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
33
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
36
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
37
|
+
"@aws-sdk/types": "^3.973.7",
|
|
38
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
39
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
40
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
41
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
42
|
+
"@smithy/core": "^3.23.14",
|
|
43
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
44
|
+
"@smithy/hash-node": "^4.2.13",
|
|
45
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
46
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
47
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
48
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
49
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
50
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
51
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
52
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
53
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
54
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
55
|
+
"@smithy/types": "^4.14.0",
|
|
56
|
+
"@smithy/url-parser": "^4.2.13",
|
|
57
57
|
"@smithy/util-base64": "^4.3.2",
|
|
58
58
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
59
59
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
60
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
61
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
62
|
-
"@smithy/util-endpoints": "^3.3.
|
|
63
|
-
"@smithy/util-middleware": "^4.2.
|
|
64
|
-
"@smithy/util-retry": "^4.
|
|
60
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
61
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
62
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
63
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
64
|
+
"@smithy/util-retry": "^4.3.0",
|
|
65
65
|
"@smithy/util-utf8": "^4.2.2",
|
|
66
|
-
"@smithy/util-waiter": "^4.2.
|
|
66
|
+
"@smithy/util-waiter": "^4.2.15",
|
|
67
67
|
"tslib": "^2.6.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@smithy/snapshot-testing": "^2.0.
|
|
70
|
+
"@smithy/snapshot-testing": "^2.0.5",
|
|
71
71
|
"@tsconfig/node20": "20.1.8",
|
|
72
72
|
"@types/node": "^20.14.8",
|
|
73
73
|
"concurrently": "7.0.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CallbackTimeoutException = exports.ProvisionedConcurrencyConfigNotFoundException = exports.UnsupportedMediaTypeException = exports.SubnetIPAddressLimitReachedException = exports.SnapStartTimeoutException = exports.SnapStartNotReadyException = exports.SnapStartException = exports.SerializedRequestEntityTooLargeException = exports.ResourceNotReadyException = exports.RequestTooLargeException = exports.RecursiveInvocationException = exports.NoPublishedVersionException = exports.KMSNotFoundException = exports.KMSInvalidStateException = exports.KMSDisabledException = exports.KMSAccessDeniedException = exports.InvalidZipFileException = exports.InvalidSubnetIDException = exports.InvalidSecurityGroupIDException = exports.InvalidRuntimeException = exports.InvalidRequestContentException = exports.ENILimitReachedException = exports.EFSMountTimeoutException = exports.EFSMountFailureException = exports.EFSMountConnectivityException = exports.EFSIOException = exports.EC2UnexpectedException = exports.EC2ThrottledException = exports.EC2AccessDeniedException = exports.DurableExecutionAlreadyStartedException = exports.InvalidCodeSignatureException = exports.FunctionVersionsPerCapacityProviderLimitExceededException = exports.CodeVerificationFailedException = exports.CodeStorageExceededException = exports.CodeSigningConfigNotFoundException = exports.ResourceInUseException = exports.CapacityProviderLimitExceededException = exports.TooManyRequestsException = exports.ServiceException = exports.ResourceNotFoundException = exports.ResourceConflictException = exports.PreconditionFailedException = exports.PolicyLengthExceededException = exports.InvalidParameterValueException = void 0;
|
|
3
|
+
exports.CallbackTimeoutException = exports.ProvisionedConcurrencyConfigNotFoundException = exports.UnsupportedMediaTypeException = exports.SubnetIPAddressLimitReachedException = exports.SnapStartTimeoutException = exports.SnapStartNotReadyException = exports.SnapStartException = exports.SerializedRequestEntityTooLargeException = exports.S3FilesMountTimeoutException = exports.S3FilesMountFailureException = exports.S3FilesMountConnectivityException = exports.ResourceNotReadyException = exports.RequestTooLargeException = exports.RecursiveInvocationException = exports.NoPublishedVersionException = exports.KMSNotFoundException = exports.KMSInvalidStateException = exports.KMSDisabledException = exports.KMSAccessDeniedException = exports.InvalidZipFileException = exports.InvalidSubnetIDException = exports.InvalidSecurityGroupIDException = exports.InvalidRuntimeException = exports.InvalidRequestContentException = exports.ENILimitReachedException = exports.EFSMountTimeoutException = exports.EFSMountFailureException = exports.EFSMountConnectivityException = exports.EFSIOException = exports.EC2UnexpectedException = exports.EC2ThrottledException = exports.EC2AccessDeniedException = exports.DurableExecutionAlreadyStartedException = exports.InvalidCodeSignatureException = exports.FunctionVersionsPerCapacityProviderLimitExceededException = exports.CodeVerificationFailedException = exports.CodeStorageExceededException = exports.CodeSigningConfigNotFoundException = exports.ResourceInUseException = exports.CapacityProviderLimitExceededException = exports.TooManyRequestsException = exports.ServiceException = exports.ResourceNotFoundException = exports.ResourceConflictException = exports.PreconditionFailedException = exports.PolicyLengthExceededException = exports.InvalidParameterValueException = void 0;
|
|
4
4
|
const LambdaServiceException_1 = require("./LambdaServiceException");
|
|
5
5
|
class InvalidParameterValueException extends LambdaServiceException_1.LambdaServiceException {
|
|
6
6
|
name = "InvalidParameterValueException";
|
|
@@ -598,6 +598,57 @@ class ResourceNotReadyException extends LambdaServiceException_1.LambdaServiceEx
|
|
|
598
598
|
}
|
|
599
599
|
}
|
|
600
600
|
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
601
|
+
class S3FilesMountConnectivityException extends LambdaServiceException_1.LambdaServiceException {
|
|
602
|
+
name = "S3FilesMountConnectivityException";
|
|
603
|
+
$fault = "client";
|
|
604
|
+
Type;
|
|
605
|
+
Message;
|
|
606
|
+
constructor(opts) {
|
|
607
|
+
super({
|
|
608
|
+
name: "S3FilesMountConnectivityException",
|
|
609
|
+
$fault: "client",
|
|
610
|
+
...opts,
|
|
611
|
+
});
|
|
612
|
+
Object.setPrototypeOf(this, S3FilesMountConnectivityException.prototype);
|
|
613
|
+
this.Type = opts.Type;
|
|
614
|
+
this.Message = opts.Message;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
exports.S3FilesMountConnectivityException = S3FilesMountConnectivityException;
|
|
618
|
+
class S3FilesMountFailureException extends LambdaServiceException_1.LambdaServiceException {
|
|
619
|
+
name = "S3FilesMountFailureException";
|
|
620
|
+
$fault = "client";
|
|
621
|
+
Type;
|
|
622
|
+
Message;
|
|
623
|
+
constructor(opts) {
|
|
624
|
+
super({
|
|
625
|
+
name: "S3FilesMountFailureException",
|
|
626
|
+
$fault: "client",
|
|
627
|
+
...opts,
|
|
628
|
+
});
|
|
629
|
+
Object.setPrototypeOf(this, S3FilesMountFailureException.prototype);
|
|
630
|
+
this.Type = opts.Type;
|
|
631
|
+
this.Message = opts.Message;
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
exports.S3FilesMountFailureException = S3FilesMountFailureException;
|
|
635
|
+
class S3FilesMountTimeoutException extends LambdaServiceException_1.LambdaServiceException {
|
|
636
|
+
name = "S3FilesMountTimeoutException";
|
|
637
|
+
$fault = "client";
|
|
638
|
+
Type;
|
|
639
|
+
Message;
|
|
640
|
+
constructor(opts) {
|
|
641
|
+
super({
|
|
642
|
+
name: "S3FilesMountTimeoutException",
|
|
643
|
+
$fault: "client",
|
|
644
|
+
...opts,
|
|
645
|
+
});
|
|
646
|
+
Object.setPrototypeOf(this, S3FilesMountTimeoutException.prototype);
|
|
647
|
+
this.Type = opts.Type;
|
|
648
|
+
this.Message = opts.Message;
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
exports.S3FilesMountTimeoutException = S3FilesMountTimeoutException;
|
|
601
652
|
class SerializedRequestEntityTooLargeException extends LambdaServiceException_1.LambdaServiceException {
|
|
602
653
|
name = "SerializedRequestEntityTooLargeException";
|
|
603
654
|
$fault = "client";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.UpdateFunctionUrlConfig$ = exports.UpdateFunctionEventInvokeConfig$ = exports.UpdateFunctionConfiguration$ = exports.UpdateFunctionCode$ = exports.UpdateEventSourceMapping$ = exports.UpdateCodeSigningConfig$ = exports.UpdateCapacityProvider$ = exports.UpdateAlias$ = exports.UntagResource$ = exports.TagResource$ = exports.StopDurableExecution$ = exports.SendDurableExecutionCallbackSuccess$ = exports.SendDurableExecutionCallbackHeartbeat$ = exports.SendDurableExecutionCallbackFailure$ = exports.RemovePermission$ = exports.RemoveLayerVersionPermission$ = exports.PutRuntimeManagementConfig$ = exports.PutProvisionedConcurrencyConfig$ = exports.PutFunctionScalingConfig$ = exports.PutFunctionRecursionConfig$ = exports.PutFunctionEventInvokeConfig$ = exports.PutFunctionConcurrency$ = exports.PutFunctionCodeSigningConfig$ = exports.PublishVersion$ = exports.PublishLayerVersion$ = exports.ListVersionsByFunction$ = exports.ListTags$ = exports.ListProvisionedConcurrencyConfigs$ = exports.ListLayerVersions$ = exports.ListLayers$ = exports.ListFunctionVersionsByCapacityProvider$ = exports.ListFunctionUrlConfigs$ = exports.ListFunctionsByCodeSigningConfig$ = exports.ListFunctions$ = exports.ListFunctionEventInvokeConfigs$ = exports.ListEventSourceMappings$ = exports.ListDurableExecutionsByFunction$ = exports.ListCodeSigningConfigs$ = exports.ListCapacityProviders$ = exports.ListAliases$ = exports.InvokeWithResponseStream$ = exports.InvokeAsync$ = void 0;
|
|
3
|
+
exports.AccountLimit$ = exports.errorTypeRegistries = exports.UnsupportedMediaTypeException$ = exports.TooManyRequestsException$ = exports.SubnetIPAddressLimitReachedException$ = exports.SnapStartTimeoutException$ = exports.SnapStartNotReadyException$ = exports.SnapStartException$ = exports.ServiceException$ = exports.SerializedRequestEntityTooLargeException$ = exports.S3FilesMountTimeoutException$ = exports.S3FilesMountFailureException$ = exports.S3FilesMountConnectivityException$ = exports.ResourceNotReadyException$ = exports.ResourceNotFoundException$ = exports.ResourceInUseException$ = exports.ResourceConflictException$ = exports.RequestTooLargeException$ = exports.RecursiveInvocationException$ = exports.ProvisionedConcurrencyConfigNotFoundException$ = exports.PreconditionFailedException$ = exports.PolicyLengthExceededException$ = exports.NoPublishedVersionException$ = exports.KMSNotFoundException$ = exports.KMSInvalidStateException$ = exports.KMSDisabledException$ = exports.KMSAccessDeniedException$ = exports.InvalidZipFileException$ = exports.InvalidSubnetIDException$ = exports.InvalidSecurityGroupIDException$ = exports.InvalidRuntimeException$ = exports.InvalidRequestContentException$ = exports.InvalidParameterValueException$ = exports.InvalidCodeSignatureException$ = exports.FunctionVersionsPerCapacityProviderLimitExceededException$ = exports.ENILimitReachedException$ = exports.EFSMountTimeoutException$ = exports.EFSMountFailureException$ = exports.EFSMountConnectivityException$ = exports.EFSIOException$ = exports.EC2UnexpectedException$ = exports.EC2ThrottledException$ = exports.EC2AccessDeniedException$ = exports.DurableExecutionAlreadyStartedException$ = exports.CodeVerificationFailedException$ = exports.CodeStorageExceededException$ = exports.CodeSigningConfigNotFoundException$ = exports.CapacityProviderLimitExceededException$ = exports.CallbackTimeoutException$ = exports.LambdaServiceException$ = void 0;
|
|
4
|
+
exports.DeleteAliasRequest$ = exports.DeadLetterConfig$ = exports.CreateFunctionUrlConfigResponse$ = exports.CreateFunctionUrlConfigRequest$ = exports.CreateFunctionRequest$ = exports.CreateEventSourceMappingRequest$ = exports.CreateCodeSigningConfigResponse$ = exports.CreateCodeSigningConfigRequest$ = exports.CreateCapacityProviderResponse$ = exports.CreateCapacityProviderRequest$ = exports.CreateAliasRequest$ = exports.Cors$ = exports.ContextSucceededDetails$ = exports.ContextStartedDetails$ = exports.ContextOptions$ = exports.ContextFailedDetails$ = exports.ContextDetails$ = exports.Concurrency$ = exports.CodeSigningPolicies$ = exports.CodeSigningConfig$ = exports.CheckpointUpdatedExecutionState$ = exports.CheckpointDurableExecutionResponse$ = exports.CheckpointDurableExecutionRequest$ = exports.ChainedInvokeTimedOutDetails$ = exports.ChainedInvokeSucceededDetails$ = exports.ChainedInvokeStoppedDetails$ = exports.ChainedInvokeStartedDetails$ = exports.ChainedInvokeOptions$ = exports.ChainedInvokeFailedDetails$ = exports.ChainedInvokeDetails$ = exports.CapacityProviderVpcConfig$ = exports.CapacityProviderScalingConfig$ = exports.CapacityProviderPermissionsConfig$ = exports.CapacityProviderConfig$ = exports.CapacityProvider$ = exports.CallbackTimedOutDetails$ = exports.CallbackSucceededDetails$ = exports.CallbackStartedDetails$ = exports.CallbackOptions$ = exports.CallbackFailedDetails$ = exports.CallbackDetails$ = exports.AmazonManagedKafkaEventSourceConfig$ = exports.AllowedPublishers$ = exports.AliasRoutingConfiguration$ = exports.AliasConfiguration$ = exports.AddPermissionResponse$ = exports.AddPermissionRequest$ = exports.AddLayerVersionPermissionResponse$ = exports.AddLayerVersionPermissionRequest$ = exports.AccountUsage$ = void 0;
|
|
5
|
+
exports.GetCapacityProviderRequest$ = exports.GetAliasRequest$ = exports.GetAccountSettingsResponse$ = exports.GetAccountSettingsRequest$ = exports.FunctionVersionsByCapacityProviderListItem$ = exports.FunctionUrlConfig$ = exports.FunctionScalingConfig$ = exports.FunctionEventInvokeConfig$ = exports.FunctionConfiguration$ = exports.FunctionCodeLocation$ = exports.FunctionCode$ = exports.FilterCriteriaError$ = exports.FilterCriteria$ = exports.Filter$ = exports.FileSystemConfig$ = exports.ExecutionTimedOutDetails$ = exports.ExecutionSucceededDetails$ = exports.ExecutionStoppedDetails$ = exports.ExecutionStartedDetails$ = exports.ExecutionFailedDetails$ = exports.ExecutionDetails$ = exports.Execution$ = exports.EventSourceMappingMetricsConfig$ = exports.EventSourceMappingLoggingConfig$ = exports.EventSourceMappingConfiguration$ = exports.EventResult$ = exports.EventInput$ = exports.EventError$ = exports.Event$ = exports.ErrorObject$ = exports.EphemeralStorage$ = exports.EnvironmentResponse$ = exports.EnvironmentError$ = exports.Environment$ = exports.DurableConfig$ = exports.DocumentDBEventSourceConfig$ = exports.DestinationConfig$ = exports.DeleteProvisionedConcurrencyConfigRequest$ = exports.DeleteLayerVersionRequest$ = exports.DeleteFunctionUrlConfigRequest$ = exports.DeleteFunctionResponse$ = exports.DeleteFunctionRequest$ = exports.DeleteFunctionEventInvokeConfigRequest$ = exports.DeleteFunctionConcurrencyRequest$ = exports.DeleteFunctionCodeSigningConfigRequest$ = exports.DeleteEventSourceMappingRequest$ = exports.DeleteCodeSigningConfigResponse$ = exports.DeleteCodeSigningConfigRequest$ = exports.DeleteCapacityProviderResponse$ = exports.DeleteCapacityProviderRequest$ = void 0;
|
|
6
|
+
exports.KafkaSchemaRegistryConfig$ = exports.KafkaSchemaRegistryAccessConfig$ = exports.InvokeWithResponseStreamResponse$ = exports.InvokeWithResponseStreamRequest$ = exports.InvokeWithResponseStreamCompleteEvent$ = exports.InvokeResponseStreamUpdate$ = exports.InvokeAsyncResponse$ = exports.InvokeAsyncRequest$ = exports.InvocationResponse$ = exports.InvocationRequest$ = exports.InvocationCompletedDetails$ = exports.InstanceRequirements$ = exports.ImageConfigResponse$ = exports.ImageConfigError$ = exports.ImageConfig$ = exports.GetRuntimeManagementConfigResponse$ = exports.GetRuntimeManagementConfigRequest$ = exports.GetProvisionedConcurrencyConfigResponse$ = exports.GetProvisionedConcurrencyConfigRequest$ = exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetLayerVersionResponse$ = exports.GetLayerVersionRequest$ = exports.GetLayerVersionPolicyResponse$ = exports.GetLayerVersionPolicyRequest$ = exports.GetLayerVersionByArnRequest$ = exports.GetFunctionUrlConfigResponse$ = exports.GetFunctionUrlConfigRequest$ = exports.GetFunctionScalingConfigResponse$ = exports.GetFunctionScalingConfigRequest$ = exports.GetFunctionResponse$ = exports.GetFunctionRequest$ = exports.GetFunctionRecursionConfigResponse$ = exports.GetFunctionRecursionConfigRequest$ = exports.GetFunctionEventInvokeConfigRequest$ = exports.GetFunctionConfigurationRequest$ = exports.GetFunctionConcurrencyResponse$ = exports.GetFunctionConcurrencyRequest$ = exports.GetFunctionCodeSigningConfigResponse$ = exports.GetFunctionCodeSigningConfigRequest$ = exports.GetEventSourceMappingRequest$ = exports.GetDurableExecutionStateResponse$ = exports.GetDurableExecutionStateRequest$ = exports.GetDurableExecutionResponse$ = exports.GetDurableExecutionRequest$ = exports.GetDurableExecutionHistoryResponse$ = exports.GetDurableExecutionHistoryRequest$ = exports.GetCodeSigningConfigResponse$ = exports.GetCodeSigningConfigRequest$ = exports.GetCapacityProviderResponse$ = void 0;
|
|
7
|
+
exports.PutFunctionConcurrencyRequest$ = exports.PutFunctionCodeSigningConfigResponse$ = exports.PutFunctionCodeSigningConfigRequest$ = exports.PublishVersionRequest$ = exports.PublishLayerVersionResponse$ = exports.PublishLayerVersionRequest$ = exports.ProvisionedPollerConfig$ = exports.ProvisionedConcurrencyConfigListItem$ = exports.OperationUpdate$ = exports.Operation$ = exports.OnSuccess$ = exports.OnFailure$ = exports.LoggingConfig$ = exports.ListVersionsByFunctionResponse$ = exports.ListVersionsByFunctionRequest$ = exports.ListTagsResponse$ = exports.ListTagsRequest$ = exports.ListProvisionedConcurrencyConfigsResponse$ = exports.ListProvisionedConcurrencyConfigsRequest$ = exports.ListLayerVersionsResponse$ = exports.ListLayerVersionsRequest$ = exports.ListLayersResponse$ = exports.ListLayersRequest$ = exports.ListFunctionVersionsByCapacityProviderResponse$ = exports.ListFunctionVersionsByCapacityProviderRequest$ = exports.ListFunctionUrlConfigsResponse$ = exports.ListFunctionUrlConfigsRequest$ = exports.ListFunctionsResponse$ = exports.ListFunctionsRequest$ = exports.ListFunctionsByCodeSigningConfigResponse$ = exports.ListFunctionsByCodeSigningConfigRequest$ = exports.ListFunctionEventInvokeConfigsResponse$ = exports.ListFunctionEventInvokeConfigsRequest$ = exports.ListEventSourceMappingsResponse$ = exports.ListEventSourceMappingsRequest$ = exports.ListDurableExecutionsByFunctionResponse$ = exports.ListDurableExecutionsByFunctionRequest$ = exports.ListCodeSigningConfigsResponse$ = exports.ListCodeSigningConfigsRequest$ = exports.ListCapacityProvidersResponse$ = exports.ListCapacityProvidersRequest$ = exports.ListAliasesResponse$ = exports.ListAliasesRequest$ = exports.LayerVersionsListItem$ = exports.LayerVersionContentOutput$ = exports.LayerVersionContentInput$ = exports.LayersListItem$ = exports.Layer$ = exports.LambdaManagedInstancesCapacityProviderConfig$ = exports.KafkaSchemaValidationConfig$ = void 0;
|
|
8
|
+
exports.UpdateFunctionEventInvokeConfigRequest$ = exports.UpdateFunctionConfigurationRequest$ = exports.UpdateFunctionCodeRequest$ = exports.UpdateEventSourceMappingRequest$ = exports.UpdateCodeSigningConfigResponse$ = exports.UpdateCodeSigningConfigRequest$ = exports.UpdateCapacityProviderResponse$ = exports.UpdateCapacityProviderRequest$ = exports.UpdateAliasRequest$ = exports.UntagResourceRequest$ = exports.TracingConfigResponse$ = exports.TracingConfig$ = exports.TraceHeader$ = exports.TenancyConfig$ = exports.TargetTrackingScalingPolicy$ = exports.TagsError$ = exports.TagResourceRequest$ = exports.StopDurableExecutionResponse$ = exports.StopDurableExecutionRequest$ = exports.StepSucceededDetails$ = exports.StepStartedDetails$ = exports.StepOptions$ = exports.StepFailedDetails$ = exports.StepDetails$ = exports.SourceAccessConfiguration$ = exports.SnapStartResponse$ = exports.SnapStart$ = exports.SendDurableExecutionCallbackSuccessResponse$ = exports.SendDurableExecutionCallbackSuccessRequest$ = exports.SendDurableExecutionCallbackHeartbeatResponse$ = exports.SendDurableExecutionCallbackHeartbeatRequest$ = exports.SendDurableExecutionCallbackFailureResponse$ = exports.SendDurableExecutionCallbackFailureRequest$ = exports.SelfManagedKafkaEventSourceConfig$ = exports.SelfManagedEventSource$ = exports.ScalingConfig$ = exports.RuntimeVersionError$ = exports.RuntimeVersionConfig$ = exports.RetryDetails$ = exports.RemovePermissionRequest$ = exports.RemoveLayerVersionPermissionRequest$ = exports.PutRuntimeManagementConfigResponse$ = exports.PutRuntimeManagementConfigRequest$ = exports.PutProvisionedConcurrencyConfigResponse$ = exports.PutProvisionedConcurrencyConfigRequest$ = exports.PutFunctionScalingConfigResponse$ = exports.PutFunctionScalingConfigRequest$ = exports.PutFunctionRecursionConfigResponse$ = exports.PutFunctionRecursionConfigRequest$ = exports.PutFunctionEventInvokeConfigRequest$ = void 0;
|
|
9
|
+
exports.GetPolicy$ = exports.GetLayerVersionPolicy$ = exports.GetLayerVersionByArn$ = exports.GetLayerVersion$ = exports.GetFunctionUrlConfig$ = exports.GetFunctionScalingConfig$ = exports.GetFunctionRecursionConfig$ = exports.GetFunctionEventInvokeConfig$ = exports.GetFunctionConfiguration$ = exports.GetFunctionConcurrency$ = exports.GetFunctionCodeSigningConfig$ = exports.GetFunction$ = exports.GetEventSourceMapping$ = exports.GetDurableExecutionState$ = exports.GetDurableExecutionHistory$ = exports.GetDurableExecution$ = exports.GetCodeSigningConfig$ = exports.GetCapacityProvider$ = exports.GetAlias$ = exports.GetAccountSettings$ = exports.DeleteProvisionedConcurrencyConfig$ = exports.DeleteLayerVersion$ = exports.DeleteFunctionUrlConfig$ = exports.DeleteFunctionEventInvokeConfig$ = exports.DeleteFunctionConcurrency$ = exports.DeleteFunctionCodeSigningConfig$ = exports.DeleteFunction$ = exports.DeleteEventSourceMapping$ = exports.DeleteCodeSigningConfig$ = exports.DeleteCapacityProvider$ = exports.DeleteAlias$ = exports.CreateFunctionUrlConfig$ = exports.CreateFunction$ = exports.CreateEventSourceMapping$ = exports.CreateCodeSigningConfig$ = exports.CreateCapacityProvider$ = exports.CreateAlias$ = exports.CheckpointDurableExecution$ = exports.AddPermission$ = exports.AddLayerVersionPermission$ = exports.InvokeWithResponseStreamResponseEvent$ = exports.WaitSucceededDetails$ = exports.WaitStartedDetails$ = exports.WaitOptions$ = exports.WaitDetails$ = exports.WaitCancelledDetails$ = exports.VpcConfigResponse$ = exports.VpcConfig$ = exports.UpdateFunctionUrlConfigResponse$ = exports.UpdateFunctionUrlConfigRequest$ = void 0;
|
|
10
|
+
exports.UpdateFunctionUrlConfig$ = exports.UpdateFunctionEventInvokeConfig$ = exports.UpdateFunctionConfiguration$ = exports.UpdateFunctionCode$ = exports.UpdateEventSourceMapping$ = exports.UpdateCodeSigningConfig$ = exports.UpdateCapacityProvider$ = exports.UpdateAlias$ = exports.UntagResource$ = exports.TagResource$ = exports.StopDurableExecution$ = exports.SendDurableExecutionCallbackSuccess$ = exports.SendDurableExecutionCallbackHeartbeat$ = exports.SendDurableExecutionCallbackFailure$ = exports.RemovePermission$ = exports.RemoveLayerVersionPermission$ = exports.PutRuntimeManagementConfig$ = exports.PutProvisionedConcurrencyConfig$ = exports.PutFunctionScalingConfig$ = exports.PutFunctionRecursionConfig$ = exports.PutFunctionEventInvokeConfig$ = exports.PutFunctionConcurrency$ = exports.PutFunctionCodeSigningConfig$ = exports.PublishVersion$ = exports.PublishLayerVersion$ = exports.ListVersionsByFunction$ = exports.ListTags$ = exports.ListProvisionedConcurrencyConfigs$ = exports.ListLayerVersions$ = exports.ListLayers$ = exports.ListFunctionVersionsByCapacityProvider$ = exports.ListFunctionUrlConfigs$ = exports.ListFunctionsByCodeSigningConfig$ = exports.ListFunctions$ = exports.ListFunctionEventInvokeConfigs$ = exports.ListEventSourceMappings$ = exports.ListDurableExecutionsByFunction$ = exports.ListCodeSigningConfigs$ = exports.ListCapacityProviders$ = exports.ListAliases$ = exports.InvokeWithResponseStream$ = exports.InvokeAsync$ = exports.Invoke$ = exports.GetRuntimeManagementConfig$ = exports.GetProvisionedConcurrencyConfig$ = void 0;
|
|
11
11
|
const _A = "Action";
|
|
12
12
|
const _AA = "AliasArn";
|
|
13
13
|
const _AC = "AliasConfiguration";
|
|
@@ -589,6 +589,9 @@ const _SDERt = "StopDurableExecutionResponse";
|
|
|
589
589
|
const _SE = "ServiceException";
|
|
590
590
|
const _SET = "ScheduledEndTimestamp";
|
|
591
591
|
const _SFD = "StepFailedDetails";
|
|
592
|
+
const _SFMCE = "S3FilesMountConnectivityException";
|
|
593
|
+
const _SFMFE = "S3FilesMountFailureException";
|
|
594
|
+
const _SFMTE = "S3FilesMountTimeoutException";
|
|
592
595
|
const _SGI = "SecurityGroupIds";
|
|
593
596
|
const _SI = "StatementId";
|
|
594
597
|
const _SIPALRE = "SubnetIPAddressLimitReachedException";
|
|
@@ -945,6 +948,24 @@ exports.ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
|
945
948
|
[0, 0]
|
|
946
949
|
];
|
|
947
950
|
n0_registry.registerError(exports.ResourceNotReadyException$, errors_1.ResourceNotReadyException);
|
|
951
|
+
exports.S3FilesMountConnectivityException$ = [-3, n0, _SFMCE,
|
|
952
|
+
{ [_e]: _c, [_hE]: 408 },
|
|
953
|
+
[_T, _M],
|
|
954
|
+
[0, 0]
|
|
955
|
+
];
|
|
956
|
+
n0_registry.registerError(exports.S3FilesMountConnectivityException$, errors_1.S3FilesMountConnectivityException);
|
|
957
|
+
exports.S3FilesMountFailureException$ = [-3, n0, _SFMFE,
|
|
958
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
959
|
+
[_T, _M],
|
|
960
|
+
[0, 0]
|
|
961
|
+
];
|
|
962
|
+
n0_registry.registerError(exports.S3FilesMountFailureException$, errors_1.S3FilesMountFailureException);
|
|
963
|
+
exports.S3FilesMountTimeoutException$ = [-3, n0, _SFMTE,
|
|
964
|
+
{ [_e]: _c, [_hE]: 408 },
|
|
965
|
+
[_T, _M],
|
|
966
|
+
[0, 0]
|
|
967
|
+
];
|
|
968
|
+
n0_registry.registerError(exports.S3FilesMountTimeoutException$, errors_1.S3FilesMountTimeoutException);
|
|
948
969
|
exports.SerializedRequestEntityTooLargeException$ = [-3, n0, _SRETLE,
|
|
949
970
|
{ [_e]: _c, [_hE]: 413 },
|
|
950
971
|
[_T, _m],
|