@cdklabs/cdk-ssm-documents 0.0.65 → 0.0.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +11 -11
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +1 -1
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +5 -5
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/update-variable.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.js +1 -1
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/update-variable-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.browser.js +2 -6
- package/node_modules/@aws-sdk/checksums/dist-cjs/flexible-checksums/getCrc32ChecksumAlgorithmFunction.js +6 -11
- package/node_modules/@aws-sdk/checksums/dist-cjs/index.js +56 -56
- package/node_modules/@aws-sdk/checksums/package.json +6 -6
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/index.js +449 -469
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/CloudFormationServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/models/errors.js +59 -91
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudformation/dist-cjs/schemas/schemas_0.js +814 -533
- package/node_modules/@aws-sdk/client-cloudformation/package.json +8 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/index.js +222 -242
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/CloudWatchServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/models/errors.js +35 -55
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.browser.js +25 -29
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.js +33 -37
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-cloudwatch/dist-cjs/schemas/schemas_0.js +419 -275
- package/node_modules/@aws-sdk/client-cloudwatch/package.json +9 -9
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/index.js +2875 -2885
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/models/EC2ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ec2/dist-cjs/schemas/schemas_0.js +6885 -4554
- package/node_modules/@aws-sdk/client-ec2/dist-types/commands/CancelCapacityReservationCommand.d.ts +16 -10
- package/node_modules/@aws-sdk/client-ec2/package.json +11 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-iam/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-iam/dist-cjs/index.js +634 -654
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/IAMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-iam/dist-cjs/models/errors.js +71 -109
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-iam/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-iam/dist-cjs/schemas/schemas_0.js +1006 -665
- package/node_modules/@aws-sdk/client-iam/package.json +10 -10
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/index.js +368 -386
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/LambdaServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/models/errors.js +229 -145
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.js +32 -36
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-lambda/dist-cjs/schemas/schemas_0.js +959 -581
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/enums.js +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/models/errors.js +134 -0
- package/node_modules/@aws-sdk/client-lambda/dist-es/schemas/schemas_0.js +100 -31
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/AddPermissionCommand.d.ts +5 -2
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateEventSourceMappingCommand.d.ts +28 -28
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/CreateFunctionCommand.d.ts +14 -14
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteAliasCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteFunctionUrlConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/DeleteLayerVersionCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetEventSourceMappingCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCodeSigningConfigCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetFunctionConfigurationCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionByArnCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetLayerVersionCommand.d.ts +4 -4
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/GetRuntimeManagementConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeAsyncCommand.d.ts +72 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeCommand.d.ts +21 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +6 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListEventSourceMappingsCommand.d.ts +16 -16
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListFunctionsCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayerVersionsCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListLayersCommand.d.ts +6 -6
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/ListVersionsByFunctionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishLayerVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PublishVersionCommand.d.ts +8 -8
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/PutProvisionedConcurrencyConfigCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/RemovePermissionCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackFailureCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackHeartbeatCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/SendDurableExecutionCallbackSuccessCommand.d.ts +3 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateEventSourceMappingCommand.d.ts +32 -32
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionCodeCommand.d.ts +12 -12
- package/node_modules/@aws-sdk/client-lambda/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +9 -9
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/errors.d.ts +173 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/models/models_0.d.ts +158 -158
- package/node_modules/@aws-sdk/client-lambda/dist-types/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/errors.d.ts +88 -0
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/models/models_0.d.ts +33 -33
- package/node_modules/@aws-sdk/client-lambda/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/node_modules/@aws-sdk/client-lambda/package.json +12 -12
- package/node_modules/@aws-sdk/client-s3/README.md +35 -0
- package/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +15 -19
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +646 -535
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/S3ServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-s3/dist-cjs/models/errors.js +106 -52
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +29 -33
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +43 -47
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +25 -29
- package/node_modules/@aws-sdk/client-s3/dist-cjs/schemas/schemas_0.js +1256 -740
- package/node_modules/@aws-sdk/client-s3/dist-es/S3.js +12 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectAnnotationCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAnnotationCommand.js +28 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectAnnotationsCommand.js +23 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAnnotationCommand.js +29 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.js +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/models/enums.js +12 -1
- package/node_modules/@aws-sdk/client-s3/dist-es/models/errors.js +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectAnnotationsPaginator.js +4 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-es/schemas/schemas_0.js +260 -100
- package/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +42 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +7 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataConfigurationCommand.d.ts +27 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectAnnotationCommand.d.ts +119 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataConfigurationCommand.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAnnotationCommand.d.ts +141 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectAnnotationsCommand.d.ts +138 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +3 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAnnotationCommand.d.ts +166 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +110 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/models/enums.d.ts +29 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/models/errors.d.ts +76 -4
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +925 -549
- package/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +380 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectAnnotationsPaginator.d.ts +7 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +98 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +30 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectAnnotationCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectAnnotationsCommand.d.ts +53 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAnnotationCommand.d.ts +61 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RenameObjectCommand.d.ts +1 -1
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +1 -2
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UpdateBucketMetadataAnnotationTableConfigurationCommand.d.ts +49 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/enums.d.ts +18 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/errors.d.ts +41 -3
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +138 -64
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +75 -5
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectAnnotationsPaginator.d.ts +11 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/node_modules/@aws-sdk/client-s3/package.json +20 -20
- package/node_modules/@aws-sdk/client-sns/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sns/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sns/dist-cjs/index.js +174 -194
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/SNSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sns/dist-cjs/models/errors.js +69 -106
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sns/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sns/dist-cjs/schemas/schemas_0.js +331 -218
- package/node_modules/@aws-sdk/client-sns/package.json +9 -9
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/index.js +118 -138
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/SQSServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/models/errors.js +57 -88
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.browser.js +24 -28
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.js +31 -35
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-sqs/dist-cjs/schemas/schemas_0.js +222 -150
- package/node_modules/@aws-sdk/client-sqs/package.json +15 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/bdd.js +2 -5
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/index.js +543 -563
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/SSMServiceException.js +4 -8
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/models/errors.js +279 -423
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.browser.js +22 -26
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.js +30 -34
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.native.js +4 -7
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/runtimeConfig.shared.js +20 -24
- package/node_modules/@aws-sdk/client-ssm/dist-cjs/schemas/schemas_0.js +1693 -1109
- package/node_modules/@aws-sdk/client-ssm/package.json +9 -9
- package/node_modules/@aws-sdk/core/dist-cjs/index.js +45 -50
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/account-id-endpoint/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.browser.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js +327 -52
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.native.js +297 -23
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js +19 -21
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js +107 -109
- package/node_modules/@aws-sdk/core/dist-cjs/submodules/util/index.js +2 -4
- package/node_modules/@aws-sdk/core/dist-es/submodules/client/util-endpoints/lib/aws/partitions.js +276 -1
- package/node_modules/@aws-sdk/core/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-env/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/credential-provider-env/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js +3 -7
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.browser.js +12 -16
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js +16 -21
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js +14 -18
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js +1 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.browser.js +2 -5
- package/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js +2 -7
- package/node_modules/@aws-sdk/credential-provider-http/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js +47 -41
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js +8 -4
- package/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js +14 -10
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +13 -13
- package/node_modules/@aws-sdk/credential-provider-login/dist-cjs/index.js +31 -33
- package/node_modules/@aws-sdk/credential-provider-login/package.json +7 -7
- package/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js +16 -18
- package/node_modules/@aws-sdk/credential-provider-node/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-process/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/credential-provider-process/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js +22 -24
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BGYXHf8s.js +3 -0
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +8 -8
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js +10 -14
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +2 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js +3 -27
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +7 -7
- package/node_modules/@aws-sdk/middleware-flexible-checksums/dist-cjs/index.js +18 -23
- package/node_modules/@aws-sdk/middleware-flexible-checksums/package.json +5 -5
- package/node_modules/@aws-sdk/middleware-sdk-ec2/dist-cjs/index.js +11 -13
- package/node_modules/@aws-sdk/middleware-sdk-ec2/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.js +1 -518
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.browser.js +31 -33
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3/index.js +37 -39
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/submodules/s3-control/index.js +14 -16
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.js +1 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.d.ts +2 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/package.json +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/dist-cjs/index.js +9 -11
- package/node_modules/@aws-sdk/middleware-sdk-sqs/package.json +5 -5
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/index.js +0 -1
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/cognito-identity/index.js +82 -84
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js +158 -119
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js +80 -82
- package/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js +99 -101
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/commands/CreateOAuth2TokenCommand.js +4 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/bdd.js +70 -35
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/endpoint/endpointResolver.js +1 -1
- package/node_modules/@aws-sdk/nested-clients/dist-es/submodules/signin/models/enums.js +3 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/submodules/signin/models/enums.d.ts +12 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/endpoint/EndpointParameters.d.ts +1 -0
- package/node_modules/@aws-sdk/nested-clients/dist-types/ts3.4/submodules/signin/models/enums.d.ts +3 -0
- package/node_modules/@aws-sdk/nested-clients/package.json +9 -8
- package/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js +4 -6
- package/node_modules/@aws-sdk/signature-v4-multi-region/package.json +5 -5
- package/node_modules/@aws-sdk/token-providers/dist-cjs/index.js +26 -28
- package/node_modules/@aws-sdk/token-providers/package.json +7 -7
- package/node_modules/@aws-sdk/types/dist-cjs/index.js +7 -8
- package/node_modules/@aws-sdk/types/package.json +4 -4
- package/node_modules/@aws-sdk/util-locate-window/dist-cjs/index.js +0 -2
- package/node_modules/@aws-sdk/util-locate-window/package.json +4 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js +2 -4
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-external/nodable_entities.js +4 -7
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.browser.js +2 -5
- package/node_modules/@aws-sdk/xml-builder/dist-cjs/xml-parser.js +7 -10
- package/node_modules/@aws-sdk/xml-builder/node_modules/strnum/package.json +5 -4
- package/node_modules/@aws-sdk/xml-builder/package.json +4 -4
- package/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js +518 -371
- package/node_modules/@smithy/core/dist-cjs/submodules/client/index.js +1 -1
- package/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js +10 -2
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-decode.js +326 -269
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor-encode.js +192 -103
- package/node_modules/@smithy/core/dist-es/submodules/cbor/cbor.js +4 -2
- package/node_modules/@smithy/core/dist-es/submodules/client/smithy-client/get-value-from-text-node.js +1 -1
- package/node_modules/@smithy/core/dist-es/submodules/protocols/HttpProtocol.js +10 -2
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-decode.d.ts +4 -0
- package/node_modules/@smithy/core/dist-types/submodules/cbor/cbor-encode.d.ts +8 -4
- package/node_modules/@smithy/core/dist-types/submodules/protocols/HttpProtocol.d.ts +6 -0
- package/node_modules/@smithy/core/package.json +1 -1
- package/node_modules/@smithy/credential-provider-imds/package.json +2 -2
- package/node_modules/@smithy/fetch-http-handler/package.json +2 -2
- package/node_modules/@smithy/middleware-compression/package.json +2 -2
- package/node_modules/@smithy/node-http-handler/package.json +2 -2
- package/node_modules/@smithy/signature-v4/package.json +2 -2
- package/node_modules/anynum/package.json +2 -2
- package/node_modules/path-expression-matcher/README.md +82 -7
- package/node_modules/path-expression-matcher/lib/pem.cjs +1 -1
- package/node_modules/path-expression-matcher/lib/pem.d.cts +83 -2
- 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 +3 -2
- package/node_modules/path-expression-matcher/src/ExpressionSet.js +18 -2
- package/node_modules/path-expression-matcher/src/Matcher.js +93 -3
- package/node_modules/path-expression-matcher/src/index.d.ts +67 -1
- package/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/loadSso-BKDNrsal.js +0 -8
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-cjs/index.browser.js +0 -34
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-es/index.browser.js +0 -1
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/index.browser.d.ts +0 -2
- package/node_modules/@aws-sdk/middleware-sdk-s3/dist-types/ts3.4/index.browser.d.ts +0 -39
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
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.PutFunctionCodeSigningConfigResponse$ = exports.PutFunctionCodeSigningConfigRequest$ = exports.PublishVersionRequest$ = exports.PublishLayerVersionResponse$ = exports.PublishLayerVersionRequest$ = exports.ProvisionedPollerConfig$ = exports.ProvisionedConcurrencyConfigListItem$ = exports.PropagateTags$ = 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.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$ = exports.PutFunctionConcurrencyRequest$ = void 0;
|
|
9
|
-
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$ = exports.UpdateFunctionEventInvokeConfigRequest$ = 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$ = exports.GetPolicy$ = void 0;
|
|
11
1
|
const _A = "Action";
|
|
12
2
|
const _AA = "AliasArn";
|
|
13
3
|
const _AC = "AliasConfiguration";
|
|
@@ -17,6 +7,7 @@ const _AFSC = "AppliedFunctionScalingConfig";
|
|
|
17
7
|
const _AH = "AllowHeaders";
|
|
18
8
|
const _AIT = "AllowedInstanceTypes";
|
|
19
9
|
const _AL = "AccountLimit";
|
|
10
|
+
const _ALEE = "AliasLimitExceededException";
|
|
20
11
|
const _ALL = "ApplicationLogLevel";
|
|
21
12
|
const _ALVP = "AddLayerVersionPermission";
|
|
22
13
|
const _ALVPR = "AddLayerVersionPermissionRequest";
|
|
@@ -49,6 +40,9 @@ const _BSa = "BatchSize";
|
|
|
49
40
|
const _C = "Concurrency";
|
|
50
41
|
const _CA = "CompatibleArchitectures";
|
|
51
42
|
const _CAR = "CreateAliasRequest";
|
|
43
|
+
const _CAUDE = "CodeArtifactUserDeletedException";
|
|
44
|
+
const _CAUFE = "CodeArtifactUserFailedException";
|
|
45
|
+
const _CAUPE = "CodeArtifactUserPendingException";
|
|
52
46
|
const _CAo = "CompatibleArchitecture";
|
|
53
47
|
const _CAr = "CreateAlias";
|
|
54
48
|
const _CAu = "CurrentAttempt";
|
|
@@ -192,6 +186,7 @@ const _EIT = "ExcludedInstanceTypes";
|
|
|
192
186
|
const _EIv = "EventInput";
|
|
193
187
|
const _EM = "ErrorMessage";
|
|
194
188
|
const _ENILRE = "ENILimitReachedException";
|
|
189
|
+
const _ENINRE = "ENINotReadyException";
|
|
195
190
|
const _EO = "ErrorObject";
|
|
196
191
|
const _EP = "EntryPoint";
|
|
197
192
|
const _ER = "EnvironmentResponse";
|
|
@@ -361,6 +356,7 @@ const _IWRSRn = "InvokeWithResponseStreamResponse";
|
|
|
361
356
|
const _IZFE = "InvalidZipFileException";
|
|
362
357
|
const _Id = "Id";
|
|
363
358
|
const _In = "Invoke";
|
|
359
|
+
const _K = "Key";
|
|
364
360
|
const _KKA = "KmsKeyArn";
|
|
365
361
|
const _KMSADE = "KMSAccessDeniedException";
|
|
366
362
|
const _KMSDE = "KMSDisabledException";
|
|
@@ -456,6 +452,7 @@ const _MEAIS = "MaximumEventAgeInSeconds";
|
|
|
456
452
|
const _MEE = "MinExecutionEnvironments";
|
|
457
453
|
const _MEEa = "MaxExecutionEnvironments";
|
|
458
454
|
const _MI = "MaxItems";
|
|
455
|
+
const _MNSE = "ModeNotSupportedException";
|
|
459
456
|
const _MP = "MinimumPollers";
|
|
460
457
|
const _MPa = "MaximumPollers";
|
|
461
458
|
const _MR = "MasterRegion";
|
|
@@ -518,6 +515,7 @@ const _PPC = "ProvisionedPollerConfig";
|
|
|
518
515
|
const _PPCC = "PutProvisionedConcurrencyConfig";
|
|
519
516
|
const _PPCCR = "PutProvisionedConcurrencyConfigRequest";
|
|
520
517
|
const _PPCCRu = "PutProvisionedConcurrencyConfigResponse";
|
|
518
|
+
const _PPE = "PublicPolicyException";
|
|
521
519
|
const _PRMC = "PutRuntimeManagementConfig";
|
|
522
520
|
const _PRMCR = "PutRuntimeManagementConfigRequest";
|
|
523
521
|
const _PRMCRu = "PutRuntimeManagementConfigResponse";
|
|
@@ -612,6 +610,7 @@ const _SPT = "StartingPositionTimestamp";
|
|
|
612
610
|
const _SPVA = "SigningProfileVersionArns";
|
|
613
611
|
const _SPVAi = "SigningProfileVersionArn";
|
|
614
612
|
const _SPt = "StartingPosition";
|
|
613
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
615
614
|
const _SR = "StateReason";
|
|
616
615
|
const _SRC = "SchemaRegistryConfig";
|
|
617
616
|
const _SRCt = "StateReasonCode";
|
|
@@ -624,6 +623,7 @@ const _SSDt = "StepSucceededDetails";
|
|
|
624
623
|
const _SSE = "SnapStartException";
|
|
625
624
|
const _SSNRE = "SnapStartNotReadyException";
|
|
626
625
|
const _SSR = "SnapStartResponse";
|
|
626
|
+
const _SSRFE = "SnapStartRegenerationFailureException";
|
|
627
627
|
const _SSTE = "SnapStartTimeoutException";
|
|
628
628
|
const _SSn = "SnapStart";
|
|
629
629
|
const _ST = "StackTrace";
|
|
@@ -649,6 +649,7 @@ const _TH = "TraceHeader";
|
|
|
649
649
|
const _TI = "TenantId";
|
|
650
650
|
const _TIM = "TenantIsolationMode";
|
|
651
651
|
const _TK = "TagKeys";
|
|
652
|
+
const _TKL = "TagKeyList";
|
|
652
653
|
const _TMRE = "TooManyRequestsException";
|
|
653
654
|
const _TR = "TagResource";
|
|
654
655
|
const _TRR = "TagResourceRequest";
|
|
@@ -726,296 +727,408 @@ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.lambda";
|
|
|
726
727
|
const _se = "server";
|
|
727
728
|
const _st = "streaming";
|
|
728
729
|
const _tK = "tagKeys";
|
|
730
|
+
const _xN = "xmlName";
|
|
729
731
|
const n0 = "com.amazonaws.lambda";
|
|
730
|
-
const
|
|
731
|
-
const
|
|
732
|
-
const
|
|
733
|
-
const _s_registry =
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
732
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
733
|
+
const { AliasLimitExceededException, CallbackTimeoutException, CapacityProviderLimitExceededException, CodeArtifactUserDeletedException, CodeArtifactUserFailedException, CodeArtifactUserPendingException, CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, DurableExecutionAlreadyStartedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, ENINotReadyException, FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, ModeNotSupportedException, NoPublishedVersionException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, PublicPolicyException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, S3FilesMountConnectivityException, S3FilesMountFailureException, S3FilesMountTimeoutException, SerializedRequestEntityTooLargeException, ServiceException, ServiceQuotaExceededException, SnapStartException, SnapStartNotReadyException, SnapStartRegenerationFailureException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException } = require("../models/errors");
|
|
734
|
+
const { LambdaServiceException } = require("../models/LambdaServiceException");
|
|
735
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
736
|
+
const LambdaServiceException$ = [-3, _s, "LambdaServiceException", 0, [], []];
|
|
737
|
+
exports.LambdaServiceException$ = LambdaServiceException$;
|
|
738
|
+
_s_registry.registerError(LambdaServiceException$, LambdaServiceException);
|
|
739
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
740
|
+
const AliasLimitExceededException$ = [-3, n0, _ALEE,
|
|
741
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
742
|
+
[_T, _m],
|
|
743
|
+
[0, 0]
|
|
744
|
+
];
|
|
745
|
+
exports.AliasLimitExceededException$ = AliasLimitExceededException$;
|
|
746
|
+
n0_registry.registerError(AliasLimitExceededException$, AliasLimitExceededException);
|
|
747
|
+
const CallbackTimeoutException$ = [-3, n0, _CTE,
|
|
738
748
|
{ [_e]: _c, [_hE]: 400 },
|
|
739
749
|
[_T, _M],
|
|
740
750
|
[0, 0]
|
|
741
751
|
];
|
|
742
|
-
|
|
743
|
-
|
|
752
|
+
exports.CallbackTimeoutException$ = CallbackTimeoutException$;
|
|
753
|
+
n0_registry.registerError(CallbackTimeoutException$, CallbackTimeoutException);
|
|
754
|
+
const CapacityProviderLimitExceededException$ = [-3, n0, _CPLEE,
|
|
744
755
|
{ [_e]: _c, [_hE]: 400 },
|
|
745
756
|
[_T, _m],
|
|
746
757
|
[0, 0]
|
|
747
758
|
];
|
|
748
|
-
|
|
749
|
-
|
|
759
|
+
exports.CapacityProviderLimitExceededException$ = CapacityProviderLimitExceededException$;
|
|
760
|
+
n0_registry.registerError(CapacityProviderLimitExceededException$, CapacityProviderLimitExceededException);
|
|
761
|
+
const CodeArtifactUserDeletedException$ = [-3, n0, _CAUDE,
|
|
762
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
763
|
+
[_T, _m],
|
|
764
|
+
[0, 0]
|
|
765
|
+
];
|
|
766
|
+
exports.CodeArtifactUserDeletedException$ = CodeArtifactUserDeletedException$;
|
|
767
|
+
n0_registry.registerError(CodeArtifactUserDeletedException$, CodeArtifactUserDeletedException);
|
|
768
|
+
const CodeArtifactUserFailedException$ = [-3, n0, _CAUFE,
|
|
769
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
770
|
+
[_T, _m],
|
|
771
|
+
[0, 0]
|
|
772
|
+
];
|
|
773
|
+
exports.CodeArtifactUserFailedException$ = CodeArtifactUserFailedException$;
|
|
774
|
+
n0_registry.registerError(CodeArtifactUserFailedException$, CodeArtifactUserFailedException);
|
|
775
|
+
const CodeArtifactUserPendingException$ = [-3, n0, _CAUPE,
|
|
776
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
777
|
+
[_T, _m],
|
|
778
|
+
[0, 0]
|
|
779
|
+
];
|
|
780
|
+
exports.CodeArtifactUserPendingException$ = CodeArtifactUserPendingException$;
|
|
781
|
+
n0_registry.registerError(CodeArtifactUserPendingException$, CodeArtifactUserPendingException);
|
|
782
|
+
const CodeSigningConfigNotFoundException$ = [-3, n0, _CSCNFE,
|
|
750
783
|
{ [_e]: _c, [_hE]: 404 },
|
|
751
784
|
[_T, _M],
|
|
752
785
|
[0, 0]
|
|
753
786
|
];
|
|
754
|
-
|
|
755
|
-
|
|
787
|
+
exports.CodeSigningConfigNotFoundException$ = CodeSigningConfigNotFoundException$;
|
|
788
|
+
n0_registry.registerError(CodeSigningConfigNotFoundException$, CodeSigningConfigNotFoundException);
|
|
789
|
+
const CodeStorageExceededException$ = [-3, n0, _CSEE,
|
|
756
790
|
{ [_e]: _c, [_hE]: 400 },
|
|
757
791
|
[_T, _m],
|
|
758
792
|
[0, 0]
|
|
759
793
|
];
|
|
760
|
-
|
|
761
|
-
|
|
794
|
+
exports.CodeStorageExceededException$ = CodeStorageExceededException$;
|
|
795
|
+
n0_registry.registerError(CodeStorageExceededException$, CodeStorageExceededException);
|
|
796
|
+
const CodeVerificationFailedException$ = [-3, n0, _CVFE,
|
|
762
797
|
{ [_e]: _c, [_hE]: 400 },
|
|
763
798
|
[_T, _M],
|
|
764
799
|
[0, 0]
|
|
765
800
|
];
|
|
766
|
-
|
|
767
|
-
|
|
801
|
+
exports.CodeVerificationFailedException$ = CodeVerificationFailedException$;
|
|
802
|
+
n0_registry.registerError(CodeVerificationFailedException$, CodeVerificationFailedException);
|
|
803
|
+
const DurableExecutionAlreadyStartedException$ = [-3, n0, _DEASE,
|
|
768
804
|
{ [_e]: _c, [_hE]: 409 },
|
|
769
805
|
[_T, _M],
|
|
770
806
|
[0, 0]
|
|
771
807
|
];
|
|
772
|
-
|
|
773
|
-
|
|
808
|
+
exports.DurableExecutionAlreadyStartedException$ = DurableExecutionAlreadyStartedException$;
|
|
809
|
+
n0_registry.registerError(DurableExecutionAlreadyStartedException$, DurableExecutionAlreadyStartedException);
|
|
810
|
+
const EC2AccessDeniedException$ = [-3, n0, _ECADE,
|
|
774
811
|
{ [_e]: _se, [_hE]: 502 },
|
|
775
812
|
[_T, _M],
|
|
776
813
|
[0, 0]
|
|
777
814
|
];
|
|
778
|
-
|
|
779
|
-
|
|
815
|
+
exports.EC2AccessDeniedException$ = EC2AccessDeniedException$;
|
|
816
|
+
n0_registry.registerError(EC2AccessDeniedException$, EC2AccessDeniedException);
|
|
817
|
+
const EC2ThrottledException$ = [-3, n0, _ECTE,
|
|
780
818
|
{ [_e]: _se, [_hE]: 502 },
|
|
781
819
|
[_T, _M],
|
|
782
820
|
[0, 0]
|
|
783
821
|
];
|
|
784
|
-
|
|
785
|
-
|
|
822
|
+
exports.EC2ThrottledException$ = EC2ThrottledException$;
|
|
823
|
+
n0_registry.registerError(EC2ThrottledException$, EC2ThrottledException);
|
|
824
|
+
const EC2UnexpectedException$ = [-3, n0, _ECUE,
|
|
786
825
|
{ [_e]: _se, [_hE]: 502 },
|
|
787
826
|
[_T, _M, _ECEC],
|
|
788
827
|
[0, 0, 0]
|
|
789
828
|
];
|
|
790
|
-
|
|
791
|
-
|
|
829
|
+
exports.EC2UnexpectedException$ = EC2UnexpectedException$;
|
|
830
|
+
n0_registry.registerError(EC2UnexpectedException$, EC2UnexpectedException);
|
|
831
|
+
const EFSIOException$ = [-3, n0, _EFSIOE,
|
|
792
832
|
{ [_e]: _c, [_hE]: 410 },
|
|
793
833
|
[_T, _M],
|
|
794
834
|
[0, 0]
|
|
795
835
|
];
|
|
796
|
-
|
|
797
|
-
|
|
836
|
+
exports.EFSIOException$ = EFSIOException$;
|
|
837
|
+
n0_registry.registerError(EFSIOException$, EFSIOException);
|
|
838
|
+
const EFSMountConnectivityException$ = [-3, n0, _EFSMCE,
|
|
798
839
|
{ [_e]: _c, [_hE]: 408 },
|
|
799
840
|
[_T, _M],
|
|
800
841
|
[0, 0]
|
|
801
842
|
];
|
|
802
|
-
|
|
803
|
-
|
|
843
|
+
exports.EFSMountConnectivityException$ = EFSMountConnectivityException$;
|
|
844
|
+
n0_registry.registerError(EFSMountConnectivityException$, EFSMountConnectivityException);
|
|
845
|
+
const EFSMountFailureException$ = [-3, n0, _EFSMFE,
|
|
804
846
|
{ [_e]: _c, [_hE]: 403 },
|
|
805
847
|
[_T, _M],
|
|
806
848
|
[0, 0]
|
|
807
849
|
];
|
|
808
|
-
|
|
809
|
-
|
|
850
|
+
exports.EFSMountFailureException$ = EFSMountFailureException$;
|
|
851
|
+
n0_registry.registerError(EFSMountFailureException$, EFSMountFailureException);
|
|
852
|
+
const EFSMountTimeoutException$ = [-3, n0, _EFSMTE,
|
|
810
853
|
{ [_e]: _c, [_hE]: 408 },
|
|
811
854
|
[_T, _M],
|
|
812
855
|
[0, 0]
|
|
813
856
|
];
|
|
814
|
-
|
|
815
|
-
|
|
857
|
+
exports.EFSMountTimeoutException$ = EFSMountTimeoutException$;
|
|
858
|
+
n0_registry.registerError(EFSMountTimeoutException$, EFSMountTimeoutException);
|
|
859
|
+
const ENILimitReachedException$ = [-3, n0, _ENILRE,
|
|
860
|
+
{ [_e]: _se, [_hE]: 502 },
|
|
861
|
+
[_T, _M],
|
|
862
|
+
[0, 0]
|
|
863
|
+
];
|
|
864
|
+
exports.ENILimitReachedException$ = ENILimitReachedException$;
|
|
865
|
+
n0_registry.registerError(ENILimitReachedException$, ENILimitReachedException);
|
|
866
|
+
const ENINotReadyException$ = [-3, n0, _ENINRE,
|
|
816
867
|
{ [_e]: _se, [_hE]: 502 },
|
|
817
868
|
[_T, _M],
|
|
818
869
|
[0, 0]
|
|
819
870
|
];
|
|
820
|
-
|
|
821
|
-
|
|
871
|
+
exports.ENINotReadyException$ = ENINotReadyException$;
|
|
872
|
+
n0_registry.registerError(ENINotReadyException$, ENINotReadyException);
|
|
873
|
+
const FunctionVersionsPerCapacityProviderLimitExceededException$ = [-3, n0, _FVPCPLEE,
|
|
822
874
|
{ [_e]: _c, [_hE]: 400 },
|
|
823
875
|
[_T, _m],
|
|
824
876
|
[0, 0]
|
|
825
877
|
];
|
|
826
|
-
|
|
827
|
-
|
|
878
|
+
exports.FunctionVersionsPerCapacityProviderLimitExceededException$ = FunctionVersionsPerCapacityProviderLimitExceededException$;
|
|
879
|
+
n0_registry.registerError(FunctionVersionsPerCapacityProviderLimitExceededException$, FunctionVersionsPerCapacityProviderLimitExceededException);
|
|
880
|
+
const InvalidCodeSignatureException$ = [-3, n0, _ICSE,
|
|
828
881
|
{ [_e]: _c, [_hE]: 400 },
|
|
829
882
|
[_T, _M],
|
|
830
883
|
[0, 0]
|
|
831
884
|
];
|
|
832
|
-
|
|
833
|
-
|
|
885
|
+
exports.InvalidCodeSignatureException$ = InvalidCodeSignatureException$;
|
|
886
|
+
n0_registry.registerError(InvalidCodeSignatureException$, InvalidCodeSignatureException);
|
|
887
|
+
const InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
834
888
|
{ [_e]: _c, [_hE]: 400 },
|
|
835
889
|
[_T, _m],
|
|
836
890
|
[0, 0]
|
|
837
891
|
];
|
|
838
|
-
|
|
839
|
-
|
|
892
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
893
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
894
|
+
const InvalidRequestContentException$ = [-3, n0, _IRCE,
|
|
840
895
|
{ [_e]: _c, [_hE]: 400 },
|
|
841
896
|
[_T, _m],
|
|
842
897
|
[0, 0]
|
|
843
898
|
];
|
|
844
|
-
|
|
845
|
-
|
|
899
|
+
exports.InvalidRequestContentException$ = InvalidRequestContentException$;
|
|
900
|
+
n0_registry.registerError(InvalidRequestContentException$, InvalidRequestContentException);
|
|
901
|
+
const InvalidRuntimeException$ = [-3, n0, _IRE,
|
|
846
902
|
{ [_e]: _se, [_hE]: 502 },
|
|
847
903
|
[_T, _M],
|
|
848
904
|
[0, 0]
|
|
849
905
|
];
|
|
850
|
-
|
|
851
|
-
|
|
906
|
+
exports.InvalidRuntimeException$ = InvalidRuntimeException$;
|
|
907
|
+
n0_registry.registerError(InvalidRuntimeException$, InvalidRuntimeException);
|
|
908
|
+
const InvalidSecurityGroupIDException$ = [-3, n0, _ISGIDE,
|
|
852
909
|
{ [_e]: _se, [_hE]: 502 },
|
|
853
910
|
[_T, _M],
|
|
854
911
|
[0, 0]
|
|
855
912
|
];
|
|
856
|
-
|
|
857
|
-
|
|
913
|
+
exports.InvalidSecurityGroupIDException$ = InvalidSecurityGroupIDException$;
|
|
914
|
+
n0_registry.registerError(InvalidSecurityGroupIDException$, InvalidSecurityGroupIDException);
|
|
915
|
+
const InvalidSubnetIDException$ = [-3, n0, _ISIDE,
|
|
858
916
|
{ [_e]: _se, [_hE]: 502 },
|
|
859
917
|
[_T, _M],
|
|
860
918
|
[0, 0]
|
|
861
919
|
];
|
|
862
|
-
|
|
863
|
-
|
|
920
|
+
exports.InvalidSubnetIDException$ = InvalidSubnetIDException$;
|
|
921
|
+
n0_registry.registerError(InvalidSubnetIDException$, InvalidSubnetIDException);
|
|
922
|
+
const InvalidZipFileException$ = [-3, n0, _IZFE,
|
|
864
923
|
{ [_e]: _se, [_hE]: 502 },
|
|
865
924
|
[_T, _M],
|
|
866
925
|
[0, 0]
|
|
867
926
|
];
|
|
868
|
-
|
|
869
|
-
|
|
927
|
+
exports.InvalidZipFileException$ = InvalidZipFileException$;
|
|
928
|
+
n0_registry.registerError(InvalidZipFileException$, InvalidZipFileException);
|
|
929
|
+
const KMSAccessDeniedException$ = [-3, n0, _KMSADE,
|
|
870
930
|
{ [_e]: _se, [_hE]: 502 },
|
|
871
931
|
[_T, _M],
|
|
872
932
|
[0, 0]
|
|
873
933
|
];
|
|
874
|
-
|
|
875
|
-
|
|
934
|
+
exports.KMSAccessDeniedException$ = KMSAccessDeniedException$;
|
|
935
|
+
n0_registry.registerError(KMSAccessDeniedException$, KMSAccessDeniedException);
|
|
936
|
+
const KMSDisabledException$ = [-3, n0, _KMSDE,
|
|
876
937
|
{ [_e]: _se, [_hE]: 502 },
|
|
877
938
|
[_T, _M],
|
|
878
939
|
[0, 0]
|
|
879
940
|
];
|
|
880
|
-
|
|
881
|
-
|
|
941
|
+
exports.KMSDisabledException$ = KMSDisabledException$;
|
|
942
|
+
n0_registry.registerError(KMSDisabledException$, KMSDisabledException);
|
|
943
|
+
const KMSInvalidStateException$ = [-3, n0, _KMSISE,
|
|
882
944
|
{ [_e]: _se, [_hE]: 502 },
|
|
883
945
|
[_T, _M],
|
|
884
946
|
[0, 0]
|
|
885
947
|
];
|
|
886
|
-
|
|
887
|
-
|
|
948
|
+
exports.KMSInvalidStateException$ = KMSInvalidStateException$;
|
|
949
|
+
n0_registry.registerError(KMSInvalidStateException$, KMSInvalidStateException);
|
|
950
|
+
const KMSNotFoundException$ = [-3, n0, _KMSNFE,
|
|
888
951
|
{ [_e]: _se, [_hE]: 502 },
|
|
889
952
|
[_T, _M],
|
|
890
953
|
[0, 0]
|
|
891
954
|
];
|
|
892
|
-
|
|
893
|
-
|
|
955
|
+
exports.KMSNotFoundException$ = KMSNotFoundException$;
|
|
956
|
+
n0_registry.registerError(KMSNotFoundException$, KMSNotFoundException);
|
|
957
|
+
const ModeNotSupportedException$ = [-3, n0, _MNSE,
|
|
958
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
959
|
+
[_T, _m],
|
|
960
|
+
[0, 0]
|
|
961
|
+
];
|
|
962
|
+
exports.ModeNotSupportedException$ = ModeNotSupportedException$;
|
|
963
|
+
n0_registry.registerError(ModeNotSupportedException$, ModeNotSupportedException);
|
|
964
|
+
const NoPublishedVersionException$ = [-3, n0, _NPVE,
|
|
894
965
|
{ [_e]: _c, [_hE]: 400 },
|
|
895
966
|
[_T, _M],
|
|
896
967
|
[0, 0]
|
|
897
968
|
];
|
|
898
|
-
|
|
899
|
-
|
|
969
|
+
exports.NoPublishedVersionException$ = NoPublishedVersionException$;
|
|
970
|
+
n0_registry.registerError(NoPublishedVersionException$, NoPublishedVersionException);
|
|
971
|
+
const PolicyLengthExceededException$ = [-3, n0, _PLEE,
|
|
900
972
|
{ [_e]: _c, [_hE]: 400 },
|
|
901
973
|
[_T, _m],
|
|
902
974
|
[0, 0]
|
|
903
975
|
];
|
|
904
|
-
|
|
905
|
-
|
|
976
|
+
exports.PolicyLengthExceededException$ = PolicyLengthExceededException$;
|
|
977
|
+
n0_registry.registerError(PolicyLengthExceededException$, PolicyLengthExceededException);
|
|
978
|
+
const PreconditionFailedException$ = [-3, n0, _PFE,
|
|
906
979
|
{ [_e]: _c, [_hE]: 412 },
|
|
907
980
|
[_T, _m],
|
|
908
981
|
[0, 0]
|
|
909
982
|
];
|
|
910
|
-
|
|
911
|
-
|
|
983
|
+
exports.PreconditionFailedException$ = PreconditionFailedException$;
|
|
984
|
+
n0_registry.registerError(PreconditionFailedException$, PreconditionFailedException);
|
|
985
|
+
const ProvisionedConcurrencyConfigNotFoundException$ = [-3, n0, _PCCNFE,
|
|
912
986
|
{ [_e]: _c, [_hE]: 404 },
|
|
913
987
|
[_T, _m],
|
|
914
988
|
[0, 0]
|
|
915
989
|
];
|
|
916
|
-
|
|
917
|
-
|
|
990
|
+
exports.ProvisionedConcurrencyConfigNotFoundException$ = ProvisionedConcurrencyConfigNotFoundException$;
|
|
991
|
+
n0_registry.registerError(ProvisionedConcurrencyConfigNotFoundException$, ProvisionedConcurrencyConfigNotFoundException);
|
|
992
|
+
const PublicPolicyException$ = [-3, n0, _PPE,
|
|
918
993
|
{ [_e]: _c, [_hE]: 400 },
|
|
919
994
|
[_T, _M],
|
|
920
995
|
[0, 0]
|
|
921
996
|
];
|
|
922
|
-
|
|
923
|
-
|
|
997
|
+
exports.PublicPolicyException$ = PublicPolicyException$;
|
|
998
|
+
n0_registry.registerError(PublicPolicyException$, PublicPolicyException);
|
|
999
|
+
const RecursiveInvocationException$ = [-3, n0, _RIE,
|
|
1000
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1001
|
+
[_T, _M],
|
|
1002
|
+
[0, 0]
|
|
1003
|
+
];
|
|
1004
|
+
exports.RecursiveInvocationException$ = RecursiveInvocationException$;
|
|
1005
|
+
n0_registry.registerError(RecursiveInvocationException$, RecursiveInvocationException);
|
|
1006
|
+
const RequestTooLargeException$ = [-3, n0, _RTLE,
|
|
924
1007
|
{ [_e]: _c, [_hE]: 413 },
|
|
925
1008
|
[_T, _m],
|
|
926
1009
|
[0, 0]
|
|
927
1010
|
];
|
|
928
|
-
|
|
929
|
-
|
|
1011
|
+
exports.RequestTooLargeException$ = RequestTooLargeException$;
|
|
1012
|
+
n0_registry.registerError(RequestTooLargeException$, RequestTooLargeException);
|
|
1013
|
+
const ResourceConflictException$ = [-3, n0, _RCE,
|
|
930
1014
|
{ [_e]: _c, [_hE]: 409 },
|
|
931
1015
|
[_T, _m],
|
|
932
1016
|
[0, 0]
|
|
933
1017
|
];
|
|
934
|
-
|
|
935
|
-
|
|
1018
|
+
exports.ResourceConflictException$ = ResourceConflictException$;
|
|
1019
|
+
n0_registry.registerError(ResourceConflictException$, ResourceConflictException);
|
|
1020
|
+
const ResourceInUseException$ = [-3, n0, _RIUE,
|
|
936
1021
|
{ [_e]: _c, [_hE]: 400 },
|
|
937
1022
|
[_T, _M],
|
|
938
1023
|
[0, 0]
|
|
939
1024
|
];
|
|
940
|
-
|
|
941
|
-
|
|
1025
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
1026
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
1027
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
942
1028
|
{ [_e]: _c, [_hE]: 404 },
|
|
943
1029
|
[_T, _M],
|
|
944
1030
|
[0, 0]
|
|
945
1031
|
];
|
|
946
|
-
|
|
947
|
-
|
|
1032
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1033
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1034
|
+
const ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
948
1035
|
{ [_e]: _se, [_hE]: 502 },
|
|
949
1036
|
[_T, _m],
|
|
950
1037
|
[0, 0]
|
|
951
1038
|
];
|
|
952
|
-
|
|
953
|
-
|
|
1039
|
+
exports.ResourceNotReadyException$ = ResourceNotReadyException$;
|
|
1040
|
+
n0_registry.registerError(ResourceNotReadyException$, ResourceNotReadyException);
|
|
1041
|
+
const S3FilesMountConnectivityException$ = [-3, n0, _SFMCE,
|
|
954
1042
|
{ [_e]: _c, [_hE]: 408 },
|
|
955
1043
|
[_T, _M],
|
|
956
1044
|
[0, 0]
|
|
957
1045
|
];
|
|
958
|
-
|
|
959
|
-
|
|
1046
|
+
exports.S3FilesMountConnectivityException$ = S3FilesMountConnectivityException$;
|
|
1047
|
+
n0_registry.registerError(S3FilesMountConnectivityException$, S3FilesMountConnectivityException);
|
|
1048
|
+
const S3FilesMountFailureException$ = [-3, n0, _SFMFE,
|
|
960
1049
|
{ [_e]: _c, [_hE]: 403 },
|
|
961
1050
|
[_T, _M],
|
|
962
1051
|
[0, 0]
|
|
963
1052
|
];
|
|
964
|
-
|
|
965
|
-
|
|
1053
|
+
exports.S3FilesMountFailureException$ = S3FilesMountFailureException$;
|
|
1054
|
+
n0_registry.registerError(S3FilesMountFailureException$, S3FilesMountFailureException);
|
|
1055
|
+
const S3FilesMountTimeoutException$ = [-3, n0, _SFMTE,
|
|
966
1056
|
{ [_e]: _c, [_hE]: 408 },
|
|
967
1057
|
[_T, _M],
|
|
968
1058
|
[0, 0]
|
|
969
1059
|
];
|
|
970
|
-
|
|
971
|
-
|
|
1060
|
+
exports.S3FilesMountTimeoutException$ = S3FilesMountTimeoutException$;
|
|
1061
|
+
n0_registry.registerError(S3FilesMountTimeoutException$, S3FilesMountTimeoutException);
|
|
1062
|
+
const SerializedRequestEntityTooLargeException$ = [-3, n0, _SRETLE,
|
|
972
1063
|
{ [_e]: _c, [_hE]: 413 },
|
|
973
1064
|
[_T, _m],
|
|
974
1065
|
[0, 0]
|
|
975
1066
|
];
|
|
976
|
-
|
|
977
|
-
|
|
1067
|
+
exports.SerializedRequestEntityTooLargeException$ = SerializedRequestEntityTooLargeException$;
|
|
1068
|
+
n0_registry.registerError(SerializedRequestEntityTooLargeException$, SerializedRequestEntityTooLargeException);
|
|
1069
|
+
const ServiceException$ = [-3, n0, _SE,
|
|
978
1070
|
{ [_e]: _se, [_hE]: 500 },
|
|
979
1071
|
[_T, _M],
|
|
980
1072
|
[0, 0]
|
|
981
1073
|
];
|
|
982
|
-
|
|
983
|
-
|
|
1074
|
+
exports.ServiceException$ = ServiceException$;
|
|
1075
|
+
n0_registry.registerError(ServiceException$, ServiceException);
|
|
1076
|
+
const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1077
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
1078
|
+
[_T, _M],
|
|
1079
|
+
[0, 0]
|
|
1080
|
+
];
|
|
1081
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1082
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1083
|
+
const SnapStartException$ = [-3, n0, _SSE,
|
|
984
1084
|
{ [_e]: _c, [_hE]: 400 },
|
|
985
1085
|
[_T, _M],
|
|
986
1086
|
[0, 0]
|
|
987
1087
|
];
|
|
988
|
-
|
|
989
|
-
|
|
1088
|
+
exports.SnapStartException$ = SnapStartException$;
|
|
1089
|
+
n0_registry.registerError(SnapStartException$, SnapStartException);
|
|
1090
|
+
const SnapStartNotReadyException$ = [-3, n0, _SSNRE,
|
|
990
1091
|
{ [_e]: _c, [_hE]: 409 },
|
|
991
1092
|
[_T, _M],
|
|
992
1093
|
[0, 0]
|
|
993
1094
|
];
|
|
994
|
-
|
|
995
|
-
|
|
1095
|
+
exports.SnapStartNotReadyException$ = SnapStartNotReadyException$;
|
|
1096
|
+
n0_registry.registerError(SnapStartNotReadyException$, SnapStartNotReadyException);
|
|
1097
|
+
const SnapStartRegenerationFailureException$ = [-3, n0, _SSRFE,
|
|
1098
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1099
|
+
[_T, _M],
|
|
1100
|
+
[0, 0]
|
|
1101
|
+
];
|
|
1102
|
+
exports.SnapStartRegenerationFailureException$ = SnapStartRegenerationFailureException$;
|
|
1103
|
+
n0_registry.registerError(SnapStartRegenerationFailureException$, SnapStartRegenerationFailureException);
|
|
1104
|
+
const SnapStartTimeoutException$ = [-3, n0, _SSTE,
|
|
996
1105
|
{ [_e]: _c, [_hE]: 408 },
|
|
997
1106
|
[_T, _M],
|
|
998
1107
|
[0, 0]
|
|
999
1108
|
];
|
|
1000
|
-
|
|
1001
|
-
|
|
1109
|
+
exports.SnapStartTimeoutException$ = SnapStartTimeoutException$;
|
|
1110
|
+
n0_registry.registerError(SnapStartTimeoutException$, SnapStartTimeoutException);
|
|
1111
|
+
const SubnetIPAddressLimitReachedException$ = [-3, n0, _SIPALRE,
|
|
1002
1112
|
{ [_e]: _se, [_hE]: 502 },
|
|
1003
1113
|
[_T, _M],
|
|
1004
1114
|
[0, 0]
|
|
1005
1115
|
];
|
|
1006
|
-
|
|
1007
|
-
|
|
1116
|
+
exports.SubnetIPAddressLimitReachedException$ = SubnetIPAddressLimitReachedException$;
|
|
1117
|
+
n0_registry.registerError(SubnetIPAddressLimitReachedException$, SubnetIPAddressLimitReachedException);
|
|
1118
|
+
const TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1008
1119
|
{ [_e]: _c, [_hE]: 429 },
|
|
1009
1120
|
[_rAS, _T, _m, _R],
|
|
1010
1121
|
[[0, { [_hH]: _RA }], 0, 0, 0]
|
|
1011
1122
|
];
|
|
1012
|
-
|
|
1013
|
-
|
|
1123
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1124
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1125
|
+
const UnsupportedMediaTypeException$ = [-3, n0, _UMTE,
|
|
1014
1126
|
{ [_e]: _c, [_hE]: 415 },
|
|
1015
1127
|
[_T, _m],
|
|
1016
1128
|
[0, 0]
|
|
1017
1129
|
];
|
|
1018
|
-
|
|
1130
|
+
exports.UnsupportedMediaTypeException$ = UnsupportedMediaTypeException$;
|
|
1131
|
+
n0_registry.registerError(UnsupportedMediaTypeException$, UnsupportedMediaTypeException);
|
|
1019
1132
|
exports.errorTypeRegistries = [
|
|
1020
1133
|
_s_registry,
|
|
1021
1134
|
n0_registry,
|
|
@@ -1033,1399 +1146,1660 @@ var OperationPayload = [0, n0, _OP, 8, 0];
|
|
|
1033
1146
|
var OutputPayload = [0, n0, _OPu, 8, 0];
|
|
1034
1147
|
var SensitiveString = [0, n0, _SS, 8, 0];
|
|
1035
1148
|
var StackTraceEntry = [0, n0, _STE, 8, 0];
|
|
1036
|
-
|
|
1149
|
+
const AccountLimit$ = [3, n0, _AL,
|
|
1037
1150
|
0,
|
|
1038
1151
|
[_TCS, _CSU, _CSZ, _CE, _UCE],
|
|
1039
1152
|
[1, 1, 1, 1, 1]
|
|
1040
1153
|
];
|
|
1041
|
-
exports.
|
|
1154
|
+
exports.AccountLimit$ = AccountLimit$;
|
|
1155
|
+
const AccountUsage$ = [3, n0, _AU,
|
|
1042
1156
|
0,
|
|
1043
1157
|
[_TCS, _FC],
|
|
1044
1158
|
[1, 1]
|
|
1045
1159
|
];
|
|
1046
|
-
exports.
|
|
1160
|
+
exports.AccountUsage$ = AccountUsage$;
|
|
1161
|
+
const AddLayerVersionPermissionRequest$ = [3, n0, _ALVPR,
|
|
1047
1162
|
0,
|
|
1048
1163
|
[_LN, _VN, _SI, _A, _P, _OI, _RI],
|
|
1049
1164
|
[[0, 1], [1, 1], 0, 0, 0, 0, [0, { [_hQ]: _RI }]], 5
|
|
1050
1165
|
];
|
|
1051
|
-
exports.
|
|
1166
|
+
exports.AddLayerVersionPermissionRequest$ = AddLayerVersionPermissionRequest$;
|
|
1167
|
+
const AddLayerVersionPermissionResponse$ = [3, n0, _ALVPRd,
|
|
1052
1168
|
0,
|
|
1053
1169
|
[_S, _RI],
|
|
1054
1170
|
[0, 0]
|
|
1055
1171
|
];
|
|
1056
|
-
exports.
|
|
1172
|
+
exports.AddLayerVersionPermissionResponse$ = AddLayerVersionPermissionResponse$;
|
|
1173
|
+
const AddPermissionRequest$ = [3, n0, _APR,
|
|
1057
1174
|
0,
|
|
1058
|
-
[_FN, _SI, _A, _P, _SA, _SAo, _EST, _Q, _RI, _POID
|
|
1059
|
-
[[0, 1], 0, 0, 0, 0, 0, 0, [0, { [_hQ]: _Q }], 0, 0
|
|
1175
|
+
[_FN, _SI, _A, _P, _SA, _FUAT, _IVFU, _SAo, _EST, _Q, _RI, _POID],
|
|
1176
|
+
[[0, 1], 0, 0, 0, 0, 0, 2, 0, 0, [0, { [_hQ]: _Q }], 0, 0], 4
|
|
1060
1177
|
];
|
|
1061
|
-
exports.
|
|
1178
|
+
exports.AddPermissionRequest$ = AddPermissionRequest$;
|
|
1179
|
+
const AddPermissionResponse$ = [3, n0, _APRd,
|
|
1062
1180
|
0,
|
|
1063
1181
|
[_S],
|
|
1064
1182
|
[0]
|
|
1065
1183
|
];
|
|
1066
|
-
exports.
|
|
1184
|
+
exports.AddPermissionResponse$ = AddPermissionResponse$;
|
|
1185
|
+
const AliasConfiguration$ = [3, n0, _AC,
|
|
1067
1186
|
0,
|
|
1068
1187
|
[_AA, _N, _FV, _D, _RC, _RI],
|
|
1069
|
-
[0, 0, 0, 0, () =>
|
|
1188
|
+
[0, 0, 0, 0, () => AliasRoutingConfiguration$, 0]
|
|
1070
1189
|
];
|
|
1071
|
-
exports.
|
|
1190
|
+
exports.AliasConfiguration$ = AliasConfiguration$;
|
|
1191
|
+
const AliasRoutingConfiguration$ = [3, n0, _ARC,
|
|
1072
1192
|
0,
|
|
1073
1193
|
[_AVW],
|
|
1074
1194
|
[128 | 1]
|
|
1075
1195
|
];
|
|
1076
|
-
exports.
|
|
1196
|
+
exports.AliasRoutingConfiguration$ = AliasRoutingConfiguration$;
|
|
1197
|
+
const AllowedPublishers$ = [3, n0, _AP,
|
|
1077
1198
|
0,
|
|
1078
1199
|
[_SPVA],
|
|
1079
1200
|
[64 | 0], 1
|
|
1080
1201
|
];
|
|
1081
|
-
exports.
|
|
1202
|
+
exports.AllowedPublishers$ = AllowedPublishers$;
|
|
1203
|
+
const AmazonManagedKafkaEventSourceConfig$ = [3, n0, _AMKESC,
|
|
1082
1204
|
0,
|
|
1083
1205
|
[_CGI, _SRC],
|
|
1084
|
-
[0, () =>
|
|
1206
|
+
[0, () => KafkaSchemaRegistryConfig$]
|
|
1085
1207
|
];
|
|
1086
|
-
exports.
|
|
1208
|
+
exports.AmazonManagedKafkaEventSourceConfig$ = AmazonManagedKafkaEventSourceConfig$;
|
|
1209
|
+
const CallbackDetails$ = [3, n0, _CD,
|
|
1087
1210
|
0,
|
|
1088
1211
|
[_CI, _Re, _E],
|
|
1089
|
-
[0, [() => OperationPayload, 0], [() =>
|
|
1212
|
+
[0, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
1090
1213
|
];
|
|
1091
|
-
exports.
|
|
1214
|
+
exports.CallbackDetails$ = CallbackDetails$;
|
|
1215
|
+
const CallbackFailedDetails$ = [3, n0, _CFD,
|
|
1092
1216
|
0,
|
|
1093
1217
|
[_E],
|
|
1094
|
-
[[() =>
|
|
1218
|
+
[[() => EventError$, 0]], 1
|
|
1095
1219
|
];
|
|
1096
|
-
exports.
|
|
1220
|
+
exports.CallbackFailedDetails$ = CallbackFailedDetails$;
|
|
1221
|
+
const CallbackOptions$ = [3, n0, _CO,
|
|
1097
1222
|
0,
|
|
1098
1223
|
[_TS, _HTS],
|
|
1099
1224
|
[1, 1]
|
|
1100
1225
|
];
|
|
1101
|
-
exports.
|
|
1226
|
+
exports.CallbackOptions$ = CallbackOptions$;
|
|
1227
|
+
const CallbackStartedDetails$ = [3, n0, _CSD,
|
|
1102
1228
|
0,
|
|
1103
1229
|
[_CI, _HT, _Ti],
|
|
1104
1230
|
[0, 1, 1], 1
|
|
1105
1231
|
];
|
|
1106
|
-
exports.
|
|
1232
|
+
exports.CallbackStartedDetails$ = CallbackStartedDetails$;
|
|
1233
|
+
const CallbackSucceededDetails$ = [3, n0, _CSDa,
|
|
1107
1234
|
0,
|
|
1108
1235
|
[_Re],
|
|
1109
|
-
[[() =>
|
|
1236
|
+
[[() => EventResult$, 0]], 1
|
|
1110
1237
|
];
|
|
1111
|
-
exports.
|
|
1238
|
+
exports.CallbackSucceededDetails$ = CallbackSucceededDetails$;
|
|
1239
|
+
const CallbackTimedOutDetails$ = [3, n0, _CTOD,
|
|
1112
1240
|
0,
|
|
1113
1241
|
[_E],
|
|
1114
|
-
[[() =>
|
|
1242
|
+
[[() => EventError$, 0]], 1
|
|
1115
1243
|
];
|
|
1116
|
-
exports.
|
|
1244
|
+
exports.CallbackTimedOutDetails$ = CallbackTimedOutDetails$;
|
|
1245
|
+
const CapacityProvider$ = [3, n0, _CP,
|
|
1117
1246
|
0,
|
|
1118
1247
|
[_CPA, _St, _VC, _PC, _IR, _CPSC, _KKA, _LM, _PT],
|
|
1119
|
-
[0, 0, () =>
|
|
1248
|
+
[0, 0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 0, () => PropagateTags$], 4
|
|
1120
1249
|
];
|
|
1121
|
-
exports.
|
|
1250
|
+
exports.CapacityProvider$ = CapacityProvider$;
|
|
1251
|
+
const CapacityProviderConfig$ = [3, n0, _CPC,
|
|
1122
1252
|
0,
|
|
1123
1253
|
[_LMICPC],
|
|
1124
|
-
[() =>
|
|
1254
|
+
[() => LambdaManagedInstancesCapacityProviderConfig$], 1
|
|
1125
1255
|
];
|
|
1126
|
-
exports.
|
|
1256
|
+
exports.CapacityProviderConfig$ = CapacityProviderConfig$;
|
|
1257
|
+
const CapacityProviderPermissionsConfig$ = [3, n0, _CPPC,
|
|
1127
1258
|
0,
|
|
1128
1259
|
[_CPORA],
|
|
1129
1260
|
[0], 1
|
|
1130
1261
|
];
|
|
1131
|
-
exports.
|
|
1262
|
+
exports.CapacityProviderPermissionsConfig$ = CapacityProviderPermissionsConfig$;
|
|
1263
|
+
const CapacityProviderScalingConfig$ = [3, n0, _CPSC,
|
|
1132
1264
|
0,
|
|
1133
1265
|
[_MVCC, _SM, _SP],
|
|
1134
1266
|
[1, 0, () => CapacityProviderScalingPoliciesList]
|
|
1135
1267
|
];
|
|
1136
|
-
exports.
|
|
1268
|
+
exports.CapacityProviderScalingConfig$ = CapacityProviderScalingConfig$;
|
|
1269
|
+
const CapacityProviderVpcConfig$ = [3, n0, _CPVC,
|
|
1137
1270
|
0,
|
|
1138
1271
|
[_SIu, _SGI],
|
|
1139
1272
|
[64 | 0, 64 | 0], 2
|
|
1140
1273
|
];
|
|
1141
|
-
exports.
|
|
1274
|
+
exports.CapacityProviderVpcConfig$ = CapacityProviderVpcConfig$;
|
|
1275
|
+
const ChainedInvokeDetails$ = [3, n0, _CID,
|
|
1142
1276
|
0,
|
|
1143
1277
|
[_Re, _E],
|
|
1144
|
-
[[() => OperationPayload, 0], [() =>
|
|
1278
|
+
[[() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
1145
1279
|
];
|
|
1146
|
-
exports.
|
|
1280
|
+
exports.ChainedInvokeDetails$ = ChainedInvokeDetails$;
|
|
1281
|
+
const ChainedInvokeFailedDetails$ = [3, n0, _CIFD,
|
|
1147
1282
|
0,
|
|
1148
1283
|
[_E],
|
|
1149
|
-
[[() =>
|
|
1284
|
+
[[() => EventError$, 0]], 1
|
|
1150
1285
|
];
|
|
1151
|
-
exports.
|
|
1286
|
+
exports.ChainedInvokeFailedDetails$ = ChainedInvokeFailedDetails$;
|
|
1287
|
+
const ChainedInvokeOptions$ = [3, n0, _CIO,
|
|
1152
1288
|
0,
|
|
1153
1289
|
[_FN, _TI],
|
|
1154
1290
|
[0, 0], 1
|
|
1155
1291
|
];
|
|
1156
|
-
exports.
|
|
1292
|
+
exports.ChainedInvokeOptions$ = ChainedInvokeOptions$;
|
|
1293
|
+
const ChainedInvokeStartedDetails$ = [3, n0, _CISD,
|
|
1157
1294
|
0,
|
|
1158
1295
|
[_FN, _TI, _I, _EV, _DEA],
|
|
1159
|
-
[0, 0, [() =>
|
|
1296
|
+
[0, 0, [() => EventInput$, 0], 0, 0], 1
|
|
1160
1297
|
];
|
|
1161
|
-
exports.
|
|
1298
|
+
exports.ChainedInvokeStartedDetails$ = ChainedInvokeStartedDetails$;
|
|
1299
|
+
const ChainedInvokeStoppedDetails$ = [3, n0, _CISDh,
|
|
1162
1300
|
0,
|
|
1163
1301
|
[_E],
|
|
1164
|
-
[[() =>
|
|
1302
|
+
[[() => EventError$, 0]], 1
|
|
1165
1303
|
];
|
|
1166
|
-
exports.
|
|
1304
|
+
exports.ChainedInvokeStoppedDetails$ = ChainedInvokeStoppedDetails$;
|
|
1305
|
+
const ChainedInvokeSucceededDetails$ = [3, n0, _CISDha,
|
|
1167
1306
|
0,
|
|
1168
1307
|
[_Re],
|
|
1169
|
-
[[() =>
|
|
1308
|
+
[[() => EventResult$, 0]], 1
|
|
1170
1309
|
];
|
|
1171
|
-
exports.
|
|
1310
|
+
exports.ChainedInvokeSucceededDetails$ = ChainedInvokeSucceededDetails$;
|
|
1311
|
+
const ChainedInvokeTimedOutDetails$ = [3, n0, _CITOD,
|
|
1172
1312
|
0,
|
|
1173
1313
|
[_E],
|
|
1174
|
-
[[() =>
|
|
1314
|
+
[[() => EventError$, 0]], 1
|
|
1175
1315
|
];
|
|
1176
|
-
exports.
|
|
1316
|
+
exports.ChainedInvokeTimedOutDetails$ = ChainedInvokeTimedOutDetails$;
|
|
1317
|
+
const CheckpointDurableExecutionRequest$ = [3, n0, _CDER,
|
|
1177
1318
|
0,
|
|
1178
1319
|
[_DEA, _CT, _U, _CTl],
|
|
1179
1320
|
[[0, 1], 0, [() => OperationUpdates, 0], [0, 4]], 2
|
|
1180
1321
|
];
|
|
1181
|
-
exports.
|
|
1322
|
+
exports.CheckpointDurableExecutionRequest$ = CheckpointDurableExecutionRequest$;
|
|
1323
|
+
const CheckpointDurableExecutionResponse$ = [3, n0, _CDERh,
|
|
1182
1324
|
0,
|
|
1183
1325
|
[_NES, _CT],
|
|
1184
|
-
[[() =>
|
|
1326
|
+
[[() => CheckpointUpdatedExecutionState$, 0], 0], 1
|
|
1185
1327
|
];
|
|
1186
|
-
exports.
|
|
1328
|
+
exports.CheckpointDurableExecutionResponse$ = CheckpointDurableExecutionResponse$;
|
|
1329
|
+
const CheckpointUpdatedExecutionState$ = [3, n0, _CUES,
|
|
1187
1330
|
0,
|
|
1188
1331
|
[_O, _NM],
|
|
1189
1332
|
[[() => Operations, 0], 0]
|
|
1190
1333
|
];
|
|
1191
|
-
exports.
|
|
1334
|
+
exports.CheckpointUpdatedExecutionState$ = CheckpointUpdatedExecutionState$;
|
|
1335
|
+
const CodeSigningConfig$ = [3, n0, _CSC,
|
|
1192
1336
|
0,
|
|
1193
1337
|
[_CSCI, _CSCA, _AP, _CSP, _LM, _D],
|
|
1194
|
-
[0, 0, () =>
|
|
1338
|
+
[0, 0, () => AllowedPublishers$, () => CodeSigningPolicies$, 0, 0], 5
|
|
1195
1339
|
];
|
|
1196
|
-
exports.
|
|
1340
|
+
exports.CodeSigningConfig$ = CodeSigningConfig$;
|
|
1341
|
+
const CodeSigningPolicies$ = [3, n0, _CSP,
|
|
1197
1342
|
0,
|
|
1198
1343
|
[_UAOD],
|
|
1199
1344
|
[0]
|
|
1200
1345
|
];
|
|
1201
|
-
exports.
|
|
1346
|
+
exports.CodeSigningPolicies$ = CodeSigningPolicies$;
|
|
1347
|
+
const Concurrency$ = [3, n0, _C,
|
|
1202
1348
|
0,
|
|
1203
1349
|
[_RCEe],
|
|
1204
1350
|
[1]
|
|
1205
1351
|
];
|
|
1206
|
-
exports.
|
|
1352
|
+
exports.Concurrency$ = Concurrency$;
|
|
1353
|
+
const ContextDetails$ = [3, n0, _CDo,
|
|
1207
1354
|
0,
|
|
1208
1355
|
[_RCe, _Re, _E],
|
|
1209
|
-
[2, [() => OperationPayload, 0], [() =>
|
|
1356
|
+
[2, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
1210
1357
|
];
|
|
1211
|
-
exports.
|
|
1358
|
+
exports.ContextDetails$ = ContextDetails$;
|
|
1359
|
+
const ContextFailedDetails$ = [3, n0, _CFDo,
|
|
1212
1360
|
0,
|
|
1213
1361
|
[_E],
|
|
1214
|
-
[[() =>
|
|
1362
|
+
[[() => EventError$, 0]], 1
|
|
1215
1363
|
];
|
|
1216
|
-
exports.
|
|
1364
|
+
exports.ContextFailedDetails$ = ContextFailedDetails$;
|
|
1365
|
+
const ContextOptions$ = [3, n0, _COo,
|
|
1217
1366
|
0,
|
|
1218
1367
|
[_RCe],
|
|
1219
1368
|
[2]
|
|
1220
1369
|
];
|
|
1221
|
-
exports.
|
|
1370
|
+
exports.ContextOptions$ = ContextOptions$;
|
|
1371
|
+
const ContextStartedDetails$ = [3, n0, _CSDo,
|
|
1222
1372
|
0,
|
|
1223
1373
|
[],
|
|
1224
1374
|
[]
|
|
1225
1375
|
];
|
|
1226
|
-
exports.
|
|
1376
|
+
exports.ContextStartedDetails$ = ContextStartedDetails$;
|
|
1377
|
+
const ContextSucceededDetails$ = [3, n0, _CSDon,
|
|
1227
1378
|
0,
|
|
1228
1379
|
[_Re],
|
|
1229
|
-
[[() =>
|
|
1380
|
+
[[() => EventResult$, 0]], 1
|
|
1230
1381
|
];
|
|
1231
|
-
exports.
|
|
1382
|
+
exports.ContextSucceededDetails$ = ContextSucceededDetails$;
|
|
1383
|
+
const Cors$ = [3, n0, _Co,
|
|
1232
1384
|
0,
|
|
1233
1385
|
[_ACl, _AH, _AM, _AO, _EH, _MA],
|
|
1234
1386
|
[2, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 1]
|
|
1235
1387
|
];
|
|
1236
|
-
exports.
|
|
1388
|
+
exports.Cors$ = Cors$;
|
|
1389
|
+
const CreateAliasRequest$ = [3, n0, _CAR,
|
|
1237
1390
|
0,
|
|
1238
1391
|
[_FN, _N, _FV, _D, _RC],
|
|
1239
|
-
[[0, 1], 0, 0, 0, () =>
|
|
1392
|
+
[[0, 1], 0, 0, 0, () => AliasRoutingConfiguration$], 3
|
|
1240
1393
|
];
|
|
1241
|
-
exports.
|
|
1394
|
+
exports.CreateAliasRequest$ = CreateAliasRequest$;
|
|
1395
|
+
const CreateCapacityProviderRequest$ = [3, n0, _CCPR,
|
|
1242
1396
|
0,
|
|
1243
1397
|
[_CPN, _VC, _PC, _IR, _CPSC, _KKA, _Ta, _PT],
|
|
1244
|
-
[0, () =>
|
|
1398
|
+
[0, () => CapacityProviderVpcConfig$, () => CapacityProviderPermissionsConfig$, () => InstanceRequirements$, () => CapacityProviderScalingConfig$, 0, 128 | 0, () => PropagateTags$], 3
|
|
1245
1399
|
];
|
|
1246
|
-
exports.
|
|
1400
|
+
exports.CreateCapacityProviderRequest$ = CreateCapacityProviderRequest$;
|
|
1401
|
+
const CreateCapacityProviderResponse$ = [3, n0, _CCPRr,
|
|
1247
1402
|
0,
|
|
1248
1403
|
[_CP],
|
|
1249
|
-
[() =>
|
|
1404
|
+
[() => CapacityProvider$], 1
|
|
1250
1405
|
];
|
|
1251
|
-
exports.
|
|
1406
|
+
exports.CreateCapacityProviderResponse$ = CreateCapacityProviderResponse$;
|
|
1407
|
+
const CreateCodeSigningConfigRequest$ = [3, n0, _CCSCR,
|
|
1252
1408
|
0,
|
|
1253
1409
|
[_AP, _D, _CSP, _Ta],
|
|
1254
|
-
[() =>
|
|
1410
|
+
[() => AllowedPublishers$, 0, () => CodeSigningPolicies$, 128 | 0], 1
|
|
1255
1411
|
];
|
|
1256
|
-
exports.
|
|
1412
|
+
exports.CreateCodeSigningConfigRequest$ = CreateCodeSigningConfigRequest$;
|
|
1413
|
+
const CreateCodeSigningConfigResponse$ = [3, n0, _CCSCRr,
|
|
1257
1414
|
0,
|
|
1258
1415
|
[_CSC],
|
|
1259
|
-
[() =>
|
|
1416
|
+
[() => CodeSigningConfig$], 1
|
|
1260
1417
|
];
|
|
1261
|
-
exports.
|
|
1418
|
+
exports.CreateCodeSigningConfigResponse$ = CreateCodeSigningConfigResponse$;
|
|
1419
|
+
const CreateEventSourceMappingRequest$ = [3, n0, _CESMR,
|
|
1262
1420
|
0,
|
|
1263
|
-
[_FN, _ESA, _En, _BSa, _FCi, _MBWIS, _PF, _SPt, _SPT, _DC, _MRAIS, _BBOFE, _MRA, _Ta, _TWIS, _To, _Qu, _SAC, _SMES, _FRT, _AMKESC, _SMKESC,
|
|
1264
|
-
[0, 0, 2, 1, () =>
|
|
1421
|
+
[_FN, _ESA, _En, _BSa, _FCi, _KMSKA, _MC, _LC, _SC, _MBWIS, _PF, _SPt, _SPT, _DC, _MRAIS, _BBOFE, _MRA, _Ta, _TWIS, _To, _Qu, _SAC, _SMES, _FRT, _AMKESC, _SMKESC, _DDBESC, _PPC],
|
|
1422
|
+
[0, 0, 2, 1, () => FilterCriteria$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ScalingConfig$, 1, 1, 0, 4, () => DestinationConfig$, 1, 2, 1, 128 | 0, 1, 64 | 0, 64 | 0, () => SourceAccessConfigurations, () => SelfManagedEventSource$, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => DocumentDBEventSourceConfig$, () => ProvisionedPollerConfig$], 1
|
|
1265
1423
|
];
|
|
1266
|
-
exports.
|
|
1424
|
+
exports.CreateEventSourceMappingRequest$ = CreateEventSourceMappingRequest$;
|
|
1425
|
+
const CreateFunctionRequest$ = [3, n0, _CFR,
|
|
1267
1426
|
0,
|
|
1268
|
-
[_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _VC, _PTa, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC,
|
|
1269
|
-
[0, 0, [() =>
|
|
1427
|
+
[_FN, _Ro, _Cod, _Ru, _H, _D, _Ti, _MS, _Pu, _PTu, _VC, _PTa, _DLC, _Env, _KMSKA, _TC, _Ta, _L, _FSC, _CSCA, _IC, _Ar, _ES, _SSn, _LC, _TCe, _CPC, _DCu],
|
|
1428
|
+
[0, 0, [() => FunctionCode$, 0], 0, 0, 0, 1, 1, 2, 0, () => VpcConfig$, 0, () => DeadLetterConfig$, [() => Environment$, 0], 0, () => TracingConfig$, 128 | 0, 64 | 0, () => FileSystemConfigList, 0, () => ImageConfig$, 64 | 0, () => EphemeralStorage$, () => SnapStart$, () => LoggingConfig$, () => TenancyConfig$, () => CapacityProviderConfig$, () => DurableConfig$], 3
|
|
1270
1429
|
];
|
|
1271
|
-
exports.
|
|
1430
|
+
exports.CreateFunctionRequest$ = CreateFunctionRequest$;
|
|
1431
|
+
const CreateFunctionUrlConfigRequest$ = [3, n0, _CFUCR,
|
|
1272
1432
|
0,
|
|
1273
1433
|
[_FN, _AT, _Q, _Co, _IM],
|
|
1274
|
-
[[0, 1], 0, [0, { [_hQ]: _Q }], () =>
|
|
1434
|
+
[[0, 1], 0, [0, { [_hQ]: _Q }], () => Cors$, 0], 2
|
|
1275
1435
|
];
|
|
1276
|
-
exports.
|
|
1436
|
+
exports.CreateFunctionUrlConfigRequest$ = CreateFunctionUrlConfigRequest$;
|
|
1437
|
+
const CreateFunctionUrlConfigResponse$ = [3, n0, _CFUCRr,
|
|
1277
1438
|
0,
|
|
1278
1439
|
[_FU, _FA, _AT, _CTr, _Co, _IM],
|
|
1279
|
-
[0, 0, 0, 0, () =>
|
|
1440
|
+
[0, 0, 0, 0, () => Cors$, 0], 4
|
|
1280
1441
|
];
|
|
1281
|
-
exports.
|
|
1442
|
+
exports.CreateFunctionUrlConfigResponse$ = CreateFunctionUrlConfigResponse$;
|
|
1443
|
+
const DeadLetterConfig$ = [3, n0, _DLC,
|
|
1282
1444
|
0,
|
|
1283
1445
|
[_TA],
|
|
1284
1446
|
[0]
|
|
1285
1447
|
];
|
|
1286
|
-
exports.
|
|
1448
|
+
exports.DeadLetterConfig$ = DeadLetterConfig$;
|
|
1449
|
+
const DeleteAliasRequest$ = [3, n0, _DAR,
|
|
1287
1450
|
0,
|
|
1288
1451
|
[_FN, _N],
|
|
1289
1452
|
[[0, 1], [0, 1]], 2
|
|
1290
1453
|
];
|
|
1291
|
-
exports.
|
|
1454
|
+
exports.DeleteAliasRequest$ = DeleteAliasRequest$;
|
|
1455
|
+
const DeleteCapacityProviderRequest$ = [3, n0, _DCPR,
|
|
1292
1456
|
0,
|
|
1293
1457
|
[_CPN],
|
|
1294
1458
|
[[0, 1]], 1
|
|
1295
1459
|
];
|
|
1296
|
-
exports.
|
|
1460
|
+
exports.DeleteCapacityProviderRequest$ = DeleteCapacityProviderRequest$;
|
|
1461
|
+
const DeleteCapacityProviderResponse$ = [3, n0, _DCPRe,
|
|
1297
1462
|
0,
|
|
1298
1463
|
[_CP],
|
|
1299
|
-
[() =>
|
|
1464
|
+
[() => CapacityProvider$], 1
|
|
1300
1465
|
];
|
|
1301
|
-
exports.
|
|
1466
|
+
exports.DeleteCapacityProviderResponse$ = DeleteCapacityProviderResponse$;
|
|
1467
|
+
const DeleteCodeSigningConfigRequest$ = [3, n0, _DCSCR,
|
|
1302
1468
|
0,
|
|
1303
1469
|
[_CSCA],
|
|
1304
1470
|
[[0, 1]], 1
|
|
1305
1471
|
];
|
|
1306
|
-
exports.
|
|
1472
|
+
exports.DeleteCodeSigningConfigRequest$ = DeleteCodeSigningConfigRequest$;
|
|
1473
|
+
const DeleteCodeSigningConfigResponse$ = [3, n0, _DCSCRe,
|
|
1307
1474
|
0,
|
|
1308
1475
|
[],
|
|
1309
1476
|
[]
|
|
1310
1477
|
];
|
|
1311
|
-
exports.
|
|
1478
|
+
exports.DeleteCodeSigningConfigResponse$ = DeleteCodeSigningConfigResponse$;
|
|
1479
|
+
const DeleteEventSourceMappingRequest$ = [3, n0, _DESMR,
|
|
1312
1480
|
0,
|
|
1313
1481
|
[_UUID],
|
|
1314
1482
|
[[0, 1]], 1
|
|
1315
1483
|
];
|
|
1316
|
-
exports.
|
|
1484
|
+
exports.DeleteEventSourceMappingRequest$ = DeleteEventSourceMappingRequest$;
|
|
1485
|
+
const DeleteFunctionCodeSigningConfigRequest$ = [3, n0, _DFCSCR,
|
|
1317
1486
|
0,
|
|
1318
1487
|
[_FN],
|
|
1319
1488
|
[[0, 1]], 1
|
|
1320
1489
|
];
|
|
1321
|
-
exports.
|
|
1490
|
+
exports.DeleteFunctionCodeSigningConfigRequest$ = DeleteFunctionCodeSigningConfigRequest$;
|
|
1491
|
+
const DeleteFunctionConcurrencyRequest$ = [3, n0, _DFCR,
|
|
1322
1492
|
0,
|
|
1323
1493
|
[_FN],
|
|
1324
1494
|
[[0, 1]], 1
|
|
1325
1495
|
];
|
|
1326
|
-
exports.
|
|
1496
|
+
exports.DeleteFunctionConcurrencyRequest$ = DeleteFunctionConcurrencyRequest$;
|
|
1497
|
+
const DeleteFunctionEventInvokeConfigRequest$ = [3, n0, _DFEICR,
|
|
1327
1498
|
0,
|
|
1328
1499
|
[_FN, _Q],
|
|
1329
1500
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1330
1501
|
];
|
|
1331
|
-
exports.
|
|
1502
|
+
exports.DeleteFunctionEventInvokeConfigRequest$ = DeleteFunctionEventInvokeConfigRequest$;
|
|
1503
|
+
const DeleteFunctionRequest$ = [3, n0, _DFR,
|
|
1332
1504
|
0,
|
|
1333
1505
|
[_FN, _Q],
|
|
1334
1506
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1335
1507
|
];
|
|
1336
|
-
exports.
|
|
1508
|
+
exports.DeleteFunctionRequest$ = DeleteFunctionRequest$;
|
|
1509
|
+
const DeleteFunctionResponse$ = [3, n0, _DFRe,
|
|
1337
1510
|
0,
|
|
1338
1511
|
[_SCt],
|
|
1339
1512
|
[[1, 32]]
|
|
1340
1513
|
];
|
|
1341
|
-
exports.
|
|
1514
|
+
exports.DeleteFunctionResponse$ = DeleteFunctionResponse$;
|
|
1515
|
+
const DeleteFunctionUrlConfigRequest$ = [3, n0, _DFUCR,
|
|
1342
1516
|
0,
|
|
1343
1517
|
[_FN, _Q],
|
|
1344
1518
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1345
1519
|
];
|
|
1346
|
-
exports.
|
|
1520
|
+
exports.DeleteFunctionUrlConfigRequest$ = DeleteFunctionUrlConfigRequest$;
|
|
1521
|
+
const DeleteLayerVersionRequest$ = [3, n0, _DLVR,
|
|
1347
1522
|
0,
|
|
1348
1523
|
[_LN, _VN],
|
|
1349
1524
|
[[0, 1], [1, 1]], 2
|
|
1350
1525
|
];
|
|
1351
|
-
exports.
|
|
1526
|
+
exports.DeleteLayerVersionRequest$ = DeleteLayerVersionRequest$;
|
|
1527
|
+
const DeleteProvisionedConcurrencyConfigRequest$ = [3, n0, _DPCCR,
|
|
1352
1528
|
0,
|
|
1353
1529
|
[_FN, _Q],
|
|
1354
1530
|
[[0, 1], [0, { [_hQ]: _Q }]], 2
|
|
1355
1531
|
];
|
|
1356
|
-
exports.
|
|
1532
|
+
exports.DeleteProvisionedConcurrencyConfigRequest$ = DeleteProvisionedConcurrencyConfigRequest$;
|
|
1533
|
+
const DestinationConfig$ = [3, n0, _DC,
|
|
1357
1534
|
0,
|
|
1358
1535
|
[_OS, _OF],
|
|
1359
|
-
[() =>
|
|
1536
|
+
[() => OnSuccess$, () => OnFailure$]
|
|
1360
1537
|
];
|
|
1361
|
-
exports.
|
|
1538
|
+
exports.DestinationConfig$ = DestinationConfig$;
|
|
1539
|
+
const DocumentDBEventSourceConfig$ = [3, n0, _DDBESC,
|
|
1362
1540
|
0,
|
|
1363
1541
|
[_DN, _CN, _FD],
|
|
1364
1542
|
[0, 0, 0]
|
|
1365
1543
|
];
|
|
1366
|
-
exports.
|
|
1544
|
+
exports.DocumentDBEventSourceConfig$ = DocumentDBEventSourceConfig$;
|
|
1545
|
+
const DurableConfig$ = [3, n0, _DCu,
|
|
1367
1546
|
0,
|
|
1368
1547
|
[_RPID, _ETx],
|
|
1369
1548
|
[1, 1]
|
|
1370
1549
|
];
|
|
1371
|
-
exports.
|
|
1550
|
+
exports.DurableConfig$ = DurableConfig$;
|
|
1551
|
+
const Environment$ = [3, n0, _Env,
|
|
1372
1552
|
0,
|
|
1373
1553
|
[_V],
|
|
1374
1554
|
[[() => EnvironmentVariables, 0]]
|
|
1375
1555
|
];
|
|
1376
|
-
exports.
|
|
1556
|
+
exports.Environment$ = Environment$;
|
|
1557
|
+
const EnvironmentError$ = [3, n0, _EE,
|
|
1377
1558
|
0,
|
|
1378
1559
|
[_EC, _M],
|
|
1379
1560
|
[0, [() => SensitiveString, 0]]
|
|
1380
1561
|
];
|
|
1381
|
-
exports.
|
|
1562
|
+
exports.EnvironmentError$ = EnvironmentError$;
|
|
1563
|
+
const EnvironmentResponse$ = [3, n0, _ER,
|
|
1382
1564
|
0,
|
|
1383
1565
|
[_V, _E],
|
|
1384
|
-
[[() => EnvironmentVariables, 0], [() =>
|
|
1566
|
+
[[() => EnvironmentVariables, 0], [() => EnvironmentError$, 0]]
|
|
1385
1567
|
];
|
|
1386
|
-
exports.
|
|
1568
|
+
exports.EnvironmentResponse$ = EnvironmentResponse$;
|
|
1569
|
+
const EphemeralStorage$ = [3, n0, _ES,
|
|
1387
1570
|
0,
|
|
1388
1571
|
[_Si],
|
|
1389
1572
|
[1], 1
|
|
1390
1573
|
];
|
|
1391
|
-
exports.
|
|
1574
|
+
exports.EphemeralStorage$ = EphemeralStorage$;
|
|
1575
|
+
const ErrorObject$ = [3, n0, _EO,
|
|
1392
1576
|
0,
|
|
1393
1577
|
[_EM, _ET, _ED, _ST],
|
|
1394
1578
|
[[() => ErrorMessage, 0], [() => ErrorType, 0], [() => ErrorData, 0], [() => StackTraceEntries, 0]]
|
|
1395
1579
|
];
|
|
1396
|
-
exports.
|
|
1580
|
+
exports.ErrorObject$ = ErrorObject$;
|
|
1581
|
+
const Event$ = [3, n0, _Ev,
|
|
1397
1582
|
0,
|
|
1398
1583
|
[_ETv, _STu, _EI, _Id, _N, _ETve, _PI, _ESD, _ESDx, _EFD, _ETOD, _ESDxe, _CSDo, _CSDon, _CFDo, _WSD, _WSDa, _WCD, _SSD, _SSDt, _SFD, _CISD, _CISDha, _CIFD, _CITOD, _CISDh, _CSD, _CSDa, _CFD, _CTOD, _ICD],
|
|
1399
|
-
[0, 0, 1, 0, 0, 4, 0, [() =>
|
|
1584
|
+
[0, 0, 1, 0, 0, 4, 0, [() => ExecutionStartedDetails$, 0], [() => ExecutionSucceededDetails$, 0], [() => ExecutionFailedDetails$, 0], [() => ExecutionTimedOutDetails$, 0], [() => ExecutionStoppedDetails$, 0], () => ContextStartedDetails$, [() => ContextSucceededDetails$, 0], [() => ContextFailedDetails$, 0], () => WaitStartedDetails$, () => WaitSucceededDetails$, [() => WaitCancelledDetails$, 0], () => StepStartedDetails$, [() => StepSucceededDetails$, 0], [() => StepFailedDetails$, 0], [() => ChainedInvokeStartedDetails$, 0], [() => ChainedInvokeSucceededDetails$, 0], [() => ChainedInvokeFailedDetails$, 0], [() => ChainedInvokeTimedOutDetails$, 0], [() => ChainedInvokeStoppedDetails$, 0], () => CallbackStartedDetails$, [() => CallbackSucceededDetails$, 0], [() => CallbackFailedDetails$, 0], [() => CallbackTimedOutDetails$, 0], [() => InvocationCompletedDetails$, 0]]
|
|
1400
1585
|
];
|
|
1401
|
-
exports.
|
|
1586
|
+
exports.Event$ = Event$;
|
|
1587
|
+
const EventError$ = [3, n0, _EEv,
|
|
1402
1588
|
0,
|
|
1403
1589
|
[_Pa, _Tr],
|
|
1404
|
-
[[() =>
|
|
1590
|
+
[[() => ErrorObject$, 0], 2]
|
|
1405
1591
|
];
|
|
1406
|
-
exports.
|
|
1592
|
+
exports.EventError$ = EventError$;
|
|
1593
|
+
const EventInput$ = [3, n0, _EIv,
|
|
1407
1594
|
0,
|
|
1408
1595
|
[_Pa, _Tr],
|
|
1409
1596
|
[[() => InputPayload, 0], 2]
|
|
1410
1597
|
];
|
|
1411
|
-
exports.
|
|
1598
|
+
exports.EventInput$ = EventInput$;
|
|
1599
|
+
const EventResult$ = [3, n0, _ERv,
|
|
1412
1600
|
0,
|
|
1413
1601
|
[_Pa, _Tr],
|
|
1414
1602
|
[[() => OperationPayload, 0], 2]
|
|
1415
1603
|
];
|
|
1416
|
-
exports.
|
|
1604
|
+
exports.EventResult$ = EventResult$;
|
|
1605
|
+
const EventSourceMappingConfiguration$ = [3, n0, _ESMC,
|
|
1417
1606
|
0,
|
|
1418
|
-
[_UUID, _SPt, _SPT, _BSa, _MBWIS, _PF, _ESA, _FCi, _FA, _LM, _LPR, _St, _STR, _DC, _To, _Qu, _SAC, _SMES, _MRAIS, _BBOFE, _MRA, _TWIS, _FRT, _AMKESC, _SMKESC,
|
|
1419
|
-
[0, 0, 4, 1, 1, 1, 0, () =>
|
|
1607
|
+
[_UUID, _SPt, _SPT, _BSa, _MBWIS, _PF, _ESA, _FCi, _FCE, _KMSKA, _MC, _LC, _SC, _FA, _LM, _LPR, _St, _STR, _DC, _To, _Qu, _SAC, _SMES, _MRAIS, _BBOFE, _MRA, _TWIS, _FRT, _AMKESC, _SMKESC, _DDBESC, _ESMA, _PPC],
|
|
1608
|
+
[0, 0, 4, 1, 1, 1, 0, () => FilterCriteria$, () => FilterCriteriaError$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ScalingConfig$, 0, 4, 0, 0, 0, () => DestinationConfig$, 64 | 0, 64 | 0, () => SourceAccessConfigurations, () => SelfManagedEventSource$, 1, 2, 1, 1, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => DocumentDBEventSourceConfig$, 0, () => ProvisionedPollerConfig$]
|
|
1420
1609
|
];
|
|
1421
|
-
exports.
|
|
1610
|
+
exports.EventSourceMappingConfiguration$ = EventSourceMappingConfiguration$;
|
|
1611
|
+
const EventSourceMappingLoggingConfig$ = [3, n0, _ESMLC,
|
|
1422
1612
|
0,
|
|
1423
1613
|
[_SLL],
|
|
1424
1614
|
[0]
|
|
1425
1615
|
];
|
|
1426
|
-
exports.
|
|
1616
|
+
exports.EventSourceMappingLoggingConfig$ = EventSourceMappingLoggingConfig$;
|
|
1617
|
+
const EventSourceMappingMetricsConfig$ = [3, n0, _ESMMC,
|
|
1427
1618
|
0,
|
|
1428
1619
|
[_Me],
|
|
1429
1620
|
[64 | 0]
|
|
1430
1621
|
];
|
|
1431
|
-
exports.
|
|
1622
|
+
exports.EventSourceMappingMetricsConfig$ = EventSourceMappingMetricsConfig$;
|
|
1623
|
+
const Execution$ = [3, n0, _Ex,
|
|
1432
1624
|
0,
|
|
1433
1625
|
[_DEA, _DEN, _FA, _Sta, _STt, _ETn],
|
|
1434
1626
|
[0, 0, 0, 0, 4, 4], 5
|
|
1435
1627
|
];
|
|
1436
|
-
exports.
|
|
1628
|
+
exports.Execution$ = Execution$;
|
|
1629
|
+
const ExecutionDetails$ = [3, n0, _EDx,
|
|
1437
1630
|
0,
|
|
1438
1631
|
[_IP],
|
|
1439
1632
|
[[() => InputPayload, 0]]
|
|
1440
1633
|
];
|
|
1441
|
-
exports.
|
|
1634
|
+
exports.ExecutionDetails$ = ExecutionDetails$;
|
|
1635
|
+
const ExecutionFailedDetails$ = [3, n0, _EFD,
|
|
1442
1636
|
0,
|
|
1443
1637
|
[_E],
|
|
1444
|
-
[[() =>
|
|
1638
|
+
[[() => EventError$, 0]], 1
|
|
1445
1639
|
];
|
|
1446
|
-
exports.
|
|
1640
|
+
exports.ExecutionFailedDetails$ = ExecutionFailedDetails$;
|
|
1641
|
+
const ExecutionStartedDetails$ = [3, n0, _ESD,
|
|
1447
1642
|
0,
|
|
1448
1643
|
[_I, _ETx],
|
|
1449
|
-
[[() =>
|
|
1644
|
+
[[() => EventInput$, 0], 1], 2
|
|
1450
1645
|
];
|
|
1451
|
-
exports.
|
|
1646
|
+
exports.ExecutionStartedDetails$ = ExecutionStartedDetails$;
|
|
1647
|
+
const ExecutionStoppedDetails$ = [3, n0, _ESDxe,
|
|
1452
1648
|
0,
|
|
1453
1649
|
[_E],
|
|
1454
|
-
[[() =>
|
|
1650
|
+
[[() => EventError$, 0]], 1
|
|
1455
1651
|
];
|
|
1456
|
-
exports.
|
|
1652
|
+
exports.ExecutionStoppedDetails$ = ExecutionStoppedDetails$;
|
|
1653
|
+
const ExecutionSucceededDetails$ = [3, n0, _ESDx,
|
|
1457
1654
|
0,
|
|
1458
1655
|
[_Re],
|
|
1459
|
-
[[() =>
|
|
1656
|
+
[[() => EventResult$, 0]], 1
|
|
1460
1657
|
];
|
|
1461
|
-
exports.
|
|
1658
|
+
exports.ExecutionSucceededDetails$ = ExecutionSucceededDetails$;
|
|
1659
|
+
const ExecutionTimedOutDetails$ = [3, n0, _ETOD,
|
|
1462
1660
|
0,
|
|
1463
1661
|
[_E],
|
|
1464
|
-
[[() =>
|
|
1662
|
+
[[() => EventError$, 0]]
|
|
1465
1663
|
];
|
|
1466
|
-
exports.
|
|
1664
|
+
exports.ExecutionTimedOutDetails$ = ExecutionTimedOutDetails$;
|
|
1665
|
+
const FileSystemConfig$ = [3, n0, _FSCi,
|
|
1467
1666
|
0,
|
|
1468
1667
|
[_Arn, _LMP],
|
|
1469
1668
|
[0, 0], 2
|
|
1470
1669
|
];
|
|
1471
|
-
exports.
|
|
1670
|
+
exports.FileSystemConfig$ = FileSystemConfig$;
|
|
1671
|
+
const Filter$ = [3, n0, _F,
|
|
1472
1672
|
0,
|
|
1473
1673
|
[_Pat],
|
|
1474
1674
|
[0]
|
|
1475
1675
|
];
|
|
1476
|
-
exports.
|
|
1676
|
+
exports.Filter$ = Filter$;
|
|
1677
|
+
const FilterCriteria$ = [3, n0, _FCi,
|
|
1477
1678
|
0,
|
|
1478
1679
|
[_Fi],
|
|
1479
1680
|
[() => FilterList]
|
|
1480
1681
|
];
|
|
1481
|
-
exports.
|
|
1682
|
+
exports.FilterCriteria$ = FilterCriteria$;
|
|
1683
|
+
const FilterCriteriaError$ = [3, n0, _FCE,
|
|
1482
1684
|
0,
|
|
1483
1685
|
[_EC, _M],
|
|
1484
1686
|
[0, 0]
|
|
1485
1687
|
];
|
|
1486
|
-
exports.
|
|
1688
|
+
exports.FilterCriteriaError$ = FilterCriteriaError$;
|
|
1689
|
+
const FunctionCode$ = [3, n0, _FCu,
|
|
1487
1690
|
0,
|
|
1488
1691
|
[_ZF, _SB, _SK, _SOV, _IU, _SKMSKA],
|
|
1489
1692
|
[[() => _Blob, 0], 0, 0, 0, 0, 0]
|
|
1490
1693
|
];
|
|
1491
|
-
exports.
|
|
1694
|
+
exports.FunctionCode$ = FunctionCode$;
|
|
1695
|
+
const FunctionCodeLocation$ = [3, n0, _FCL,
|
|
1492
1696
|
0,
|
|
1493
1697
|
[_RT, _Lo, _IU, _RIU, _SKMSKA],
|
|
1494
1698
|
[0, 0, 0, 0, 0]
|
|
1495
1699
|
];
|
|
1496
|
-
exports.
|
|
1700
|
+
exports.FunctionCodeLocation$ = FunctionCodeLocation$;
|
|
1701
|
+
const FunctionConfiguration$ = [3, n0, _FCun,
|
|
1497
1702
|
0,
|
|
1498
|
-
[_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC,
|
|
1499
|
-
[0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, () =>
|
|
1703
|
+
[_FN, _FA, _Ru, _Ro, _H, _CS, _D, _Ti, _MS, _LM, _CSo, _Ve, _VC, _DLC, _Env, _KMSKA, _TC, _MAa, _RI, _L, _St, _SR, _SRCt, _LUS, _LUSR, _LUSRC, _FSC, _SPVAi, _SJA, _PTa, _ICR, _Ar, _ES, _SSn, _RVC, _LC, _TCe, _CPC, _CSon, _DCu],
|
|
1704
|
+
[0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, () => VpcConfigResponse$, () => DeadLetterConfig$, [() => EnvironmentResponse$, 0], 0, () => TracingConfigResponse$, 0, 0, () => LayersReferenceList, 0, 0, 0, 0, 0, 0, () => FileSystemConfigList, 0, 0, 0, [() => ImageConfigResponse$, 0], 64 | 0, () => EphemeralStorage$, () => SnapStartResponse$, [() => RuntimeVersionConfig$, 0], () => LoggingConfig$, () => TenancyConfig$, () => CapacityProviderConfig$, 0, () => DurableConfig$]
|
|
1500
1705
|
];
|
|
1501
|
-
exports.
|
|
1706
|
+
exports.FunctionConfiguration$ = FunctionConfiguration$;
|
|
1707
|
+
const FunctionEventInvokeConfig$ = [3, n0, _FEIC,
|
|
1502
1708
|
0,
|
|
1503
1709
|
[_LM, _FA, _MRA, _MEAIS, _DC],
|
|
1504
|
-
[4, 0, 1, 1, () =>
|
|
1710
|
+
[4, 0, 1, 1, () => DestinationConfig$]
|
|
1505
1711
|
];
|
|
1506
|
-
exports.
|
|
1712
|
+
exports.FunctionEventInvokeConfig$ = FunctionEventInvokeConfig$;
|
|
1713
|
+
const FunctionScalingConfig$ = [3, n0, _FSCu,
|
|
1507
1714
|
0,
|
|
1508
1715
|
[_MEE, _MEEa],
|
|
1509
1716
|
[1, 1]
|
|
1510
1717
|
];
|
|
1511
|
-
exports.
|
|
1718
|
+
exports.FunctionScalingConfig$ = FunctionScalingConfig$;
|
|
1719
|
+
const FunctionUrlConfig$ = [3, n0, _FUC,
|
|
1512
1720
|
0,
|
|
1513
1721
|
[_FU, _FA, _CTr, _LMT, _AT, _Co, _IM],
|
|
1514
|
-
[0, 0, 0, 0, 0, () =>
|
|
1722
|
+
[0, 0, 0, 0, 0, () => Cors$, 0], 5
|
|
1515
1723
|
];
|
|
1516
|
-
exports.
|
|
1724
|
+
exports.FunctionUrlConfig$ = FunctionUrlConfig$;
|
|
1725
|
+
const FunctionVersionsByCapacityProviderListItem$ = [3, n0, _FVBCPLI,
|
|
1517
1726
|
0,
|
|
1518
1727
|
[_FA, _St],
|
|
1519
1728
|
[0, 0], 2
|
|
1520
1729
|
];
|
|
1521
|
-
exports.
|
|
1730
|
+
exports.FunctionVersionsByCapacityProviderListItem$ = FunctionVersionsByCapacityProviderListItem$;
|
|
1731
|
+
const GetAccountSettingsRequest$ = [3, n0, _GASR,
|
|
1522
1732
|
0,
|
|
1523
1733
|
[],
|
|
1524
1734
|
[]
|
|
1525
1735
|
];
|
|
1526
|
-
exports.
|
|
1736
|
+
exports.GetAccountSettingsRequest$ = GetAccountSettingsRequest$;
|
|
1737
|
+
const GetAccountSettingsResponse$ = [3, n0, _GASRe,
|
|
1527
1738
|
0,
|
|
1528
1739
|
[_AL, _AU],
|
|
1529
|
-
[() =>
|
|
1740
|
+
[() => AccountLimit$, () => AccountUsage$]
|
|
1530
1741
|
];
|
|
1531
|
-
exports.
|
|
1742
|
+
exports.GetAccountSettingsResponse$ = GetAccountSettingsResponse$;
|
|
1743
|
+
const GetAliasRequest$ = [3, n0, _GAR,
|
|
1532
1744
|
0,
|
|
1533
1745
|
[_FN, _N],
|
|
1534
1746
|
[[0, 1], [0, 1]], 2
|
|
1535
1747
|
];
|
|
1536
|
-
exports.
|
|
1748
|
+
exports.GetAliasRequest$ = GetAliasRequest$;
|
|
1749
|
+
const GetCapacityProviderRequest$ = [3, n0, _GCPR,
|
|
1537
1750
|
0,
|
|
1538
1751
|
[_CPN],
|
|
1539
1752
|
[[0, 1]], 1
|
|
1540
1753
|
];
|
|
1541
|
-
exports.
|
|
1754
|
+
exports.GetCapacityProviderRequest$ = GetCapacityProviderRequest$;
|
|
1755
|
+
const GetCapacityProviderResponse$ = [3, n0, _GCPRe,
|
|
1542
1756
|
0,
|
|
1543
1757
|
[_CP],
|
|
1544
|
-
[() =>
|
|
1758
|
+
[() => CapacityProvider$], 1
|
|
1545
1759
|
];
|
|
1546
|
-
exports.
|
|
1760
|
+
exports.GetCapacityProviderResponse$ = GetCapacityProviderResponse$;
|
|
1761
|
+
const GetCodeSigningConfigRequest$ = [3, n0, _GCSCR,
|
|
1547
1762
|
0,
|
|
1548
1763
|
[_CSCA],
|
|
1549
1764
|
[[0, 1]], 1
|
|
1550
1765
|
];
|
|
1551
|
-
exports.
|
|
1766
|
+
exports.GetCodeSigningConfigRequest$ = GetCodeSigningConfigRequest$;
|
|
1767
|
+
const GetCodeSigningConfigResponse$ = [3, n0, _GCSCRe,
|
|
1552
1768
|
0,
|
|
1553
1769
|
[_CSC],
|
|
1554
|
-
[() =>
|
|
1770
|
+
[() => CodeSigningConfig$], 1
|
|
1555
1771
|
];
|
|
1556
|
-
exports.
|
|
1772
|
+
exports.GetCodeSigningConfigResponse$ = GetCodeSigningConfigResponse$;
|
|
1773
|
+
const GetDurableExecutionHistoryRequest$ = [3, n0, _GDEHR,
|
|
1557
1774
|
0,
|
|
1558
1775
|
[_DEA, _IED, _MI, _Ma, _RO],
|
|
1559
1776
|
[[0, 1], [2, { [_hQ]: _IED }], [1, { [_hQ]: _MI }], [0, { [_hQ]: _Ma }], [2, { [_hQ]: _RO }]], 1
|
|
1560
1777
|
];
|
|
1561
|
-
exports.
|
|
1778
|
+
exports.GetDurableExecutionHistoryRequest$ = GetDurableExecutionHistoryRequest$;
|
|
1779
|
+
const GetDurableExecutionHistoryResponse$ = [3, n0, _GDEHRe,
|
|
1562
1780
|
0,
|
|
1563
1781
|
[_Eve, _NM],
|
|
1564
1782
|
[[() => Events, 0], 0], 1
|
|
1565
1783
|
];
|
|
1566
|
-
exports.
|
|
1784
|
+
exports.GetDurableExecutionHistoryResponse$ = GetDurableExecutionHistoryResponse$;
|
|
1785
|
+
const GetDurableExecutionRequest$ = [3, n0, _GDER,
|
|
1567
1786
|
0,
|
|
1568
1787
|
[_DEA],
|
|
1569
1788
|
[[0, 1]], 1
|
|
1570
1789
|
];
|
|
1571
|
-
exports.
|
|
1790
|
+
exports.GetDurableExecutionRequest$ = GetDurableExecutionRequest$;
|
|
1791
|
+
const GetDurableExecutionResponse$ = [3, n0, _GDERe,
|
|
1572
1792
|
0,
|
|
1573
1793
|
[_DEA, _DEN, _FA, _STt, _Sta, _IP, _Re, _E, _ETn, _Ve, _TH],
|
|
1574
|
-
[0, 0, 0, 4, 0, [() => InputPayload, 0], [() => OutputPayload, 0], [() =>
|
|
1794
|
+
[0, 0, 0, 4, 0, [() => InputPayload, 0], [() => OutputPayload, 0], [() => ErrorObject$, 0], 4, 0, () => TraceHeader$], 5
|
|
1575
1795
|
];
|
|
1576
|
-
exports.
|
|
1796
|
+
exports.GetDurableExecutionResponse$ = GetDurableExecutionResponse$;
|
|
1797
|
+
const GetDurableExecutionStateRequest$ = [3, n0, _GDESR,
|
|
1577
1798
|
0,
|
|
1578
1799
|
[_DEA, _CT, _Ma, _MI],
|
|
1579
1800
|
[[0, 1], [0, { [_hQ]: _CT }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 2
|
|
1580
1801
|
];
|
|
1581
|
-
exports.
|
|
1802
|
+
exports.GetDurableExecutionStateRequest$ = GetDurableExecutionStateRequest$;
|
|
1803
|
+
const GetDurableExecutionStateResponse$ = [3, n0, _GDESRe,
|
|
1582
1804
|
0,
|
|
1583
1805
|
[_O, _NM],
|
|
1584
1806
|
[[() => Operations, 0], 0], 1
|
|
1585
1807
|
];
|
|
1586
|
-
exports.
|
|
1808
|
+
exports.GetDurableExecutionStateResponse$ = GetDurableExecutionStateResponse$;
|
|
1809
|
+
const GetEventSourceMappingRequest$ = [3, n0, _GESMR,
|
|
1587
1810
|
0,
|
|
1588
1811
|
[_UUID],
|
|
1589
1812
|
[[0, 1]], 1
|
|
1590
1813
|
];
|
|
1591
|
-
exports.
|
|
1814
|
+
exports.GetEventSourceMappingRequest$ = GetEventSourceMappingRequest$;
|
|
1815
|
+
const GetFunctionCodeSigningConfigRequest$ = [3, n0, _GFCSCR,
|
|
1592
1816
|
0,
|
|
1593
1817
|
[_FN],
|
|
1594
1818
|
[[0, 1]], 1
|
|
1595
1819
|
];
|
|
1596
|
-
exports.
|
|
1820
|
+
exports.GetFunctionCodeSigningConfigRequest$ = GetFunctionCodeSigningConfigRequest$;
|
|
1821
|
+
const GetFunctionCodeSigningConfigResponse$ = [3, n0, _GFCSCRe,
|
|
1597
1822
|
0,
|
|
1598
1823
|
[_CSCA, _FN],
|
|
1599
1824
|
[0, 0], 2
|
|
1600
1825
|
];
|
|
1601
|
-
exports.
|
|
1826
|
+
exports.GetFunctionCodeSigningConfigResponse$ = GetFunctionCodeSigningConfigResponse$;
|
|
1827
|
+
const GetFunctionConcurrencyRequest$ = [3, n0, _GFCR,
|
|
1602
1828
|
0,
|
|
1603
1829
|
[_FN],
|
|
1604
1830
|
[[0, 1]], 1
|
|
1605
1831
|
];
|
|
1606
|
-
exports.
|
|
1832
|
+
exports.GetFunctionConcurrencyRequest$ = GetFunctionConcurrencyRequest$;
|
|
1833
|
+
const GetFunctionConcurrencyResponse$ = [3, n0, _GFCRe,
|
|
1607
1834
|
0,
|
|
1608
1835
|
[_RCEe],
|
|
1609
1836
|
[1]
|
|
1610
1837
|
];
|
|
1611
|
-
exports.
|
|
1838
|
+
exports.GetFunctionConcurrencyResponse$ = GetFunctionConcurrencyResponse$;
|
|
1839
|
+
const GetFunctionConfigurationRequest$ = [3, n0, _GFCRet,
|
|
1612
1840
|
0,
|
|
1613
1841
|
[_FN, _Q],
|
|
1614
1842
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1615
1843
|
];
|
|
1616
|
-
exports.
|
|
1844
|
+
exports.GetFunctionConfigurationRequest$ = GetFunctionConfigurationRequest$;
|
|
1845
|
+
const GetFunctionEventInvokeConfigRequest$ = [3, n0, _GFEICR,
|
|
1617
1846
|
0,
|
|
1618
1847
|
[_FN, _Q],
|
|
1619
1848
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1620
1849
|
];
|
|
1621
|
-
exports.
|
|
1850
|
+
exports.GetFunctionEventInvokeConfigRequest$ = GetFunctionEventInvokeConfigRequest$;
|
|
1851
|
+
const GetFunctionRecursionConfigRequest$ = [3, n0, _GFRCR,
|
|
1622
1852
|
0,
|
|
1623
1853
|
[_FN],
|
|
1624
1854
|
[[0, 1]], 1
|
|
1625
1855
|
];
|
|
1626
|
-
exports.
|
|
1856
|
+
exports.GetFunctionRecursionConfigRequest$ = GetFunctionRecursionConfigRequest$;
|
|
1857
|
+
const GetFunctionRecursionConfigResponse$ = [3, n0, _GFRCRe,
|
|
1627
1858
|
0,
|
|
1628
1859
|
[_RL],
|
|
1629
1860
|
[0]
|
|
1630
1861
|
];
|
|
1631
|
-
exports.
|
|
1862
|
+
exports.GetFunctionRecursionConfigResponse$ = GetFunctionRecursionConfigResponse$;
|
|
1863
|
+
const GetFunctionRequest$ = [3, n0, _GFR,
|
|
1632
1864
|
0,
|
|
1633
1865
|
[_FN, _Q],
|
|
1634
1866
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1635
1867
|
];
|
|
1636
|
-
exports.
|
|
1868
|
+
exports.GetFunctionRequest$ = GetFunctionRequest$;
|
|
1869
|
+
const GetFunctionResponse$ = [3, n0, _GFRe,
|
|
1637
1870
|
0,
|
|
1638
1871
|
[_Con, _Cod, _Ta, _TE, _C],
|
|
1639
|
-
[[() =>
|
|
1872
|
+
[[() => FunctionConfiguration$, 0], () => FunctionCodeLocation$, 128 | 0, () => TagsError$, () => Concurrency$]
|
|
1640
1873
|
];
|
|
1641
|
-
exports.
|
|
1874
|
+
exports.GetFunctionResponse$ = GetFunctionResponse$;
|
|
1875
|
+
const GetFunctionScalingConfigRequest$ = [3, n0, _GFSCR,
|
|
1642
1876
|
0,
|
|
1643
1877
|
[_FN, _Q],
|
|
1644
1878
|
[[0, 1], [0, { [_hQ]: _Q }]], 2
|
|
1645
1879
|
];
|
|
1646
|
-
exports.
|
|
1880
|
+
exports.GetFunctionScalingConfigRequest$ = GetFunctionScalingConfigRequest$;
|
|
1881
|
+
const GetFunctionScalingConfigResponse$ = [3, n0, _GFSCRe,
|
|
1647
1882
|
0,
|
|
1648
1883
|
[_FA, _AFSC, _RFSC],
|
|
1649
|
-
[0, () =>
|
|
1884
|
+
[0, () => FunctionScalingConfig$, () => FunctionScalingConfig$]
|
|
1650
1885
|
];
|
|
1651
|
-
exports.
|
|
1886
|
+
exports.GetFunctionScalingConfigResponse$ = GetFunctionScalingConfigResponse$;
|
|
1887
|
+
const GetFunctionUrlConfigRequest$ = [3, n0, _GFUCR,
|
|
1652
1888
|
0,
|
|
1653
1889
|
[_FN, _Q],
|
|
1654
1890
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1655
1891
|
];
|
|
1656
|
-
exports.
|
|
1892
|
+
exports.GetFunctionUrlConfigRequest$ = GetFunctionUrlConfigRequest$;
|
|
1893
|
+
const GetFunctionUrlConfigResponse$ = [3, n0, _GFUCRe,
|
|
1657
1894
|
0,
|
|
1658
1895
|
[_FU, _FA, _AT, _CTr, _LMT, _Co, _IM],
|
|
1659
|
-
[0, 0, 0, 0, 0, () =>
|
|
1896
|
+
[0, 0, 0, 0, 0, () => Cors$, 0], 5
|
|
1660
1897
|
];
|
|
1661
|
-
exports.
|
|
1898
|
+
exports.GetFunctionUrlConfigResponse$ = GetFunctionUrlConfigResponse$;
|
|
1899
|
+
const GetLayerVersionByArnRequest$ = [3, n0, _GLVBAR,
|
|
1662
1900
|
0,
|
|
1663
1901
|
[_Arn],
|
|
1664
1902
|
[[0, { [_hQ]: _Arn }]], 1
|
|
1665
1903
|
];
|
|
1666
|
-
exports.
|
|
1904
|
+
exports.GetLayerVersionByArnRequest$ = GetLayerVersionByArnRequest$;
|
|
1905
|
+
const GetLayerVersionPolicyRequest$ = [3, n0, _GLVPR,
|
|
1667
1906
|
0,
|
|
1668
1907
|
[_LN, _VN],
|
|
1669
1908
|
[[0, 1], [1, 1]], 2
|
|
1670
1909
|
];
|
|
1671
|
-
exports.
|
|
1910
|
+
exports.GetLayerVersionPolicyRequest$ = GetLayerVersionPolicyRequest$;
|
|
1911
|
+
const GetLayerVersionPolicyResponse$ = [3, n0, _GLVPRe,
|
|
1672
1912
|
0,
|
|
1673
1913
|
[_Po, _RI],
|
|
1674
1914
|
[0, 0]
|
|
1675
1915
|
];
|
|
1676
|
-
exports.
|
|
1916
|
+
exports.GetLayerVersionPolicyResponse$ = GetLayerVersionPolicyResponse$;
|
|
1917
|
+
const GetLayerVersionRequest$ = [3, n0, _GLVR,
|
|
1677
1918
|
0,
|
|
1678
1919
|
[_LN, _VN],
|
|
1679
1920
|
[[0, 1], [1, 1]], 2
|
|
1680
1921
|
];
|
|
1681
|
-
exports.
|
|
1922
|
+
exports.GetLayerVersionRequest$ = GetLayerVersionRequest$;
|
|
1923
|
+
const GetLayerVersionResponse$ = [3, n0, _GLVRe,
|
|
1682
1924
|
0,
|
|
1683
|
-
[_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI
|
|
1684
|
-
[() =>
|
|
1925
|
+
[_Cont, _LA, _LVA, _D, _CDr, _Ve, _CA, _CR, _LI],
|
|
1926
|
+
[() => LayerVersionContentOutput$, 0, 0, 0, 0, 1, 64 | 0, 64 | 0, 0]
|
|
1685
1927
|
];
|
|
1686
|
-
exports.
|
|
1928
|
+
exports.GetLayerVersionResponse$ = GetLayerVersionResponse$;
|
|
1929
|
+
const GetPolicyRequest$ = [3, n0, _GPR,
|
|
1687
1930
|
0,
|
|
1688
1931
|
[_FN, _Q],
|
|
1689
1932
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1690
1933
|
];
|
|
1691
|
-
exports.
|
|
1934
|
+
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
1935
|
+
const GetPolicyResponse$ = [3, n0, _GPRe,
|
|
1692
1936
|
0,
|
|
1693
1937
|
[_Po, _RI],
|
|
1694
1938
|
[0, 0]
|
|
1695
1939
|
];
|
|
1696
|
-
exports.
|
|
1940
|
+
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
1941
|
+
const GetProvisionedConcurrencyConfigRequest$ = [3, n0, _GPCCR,
|
|
1697
1942
|
0,
|
|
1698
1943
|
[_FN, _Q],
|
|
1699
1944
|
[[0, 1], [0, { [_hQ]: _Q }]], 2
|
|
1700
1945
|
];
|
|
1701
|
-
exports.
|
|
1946
|
+
exports.GetProvisionedConcurrencyConfigRequest$ = GetProvisionedConcurrencyConfigRequest$;
|
|
1947
|
+
const GetProvisionedConcurrencyConfigResponse$ = [3, n0, _GPCCRe,
|
|
1702
1948
|
0,
|
|
1703
1949
|
[_RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
|
|
1704
1950
|
[1, 1, 1, 0, 0, 0]
|
|
1705
1951
|
];
|
|
1706
|
-
exports.
|
|
1952
|
+
exports.GetProvisionedConcurrencyConfigResponse$ = GetProvisionedConcurrencyConfigResponse$;
|
|
1953
|
+
const GetRuntimeManagementConfigRequest$ = [3, n0, _GRMCR,
|
|
1707
1954
|
0,
|
|
1708
1955
|
[_FN, _Q],
|
|
1709
1956
|
[[0, 1], [0, { [_hQ]: _Q }]], 1
|
|
1710
1957
|
];
|
|
1711
|
-
exports.
|
|
1958
|
+
exports.GetRuntimeManagementConfigRequest$ = GetRuntimeManagementConfigRequest$;
|
|
1959
|
+
const GetRuntimeManagementConfigResponse$ = [3, n0, _GRMCRe,
|
|
1712
1960
|
0,
|
|
1713
|
-
[_URO,
|
|
1961
|
+
[_URO, _FA, _RVA],
|
|
1714
1962
|
[0, 0, 0]
|
|
1715
1963
|
];
|
|
1716
|
-
exports.
|
|
1964
|
+
exports.GetRuntimeManagementConfigResponse$ = GetRuntimeManagementConfigResponse$;
|
|
1965
|
+
const ImageConfig$ = [3, n0, _IC,
|
|
1717
1966
|
0,
|
|
1718
1967
|
[_EP, _Com, _WD],
|
|
1719
1968
|
[64 | 0, 64 | 0, 0]
|
|
1720
1969
|
];
|
|
1721
|
-
exports.
|
|
1970
|
+
exports.ImageConfig$ = ImageConfig$;
|
|
1971
|
+
const ImageConfigError$ = [3, n0, _ICE,
|
|
1722
1972
|
0,
|
|
1723
1973
|
[_EC, _M],
|
|
1724
1974
|
[0, [() => SensitiveString, 0]]
|
|
1725
1975
|
];
|
|
1726
|
-
exports.
|
|
1976
|
+
exports.ImageConfigError$ = ImageConfigError$;
|
|
1977
|
+
const ImageConfigResponse$ = [3, n0, _ICR,
|
|
1727
1978
|
0,
|
|
1728
1979
|
[_IC, _E],
|
|
1729
|
-
[() =>
|
|
1980
|
+
[() => ImageConfig$, [() => ImageConfigError$, 0]]
|
|
1730
1981
|
];
|
|
1731
|
-
exports.
|
|
1982
|
+
exports.ImageConfigResponse$ = ImageConfigResponse$;
|
|
1983
|
+
const InstanceRequirements$ = [3, n0, _IR,
|
|
1732
1984
|
0,
|
|
1733
1985
|
[_Ar, _AIT, _EIT],
|
|
1734
1986
|
[64 | 0, 64 | 0, 64 | 0]
|
|
1735
1987
|
];
|
|
1736
|
-
exports.
|
|
1988
|
+
exports.InstanceRequirements$ = InstanceRequirements$;
|
|
1989
|
+
const InvocationCompletedDetails$ = [3, n0, _ICD,
|
|
1737
1990
|
0,
|
|
1738
1991
|
[_STt, _ETn, _RIe, _E],
|
|
1739
|
-
[4, 4, 0, [() =>
|
|
1992
|
+
[4, 4, 0, [() => EventError$, 0]], 3
|
|
1740
1993
|
];
|
|
1741
|
-
exports.
|
|
1994
|
+
exports.InvocationCompletedDetails$ = InvocationCompletedDetails$;
|
|
1995
|
+
const InvocationRequest$ = [3, n0, _IRn,
|
|
1742
1996
|
0,
|
|
1743
1997
|
[_FN, _IT, _LT, _CC, _DEN, _Pa, _Q, _TI],
|
|
1744
1998
|
[[0, 1], [0, { [_hH]: _XAIT }], [0, { [_hH]: _XALT }], [0, { [_hH]: _XACC }], [0, { [_hH]: _XADEN }], [() => _Blob, 16], [0, { [_hQ]: _Q }], [0, { [_hH]: _XATI }]], 1
|
|
1745
1999
|
];
|
|
1746
|
-
exports.
|
|
2000
|
+
exports.InvocationRequest$ = InvocationRequest$;
|
|
2001
|
+
const InvocationResponse$ = [3, n0, _IRnv,
|
|
1747
2002
|
0,
|
|
1748
2003
|
[_SCt, _FE, _LR, _Pa, _EV, _DEA],
|
|
1749
2004
|
[[1, 32], [0, { [_hH]: _XAFE }], [0, { [_hH]: _XALR }], [() => _Blob, 16], [0, { [_hH]: _XAEV }], [0, { [_hH]: _XADEA }]]
|
|
1750
2005
|
];
|
|
1751
|
-
exports.
|
|
2006
|
+
exports.InvocationResponse$ = InvocationResponse$;
|
|
2007
|
+
const InvokeAsyncRequest$ = [3, n0, _IAR,
|
|
1752
2008
|
0,
|
|
1753
2009
|
[_FN, _IA],
|
|
1754
2010
|
[[0, 1], [() => BlobStream, 16]], 2
|
|
1755
2011
|
];
|
|
1756
|
-
exports.
|
|
2012
|
+
exports.InvokeAsyncRequest$ = InvokeAsyncRequest$;
|
|
2013
|
+
const InvokeAsyncResponse$ = [3, n0, _IARn,
|
|
1757
2014
|
0,
|
|
1758
2015
|
[_Sta],
|
|
1759
2016
|
[[1, 32]]
|
|
1760
2017
|
];
|
|
1761
|
-
exports.
|
|
2018
|
+
exports.InvokeAsyncResponse$ = InvokeAsyncResponse$;
|
|
2019
|
+
const InvokeResponseStreamUpdate$ = [3, n0, _IRSU,
|
|
1762
2020
|
0,
|
|
1763
2021
|
[_Pa],
|
|
1764
2022
|
[[() => _Blob, { [_eP]: 1 }]]
|
|
1765
2023
|
];
|
|
1766
|
-
exports.
|
|
2024
|
+
exports.InvokeResponseStreamUpdate$ = InvokeResponseStreamUpdate$;
|
|
2025
|
+
const InvokeWithResponseStreamCompleteEvent$ = [3, n0, _IWRSCE,
|
|
1767
2026
|
0,
|
|
1768
2027
|
[_EC, _EDr, _LR],
|
|
1769
2028
|
[0, 0, 0]
|
|
1770
2029
|
];
|
|
1771
|
-
exports.
|
|
2030
|
+
exports.InvokeWithResponseStreamCompleteEvent$ = InvokeWithResponseStreamCompleteEvent$;
|
|
2031
|
+
const InvokeWithResponseStreamRequest$ = [3, n0, _IWRSR,
|
|
1772
2032
|
0,
|
|
1773
2033
|
[_FN, _IT, _LT, _CC, _Q, _Pa, _TI],
|
|
1774
2034
|
[[0, 1], [0, { [_hH]: _XAIT }], [0, { [_hH]: _XALT }], [0, { [_hH]: _XACC }], [0, { [_hQ]: _Q }], [() => _Blob, 16], [0, { [_hH]: _XATI }]], 1
|
|
1775
2035
|
];
|
|
1776
|
-
exports.
|
|
2036
|
+
exports.InvokeWithResponseStreamRequest$ = InvokeWithResponseStreamRequest$;
|
|
2037
|
+
const InvokeWithResponseStreamResponse$ = [3, n0, _IWRSRn,
|
|
1777
2038
|
0,
|
|
1778
2039
|
[_SCt, _EV, _ESv, _RSCT],
|
|
1779
|
-
[[1, 32], [0, { [_hH]: _XAEV }], [() =>
|
|
2040
|
+
[[1, 32], [0, { [_hH]: _XAEV }], [() => InvokeWithResponseStreamResponseEvent$, 16], [0, { [_hH]: _CT_ }]]
|
|
1780
2041
|
];
|
|
1781
|
-
exports.
|
|
2042
|
+
exports.InvokeWithResponseStreamResponse$ = InvokeWithResponseStreamResponse$;
|
|
2043
|
+
const KafkaSchemaRegistryAccessConfig$ = [3, n0, _KSRAC,
|
|
1782
2044
|
0,
|
|
1783
2045
|
[_T, _URI],
|
|
1784
2046
|
[0, 0]
|
|
1785
2047
|
];
|
|
1786
|
-
exports.
|
|
2048
|
+
exports.KafkaSchemaRegistryAccessConfig$ = KafkaSchemaRegistryAccessConfig$;
|
|
2049
|
+
const KafkaSchemaRegistryConfig$ = [3, n0, _KSRC,
|
|
1787
2050
|
0,
|
|
1788
2051
|
[_SRURI, _ERF, _ACc, _SVC],
|
|
1789
2052
|
[0, 0, () => KafkaSchemaRegistryAccessConfigList, () => KafkaSchemaValidationConfigList]
|
|
1790
2053
|
];
|
|
1791
|
-
exports.
|
|
2054
|
+
exports.KafkaSchemaRegistryConfig$ = KafkaSchemaRegistryConfig$;
|
|
2055
|
+
const KafkaSchemaValidationConfig$ = [3, n0, _KSVC,
|
|
1792
2056
|
0,
|
|
1793
2057
|
[_At],
|
|
1794
2058
|
[0]
|
|
1795
2059
|
];
|
|
1796
|
-
exports.
|
|
2060
|
+
exports.KafkaSchemaValidationConfig$ = KafkaSchemaValidationConfig$;
|
|
2061
|
+
const LambdaManagedInstancesCapacityProviderConfig$ = [3, n0, _LMICPC,
|
|
1797
2062
|
0,
|
|
1798
2063
|
[_CPA, _PEEMC, _EEMGBPVC],
|
|
1799
2064
|
[0, 1, 1], 1
|
|
1800
2065
|
];
|
|
1801
|
-
exports.
|
|
2066
|
+
exports.LambdaManagedInstancesCapacityProviderConfig$ = LambdaManagedInstancesCapacityProviderConfig$;
|
|
2067
|
+
const Layer$ = [3, n0, _La,
|
|
1802
2068
|
0,
|
|
1803
2069
|
[_Arn, _CS, _SPVAi, _SJA],
|
|
1804
2070
|
[0, 1, 0, 0]
|
|
1805
2071
|
];
|
|
1806
|
-
exports.
|
|
2072
|
+
exports.Layer$ = Layer$;
|
|
2073
|
+
const LayersListItem$ = [3, n0, _LLI,
|
|
1807
2074
|
0,
|
|
1808
2075
|
[_LN, _LA, _LMV],
|
|
1809
|
-
[0, 0, () =>
|
|
2076
|
+
[0, 0, () => LayerVersionsListItem$]
|
|
1810
2077
|
];
|
|
1811
|
-
exports.
|
|
2078
|
+
exports.LayersListItem$ = LayersListItem$;
|
|
2079
|
+
const LayerVersionContentInput$ = [3, n0, _LVCI,
|
|
1812
2080
|
0,
|
|
1813
2081
|
[_SB, _SK, _SOV, _ZF],
|
|
1814
2082
|
[0, 0, 0, [() => _Blob, 0]]
|
|
1815
2083
|
];
|
|
1816
|
-
exports.
|
|
2084
|
+
exports.LayerVersionContentInput$ = LayerVersionContentInput$;
|
|
2085
|
+
const LayerVersionContentOutput$ = [3, n0, _LVCO,
|
|
1817
2086
|
0,
|
|
1818
2087
|
[_Lo, _CSo, _CS, _SPVAi, _SJA],
|
|
1819
2088
|
[0, 0, 1, 0, 0]
|
|
1820
2089
|
];
|
|
1821
|
-
exports.
|
|
2090
|
+
exports.LayerVersionContentOutput$ = LayerVersionContentOutput$;
|
|
2091
|
+
const LayerVersionsListItem$ = [3, n0, _LVLI,
|
|
1822
2092
|
0,
|
|
1823
|
-
[_LVA, _Ve, _D, _CDr, _CR, _LI
|
|
1824
|
-
[0, 1, 0, 0, 64 | 0,
|
|
2093
|
+
[_LVA, _Ve, _D, _CDr, _CA, _CR, _LI],
|
|
2094
|
+
[0, 1, 0, 0, 64 | 0, 64 | 0, 0]
|
|
1825
2095
|
];
|
|
1826
|
-
exports.
|
|
2096
|
+
exports.LayerVersionsListItem$ = LayerVersionsListItem$;
|
|
2097
|
+
const ListAliasesRequest$ = [3, n0, _LAR,
|
|
1827
2098
|
0,
|
|
1828
2099
|
[_FN, _FV, _Ma, _MI],
|
|
1829
2100
|
[[0, 1], [0, { [_hQ]: _FV }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1830
2101
|
];
|
|
1831
|
-
exports.
|
|
2102
|
+
exports.ListAliasesRequest$ = ListAliasesRequest$;
|
|
2103
|
+
const ListAliasesResponse$ = [3, n0, _LARi,
|
|
1832
2104
|
0,
|
|
1833
2105
|
[_NM, _Al],
|
|
1834
2106
|
[0, () => AliasList]
|
|
1835
2107
|
];
|
|
1836
|
-
exports.
|
|
2108
|
+
exports.ListAliasesResponse$ = ListAliasesResponse$;
|
|
2109
|
+
const ListCapacityProvidersRequest$ = [3, n0, _LCPR,
|
|
1837
2110
|
0,
|
|
1838
2111
|
[_St, _Ma, _MI],
|
|
1839
2112
|
[[0, { [_hQ]: _St }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
1840
2113
|
];
|
|
1841
|
-
exports.
|
|
2114
|
+
exports.ListCapacityProvidersRequest$ = ListCapacityProvidersRequest$;
|
|
2115
|
+
const ListCapacityProvidersResponse$ = [3, n0, _LCPRi,
|
|
1842
2116
|
0,
|
|
1843
2117
|
[_CPa, _NM],
|
|
1844
2118
|
[() => CapacityProvidersList, 0], 1
|
|
1845
2119
|
];
|
|
1846
|
-
exports.
|
|
2120
|
+
exports.ListCapacityProvidersResponse$ = ListCapacityProvidersResponse$;
|
|
2121
|
+
const ListCodeSigningConfigsRequest$ = [3, n0, _LCSCR,
|
|
1847
2122
|
0,
|
|
1848
2123
|
[_Ma, _MI],
|
|
1849
2124
|
[[0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
1850
2125
|
];
|
|
1851
|
-
exports.
|
|
2126
|
+
exports.ListCodeSigningConfigsRequest$ = ListCodeSigningConfigsRequest$;
|
|
2127
|
+
const ListCodeSigningConfigsResponse$ = [3, n0, _LCSCRi,
|
|
1852
2128
|
0,
|
|
1853
2129
|
[_NM, _CSCo],
|
|
1854
2130
|
[0, () => CodeSigningConfigList]
|
|
1855
2131
|
];
|
|
1856
|
-
exports.
|
|
2132
|
+
exports.ListCodeSigningConfigsResponse$ = ListCodeSigningConfigsResponse$;
|
|
2133
|
+
const ListDurableExecutionsByFunctionRequest$ = [3, n0, _LDEBFR,
|
|
1857
2134
|
0,
|
|
1858
2135
|
[_FN, _Q, _DEN, _Stat, _SAt, _SBt, _RO, _Ma, _MI],
|
|
1859
2136
|
[[0, 1], [0, { [_hQ]: _Q }], [0, { [_hQ]: _DEN }], [64 | 0, { [_hQ]: _Stat }], [4, { [_hQ]: _SAt }], [4, { [_hQ]: _SBt }], [2, { [_hQ]: _RO }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1860
2137
|
];
|
|
1861
|
-
exports.
|
|
2138
|
+
exports.ListDurableExecutionsByFunctionRequest$ = ListDurableExecutionsByFunctionRequest$;
|
|
2139
|
+
const ListDurableExecutionsByFunctionResponse$ = [3, n0, _LDEBFRi,
|
|
1862
2140
|
0,
|
|
1863
2141
|
[_DE, _NM],
|
|
1864
2142
|
[() => DurableExecutions, 0]
|
|
1865
2143
|
];
|
|
1866
|
-
exports.
|
|
2144
|
+
exports.ListDurableExecutionsByFunctionResponse$ = ListDurableExecutionsByFunctionResponse$;
|
|
2145
|
+
const ListEventSourceMappingsRequest$ = [3, n0, _LESMR,
|
|
1867
2146
|
0,
|
|
1868
2147
|
[_ESA, _FN, _Ma, _MI],
|
|
1869
2148
|
[[0, { [_hQ]: _ESA }], [0, { [_hQ]: _FN }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
1870
2149
|
];
|
|
1871
|
-
exports.
|
|
2150
|
+
exports.ListEventSourceMappingsRequest$ = ListEventSourceMappingsRequest$;
|
|
2151
|
+
const ListEventSourceMappingsResponse$ = [3, n0, _LESMRi,
|
|
1872
2152
|
0,
|
|
1873
2153
|
[_NM, _ESM],
|
|
1874
2154
|
[0, () => EventSourceMappingsList]
|
|
1875
2155
|
];
|
|
1876
|
-
exports.
|
|
2156
|
+
exports.ListEventSourceMappingsResponse$ = ListEventSourceMappingsResponse$;
|
|
2157
|
+
const ListFunctionEventInvokeConfigsRequest$ = [3, n0, _LFEICR,
|
|
1877
2158
|
0,
|
|
1878
2159
|
[_FN, _Ma, _MI],
|
|
1879
2160
|
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1880
2161
|
];
|
|
1881
|
-
exports.
|
|
2162
|
+
exports.ListFunctionEventInvokeConfigsRequest$ = ListFunctionEventInvokeConfigsRequest$;
|
|
2163
|
+
const ListFunctionEventInvokeConfigsResponse$ = [3, n0, _LFEICRi,
|
|
1882
2164
|
0,
|
|
1883
2165
|
[_FEICu, _NM],
|
|
1884
2166
|
[() => FunctionEventInvokeConfigList, 0]
|
|
1885
2167
|
];
|
|
1886
|
-
exports.
|
|
2168
|
+
exports.ListFunctionEventInvokeConfigsResponse$ = ListFunctionEventInvokeConfigsResponse$;
|
|
2169
|
+
const ListFunctionsByCodeSigningConfigRequest$ = [3, n0, _LFBCSCR,
|
|
1887
2170
|
0,
|
|
1888
2171
|
[_CSCA, _Ma, _MI],
|
|
1889
2172
|
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1890
2173
|
];
|
|
1891
|
-
exports.
|
|
2174
|
+
exports.ListFunctionsByCodeSigningConfigRequest$ = ListFunctionsByCodeSigningConfigRequest$;
|
|
2175
|
+
const ListFunctionsByCodeSigningConfigResponse$ = [3, n0, _LFBCSCRi,
|
|
1892
2176
|
0,
|
|
1893
2177
|
[_NM, _FAu],
|
|
1894
2178
|
[0, 64 | 0]
|
|
1895
2179
|
];
|
|
1896
|
-
exports.
|
|
2180
|
+
exports.ListFunctionsByCodeSigningConfigResponse$ = ListFunctionsByCodeSigningConfigResponse$;
|
|
2181
|
+
const ListFunctionsRequest$ = [3, n0, _LFR,
|
|
1897
2182
|
0,
|
|
1898
2183
|
[_MR, _FV, _Ma, _MI],
|
|
1899
2184
|
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _FV }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
1900
2185
|
];
|
|
1901
|
-
exports.
|
|
2186
|
+
exports.ListFunctionsRequest$ = ListFunctionsRequest$;
|
|
2187
|
+
const ListFunctionsResponse$ = [3, n0, _LFRi,
|
|
1902
2188
|
0,
|
|
1903
2189
|
[_NM, _Fu],
|
|
1904
2190
|
[0, [() => FunctionList, 0]]
|
|
1905
2191
|
];
|
|
1906
|
-
exports.
|
|
2192
|
+
exports.ListFunctionsResponse$ = ListFunctionsResponse$;
|
|
2193
|
+
const ListFunctionUrlConfigsRequest$ = [3, n0, _LFUCR,
|
|
1907
2194
|
0,
|
|
1908
2195
|
[_FN, _Ma, _MI],
|
|
1909
2196
|
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1910
2197
|
];
|
|
1911
|
-
exports.
|
|
2198
|
+
exports.ListFunctionUrlConfigsRequest$ = ListFunctionUrlConfigsRequest$;
|
|
2199
|
+
const ListFunctionUrlConfigsResponse$ = [3, n0, _LFUCRi,
|
|
1912
2200
|
0,
|
|
1913
2201
|
[_FUCu, _NM],
|
|
1914
2202
|
[() => FunctionUrlConfigList, 0], 1
|
|
1915
2203
|
];
|
|
1916
|
-
exports.
|
|
2204
|
+
exports.ListFunctionUrlConfigsResponse$ = ListFunctionUrlConfigsResponse$;
|
|
2205
|
+
const ListFunctionVersionsByCapacityProviderRequest$ = [3, n0, _LFVBCPR,
|
|
1917
2206
|
0,
|
|
1918
2207
|
[_CPN, _Ma, _MI],
|
|
1919
2208
|
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1920
2209
|
];
|
|
1921
|
-
exports.
|
|
2210
|
+
exports.ListFunctionVersionsByCapacityProviderRequest$ = ListFunctionVersionsByCapacityProviderRequest$;
|
|
2211
|
+
const ListFunctionVersionsByCapacityProviderResponse$ = [3, n0, _LFVBCPRi,
|
|
1922
2212
|
0,
|
|
1923
2213
|
[_CPA, _FVu, _NM],
|
|
1924
2214
|
[0, () => FunctionVersionsByCapacityProviderList, 0], 2
|
|
1925
2215
|
];
|
|
1926
|
-
exports.
|
|
2216
|
+
exports.ListFunctionVersionsByCapacityProviderResponse$ = ListFunctionVersionsByCapacityProviderResponse$;
|
|
2217
|
+
const ListLayersRequest$ = [3, n0, _LLR,
|
|
1927
2218
|
0,
|
|
1928
|
-
[_CRo, _Ma, _MI
|
|
1929
|
-
[[0, { [_hQ]:
|
|
2219
|
+
[_CAo, _CRo, _Ma, _MI],
|
|
2220
|
+
[[0, { [_hQ]: _CAo }], [0, { [_hQ]: _CRo }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]]
|
|
1930
2221
|
];
|
|
1931
|
-
exports.
|
|
2222
|
+
exports.ListLayersRequest$ = ListLayersRequest$;
|
|
2223
|
+
const ListLayersResponse$ = [3, n0, _LLRi,
|
|
1932
2224
|
0,
|
|
1933
2225
|
[_NM, _L],
|
|
1934
2226
|
[0, () => LayersList]
|
|
1935
2227
|
];
|
|
1936
|
-
exports.
|
|
2228
|
+
exports.ListLayersResponse$ = ListLayersResponse$;
|
|
2229
|
+
const ListLayerVersionsRequest$ = [3, n0, _LLVR,
|
|
1937
2230
|
0,
|
|
1938
|
-
[_LN, _CRo, _Ma, _MI
|
|
1939
|
-
[[0, 1], [0, { [_hQ]:
|
|
2231
|
+
[_LN, _CAo, _CRo, _Ma, _MI],
|
|
2232
|
+
[[0, 1], [0, { [_hQ]: _CAo }], [0, { [_hQ]: _CRo }], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1940
2233
|
];
|
|
1941
|
-
exports.
|
|
2234
|
+
exports.ListLayerVersionsRequest$ = ListLayerVersionsRequest$;
|
|
2235
|
+
const ListLayerVersionsResponse$ = [3, n0, _LLVRi,
|
|
1942
2236
|
0,
|
|
1943
2237
|
[_NM, _LV],
|
|
1944
2238
|
[0, () => LayerVersionsList]
|
|
1945
2239
|
];
|
|
1946
|
-
exports.
|
|
2240
|
+
exports.ListLayerVersionsResponse$ = ListLayerVersionsResponse$;
|
|
2241
|
+
const ListProvisionedConcurrencyConfigsRequest$ = [3, n0, _LPCCR,
|
|
1947
2242
|
0,
|
|
1948
2243
|
[_FN, _Ma, _MI],
|
|
1949
2244
|
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1950
2245
|
];
|
|
1951
|
-
exports.
|
|
2246
|
+
exports.ListProvisionedConcurrencyConfigsRequest$ = ListProvisionedConcurrencyConfigsRequest$;
|
|
2247
|
+
const ListProvisionedConcurrencyConfigsResponse$ = [3, n0, _LPCCRi,
|
|
1952
2248
|
0,
|
|
1953
2249
|
[_PCC, _NM],
|
|
1954
2250
|
[() => ProvisionedConcurrencyConfigList, 0]
|
|
1955
2251
|
];
|
|
1956
|
-
exports.
|
|
2252
|
+
exports.ListProvisionedConcurrencyConfigsResponse$ = ListProvisionedConcurrencyConfigsResponse$;
|
|
2253
|
+
const ListTagsRequest$ = [3, n0, _LTR,
|
|
1957
2254
|
0,
|
|
1958
2255
|
[_Res],
|
|
1959
2256
|
[[0, 1]], 1
|
|
1960
2257
|
];
|
|
1961
|
-
exports.
|
|
2258
|
+
exports.ListTagsRequest$ = ListTagsRequest$;
|
|
2259
|
+
const ListTagsResponse$ = [3, n0, _LTRi,
|
|
1962
2260
|
0,
|
|
1963
2261
|
[_Ta],
|
|
1964
2262
|
[128 | 0]
|
|
1965
2263
|
];
|
|
1966
|
-
exports.
|
|
2264
|
+
exports.ListTagsResponse$ = ListTagsResponse$;
|
|
2265
|
+
const ListVersionsByFunctionRequest$ = [3, n0, _LVBFR,
|
|
1967
2266
|
0,
|
|
1968
2267
|
[_FN, _Ma, _MI],
|
|
1969
2268
|
[[0, 1], [0, { [_hQ]: _Ma }], [1, { [_hQ]: _MI }]], 1
|
|
1970
2269
|
];
|
|
1971
|
-
exports.
|
|
2270
|
+
exports.ListVersionsByFunctionRequest$ = ListVersionsByFunctionRequest$;
|
|
2271
|
+
const ListVersionsByFunctionResponse$ = [3, n0, _LVBFRi,
|
|
1972
2272
|
0,
|
|
1973
2273
|
[_NM, _Ver],
|
|
1974
2274
|
[0, [() => FunctionList, 0]]
|
|
1975
2275
|
];
|
|
1976
|
-
exports.
|
|
2276
|
+
exports.ListVersionsByFunctionResponse$ = ListVersionsByFunctionResponse$;
|
|
2277
|
+
const LoggingConfig$ = [3, n0, _LC,
|
|
1977
2278
|
0,
|
|
1978
2279
|
[_LF, _ALL, _SLL, _LG],
|
|
1979
2280
|
[0, 0, 0, 0]
|
|
1980
2281
|
];
|
|
1981
|
-
exports.
|
|
2282
|
+
exports.LoggingConfig$ = LoggingConfig$;
|
|
2283
|
+
const OnFailure$ = [3, n0, _OF,
|
|
1982
2284
|
0,
|
|
1983
2285
|
[_De],
|
|
1984
2286
|
[0]
|
|
1985
2287
|
];
|
|
1986
|
-
exports.
|
|
2288
|
+
exports.OnFailure$ = OnFailure$;
|
|
2289
|
+
const OnSuccess$ = [3, n0, _OS,
|
|
1987
2290
|
0,
|
|
1988
2291
|
[_De],
|
|
1989
2292
|
[0]
|
|
1990
2293
|
];
|
|
1991
|
-
exports.
|
|
2294
|
+
exports.OnSuccess$ = OnSuccess$;
|
|
2295
|
+
const Operation$ = [3, n0, _Op,
|
|
1992
2296
|
0,
|
|
1993
2297
|
[_Id, _T, _STt, _Sta, _PI, _N, _STu, _ETn, _EDx, _CDo, _SD, _WDa, _CD, _CID],
|
|
1994
|
-
[0, 0, 4, 0, 0, 0, 0, 4, [() =>
|
|
2298
|
+
[0, 0, 4, 0, 0, 0, 0, 4, [() => ExecutionDetails$, 0], [() => ContextDetails$, 0], [() => StepDetails$, 0], () => WaitDetails$, [() => CallbackDetails$, 0], [() => ChainedInvokeDetails$, 0]], 4
|
|
1995
2299
|
];
|
|
1996
|
-
exports.
|
|
2300
|
+
exports.Operation$ = Operation$;
|
|
2301
|
+
const OperationUpdate$ = [3, n0, _OU,
|
|
1997
2302
|
0,
|
|
1998
2303
|
[_Id, _T, _A, _PI, _N, _STu, _Pa, _E, _COo, _SO, _WO, _CO, _CIO],
|
|
1999
|
-
[0, 0, 0, 0, 0, 0, [() => OperationPayload, 0], [() =>
|
|
2304
|
+
[0, 0, 0, 0, 0, 0, [() => OperationPayload, 0], [() => ErrorObject$, 0], () => ContextOptions$, () => StepOptions$, () => WaitOptions$, () => CallbackOptions$, () => ChainedInvokeOptions$], 3
|
|
2000
2305
|
];
|
|
2001
|
-
exports.
|
|
2306
|
+
exports.OperationUpdate$ = OperationUpdate$;
|
|
2307
|
+
const PropagateTags$ = [3, n0, _PT,
|
|
2002
2308
|
0,
|
|
2003
2309
|
[_Mo, _ETxp],
|
|
2004
2310
|
[0, 128 | 0]
|
|
2005
2311
|
];
|
|
2006
|
-
exports.
|
|
2312
|
+
exports.PropagateTags$ = PropagateTags$;
|
|
2313
|
+
const ProvisionedConcurrencyConfigListItem$ = [3, n0, _PCCLI,
|
|
2007
2314
|
0,
|
|
2008
2315
|
[_FA, _RPCE, _APCE, _APCEl, _Sta, _SRt, _LM],
|
|
2009
2316
|
[0, 1, 1, 1, 0, 0, 0]
|
|
2010
2317
|
];
|
|
2011
|
-
exports.
|
|
2318
|
+
exports.ProvisionedConcurrencyConfigListItem$ = ProvisionedConcurrencyConfigListItem$;
|
|
2319
|
+
const ProvisionedPollerConfig$ = [3, n0, _PPC,
|
|
2012
2320
|
0,
|
|
2013
2321
|
[_MP, _MPa, _PGN],
|
|
2014
2322
|
[1, 1, 0]
|
|
2015
2323
|
];
|
|
2016
|
-
exports.
|
|
2324
|
+
exports.ProvisionedPollerConfig$ = ProvisionedPollerConfig$;
|
|
2325
|
+
const PublishLayerVersionRequest$ = [3, n0, _PLVR,
|
|
2017
2326
|
0,
|
|
2018
|
-
[_LN, _Cont, _D, _CR, _LI
|
|
2019
|
-
[[0, 1], [() =>
|
|
2327
|
+
[_LN, _Cont, _D, _CA, _CR, _LI],
|
|
2328
|
+
[[0, 1], [() => LayerVersionContentInput$, 0], 0, 64 | 0, 64 | 0, 0], 2
|
|
2020
2329
|
];
|
|
2021
|
-
exports.
|
|
2330
|
+
exports.PublishLayerVersionRequest$ = PublishLayerVersionRequest$;
|
|
2331
|
+
const PublishLayerVersionResponse$ = [3, n0, _PLVRu,
|
|
2022
2332
|
0,
|
|
2023
|
-
[_Cont, _LA, _LVA, _D, _CDr, _Ve, _CR, _LI
|
|
2024
|
-
[() =>
|
|
2333
|
+
[_Cont, _LA, _LVA, _D, _CDr, _Ve, _CA, _CR, _LI],
|
|
2334
|
+
[() => LayerVersionContentOutput$, 0, 0, 0, 0, 1, 64 | 0, 64 | 0, 0]
|
|
2025
2335
|
];
|
|
2026
|
-
exports.
|
|
2336
|
+
exports.PublishLayerVersionResponse$ = PublishLayerVersionResponse$;
|
|
2337
|
+
const PublishVersionRequest$ = [3, n0, _PVR,
|
|
2027
2338
|
0,
|
|
2028
2339
|
[_FN, _CSo, _D, _RI, _PTu],
|
|
2029
2340
|
[[0, 1], 0, 0, 0, 0], 1
|
|
2030
2341
|
];
|
|
2031
|
-
exports.
|
|
2342
|
+
exports.PublishVersionRequest$ = PublishVersionRequest$;
|
|
2343
|
+
const PutFunctionCodeSigningConfigRequest$ = [3, n0, _PFCSCR,
|
|
2032
2344
|
0,
|
|
2033
2345
|
[_CSCA, _FN],
|
|
2034
2346
|
[0, [0, 1]], 2
|
|
2035
2347
|
];
|
|
2036
|
-
exports.
|
|
2348
|
+
exports.PutFunctionCodeSigningConfigRequest$ = PutFunctionCodeSigningConfigRequest$;
|
|
2349
|
+
const PutFunctionCodeSigningConfigResponse$ = [3, n0, _PFCSCRu,
|
|
2037
2350
|
0,
|
|
2038
2351
|
[_CSCA, _FN],
|
|
2039
2352
|
[0, 0], 2
|
|
2040
2353
|
];
|
|
2041
|
-
exports.
|
|
2354
|
+
exports.PutFunctionCodeSigningConfigResponse$ = PutFunctionCodeSigningConfigResponse$;
|
|
2355
|
+
const PutFunctionConcurrencyRequest$ = [3, n0, _PFCR,
|
|
2042
2356
|
0,
|
|
2043
2357
|
[_FN, _RCEe],
|
|
2044
2358
|
[[0, 1], 1], 2
|
|
2045
2359
|
];
|
|
2046
|
-
exports.
|
|
2360
|
+
exports.PutFunctionConcurrencyRequest$ = PutFunctionConcurrencyRequest$;
|
|
2361
|
+
const PutFunctionEventInvokeConfigRequest$ = [3, n0, _PFEICR,
|
|
2047
2362
|
0,
|
|
2048
2363
|
[_FN, _Q, _MRA, _MEAIS, _DC],
|
|
2049
|
-
[[0, 1], [0, { [_hQ]: _Q }], 1, 1, () =>
|
|
2364
|
+
[[0, 1], [0, { [_hQ]: _Q }], 1, 1, () => DestinationConfig$], 1
|
|
2050
2365
|
];
|
|
2051
|
-
exports.
|
|
2366
|
+
exports.PutFunctionEventInvokeConfigRequest$ = PutFunctionEventInvokeConfigRequest$;
|
|
2367
|
+
const PutFunctionRecursionConfigRequest$ = [3, n0, _PFRCR,
|
|
2052
2368
|
0,
|
|
2053
2369
|
[_FN, _RL],
|
|
2054
2370
|
[[0, 1], 0], 2
|
|
2055
2371
|
];
|
|
2056
|
-
exports.
|
|
2372
|
+
exports.PutFunctionRecursionConfigRequest$ = PutFunctionRecursionConfigRequest$;
|
|
2373
|
+
const PutFunctionRecursionConfigResponse$ = [3, n0, _PFRCRu,
|
|
2057
2374
|
0,
|
|
2058
2375
|
[_RL],
|
|
2059
2376
|
[0]
|
|
2060
2377
|
];
|
|
2061
|
-
exports.
|
|
2378
|
+
exports.PutFunctionRecursionConfigResponse$ = PutFunctionRecursionConfigResponse$;
|
|
2379
|
+
const PutFunctionScalingConfigRequest$ = [3, n0, _PFSCR,
|
|
2062
2380
|
0,
|
|
2063
2381
|
[_FN, _Q, _FSCu],
|
|
2064
|
-
[[0, 1], [0, { [_hQ]: _Q }], () =>
|
|
2382
|
+
[[0, 1], [0, { [_hQ]: _Q }], () => FunctionScalingConfig$], 2
|
|
2065
2383
|
];
|
|
2066
|
-
exports.
|
|
2384
|
+
exports.PutFunctionScalingConfigRequest$ = PutFunctionScalingConfigRequest$;
|
|
2385
|
+
const PutFunctionScalingConfigResponse$ = [3, n0, _PFSCRu,
|
|
2067
2386
|
0,
|
|
2068
2387
|
[_FS],
|
|
2069
2388
|
[0]
|
|
2070
2389
|
];
|
|
2071
|
-
exports.
|
|
2390
|
+
exports.PutFunctionScalingConfigResponse$ = PutFunctionScalingConfigResponse$;
|
|
2391
|
+
const PutProvisionedConcurrencyConfigRequest$ = [3, n0, _PPCCR,
|
|
2072
2392
|
0,
|
|
2073
2393
|
[_FN, _Q, _PCE],
|
|
2074
2394
|
[[0, 1], [0, { [_hQ]: _Q }], 1], 3
|
|
2075
2395
|
];
|
|
2076
|
-
exports.
|
|
2396
|
+
exports.PutProvisionedConcurrencyConfigRequest$ = PutProvisionedConcurrencyConfigRequest$;
|
|
2397
|
+
const PutProvisionedConcurrencyConfigResponse$ = [3, n0, _PPCCRu,
|
|
2077
2398
|
0,
|
|
2078
|
-
[_RPCE,
|
|
2399
|
+
[_RPCE, _APCEl, _APCE, _Sta, _SRt, _LM],
|
|
2079
2400
|
[1, 1, 1, 0, 0, 0]
|
|
2080
2401
|
];
|
|
2081
|
-
exports.
|
|
2402
|
+
exports.PutProvisionedConcurrencyConfigResponse$ = PutProvisionedConcurrencyConfigResponse$;
|
|
2403
|
+
const PutRuntimeManagementConfigRequest$ = [3, n0, _PRMCR,
|
|
2082
2404
|
0,
|
|
2083
2405
|
[_FN, _URO, _Q, _RVA],
|
|
2084
2406
|
[[0, 1], 0, [0, { [_hQ]: _Q }], 0], 2
|
|
2085
2407
|
];
|
|
2086
|
-
exports.
|
|
2408
|
+
exports.PutRuntimeManagementConfigRequest$ = PutRuntimeManagementConfigRequest$;
|
|
2409
|
+
const PutRuntimeManagementConfigResponse$ = [3, n0, _PRMCRu,
|
|
2087
2410
|
0,
|
|
2088
2411
|
[_URO, _FA, _RVA],
|
|
2089
2412
|
[0, 0, 0], 2
|
|
2090
2413
|
];
|
|
2091
|
-
exports.
|
|
2414
|
+
exports.PutRuntimeManagementConfigResponse$ = PutRuntimeManagementConfigResponse$;
|
|
2415
|
+
const RemoveLayerVersionPermissionRequest$ = [3, n0, _RLVPR,
|
|
2092
2416
|
0,
|
|
2093
2417
|
[_LN, _VN, _SI, _RI],
|
|
2094
2418
|
[[0, 1], [1, 1], [0, 1], [0, { [_hQ]: _RI }]], 3
|
|
2095
2419
|
];
|
|
2096
|
-
exports.
|
|
2420
|
+
exports.RemoveLayerVersionPermissionRequest$ = RemoveLayerVersionPermissionRequest$;
|
|
2421
|
+
const RemovePermissionRequest$ = [3, n0, _RPR,
|
|
2097
2422
|
0,
|
|
2098
2423
|
[_FN, _SI, _Q, _RI],
|
|
2099
2424
|
[[0, 1], [0, 1], [0, { [_hQ]: _Q }], [0, { [_hQ]: _RI }]], 2
|
|
2100
2425
|
];
|
|
2101
|
-
exports.
|
|
2426
|
+
exports.RemovePermissionRequest$ = RemovePermissionRequest$;
|
|
2427
|
+
const RetryDetails$ = [3, n0, _RD,
|
|
2102
2428
|
0,
|
|
2103
2429
|
[_CAu, _NADS],
|
|
2104
2430
|
[1, 1]
|
|
2105
2431
|
];
|
|
2106
|
-
exports.
|
|
2432
|
+
exports.RetryDetails$ = RetryDetails$;
|
|
2433
|
+
const RuntimeVersionConfig$ = [3, n0, _RVC,
|
|
2107
2434
|
0,
|
|
2108
2435
|
[_RVA, _E],
|
|
2109
|
-
[0, [() =>
|
|
2436
|
+
[0, [() => RuntimeVersionError$, 0]]
|
|
2110
2437
|
];
|
|
2111
|
-
exports.
|
|
2438
|
+
exports.RuntimeVersionConfig$ = RuntimeVersionConfig$;
|
|
2439
|
+
const RuntimeVersionError$ = [3, n0, _RVE,
|
|
2112
2440
|
0,
|
|
2113
2441
|
[_EC, _M],
|
|
2114
2442
|
[0, [() => SensitiveString, 0]]
|
|
2115
2443
|
];
|
|
2116
|
-
exports.
|
|
2444
|
+
exports.RuntimeVersionError$ = RuntimeVersionError$;
|
|
2445
|
+
const ScalingConfig$ = [3, n0, _SC,
|
|
2117
2446
|
0,
|
|
2118
2447
|
[_MCa],
|
|
2119
2448
|
[1]
|
|
2120
2449
|
];
|
|
2121
|
-
exports.
|
|
2450
|
+
exports.ScalingConfig$ = ScalingConfig$;
|
|
2451
|
+
const SelfManagedEventSource$ = [3, n0, _SMES,
|
|
2122
2452
|
0,
|
|
2123
2453
|
[_End],
|
|
2124
2454
|
[[2, n0, _End, 0, 0, 64 | 0]]
|
|
2125
2455
|
];
|
|
2126
|
-
exports.
|
|
2456
|
+
exports.SelfManagedEventSource$ = SelfManagedEventSource$;
|
|
2457
|
+
const SelfManagedKafkaEventSourceConfig$ = [3, n0, _SMKESC,
|
|
2127
2458
|
0,
|
|
2128
2459
|
[_CGI, _SRC],
|
|
2129
|
-
[0, () =>
|
|
2460
|
+
[0, () => KafkaSchemaRegistryConfig$]
|
|
2130
2461
|
];
|
|
2131
|
-
exports.
|
|
2462
|
+
exports.SelfManagedKafkaEventSourceConfig$ = SelfManagedKafkaEventSourceConfig$;
|
|
2463
|
+
const SendDurableExecutionCallbackFailureRequest$ = [3, n0, _SDECFR,
|
|
2132
2464
|
0,
|
|
2133
2465
|
[_CI, _E],
|
|
2134
|
-
[[0, 1], [() =>
|
|
2466
|
+
[[0, 1], [() => ErrorObject$, 16]], 1
|
|
2135
2467
|
];
|
|
2136
|
-
exports.
|
|
2468
|
+
exports.SendDurableExecutionCallbackFailureRequest$ = SendDurableExecutionCallbackFailureRequest$;
|
|
2469
|
+
const SendDurableExecutionCallbackFailureResponse$ = [3, n0, _SDECFRe,
|
|
2137
2470
|
0,
|
|
2138
2471
|
[],
|
|
2139
2472
|
[]
|
|
2140
2473
|
];
|
|
2141
|
-
exports.
|
|
2474
|
+
exports.SendDurableExecutionCallbackFailureResponse$ = SendDurableExecutionCallbackFailureResponse$;
|
|
2475
|
+
const SendDurableExecutionCallbackHeartbeatRequest$ = [3, n0, _SDECHR,
|
|
2142
2476
|
0,
|
|
2143
2477
|
[_CI],
|
|
2144
2478
|
[[0, 1]], 1
|
|
2145
2479
|
];
|
|
2146
|
-
exports.
|
|
2480
|
+
exports.SendDurableExecutionCallbackHeartbeatRequest$ = SendDurableExecutionCallbackHeartbeatRequest$;
|
|
2481
|
+
const SendDurableExecutionCallbackHeartbeatResponse$ = [3, n0, _SDECHRe,
|
|
2147
2482
|
0,
|
|
2148
2483
|
[],
|
|
2149
2484
|
[]
|
|
2150
2485
|
];
|
|
2151
|
-
exports.
|
|
2486
|
+
exports.SendDurableExecutionCallbackHeartbeatResponse$ = SendDurableExecutionCallbackHeartbeatResponse$;
|
|
2487
|
+
const SendDurableExecutionCallbackSuccessRequest$ = [3, n0, _SDECSR,
|
|
2152
2488
|
0,
|
|
2153
2489
|
[_CI, _Re],
|
|
2154
2490
|
[[0, 1], [() => BinaryOperationPayload, 16]], 1
|
|
2155
2491
|
];
|
|
2156
|
-
exports.
|
|
2492
|
+
exports.SendDurableExecutionCallbackSuccessRequest$ = SendDurableExecutionCallbackSuccessRequest$;
|
|
2493
|
+
const SendDurableExecutionCallbackSuccessResponse$ = [3, n0, _SDECSRe,
|
|
2157
2494
|
0,
|
|
2158
2495
|
[],
|
|
2159
2496
|
[]
|
|
2160
2497
|
];
|
|
2161
|
-
exports.
|
|
2498
|
+
exports.SendDurableExecutionCallbackSuccessResponse$ = SendDurableExecutionCallbackSuccessResponse$;
|
|
2499
|
+
const SnapStart$ = [3, n0, _SSn,
|
|
2162
2500
|
0,
|
|
2163
2501
|
[_AOp],
|
|
2164
2502
|
[0]
|
|
2165
2503
|
];
|
|
2166
|
-
exports.
|
|
2504
|
+
exports.SnapStart$ = SnapStart$;
|
|
2505
|
+
const SnapStartResponse$ = [3, n0, _SSR,
|
|
2167
2506
|
0,
|
|
2168
2507
|
[_AOp, _OSp],
|
|
2169
2508
|
[0, 0]
|
|
2170
2509
|
];
|
|
2171
|
-
exports.
|
|
2510
|
+
exports.SnapStartResponse$ = SnapStartResponse$;
|
|
2511
|
+
const SourceAccessConfiguration$ = [3, n0, _SACo,
|
|
2172
2512
|
0,
|
|
2173
2513
|
[_T, _URI],
|
|
2174
2514
|
[0, 0]
|
|
2175
2515
|
];
|
|
2176
|
-
exports.
|
|
2516
|
+
exports.SourceAccessConfiguration$ = SourceAccessConfiguration$;
|
|
2517
|
+
const StepDetails$ = [3, n0, _SD,
|
|
2177
2518
|
0,
|
|
2178
2519
|
[_Att, _NAT, _Re, _E],
|
|
2179
|
-
[1, 4, [() => OperationPayload, 0], [() =>
|
|
2520
|
+
[1, 4, [() => OperationPayload, 0], [() => ErrorObject$, 0]]
|
|
2180
2521
|
];
|
|
2181
|
-
exports.
|
|
2522
|
+
exports.StepDetails$ = StepDetails$;
|
|
2523
|
+
const StepFailedDetails$ = [3, n0, _SFD,
|
|
2182
2524
|
0,
|
|
2183
2525
|
[_E, _RD],
|
|
2184
|
-
[[() =>
|
|
2526
|
+
[[() => EventError$, 0], () => RetryDetails$], 2
|
|
2185
2527
|
];
|
|
2186
|
-
exports.
|
|
2528
|
+
exports.StepFailedDetails$ = StepFailedDetails$;
|
|
2529
|
+
const StepOptions$ = [3, n0, _SO,
|
|
2187
2530
|
0,
|
|
2188
2531
|
[_NADS],
|
|
2189
2532
|
[1]
|
|
2190
2533
|
];
|
|
2191
|
-
exports.
|
|
2534
|
+
exports.StepOptions$ = StepOptions$;
|
|
2535
|
+
const StepStartedDetails$ = [3, n0, _SSD,
|
|
2192
2536
|
0,
|
|
2193
2537
|
[],
|
|
2194
2538
|
[]
|
|
2195
2539
|
];
|
|
2196
|
-
exports.
|
|
2540
|
+
exports.StepStartedDetails$ = StepStartedDetails$;
|
|
2541
|
+
const StepSucceededDetails$ = [3, n0, _SSDt,
|
|
2197
2542
|
0,
|
|
2198
2543
|
[_Re, _RD],
|
|
2199
|
-
[[() =>
|
|
2544
|
+
[[() => EventResult$, 0], () => RetryDetails$], 2
|
|
2200
2545
|
];
|
|
2201
|
-
exports.
|
|
2546
|
+
exports.StepSucceededDetails$ = StepSucceededDetails$;
|
|
2547
|
+
const StopDurableExecutionRequest$ = [3, n0, _SDER,
|
|
2202
2548
|
0,
|
|
2203
2549
|
[_DEA, _E],
|
|
2204
|
-
[[0, 1], [() =>
|
|
2550
|
+
[[0, 1], [() => ErrorObject$, 16]], 1
|
|
2205
2551
|
];
|
|
2206
|
-
exports.
|
|
2552
|
+
exports.StopDurableExecutionRequest$ = StopDurableExecutionRequest$;
|
|
2553
|
+
const StopDurableExecutionResponse$ = [3, n0, _SDERt,
|
|
2207
2554
|
0,
|
|
2208
2555
|
[_STto],
|
|
2209
2556
|
[4], 1
|
|
2210
2557
|
];
|
|
2211
|
-
exports.
|
|
2558
|
+
exports.StopDurableExecutionResponse$ = StopDurableExecutionResponse$;
|
|
2559
|
+
const TagResourceRequest$ = [3, n0, _TRR,
|
|
2212
2560
|
0,
|
|
2213
2561
|
[_Res, _Ta],
|
|
2214
2562
|
[[0, 1], 128 | 0], 2
|
|
2215
2563
|
];
|
|
2216
|
-
exports.
|
|
2564
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2565
|
+
const TagsError$ = [3, n0, _TE,
|
|
2217
2566
|
0,
|
|
2218
2567
|
[_EC, _M],
|
|
2219
2568
|
[0, 0], 2
|
|
2220
2569
|
];
|
|
2221
|
-
exports.
|
|
2570
|
+
exports.TagsError$ = TagsError$;
|
|
2571
|
+
const TargetTrackingScalingPolicy$ = [3, n0, _TTSP,
|
|
2222
2572
|
0,
|
|
2223
2573
|
[_PMT, _TV],
|
|
2224
2574
|
[0, 1], 2
|
|
2225
2575
|
];
|
|
2226
|
-
exports.
|
|
2576
|
+
exports.TargetTrackingScalingPolicy$ = TargetTrackingScalingPolicy$;
|
|
2577
|
+
const TenancyConfig$ = [3, n0, _TCe,
|
|
2227
2578
|
0,
|
|
2228
2579
|
[_TIM],
|
|
2229
2580
|
[0], 1
|
|
2230
2581
|
];
|
|
2231
|
-
exports.
|
|
2582
|
+
exports.TenancyConfig$ = TenancyConfig$;
|
|
2583
|
+
const TraceHeader$ = [3, n0, _TH,
|
|
2232
2584
|
0,
|
|
2233
2585
|
[_XATIm],
|
|
2234
2586
|
[0]
|
|
2235
2587
|
];
|
|
2236
|
-
exports.
|
|
2588
|
+
exports.TraceHeader$ = TraceHeader$;
|
|
2589
|
+
const TracingConfig$ = [3, n0, _TC,
|
|
2237
2590
|
0,
|
|
2238
2591
|
[_Mo],
|
|
2239
2592
|
[0]
|
|
2240
2593
|
];
|
|
2241
|
-
exports.
|
|
2594
|
+
exports.TracingConfig$ = TracingConfig$;
|
|
2595
|
+
const TracingConfigResponse$ = [3, n0, _TCR,
|
|
2242
2596
|
0,
|
|
2243
2597
|
[_Mo],
|
|
2244
2598
|
[0]
|
|
2245
2599
|
];
|
|
2246
|
-
exports.
|
|
2600
|
+
exports.TracingConfigResponse$ = TracingConfigResponse$;
|
|
2601
|
+
const UntagResourceRequest$ = [3, n0, _URR,
|
|
2247
2602
|
0,
|
|
2248
2603
|
[_Res, _TK],
|
|
2249
|
-
[[0, 1], [
|
|
2604
|
+
[[0, 1], [() => TagKeyList, { [_hQ]: _tK }]], 2
|
|
2250
2605
|
];
|
|
2251
|
-
exports.
|
|
2606
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2607
|
+
const UpdateAliasRequest$ = [3, n0, _UAR,
|
|
2252
2608
|
0,
|
|
2253
2609
|
[_FN, _N, _FV, _D, _RC, _RI],
|
|
2254
|
-
[[0, 1], [0, 1], 0, 0, () =>
|
|
2610
|
+
[[0, 1], [0, 1], 0, 0, () => AliasRoutingConfiguration$, 0], 2
|
|
2255
2611
|
];
|
|
2256
|
-
exports.
|
|
2612
|
+
exports.UpdateAliasRequest$ = UpdateAliasRequest$;
|
|
2613
|
+
const UpdateCapacityProviderRequest$ = [3, n0, _UCPR,
|
|
2257
2614
|
0,
|
|
2258
2615
|
[_CPN, _CPSC, _PT],
|
|
2259
|
-
[[0, 1], () =>
|
|
2616
|
+
[[0, 1], () => CapacityProviderScalingConfig$, () => PropagateTags$], 1
|
|
2260
2617
|
];
|
|
2261
|
-
exports.
|
|
2618
|
+
exports.UpdateCapacityProviderRequest$ = UpdateCapacityProviderRequest$;
|
|
2619
|
+
const UpdateCapacityProviderResponse$ = [3, n0, _UCPRp,
|
|
2262
2620
|
0,
|
|
2263
2621
|
[_CP],
|
|
2264
|
-
[() =>
|
|
2622
|
+
[() => CapacityProvider$], 1
|
|
2265
2623
|
];
|
|
2266
|
-
exports.
|
|
2624
|
+
exports.UpdateCapacityProviderResponse$ = UpdateCapacityProviderResponse$;
|
|
2625
|
+
const UpdateCodeSigningConfigRequest$ = [3, n0, _UCSCR,
|
|
2267
2626
|
0,
|
|
2268
2627
|
[_CSCA, _D, _AP, _CSP],
|
|
2269
|
-
[[0, 1], 0, () =>
|
|
2628
|
+
[[0, 1], 0, () => AllowedPublishers$, () => CodeSigningPolicies$], 1
|
|
2270
2629
|
];
|
|
2271
|
-
exports.
|
|
2630
|
+
exports.UpdateCodeSigningConfigRequest$ = UpdateCodeSigningConfigRequest$;
|
|
2631
|
+
const UpdateCodeSigningConfigResponse$ = [3, n0, _UCSCRp,
|
|
2272
2632
|
0,
|
|
2273
2633
|
[_CSC],
|
|
2274
|
-
[() =>
|
|
2634
|
+
[() => CodeSigningConfig$], 1
|
|
2275
2635
|
];
|
|
2276
|
-
exports.
|
|
2636
|
+
exports.UpdateCodeSigningConfigResponse$ = UpdateCodeSigningConfigResponse$;
|
|
2637
|
+
const UpdateEventSourceMappingRequest$ = [3, n0, _UESMR,
|
|
2277
2638
|
0,
|
|
2278
|
-
[_UUID, _FN, _En, _BSa, _FCi,
|
|
2279
|
-
[[0, 1], 0, 2, 1, () =>
|
|
2639
|
+
[_UUID, _FN, _En, _BSa, _FCi, _KMSKA, _MC, _LC, _SC, _MBWIS, _PF, _DC, _MRAIS, _BBOFE, _MRA, _TWIS, _SAC, _FRT, _AMKESC, _SMKESC, _DDBESC, _PPC],
|
|
2640
|
+
[[0, 1], 0, 2, 1, () => FilterCriteria$, 0, () => EventSourceMappingMetricsConfig$, () => EventSourceMappingLoggingConfig$, () => ScalingConfig$, 1, 1, () => DestinationConfig$, 1, 2, 1, 1, () => SourceAccessConfigurations, 64 | 0, () => AmazonManagedKafkaEventSourceConfig$, () => SelfManagedKafkaEventSourceConfig$, () => DocumentDBEventSourceConfig$, () => ProvisionedPollerConfig$], 1
|
|
2280
2641
|
];
|
|
2281
|
-
exports.
|
|
2642
|
+
exports.UpdateEventSourceMappingRequest$ = UpdateEventSourceMappingRequest$;
|
|
2643
|
+
const UpdateFunctionCodeRequest$ = [3, n0, _UFCR,
|
|
2282
2644
|
0,
|
|
2283
|
-
[_FN, _ZF, _SB, _SK, _SOV, _IU, _Pu, _DR, _RI,
|
|
2284
|
-
[[0, 1], [() => _Blob, 0], 0, 0, 0, 0,
|
|
2645
|
+
[_FN, _ZF, _SB, _SK, _SOV, _IU, _Ar, _Pu, _PTu, _DR, _RI, _SKMSKA],
|
|
2646
|
+
[[0, 1], [() => _Blob, 0], 0, 0, 0, 0, 64 | 0, 2, 0, 2, 0, 0], 1
|
|
2285
2647
|
];
|
|
2286
|
-
exports.
|
|
2648
|
+
exports.UpdateFunctionCodeRequest$ = UpdateFunctionCodeRequest$;
|
|
2649
|
+
const UpdateFunctionConfigurationRequest$ = [3, n0, _UFCRp,
|
|
2287
2650
|
0,
|
|
2288
2651
|
[_FN, _Ro, _H, _D, _Ti, _MS, _VC, _Env, _Ru, _DLC, _KMSKA, _TC, _RI, _L, _FSC, _IC, _ES, _SSn, _LC, _CPC, _DCu],
|
|
2289
|
-
[[0, 1], 0, 0, 0, 1, 1, () =>
|
|
2652
|
+
[[0, 1], 0, 0, 0, 1, 1, () => VpcConfig$, [() => Environment$, 0], 0, () => DeadLetterConfig$, 0, () => TracingConfig$, 0, 64 | 0, () => FileSystemConfigList, () => ImageConfig$, () => EphemeralStorage$, () => SnapStart$, () => LoggingConfig$, () => CapacityProviderConfig$, () => DurableConfig$], 1
|
|
2290
2653
|
];
|
|
2291
|
-
exports.
|
|
2654
|
+
exports.UpdateFunctionConfigurationRequest$ = UpdateFunctionConfigurationRequest$;
|
|
2655
|
+
const UpdateFunctionEventInvokeConfigRequest$ = [3, n0, _UFEICR,
|
|
2292
2656
|
0,
|
|
2293
2657
|
[_FN, _Q, _MRA, _MEAIS, _DC],
|
|
2294
|
-
[[0, 1], [0, { [_hQ]: _Q }], 1, 1, () =>
|
|
2658
|
+
[[0, 1], [0, { [_hQ]: _Q }], 1, 1, () => DestinationConfig$], 1
|
|
2295
2659
|
];
|
|
2296
|
-
exports.
|
|
2660
|
+
exports.UpdateFunctionEventInvokeConfigRequest$ = UpdateFunctionEventInvokeConfigRequest$;
|
|
2661
|
+
const UpdateFunctionUrlConfigRequest$ = [3, n0, _UFUCR,
|
|
2297
2662
|
0,
|
|
2298
2663
|
[_FN, _Q, _AT, _Co, _IM],
|
|
2299
|
-
[[0, 1], [0, { [_hQ]: _Q }], 0, () =>
|
|
2664
|
+
[[0, 1], [0, { [_hQ]: _Q }], 0, () => Cors$, 0], 1
|
|
2300
2665
|
];
|
|
2301
|
-
exports.
|
|
2666
|
+
exports.UpdateFunctionUrlConfigRequest$ = UpdateFunctionUrlConfigRequest$;
|
|
2667
|
+
const UpdateFunctionUrlConfigResponse$ = [3, n0, _UFUCRp,
|
|
2302
2668
|
0,
|
|
2303
2669
|
[_FU, _FA, _AT, _CTr, _LMT, _Co, _IM],
|
|
2304
|
-
[0, 0, 0, 0, 0, () =>
|
|
2670
|
+
[0, 0, 0, 0, 0, () => Cors$, 0], 5
|
|
2305
2671
|
];
|
|
2306
|
-
exports.
|
|
2672
|
+
exports.UpdateFunctionUrlConfigResponse$ = UpdateFunctionUrlConfigResponse$;
|
|
2673
|
+
const VpcConfig$ = [3, n0, _VC,
|
|
2307
2674
|
0,
|
|
2308
2675
|
[_SIu, _SGI, _IAFDS],
|
|
2309
2676
|
[64 | 0, 64 | 0, 2]
|
|
2310
2677
|
];
|
|
2311
|
-
exports.
|
|
2678
|
+
exports.VpcConfig$ = VpcConfig$;
|
|
2679
|
+
const VpcConfigResponse$ = [3, n0, _VCR,
|
|
2312
2680
|
0,
|
|
2313
2681
|
[_SIu, _SGI, _VI, _IAFDS],
|
|
2314
2682
|
[64 | 0, 64 | 0, 0, 2]
|
|
2315
2683
|
];
|
|
2316
|
-
exports.
|
|
2684
|
+
exports.VpcConfigResponse$ = VpcConfigResponse$;
|
|
2685
|
+
const WaitCancelledDetails$ = [3, n0, _WCD,
|
|
2317
2686
|
0,
|
|
2318
2687
|
[_E],
|
|
2319
|
-
[[() =>
|
|
2688
|
+
[[() => EventError$, 0]]
|
|
2320
2689
|
];
|
|
2321
|
-
exports.
|
|
2690
|
+
exports.WaitCancelledDetails$ = WaitCancelledDetails$;
|
|
2691
|
+
const WaitDetails$ = [3, n0, _WDa,
|
|
2322
2692
|
0,
|
|
2323
2693
|
[_SET],
|
|
2324
2694
|
[4]
|
|
2325
2695
|
];
|
|
2326
|
-
exports.
|
|
2696
|
+
exports.WaitDetails$ = WaitDetails$;
|
|
2697
|
+
const WaitOptions$ = [3, n0, _WO,
|
|
2327
2698
|
0,
|
|
2328
2699
|
[_WS],
|
|
2329
2700
|
[1]
|
|
2330
2701
|
];
|
|
2331
|
-
exports.
|
|
2702
|
+
exports.WaitOptions$ = WaitOptions$;
|
|
2703
|
+
const WaitStartedDetails$ = [3, n0, _WSD,
|
|
2332
2704
|
0,
|
|
2333
2705
|
[_Du, _SET],
|
|
2334
2706
|
[1, 4], 2
|
|
2335
2707
|
];
|
|
2336
|
-
exports.
|
|
2708
|
+
exports.WaitStartedDetails$ = WaitStartedDetails$;
|
|
2709
|
+
const WaitSucceededDetails$ = [3, n0, _WSDa,
|
|
2337
2710
|
0,
|
|
2338
2711
|
[_Du],
|
|
2339
2712
|
[1]
|
|
2340
2713
|
];
|
|
2714
|
+
exports.WaitSucceededDetails$ = WaitSucceededDetails$;
|
|
2341
2715
|
var __Unit = "unit";
|
|
2342
2716
|
var AliasList = [1, n0, _ALl,
|
|
2343
|
-
0, () =>
|
|
2717
|
+
0, () => AliasConfiguration$
|
|
2344
2718
|
];
|
|
2345
2719
|
var AllowMethodsList = 64 | 0;
|
|
2346
2720
|
var AllowOriginsList = 64 | 0;
|
|
2347
2721
|
var ArchitecturesList = 64 | 0;
|
|
2348
2722
|
var CapacityProviderScalingPoliciesList = [1, n0, _CPSPL,
|
|
2349
|
-
0, () =>
|
|
2723
|
+
0, () => TargetTrackingScalingPolicy$
|
|
2350
2724
|
];
|
|
2351
2725
|
var CapacityProviderSecurityGroupIds = 64 | 0;
|
|
2352
2726
|
var CapacityProvidersList = [1, n0, _CPL,
|
|
2353
|
-
0, () =>
|
|
2727
|
+
0, () => CapacityProvider$
|
|
2354
2728
|
];
|
|
2355
2729
|
var CapacityProviderSubnetIds = 64 | 0;
|
|
2356
2730
|
var CodeSigningConfigList = [1, n0, _CSCL,
|
|
2357
|
-
0, () =>
|
|
2731
|
+
0, () => CodeSigningConfig$
|
|
2358
2732
|
];
|
|
2359
2733
|
var CompatibleArchitectures = 64 | 0;
|
|
2360
2734
|
var CompatibleRuntimes = 64 | 0;
|
|
2361
2735
|
var DurableExecutions = [1, n0, _DE,
|
|
2362
|
-
0, () =>
|
|
2736
|
+
0, () => Execution$
|
|
2363
2737
|
];
|
|
2364
2738
|
var EndpointLists = 64 | 0;
|
|
2365
2739
|
var Events = [1, n0, _Eve,
|
|
2366
|
-
0, [() =>
|
|
2740
|
+
0, [() => Event$,
|
|
2367
2741
|
0]
|
|
2368
2742
|
];
|
|
2369
2743
|
var EventSourceMappingMetricList = 64 | 0;
|
|
2370
2744
|
var EventSourceMappingsList = [1, n0, _ESML,
|
|
2371
|
-
0, () =>
|
|
2745
|
+
0, () => EventSourceMappingConfiguration$
|
|
2372
2746
|
];
|
|
2373
2747
|
var ExecutionStatusList = 64 | 0;
|
|
2374
2748
|
var FileSystemConfigList = [1, n0, _FSCL,
|
|
2375
|
-
0, () =>
|
|
2749
|
+
0, () => FileSystemConfig$
|
|
2376
2750
|
];
|
|
2377
2751
|
var FilterList = [1, n0, _FL,
|
|
2378
|
-
0, () =>
|
|
2752
|
+
0, () => Filter$
|
|
2379
2753
|
];
|
|
2380
2754
|
var FunctionArnList = 64 | 0;
|
|
2381
2755
|
var FunctionEventInvokeConfigList = [1, n0, _FEICL,
|
|
2382
|
-
0, () =>
|
|
2756
|
+
0, () => FunctionEventInvokeConfig$
|
|
2383
2757
|
];
|
|
2384
2758
|
var FunctionList = [1, n0, _FLu,
|
|
2385
|
-
0, [() =>
|
|
2759
|
+
0, [() => FunctionConfiguration$,
|
|
2386
2760
|
0]
|
|
2387
2761
|
];
|
|
2388
2762
|
var FunctionResponseTypeList = 64 | 0;
|
|
2389
2763
|
var FunctionUrlConfigList = [1, n0, _FUCL,
|
|
2390
|
-
0, () =>
|
|
2764
|
+
0, () => FunctionUrlConfig$
|
|
2391
2765
|
];
|
|
2392
2766
|
var FunctionVersionsByCapacityProviderList = [1, n0, _FVBCPL,
|
|
2393
|
-
0, () =>
|
|
2767
|
+
0, () => FunctionVersionsByCapacityProviderListItem$
|
|
2394
2768
|
];
|
|
2395
2769
|
var HeadersList = 64 | 0;
|
|
2396
2770
|
var InstanceTypeSet = 64 | 0;
|
|
2397
2771
|
var KafkaSchemaRegistryAccessConfigList = [1, n0, _KSRACL,
|
|
2398
|
-
0, () =>
|
|
2772
|
+
0, () => KafkaSchemaRegistryAccessConfig$
|
|
2399
2773
|
];
|
|
2400
2774
|
var KafkaSchemaValidationConfigList = [1, n0, _KSVCL,
|
|
2401
|
-
0, () =>
|
|
2775
|
+
0, () => KafkaSchemaValidationConfig$
|
|
2402
2776
|
];
|
|
2403
2777
|
var LayerList = 64 | 0;
|
|
2404
2778
|
var LayersList = [1, n0, _LL,
|
|
2405
|
-
0, () =>
|
|
2779
|
+
0, () => LayersListItem$
|
|
2406
2780
|
];
|
|
2407
2781
|
var LayersReferenceList = [1, n0, _LRL,
|
|
2408
|
-
0, () =>
|
|
2782
|
+
0, () => Layer$
|
|
2409
2783
|
];
|
|
2410
2784
|
var LayerVersionsList = [1, n0, _LVL,
|
|
2411
|
-
0, () =>
|
|
2785
|
+
0, () => LayerVersionsListItem$
|
|
2412
2786
|
];
|
|
2413
2787
|
var Operations = [1, n0, _O,
|
|
2414
|
-
0, [() =>
|
|
2788
|
+
0, [() => Operation$,
|
|
2415
2789
|
0]
|
|
2416
2790
|
];
|
|
2417
2791
|
var OperationUpdates = [1, n0, _OUp,
|
|
2418
|
-
0, [() =>
|
|
2792
|
+
0, [() => OperationUpdate$,
|
|
2419
2793
|
0]
|
|
2420
2794
|
];
|
|
2421
2795
|
var ProvisionedConcurrencyConfigList = [1, n0, _PCCL,
|
|
2422
|
-
0, () =>
|
|
2796
|
+
0, () => ProvisionedConcurrencyConfigListItem$
|
|
2423
2797
|
];
|
|
2424
2798
|
var Queues = 64 | 0;
|
|
2425
2799
|
var SecurityGroupIds = 64 | 0;
|
|
2426
2800
|
var SigningProfileVersionArns = 64 | 0;
|
|
2427
2801
|
var SourceAccessConfigurations = [1, n0, _SAC,
|
|
2428
|
-
0, () =>
|
|
2802
|
+
0, () => SourceAccessConfiguration$
|
|
2429
2803
|
];
|
|
2430
2804
|
var StackTraceEntries = [1, n0, _STEt,
|
|
2431
2805
|
0, [() => StackTraceEntry,
|
|
@@ -2433,7 +2807,10 @@ var StackTraceEntries = [1, n0, _STEt,
|
|
|
2433
2807
|
];
|
|
2434
2808
|
var StringList = 64 | 0;
|
|
2435
2809
|
var SubnetIds = 64 | 0;
|
|
2436
|
-
var TagKeyList =
|
|
2810
|
+
var TagKeyList = [1, n0, _TKL,
|
|
2811
|
+
0, [0,
|
|
2812
|
+
{ [_xN]: _K }]
|
|
2813
|
+
];
|
|
2437
2814
|
var Topics = 64 | 0;
|
|
2438
2815
|
var AdditionalVersionWeights = 128 | 1;
|
|
2439
2816
|
var Endpoints = [2, n0, _End,
|
|
@@ -2446,263 +2823,264 @@ var EnvironmentVariables = [2, n0, _EVn,
|
|
|
2446
2823
|
0]
|
|
2447
2824
|
];
|
|
2448
2825
|
var Tags = 128 | 0;
|
|
2449
|
-
|
|
2826
|
+
const InvokeWithResponseStreamResponseEvent$ = [4, n0, _IWRSRE,
|
|
2450
2827
|
{ [_st]: 1 },
|
|
2451
2828
|
[_PCa, _ICn],
|
|
2452
|
-
[[() =>
|
|
2829
|
+
[[() => InvokeResponseStreamUpdate$, 0], () => InvokeWithResponseStreamCompleteEvent$]
|
|
2453
2830
|
];
|
|
2831
|
+
exports.InvokeWithResponseStreamResponseEvent$ = InvokeWithResponseStreamResponseEvent$;
|
|
2454
2832
|
exports.AddLayerVersionPermission$ = [9, n0, _ALVP,
|
|
2455
|
-
{ [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 201] }, () =>
|
|
2833
|
+
{ [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 201] }, () => AddLayerVersionPermissionRequest$, () => AddLayerVersionPermissionResponse$
|
|
2456
2834
|
];
|
|
2457
2835
|
exports.AddPermission$ = [9, n0, _APd,
|
|
2458
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/policy", 201] }, () =>
|
|
2836
|
+
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/policy", 201] }, () => AddPermissionRequest$, () => AddPermissionResponse$
|
|
2459
2837
|
];
|
|
2460
2838
|
exports.CheckpointDurableExecution$ = [9, n0, _CDE,
|
|
2461
|
-
{ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/checkpoint", 200] }, () =>
|
|
2839
|
+
{ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/checkpoint", 200] }, () => CheckpointDurableExecutionRequest$, () => CheckpointDurableExecutionResponse$
|
|
2462
2840
|
];
|
|
2463
2841
|
exports.CreateAlias$ = [9, n0, _CAr,
|
|
2464
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/aliases", 201] }, () =>
|
|
2842
|
+
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/aliases", 201] }, () => CreateAliasRequest$, () => AliasConfiguration$
|
|
2465
2843
|
];
|
|
2466
2844
|
exports.CreateCapacityProvider$ = [9, n0, _CCP,
|
|
2467
|
-
{ [_h]: ["POST", "/2025-11-30/capacity-providers", 202] }, () =>
|
|
2845
|
+
{ [_h]: ["POST", "/2025-11-30/capacity-providers", 202] }, () => CreateCapacityProviderRequest$, () => CreateCapacityProviderResponse$
|
|
2468
2846
|
];
|
|
2469
2847
|
exports.CreateCodeSigningConfig$ = [9, n0, _CCSC,
|
|
2470
|
-
{ [_h]: ["POST", "/2020-04-22/code-signing-configs", 201] }, () =>
|
|
2848
|
+
{ [_h]: ["POST", "/2020-04-22/code-signing-configs", 201] }, () => CreateCodeSigningConfigRequest$, () => CreateCodeSigningConfigResponse$
|
|
2471
2849
|
];
|
|
2472
2850
|
exports.CreateEventSourceMapping$ = [9, n0, _CESM,
|
|
2473
|
-
{ [_h]: ["POST", "/2015-03-31/event-source-mappings", 202] }, () =>
|
|
2851
|
+
{ [_h]: ["POST", "/2015-03-31/event-source-mappings", 202] }, () => CreateEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
2474
2852
|
];
|
|
2475
2853
|
exports.CreateFunction$ = [9, n0, _CF,
|
|
2476
|
-
{ [_h]: ["POST", "/2015-03-31/functions", 201] }, () =>
|
|
2854
|
+
{ [_h]: ["POST", "/2015-03-31/functions", 201] }, () => CreateFunctionRequest$, () => FunctionConfiguration$
|
|
2477
2855
|
];
|
|
2478
2856
|
exports.CreateFunctionUrlConfig$ = [9, n0, _CFUC,
|
|
2479
|
-
{ [_h]: ["POST", "/2021-10-31/functions/{FunctionName}/url", 201] }, () =>
|
|
2857
|
+
{ [_h]: ["POST", "/2021-10-31/functions/{FunctionName}/url", 201] }, () => CreateFunctionUrlConfigRequest$, () => CreateFunctionUrlConfigResponse$
|
|
2480
2858
|
];
|
|
2481
2859
|
exports.DeleteAlias$ = [9, n0, _DA,
|
|
2482
|
-
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 204] }, () =>
|
|
2860
|
+
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 204] }, () => DeleteAliasRequest$, () => __Unit
|
|
2483
2861
|
];
|
|
2484
2862
|
exports.DeleteCapacityProvider$ = [9, n0, _DCP,
|
|
2485
|
-
{ [_h]: ["DELETE", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () =>
|
|
2863
|
+
{ [_h]: ["DELETE", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () => DeleteCapacityProviderRequest$, () => DeleteCapacityProviderResponse$
|
|
2486
2864
|
];
|
|
2487
2865
|
exports.DeleteCodeSigningConfig$ = [9, n0, _DCSC,
|
|
2488
|
-
{ [_h]: ["DELETE", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 204] }, () =>
|
|
2866
|
+
{ [_h]: ["DELETE", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 204] }, () => DeleteCodeSigningConfigRequest$, () => DeleteCodeSigningConfigResponse$
|
|
2489
2867
|
];
|
|
2490
2868
|
exports.DeleteEventSourceMapping$ = [9, n0, _DESM,
|
|
2491
|
-
{ [_h]: ["DELETE", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () =>
|
|
2869
|
+
{ [_h]: ["DELETE", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () => DeleteEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
2492
2870
|
];
|
|
2493
2871
|
exports.DeleteFunction$ = [9, n0, _DF,
|
|
2494
|
-
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}", 200] }, () =>
|
|
2872
|
+
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}", 200] }, () => DeleteFunctionRequest$, () => DeleteFunctionResponse$
|
|
2495
2873
|
];
|
|
2496
2874
|
exports.DeleteFunctionCodeSigningConfig$ = [9, n0, _DFCSC,
|
|
2497
|
-
{ [_h]: ["DELETE", "/2020-06-30/functions/{FunctionName}/code-signing-config", 204] }, () =>
|
|
2875
|
+
{ [_h]: ["DELETE", "/2020-06-30/functions/{FunctionName}/code-signing-config", 204] }, () => DeleteFunctionCodeSigningConfigRequest$, () => __Unit
|
|
2498
2876
|
];
|
|
2499
2877
|
exports.DeleteFunctionConcurrency$ = [9, n0, _DFC,
|
|
2500
|
-
{ [_h]: ["DELETE", "/2017-10-31/functions/{FunctionName}/concurrency", 204] }, () =>
|
|
2878
|
+
{ [_h]: ["DELETE", "/2017-10-31/functions/{FunctionName}/concurrency", 204] }, () => DeleteFunctionConcurrencyRequest$, () => __Unit
|
|
2501
2879
|
];
|
|
2502
2880
|
exports.DeleteFunctionEventInvokeConfig$ = [9, n0, _DFEIC,
|
|
2503
|
-
{ [_h]: ["DELETE", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 204] }, () =>
|
|
2881
|
+
{ [_h]: ["DELETE", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 204] }, () => DeleteFunctionEventInvokeConfigRequest$, () => __Unit
|
|
2504
2882
|
];
|
|
2505
2883
|
exports.DeleteFunctionUrlConfig$ = [9, n0, _DFUC,
|
|
2506
|
-
{ [_h]: ["DELETE", "/2021-10-31/functions/{FunctionName}/url", 204] }, () =>
|
|
2884
|
+
{ [_h]: ["DELETE", "/2021-10-31/functions/{FunctionName}/url", 204] }, () => DeleteFunctionUrlConfigRequest$, () => __Unit
|
|
2507
2885
|
];
|
|
2508
2886
|
exports.DeleteLayerVersion$ = [9, n0, _DLV,
|
|
2509
|
-
{ [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 204] }, () =>
|
|
2887
|
+
{ [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 204] }, () => DeleteLayerVersionRequest$, () => __Unit
|
|
2510
2888
|
];
|
|
2511
2889
|
exports.DeleteProvisionedConcurrencyConfig$ = [9, n0, _DPCC,
|
|
2512
|
-
{ [_h]: ["DELETE", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 204] }, () =>
|
|
2890
|
+
{ [_h]: ["DELETE", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 204] }, () => DeleteProvisionedConcurrencyConfigRequest$, () => __Unit
|
|
2513
2891
|
];
|
|
2514
2892
|
exports.GetAccountSettings$ = [9, n0, _GAS,
|
|
2515
|
-
{ [_h]: ["GET", "/2016-08-19/account-settings", 200] }, () =>
|
|
2893
|
+
{ [_h]: ["GET", "/2016-08-19/account-settings", 200] }, () => GetAccountSettingsRequest$, () => GetAccountSettingsResponse$
|
|
2516
2894
|
];
|
|
2517
2895
|
exports.GetAlias$ = [9, n0, _GA,
|
|
2518
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () =>
|
|
2896
|
+
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () => GetAliasRequest$, () => AliasConfiguration$
|
|
2519
2897
|
];
|
|
2520
2898
|
exports.GetCapacityProvider$ = [9, n0, _GCP,
|
|
2521
|
-
{ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}", 200] }, () =>
|
|
2899
|
+
{ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}", 200] }, () => GetCapacityProviderRequest$, () => GetCapacityProviderResponse$
|
|
2522
2900
|
];
|
|
2523
2901
|
exports.GetCodeSigningConfig$ = [9, n0, _GCSC,
|
|
2524
|
-
{ [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () =>
|
|
2902
|
+
{ [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () => GetCodeSigningConfigRequest$, () => GetCodeSigningConfigResponse$
|
|
2525
2903
|
];
|
|
2526
2904
|
exports.GetDurableExecution$ = [9, n0, _GDE,
|
|
2527
|
-
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}", 200] }, () =>
|
|
2905
|
+
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}", 200] }, () => GetDurableExecutionRequest$, () => GetDurableExecutionResponse$
|
|
2528
2906
|
];
|
|
2529
2907
|
exports.GetDurableExecutionHistory$ = [9, n0, _GDEH,
|
|
2530
|
-
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/history", 200] }, () =>
|
|
2908
|
+
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/history", 200] }, () => GetDurableExecutionHistoryRequest$, () => GetDurableExecutionHistoryResponse$
|
|
2531
2909
|
];
|
|
2532
2910
|
exports.GetDurableExecutionState$ = [9, n0, _GDES,
|
|
2533
|
-
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/state", 200] }, () =>
|
|
2911
|
+
{ [_h]: ["GET", "/2025-12-01/durable-executions/{DurableExecutionArn}/state", 200] }, () => GetDurableExecutionStateRequest$, () => GetDurableExecutionStateResponse$
|
|
2534
2912
|
];
|
|
2535
2913
|
exports.GetEventSourceMapping$ = [9, n0, _GESM,
|
|
2536
|
-
{ [_h]: ["GET", "/2015-03-31/event-source-mappings/{UUID}", 200] }, () =>
|
|
2914
|
+
{ [_h]: ["GET", "/2015-03-31/event-source-mappings/{UUID}", 200] }, () => GetEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
2537
2915
|
];
|
|
2538
2916
|
exports.GetFunction$ = [9, n0, _GF,
|
|
2539
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}", 200] }, () =>
|
|
2917
|
+
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}", 200] }, () => GetFunctionRequest$, () => GetFunctionResponse$
|
|
2540
2918
|
];
|
|
2541
2919
|
exports.GetFunctionCodeSigningConfig$ = [9, n0, _GFCSC,
|
|
2542
|
-
{ [_h]: ["GET", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () =>
|
|
2920
|
+
{ [_h]: ["GET", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () => GetFunctionCodeSigningConfigRequest$, () => GetFunctionCodeSigningConfigResponse$
|
|
2543
2921
|
];
|
|
2544
2922
|
exports.GetFunctionConcurrency$ = [9, n0, _GFC,
|
|
2545
|
-
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/concurrency", 200] }, () =>
|
|
2923
|
+
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/concurrency", 200] }, () => GetFunctionConcurrencyRequest$, () => GetFunctionConcurrencyResponse$
|
|
2546
2924
|
];
|
|
2547
2925
|
exports.GetFunctionConfiguration$ = [9, n0, _GFCe,
|
|
2548
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () =>
|
|
2926
|
+
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () => GetFunctionConfigurationRequest$, () => FunctionConfiguration$
|
|
2549
2927
|
];
|
|
2550
2928
|
exports.GetFunctionEventInvokeConfig$ = [9, n0, _GFEIC,
|
|
2551
|
-
{ [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () =>
|
|
2929
|
+
{ [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => GetFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
|
|
2552
2930
|
];
|
|
2553
2931
|
exports.GetFunctionRecursionConfig$ = [9, n0, _GFRC,
|
|
2554
|
-
{ [_h]: ["GET", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () =>
|
|
2932
|
+
{ [_h]: ["GET", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () => GetFunctionRecursionConfigRequest$, () => GetFunctionRecursionConfigResponse$
|
|
2555
2933
|
];
|
|
2556
2934
|
exports.GetFunctionScalingConfig$ = [9, n0, _GFSC,
|
|
2557
|
-
{ [_h]: ["GET", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 200] }, () =>
|
|
2935
|
+
{ [_h]: ["GET", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 200] }, () => GetFunctionScalingConfigRequest$, () => GetFunctionScalingConfigResponse$
|
|
2558
2936
|
];
|
|
2559
2937
|
exports.GetFunctionUrlConfig$ = [9, n0, _GFUC,
|
|
2560
|
-
{ [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/url", 200] }, () =>
|
|
2938
|
+
{ [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/url", 200] }, () => GetFunctionUrlConfigRequest$, () => GetFunctionUrlConfigResponse$
|
|
2561
2939
|
];
|
|
2562
2940
|
exports.GetLayerVersion$ = [9, n0, _GLV,
|
|
2563
|
-
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 200] }, () =>
|
|
2941
|
+
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}", 200] }, () => GetLayerVersionRequest$, () => GetLayerVersionResponse$
|
|
2564
2942
|
];
|
|
2565
2943
|
exports.GetLayerVersionByArn$ = [9, n0, _GLVBA,
|
|
2566
|
-
{ [_h]: ["GET", "/2018-10-31/layers?find=LayerVersion", 200] }, () =>
|
|
2944
|
+
{ [_h]: ["GET", "/2018-10-31/layers?find=LayerVersion", 200] }, () => GetLayerVersionByArnRequest$, () => GetLayerVersionResponse$
|
|
2567
2945
|
];
|
|
2568
2946
|
exports.GetLayerVersionPolicy$ = [9, n0, _GLVP,
|
|
2569
|
-
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 200] }, () =>
|
|
2947
|
+
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy", 200] }, () => GetLayerVersionPolicyRequest$, () => GetLayerVersionPolicyResponse$
|
|
2570
2948
|
];
|
|
2571
2949
|
exports.GetPolicy$ = [9, n0, _GP,
|
|
2572
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/policy", 200] }, () =>
|
|
2950
|
+
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/policy", 200] }, () => GetPolicyRequest$, () => GetPolicyResponse$
|
|
2573
2951
|
];
|
|
2574
2952
|
exports.GetProvisionedConcurrencyConfig$ = [9, n0, _GPCC,
|
|
2575
|
-
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 200] }, () =>
|
|
2953
|
+
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 200] }, () => GetProvisionedConcurrencyConfigRequest$, () => GetProvisionedConcurrencyConfigResponse$
|
|
2576
2954
|
];
|
|
2577
2955
|
exports.GetRuntimeManagementConfig$ = [9, n0, _GRMC,
|
|
2578
|
-
{ [_h]: ["GET", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () =>
|
|
2956
|
+
{ [_h]: ["GET", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () => GetRuntimeManagementConfigRequest$, () => GetRuntimeManagementConfigResponse$
|
|
2579
2957
|
];
|
|
2580
2958
|
exports.Invoke$ = [9, n0, _In,
|
|
2581
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/invocations", 200] }, () =>
|
|
2959
|
+
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/invocations", 200] }, () => InvocationRequest$, () => InvocationResponse$
|
|
2582
2960
|
];
|
|
2583
2961
|
exports.InvokeAsync$ = [9, n0, _IAn,
|
|
2584
|
-
{ [_h]: ["POST", "/2014-11-13/functions/{FunctionName}/invoke-async", 202] }, () =>
|
|
2962
|
+
{ [_h]: ["POST", "/2014-11-13/functions/{FunctionName}/invoke-async", 202] }, () => InvokeAsyncRequest$, () => InvokeAsyncResponse$
|
|
2585
2963
|
];
|
|
2586
2964
|
exports.InvokeWithResponseStream$ = [9, n0, _IWRS,
|
|
2587
|
-
{ [_h]: ["POST", "/2021-11-15/functions/{FunctionName}/response-streaming-invocations", 200] }, () =>
|
|
2965
|
+
{ [_h]: ["POST", "/2021-11-15/functions/{FunctionName}/response-streaming-invocations", 200] }, () => InvokeWithResponseStreamRequest$, () => InvokeWithResponseStreamResponse$
|
|
2588
2966
|
];
|
|
2589
2967
|
exports.ListAliases$ = [9, n0, _LAi,
|
|
2590
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases", 200] }, () =>
|
|
2968
|
+
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/aliases", 200] }, () => ListAliasesRequest$, () => ListAliasesResponse$
|
|
2591
2969
|
];
|
|
2592
2970
|
exports.ListCapacityProviders$ = [9, n0, _LCP,
|
|
2593
|
-
{ [_h]: ["GET", "/2025-11-30/capacity-providers", 200] }, () =>
|
|
2971
|
+
{ [_h]: ["GET", "/2025-11-30/capacity-providers", 200] }, () => ListCapacityProvidersRequest$, () => ListCapacityProvidersResponse$
|
|
2594
2972
|
];
|
|
2595
2973
|
exports.ListCodeSigningConfigs$ = [9, n0, _LCSC,
|
|
2596
|
-
{ [_h]: ["GET", "/2020-04-22/code-signing-configs", 200] }, () =>
|
|
2974
|
+
{ [_h]: ["GET", "/2020-04-22/code-signing-configs", 200] }, () => ListCodeSigningConfigsRequest$, () => ListCodeSigningConfigsResponse$
|
|
2597
2975
|
];
|
|
2598
2976
|
exports.ListDurableExecutionsByFunction$ = [9, n0, _LDEBF,
|
|
2599
|
-
{ [_h]: ["GET", "/2025-12-01/functions/{FunctionName}/durable-executions", 200] }, () =>
|
|
2977
|
+
{ [_h]: ["GET", "/2025-12-01/functions/{FunctionName}/durable-executions", 200] }, () => ListDurableExecutionsByFunctionRequest$, () => ListDurableExecutionsByFunctionResponse$
|
|
2600
2978
|
];
|
|
2601
2979
|
exports.ListEventSourceMappings$ = [9, n0, _LESM,
|
|
2602
|
-
{ [_h]: ["GET", "/2015-03-31/event-source-mappings", 200] }, () =>
|
|
2980
|
+
{ [_h]: ["GET", "/2015-03-31/event-source-mappings", 200] }, () => ListEventSourceMappingsRequest$, () => ListEventSourceMappingsResponse$
|
|
2603
2981
|
];
|
|
2604
2982
|
exports.ListFunctionEventInvokeConfigs$ = [9, n0, _LFEIC,
|
|
2605
|
-
{ [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config/list", 200] }, () =>
|
|
2983
|
+
{ [_h]: ["GET", "/2019-09-25/functions/{FunctionName}/event-invoke-config/list", 200] }, () => ListFunctionEventInvokeConfigsRequest$, () => ListFunctionEventInvokeConfigsResponse$
|
|
2606
2984
|
];
|
|
2607
2985
|
exports.ListFunctions$ = [9, n0, _LFi,
|
|
2608
|
-
{ [_h]: ["GET", "/2015-03-31/functions", 200] }, () =>
|
|
2986
|
+
{ [_h]: ["GET", "/2015-03-31/functions", 200] }, () => ListFunctionsRequest$, () => ListFunctionsResponse$
|
|
2609
2987
|
];
|
|
2610
2988
|
exports.ListFunctionsByCodeSigningConfig$ = [9, n0, _LFBCSC,
|
|
2611
|
-
{ [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}/functions", 200] }, () =>
|
|
2989
|
+
{ [_h]: ["GET", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}/functions", 200] }, () => ListFunctionsByCodeSigningConfigRequest$, () => ListFunctionsByCodeSigningConfigResponse$
|
|
2612
2990
|
];
|
|
2613
2991
|
exports.ListFunctionUrlConfigs$ = [9, n0, _LFUC,
|
|
2614
|
-
{ [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/urls", 200] }, () =>
|
|
2992
|
+
{ [_h]: ["GET", "/2021-10-31/functions/{FunctionName}/urls", 200] }, () => ListFunctionUrlConfigsRequest$, () => ListFunctionUrlConfigsResponse$
|
|
2615
2993
|
];
|
|
2616
2994
|
exports.ListFunctionVersionsByCapacityProvider$ = [9, n0, _LFVBCP,
|
|
2617
|
-
{ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}/function-versions", 200] }, () =>
|
|
2995
|
+
{ [_h]: ["GET", "/2025-11-30/capacity-providers/{CapacityProviderName}/function-versions", 200] }, () => ListFunctionVersionsByCapacityProviderRequest$, () => ListFunctionVersionsByCapacityProviderResponse$
|
|
2618
2996
|
];
|
|
2619
2997
|
exports.ListLayers$ = [9, n0, _LLi,
|
|
2620
|
-
{ [_h]: ["GET", "/2018-10-31/layers", 200] }, () =>
|
|
2998
|
+
{ [_h]: ["GET", "/2018-10-31/layers", 200] }, () => ListLayersRequest$, () => ListLayersResponse$
|
|
2621
2999
|
];
|
|
2622
3000
|
exports.ListLayerVersions$ = [9, n0, _LLV,
|
|
2623
|
-
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions", 200] }, () =>
|
|
3001
|
+
{ [_h]: ["GET", "/2018-10-31/layers/{LayerName}/versions", 200] }, () => ListLayerVersionsRequest$, () => ListLayerVersionsResponse$
|
|
2624
3002
|
];
|
|
2625
3003
|
exports.ListProvisionedConcurrencyConfigs$ = [9, n0, _LPCC,
|
|
2626
|
-
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency?List=ALL", 200] }, () =>
|
|
3004
|
+
{ [_h]: ["GET", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency?List=ALL", 200] }, () => ListProvisionedConcurrencyConfigsRequest$, () => ListProvisionedConcurrencyConfigsResponse$
|
|
2627
3005
|
];
|
|
2628
3006
|
exports.ListTags$ = [9, n0, _LTi,
|
|
2629
|
-
{ [_h]: ["GET", "/2017-03-31/tags/{Resource}", 200] }, () =>
|
|
3007
|
+
{ [_h]: ["GET", "/2017-03-31/tags/{Resource}", 200] }, () => ListTagsRequest$, () => ListTagsResponse$
|
|
2630
3008
|
];
|
|
2631
3009
|
exports.ListVersionsByFunction$ = [9, n0, _LVBF,
|
|
2632
|
-
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/versions", 200] }, () =>
|
|
3010
|
+
{ [_h]: ["GET", "/2015-03-31/functions/{FunctionName}/versions", 200] }, () => ListVersionsByFunctionRequest$, () => ListVersionsByFunctionResponse$
|
|
2633
3011
|
];
|
|
2634
3012
|
exports.PublishLayerVersion$ = [9, n0, _PLV,
|
|
2635
|
-
{ [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions", 201] }, () =>
|
|
3013
|
+
{ [_h]: ["POST", "/2018-10-31/layers/{LayerName}/versions", 201] }, () => PublishLayerVersionRequest$, () => PublishLayerVersionResponse$
|
|
2636
3014
|
];
|
|
2637
3015
|
exports.PublishVersion$ = [9, n0, _PV,
|
|
2638
|
-
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/versions", 201] }, () =>
|
|
3016
|
+
{ [_h]: ["POST", "/2015-03-31/functions/{FunctionName}/versions", 201] }, () => PublishVersionRequest$, () => FunctionConfiguration$
|
|
2639
3017
|
];
|
|
2640
3018
|
exports.PutFunctionCodeSigningConfig$ = [9, n0, _PFCSC,
|
|
2641
|
-
{ [_h]: ["PUT", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () =>
|
|
3019
|
+
{ [_h]: ["PUT", "/2020-06-30/functions/{FunctionName}/code-signing-config", 200] }, () => PutFunctionCodeSigningConfigRequest$, () => PutFunctionCodeSigningConfigResponse$
|
|
2642
3020
|
];
|
|
2643
3021
|
exports.PutFunctionConcurrency$ = [9, n0, _PFC,
|
|
2644
|
-
{ [_h]: ["PUT", "/2017-10-31/functions/{FunctionName}/concurrency", 200] }, () =>
|
|
3022
|
+
{ [_h]: ["PUT", "/2017-10-31/functions/{FunctionName}/concurrency", 200] }, () => PutFunctionConcurrencyRequest$, () => Concurrency$
|
|
2645
3023
|
];
|
|
2646
3024
|
exports.PutFunctionEventInvokeConfig$ = [9, n0, _PFEIC,
|
|
2647
|
-
{ [_h]: ["PUT", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () =>
|
|
3025
|
+
{ [_h]: ["PUT", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => PutFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
|
|
2648
3026
|
];
|
|
2649
3027
|
exports.PutFunctionRecursionConfig$ = [9, n0, _PFRC,
|
|
2650
|
-
{ [_h]: ["PUT", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () =>
|
|
3028
|
+
{ [_h]: ["PUT", "/2024-08-31/functions/{FunctionName}/recursion-config", 200] }, () => PutFunctionRecursionConfigRequest$, () => PutFunctionRecursionConfigResponse$
|
|
2651
3029
|
];
|
|
2652
3030
|
exports.PutFunctionScalingConfig$ = [9, n0, _PFSC,
|
|
2653
|
-
{ [_h]: ["PUT", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 202] }, () =>
|
|
3031
|
+
{ [_h]: ["PUT", "/2025-11-30/functions/{FunctionName}/function-scaling-config", 202] }, () => PutFunctionScalingConfigRequest$, () => PutFunctionScalingConfigResponse$
|
|
2654
3032
|
];
|
|
2655
3033
|
exports.PutProvisionedConcurrencyConfig$ = [9, n0, _PPCC,
|
|
2656
|
-
{ [_h]: ["PUT", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 202] }, () =>
|
|
3034
|
+
{ [_h]: ["PUT", "/2019-09-30/functions/{FunctionName}/provisioned-concurrency", 202] }, () => PutProvisionedConcurrencyConfigRequest$, () => PutProvisionedConcurrencyConfigResponse$
|
|
2657
3035
|
];
|
|
2658
3036
|
exports.PutRuntimeManagementConfig$ = [9, n0, _PRMC,
|
|
2659
|
-
{ [_h]: ["PUT", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () =>
|
|
3037
|
+
{ [_h]: ["PUT", "/2021-07-20/functions/{FunctionName}/runtime-management-config", 200] }, () => PutRuntimeManagementConfigRequest$, () => PutRuntimeManagementConfigResponse$
|
|
2660
3038
|
];
|
|
2661
3039
|
exports.RemoveLayerVersionPermission$ = [9, n0, _RLVP,
|
|
2662
|
-
{ [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy/{StatementId}", 204] }, () =>
|
|
3040
|
+
{ [_h]: ["DELETE", "/2018-10-31/layers/{LayerName}/versions/{VersionNumber}/policy/{StatementId}", 204] }, () => RemoveLayerVersionPermissionRequest$, () => __Unit
|
|
2663
3041
|
];
|
|
2664
3042
|
exports.RemovePermission$ = [9, n0, _RP,
|
|
2665
|
-
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/policy/{StatementId}", 204] }, () =>
|
|
3043
|
+
{ [_h]: ["DELETE", "/2015-03-31/functions/{FunctionName}/policy/{StatementId}", 204] }, () => RemovePermissionRequest$, () => __Unit
|
|
2666
3044
|
];
|
|
2667
3045
|
exports.SendDurableExecutionCallbackFailure$ = [9, n0, _SDECF,
|
|
2668
|
-
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/fail", 200] }, () =>
|
|
3046
|
+
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/fail", 200] }, () => SendDurableExecutionCallbackFailureRequest$, () => SendDurableExecutionCallbackFailureResponse$
|
|
2669
3047
|
];
|
|
2670
3048
|
exports.SendDurableExecutionCallbackHeartbeat$ = [9, n0, _SDECH,
|
|
2671
|
-
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/heartbeat", 200] }, () =>
|
|
3049
|
+
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/heartbeat", 200] }, () => SendDurableExecutionCallbackHeartbeatRequest$, () => SendDurableExecutionCallbackHeartbeatResponse$
|
|
2672
3050
|
];
|
|
2673
3051
|
exports.SendDurableExecutionCallbackSuccess$ = [9, n0, _SDECS,
|
|
2674
|
-
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/succeed", 200] }, () =>
|
|
3052
|
+
{ [_h]: ["POST", "/2025-12-01/durable-execution-callbacks/{CallbackId}/succeed", 200] }, () => SendDurableExecutionCallbackSuccessRequest$, () => SendDurableExecutionCallbackSuccessResponse$
|
|
2675
3053
|
];
|
|
2676
3054
|
exports.StopDurableExecution$ = [9, n0, _SDE,
|
|
2677
|
-
{ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/stop", 200] }, () =>
|
|
3055
|
+
{ [_h]: ["POST", "/2025-12-01/durable-executions/{DurableExecutionArn}/stop", 200] }, () => StopDurableExecutionRequest$, () => StopDurableExecutionResponse$
|
|
2678
3056
|
];
|
|
2679
3057
|
exports.TagResource$ = [9, n0, _TR,
|
|
2680
|
-
{ [_h]: ["POST", "/2017-03-31/tags/{Resource}", 204] }, () =>
|
|
3058
|
+
{ [_h]: ["POST", "/2017-03-31/tags/{Resource}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
2681
3059
|
];
|
|
2682
3060
|
exports.UntagResource$ = [9, n0, _UR,
|
|
2683
|
-
{ [_h]: ["DELETE", "/2017-03-31/tags/{Resource}", 204] }, () =>
|
|
3061
|
+
{ [_h]: ["DELETE", "/2017-03-31/tags/{Resource}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
2684
3062
|
];
|
|
2685
3063
|
exports.UpdateAlias$ = [9, n0, _UA,
|
|
2686
|
-
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () =>
|
|
3064
|
+
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/aliases/{Name}", 200] }, () => UpdateAliasRequest$, () => AliasConfiguration$
|
|
2687
3065
|
];
|
|
2688
3066
|
exports.UpdateCapacityProvider$ = [9, n0, _UCP,
|
|
2689
|
-
{ [_h]: ["PUT", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () =>
|
|
3067
|
+
{ [_h]: ["PUT", "/2025-11-30/capacity-providers/{CapacityProviderName}", 202] }, () => UpdateCapacityProviderRequest$, () => UpdateCapacityProviderResponse$
|
|
2690
3068
|
];
|
|
2691
3069
|
exports.UpdateCodeSigningConfig$ = [9, n0, _UCSC,
|
|
2692
|
-
{ [_h]: ["PUT", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () =>
|
|
3070
|
+
{ [_h]: ["PUT", "/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", 200] }, () => UpdateCodeSigningConfigRequest$, () => UpdateCodeSigningConfigResponse$
|
|
2693
3071
|
];
|
|
2694
3072
|
exports.UpdateEventSourceMapping$ = [9, n0, _UESM,
|
|
2695
|
-
{ [_h]: ["PUT", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () =>
|
|
3073
|
+
{ [_h]: ["PUT", "/2015-03-31/event-source-mappings/{UUID}", 202] }, () => UpdateEventSourceMappingRequest$, () => EventSourceMappingConfiguration$
|
|
2696
3074
|
];
|
|
2697
3075
|
exports.UpdateFunctionCode$ = [9, n0, _UFC,
|
|
2698
|
-
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/code", 200] }, () =>
|
|
3076
|
+
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/code", 200] }, () => UpdateFunctionCodeRequest$, () => FunctionConfiguration$
|
|
2699
3077
|
];
|
|
2700
3078
|
exports.UpdateFunctionConfiguration$ = [9, n0, _UFCp,
|
|
2701
|
-
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () =>
|
|
3079
|
+
{ [_h]: ["PUT", "/2015-03-31/functions/{FunctionName}/configuration", 200] }, () => UpdateFunctionConfigurationRequest$, () => FunctionConfiguration$
|
|
2702
3080
|
];
|
|
2703
3081
|
exports.UpdateFunctionEventInvokeConfig$ = [9, n0, _UFEIC,
|
|
2704
|
-
{ [_h]: ["POST", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () =>
|
|
3082
|
+
{ [_h]: ["POST", "/2019-09-25/functions/{FunctionName}/event-invoke-config", 200] }, () => UpdateFunctionEventInvokeConfigRequest$, () => FunctionEventInvokeConfig$
|
|
2705
3083
|
];
|
|
2706
3084
|
exports.UpdateFunctionUrlConfig$ = [9, n0, _UFUC,
|
|
2707
|
-
{ [_h]: ["PUT", "/2021-10-31/functions/{FunctionName}/url", 200] }, () =>
|
|
3085
|
+
{ [_h]: ["PUT", "/2021-10-31/functions/{FunctionName}/url", 200] }, () => UpdateFunctionUrlConfigRequest$, () => UpdateFunctionUrlConfigResponse$
|
|
2708
3086
|
];
|