@aws-sdk/client-lambda 3.1024.0 → 3.1026.0
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/dist-cjs/models/errors.js +52 -1
- package/dist-cjs/schemas/schemas_0.js +29 -8
- package/dist-es/models/errors.js +48 -0
- package/dist-es/schemas/schemas_0.js +22 -1
- package/dist-types/commands/InvokeCommand.d.ts +9 -0
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +9 -0
- package/dist-types/models/errors.d.ts +66 -0
- package/dist-types/models/models_0.d.ts +6 -6
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/models/errors.d.ts +30 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +38 -38
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CallbackTimeoutException = exports.ProvisionedConcurrencyConfigNotFoundException = exports.UnsupportedMediaTypeException = exports.SubnetIPAddressLimitReachedException = exports.SnapStartTimeoutException = exports.SnapStartNotReadyException = exports.SnapStartException = exports.SerializedRequestEntityTooLargeException = exports.ResourceNotReadyException = exports.RequestTooLargeException = exports.RecursiveInvocationException = exports.NoPublishedVersionException = exports.KMSNotFoundException = exports.KMSInvalidStateException = exports.KMSDisabledException = exports.KMSAccessDeniedException = exports.InvalidZipFileException = exports.InvalidSubnetIDException = exports.InvalidSecurityGroupIDException = exports.InvalidRuntimeException = exports.InvalidRequestContentException = exports.ENILimitReachedException = exports.EFSMountTimeoutException = exports.EFSMountFailureException = exports.EFSMountConnectivityException = exports.EFSIOException = exports.EC2UnexpectedException = exports.EC2ThrottledException = exports.EC2AccessDeniedException = exports.DurableExecutionAlreadyStartedException = exports.InvalidCodeSignatureException = exports.FunctionVersionsPerCapacityProviderLimitExceededException = exports.CodeVerificationFailedException = exports.CodeStorageExceededException = exports.CodeSigningConfigNotFoundException = exports.ResourceInUseException = exports.CapacityProviderLimitExceededException = exports.TooManyRequestsException = exports.ServiceException = exports.ResourceNotFoundException = exports.ResourceConflictException = exports.PreconditionFailedException = exports.PolicyLengthExceededException = exports.InvalidParameterValueException = void 0;
|
|
3
|
+
exports.CallbackTimeoutException = exports.ProvisionedConcurrencyConfigNotFoundException = exports.UnsupportedMediaTypeException = exports.SubnetIPAddressLimitReachedException = exports.SnapStartTimeoutException = exports.SnapStartNotReadyException = exports.SnapStartException = exports.SerializedRequestEntityTooLargeException = exports.S3FilesMountTimeoutException = exports.S3FilesMountFailureException = exports.S3FilesMountConnectivityException = exports.ResourceNotReadyException = exports.RequestTooLargeException = exports.RecursiveInvocationException = exports.NoPublishedVersionException = exports.KMSNotFoundException = exports.KMSInvalidStateException = exports.KMSDisabledException = exports.KMSAccessDeniedException = exports.InvalidZipFileException = exports.InvalidSubnetIDException = exports.InvalidSecurityGroupIDException = exports.InvalidRuntimeException = exports.InvalidRequestContentException = exports.ENILimitReachedException = exports.EFSMountTimeoutException = exports.EFSMountFailureException = exports.EFSMountConnectivityException = exports.EFSIOException = exports.EC2UnexpectedException = exports.EC2ThrottledException = exports.EC2AccessDeniedException = exports.DurableExecutionAlreadyStartedException = exports.InvalidCodeSignatureException = exports.FunctionVersionsPerCapacityProviderLimitExceededException = exports.CodeVerificationFailedException = exports.CodeStorageExceededException = exports.CodeSigningConfigNotFoundException = exports.ResourceInUseException = exports.CapacityProviderLimitExceededException = exports.TooManyRequestsException = exports.ServiceException = exports.ResourceNotFoundException = exports.ResourceConflictException = exports.PreconditionFailedException = exports.PolicyLengthExceededException = exports.InvalidParameterValueException = void 0;
|
|
4
4
|
const LambdaServiceException_1 = require("./LambdaServiceException");
|
|
5
5
|
class InvalidParameterValueException extends LambdaServiceException_1.LambdaServiceException {
|
|
6
6
|
name = "InvalidParameterValueException";
|
|
@@ -598,6 +598,57 @@ class ResourceNotReadyException extends LambdaServiceException_1.LambdaServiceEx
|
|
|
598
598
|
}
|
|
599
599
|
}
|
|
600
600
|
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
601
|
+
class S3FilesMountConnectivityException extends LambdaServiceException_1.LambdaServiceException {
|
|
602
|
+
name = "S3FilesMountConnectivityException";
|
|
603
|
+
$fault = "client";
|
|
604
|
+
Type;
|
|
605
|
+
Message;
|
|
606
|
+
constructor(opts) {
|
|
607
|
+
super({
|
|
608
|
+
name: "S3FilesMountConnectivityException",
|
|
609
|
+
$fault: "client",
|
|
610
|
+
...opts,
|
|
611
|
+
});
|
|
612
|
+
Object.setPrototypeOf(this, S3FilesMountConnectivityException.prototype);
|
|
613
|
+
this.Type = opts.Type;
|
|
614
|
+
this.Message = opts.Message;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
exports.S3FilesMountConnectivityException = S3FilesMountConnectivityException;
|
|
618
|
+
class S3FilesMountFailureException extends LambdaServiceException_1.LambdaServiceException {
|
|
619
|
+
name = "S3FilesMountFailureException";
|
|
620
|
+
$fault = "client";
|
|
621
|
+
Type;
|
|
622
|
+
Message;
|
|
623
|
+
constructor(opts) {
|
|
624
|
+
super({
|
|
625
|
+
name: "S3FilesMountFailureException",
|
|
626
|
+
$fault: "client",
|
|
627
|
+
...opts,
|
|
628
|
+
});
|
|
629
|
+
Object.setPrototypeOf(this, S3FilesMountFailureException.prototype);
|
|
630
|
+
this.Type = opts.Type;
|
|
631
|
+
this.Message = opts.Message;
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
exports.S3FilesMountFailureException = S3FilesMountFailureException;
|
|
635
|
+
class S3FilesMountTimeoutException extends LambdaServiceException_1.LambdaServiceException {
|
|
636
|
+
name = "S3FilesMountTimeoutException";
|
|
637
|
+
$fault = "client";
|
|
638
|
+
Type;
|
|
639
|
+
Message;
|
|
640
|
+
constructor(opts) {
|
|
641
|
+
super({
|
|
642
|
+
name: "S3FilesMountTimeoutException",
|
|
643
|
+
$fault: "client",
|
|
644
|
+
...opts,
|
|
645
|
+
});
|
|
646
|
+
Object.setPrototypeOf(this, S3FilesMountTimeoutException.prototype);
|
|
647
|
+
this.Type = opts.Type;
|
|
648
|
+
this.Message = opts.Message;
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
exports.S3FilesMountTimeoutException = S3FilesMountTimeoutException;
|
|
601
652
|
class SerializedRequestEntityTooLargeException extends LambdaServiceException_1.LambdaServiceException {
|
|
602
653
|
name = "SerializedRequestEntityTooLargeException";
|
|
603
654
|
$fault = "client";
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.UpdateFunctionUrlConfig$ = exports.UpdateFunctionEventInvokeConfig$ = exports.UpdateFunctionConfiguration$ = exports.UpdateFunctionCode$ = exports.UpdateEventSourceMapping$ = exports.UpdateCodeSigningConfig$ = exports.UpdateCapacityProvider$ = exports.UpdateAlias$ = exports.UntagResource$ = exports.TagResource$ = exports.StopDurableExecution$ = exports.SendDurableExecutionCallbackSuccess$ = exports.SendDurableExecutionCallbackHeartbeat$ = exports.SendDurableExecutionCallbackFailure$ = exports.RemovePermission$ = exports.RemoveLayerVersionPermission$ = exports.PutRuntimeManagementConfig$ = exports.PutProvisionedConcurrencyConfig$ = exports.PutFunctionScalingConfig$ = exports.PutFunctionRecursionConfig$ = exports.PutFunctionEventInvokeConfig$ = exports.PutFunctionConcurrency$ = exports.PutFunctionCodeSigningConfig$ = exports.PublishVersion$ = exports.PublishLayerVersion$ = exports.ListVersionsByFunction$ = exports.ListTags$ = exports.ListProvisionedConcurrencyConfigs$ = exports.ListLayerVersions$ = exports.ListLayers$ = exports.ListFunctionVersionsByCapacityProvider$ = exports.ListFunctionUrlConfigs$ = exports.ListFunctionsByCodeSigningConfig$ = exports.ListFunctions$ = exports.ListFunctionEventInvokeConfigs$ = exports.ListEventSourceMappings$ = exports.ListDurableExecutionsByFunction$ = exports.ListCodeSigningConfigs$ = exports.ListCapacityProviders$ = exports.ListAliases$ = exports.InvokeWithResponseStream$ = exports.InvokeAsync$ = void 0;
|
|
3
|
+
exports.AccountLimit$ = exports.errorTypeRegistries = exports.UnsupportedMediaTypeException$ = exports.TooManyRequestsException$ = exports.SubnetIPAddressLimitReachedException$ = exports.SnapStartTimeoutException$ = exports.SnapStartNotReadyException$ = exports.SnapStartException$ = exports.ServiceException$ = exports.SerializedRequestEntityTooLargeException$ = exports.S3FilesMountTimeoutException$ = exports.S3FilesMountFailureException$ = exports.S3FilesMountConnectivityException$ = exports.ResourceNotReadyException$ = exports.ResourceNotFoundException$ = exports.ResourceInUseException$ = exports.ResourceConflictException$ = exports.RequestTooLargeException$ = exports.RecursiveInvocationException$ = exports.ProvisionedConcurrencyConfigNotFoundException$ = exports.PreconditionFailedException$ = exports.PolicyLengthExceededException$ = exports.NoPublishedVersionException$ = exports.KMSNotFoundException$ = exports.KMSInvalidStateException$ = exports.KMSDisabledException$ = exports.KMSAccessDeniedException$ = exports.InvalidZipFileException$ = exports.InvalidSubnetIDException$ = exports.InvalidSecurityGroupIDException$ = exports.InvalidRuntimeException$ = exports.InvalidRequestContentException$ = exports.InvalidParameterValueException$ = exports.InvalidCodeSignatureException$ = exports.FunctionVersionsPerCapacityProviderLimitExceededException$ = exports.ENILimitReachedException$ = exports.EFSMountTimeoutException$ = exports.EFSMountFailureException$ = exports.EFSMountConnectivityException$ = exports.EFSIOException$ = exports.EC2UnexpectedException$ = exports.EC2ThrottledException$ = exports.EC2AccessDeniedException$ = exports.DurableExecutionAlreadyStartedException$ = exports.CodeVerificationFailedException$ = exports.CodeStorageExceededException$ = exports.CodeSigningConfigNotFoundException$ = exports.CapacityProviderLimitExceededException$ = exports.CallbackTimeoutException$ = exports.LambdaServiceException$ = void 0;
|
|
4
|
+
exports.DeleteAliasRequest$ = exports.DeadLetterConfig$ = exports.CreateFunctionUrlConfigResponse$ = exports.CreateFunctionUrlConfigRequest$ = exports.CreateFunctionRequest$ = exports.CreateEventSourceMappingRequest$ = exports.CreateCodeSigningConfigResponse$ = exports.CreateCodeSigningConfigRequest$ = exports.CreateCapacityProviderResponse$ = exports.CreateCapacityProviderRequest$ = exports.CreateAliasRequest$ = exports.Cors$ = exports.ContextSucceededDetails$ = exports.ContextStartedDetails$ = exports.ContextOptions$ = exports.ContextFailedDetails$ = exports.ContextDetails$ = exports.Concurrency$ = exports.CodeSigningPolicies$ = exports.CodeSigningConfig$ = exports.CheckpointUpdatedExecutionState$ = exports.CheckpointDurableExecutionResponse$ = exports.CheckpointDurableExecutionRequest$ = exports.ChainedInvokeTimedOutDetails$ = exports.ChainedInvokeSucceededDetails$ = exports.ChainedInvokeStoppedDetails$ = exports.ChainedInvokeStartedDetails$ = exports.ChainedInvokeOptions$ = exports.ChainedInvokeFailedDetails$ = exports.ChainedInvokeDetails$ = exports.CapacityProviderVpcConfig$ = exports.CapacityProviderScalingConfig$ = exports.CapacityProviderPermissionsConfig$ = exports.CapacityProviderConfig$ = exports.CapacityProvider$ = exports.CallbackTimedOutDetails$ = exports.CallbackSucceededDetails$ = exports.CallbackStartedDetails$ = exports.CallbackOptions$ = exports.CallbackFailedDetails$ = exports.CallbackDetails$ = exports.AmazonManagedKafkaEventSourceConfig$ = exports.AllowedPublishers$ = exports.AliasRoutingConfiguration$ = exports.AliasConfiguration$ = exports.AddPermissionResponse$ = exports.AddPermissionRequest$ = exports.AddLayerVersionPermissionResponse$ = exports.AddLayerVersionPermissionRequest$ = exports.AccountUsage$ = void 0;
|
|
5
|
+
exports.GetCapacityProviderRequest$ = exports.GetAliasRequest$ = exports.GetAccountSettingsResponse$ = exports.GetAccountSettingsRequest$ = exports.FunctionVersionsByCapacityProviderListItem$ = exports.FunctionUrlConfig$ = exports.FunctionScalingConfig$ = exports.FunctionEventInvokeConfig$ = exports.FunctionConfiguration$ = exports.FunctionCodeLocation$ = exports.FunctionCode$ = exports.FilterCriteriaError$ = exports.FilterCriteria$ = exports.Filter$ = exports.FileSystemConfig$ = exports.ExecutionTimedOutDetails$ = exports.ExecutionSucceededDetails$ = exports.ExecutionStoppedDetails$ = exports.ExecutionStartedDetails$ = exports.ExecutionFailedDetails$ = exports.ExecutionDetails$ = exports.Execution$ = exports.EventSourceMappingMetricsConfig$ = exports.EventSourceMappingLoggingConfig$ = exports.EventSourceMappingConfiguration$ = exports.EventResult$ = exports.EventInput$ = exports.EventError$ = exports.Event$ = exports.ErrorObject$ = exports.EphemeralStorage$ = exports.EnvironmentResponse$ = exports.EnvironmentError$ = exports.Environment$ = exports.DurableConfig$ = exports.DocumentDBEventSourceConfig$ = exports.DestinationConfig$ = exports.DeleteProvisionedConcurrencyConfigRequest$ = exports.DeleteLayerVersionRequest$ = exports.DeleteFunctionUrlConfigRequest$ = exports.DeleteFunctionResponse$ = exports.DeleteFunctionRequest$ = exports.DeleteFunctionEventInvokeConfigRequest$ = exports.DeleteFunctionConcurrencyRequest$ = exports.DeleteFunctionCodeSigningConfigRequest$ = exports.DeleteEventSourceMappingRequest$ = exports.DeleteCodeSigningConfigResponse$ = exports.DeleteCodeSigningConfigRequest$ = exports.DeleteCapacityProviderResponse$ = exports.DeleteCapacityProviderRequest$ = void 0;
|
|
6
|
+
exports.KafkaSchemaRegistryConfig$ = exports.KafkaSchemaRegistryAccessConfig$ = exports.InvokeWithResponseStreamResponse$ = exports.InvokeWithResponseStreamRequest$ = exports.InvokeWithResponseStreamCompleteEvent$ = exports.InvokeResponseStreamUpdate$ = exports.InvokeAsyncResponse$ = exports.InvokeAsyncRequest$ = exports.InvocationResponse$ = exports.InvocationRequest$ = exports.InvocationCompletedDetails$ = exports.InstanceRequirements$ = exports.ImageConfigResponse$ = exports.ImageConfigError$ = exports.ImageConfig$ = exports.GetRuntimeManagementConfigResponse$ = exports.GetRuntimeManagementConfigRequest$ = exports.GetProvisionedConcurrencyConfigResponse$ = exports.GetProvisionedConcurrencyConfigRequest$ = exports.GetPolicyResponse$ = exports.GetPolicyRequest$ = exports.GetLayerVersionResponse$ = exports.GetLayerVersionRequest$ = exports.GetLayerVersionPolicyResponse$ = exports.GetLayerVersionPolicyRequest$ = exports.GetLayerVersionByArnRequest$ = exports.GetFunctionUrlConfigResponse$ = exports.GetFunctionUrlConfigRequest$ = exports.GetFunctionScalingConfigResponse$ = exports.GetFunctionScalingConfigRequest$ = exports.GetFunctionResponse$ = exports.GetFunctionRequest$ = exports.GetFunctionRecursionConfigResponse$ = exports.GetFunctionRecursionConfigRequest$ = exports.GetFunctionEventInvokeConfigRequest$ = exports.GetFunctionConfigurationRequest$ = exports.GetFunctionConcurrencyResponse$ = exports.GetFunctionConcurrencyRequest$ = exports.GetFunctionCodeSigningConfigResponse$ = exports.GetFunctionCodeSigningConfigRequest$ = exports.GetEventSourceMappingRequest$ = exports.GetDurableExecutionStateResponse$ = exports.GetDurableExecutionStateRequest$ = exports.GetDurableExecutionResponse$ = exports.GetDurableExecutionRequest$ = exports.GetDurableExecutionHistoryResponse$ = exports.GetDurableExecutionHistoryRequest$ = exports.GetCodeSigningConfigResponse$ = exports.GetCodeSigningConfigRequest$ = exports.GetCapacityProviderResponse$ = void 0;
|
|
7
|
+
exports.PutFunctionConcurrencyRequest$ = exports.PutFunctionCodeSigningConfigResponse$ = exports.PutFunctionCodeSigningConfigRequest$ = exports.PublishVersionRequest$ = exports.PublishLayerVersionResponse$ = exports.PublishLayerVersionRequest$ = exports.ProvisionedPollerConfig$ = exports.ProvisionedConcurrencyConfigListItem$ = exports.OperationUpdate$ = exports.Operation$ = exports.OnSuccess$ = exports.OnFailure$ = exports.LoggingConfig$ = exports.ListVersionsByFunctionResponse$ = exports.ListVersionsByFunctionRequest$ = exports.ListTagsResponse$ = exports.ListTagsRequest$ = exports.ListProvisionedConcurrencyConfigsResponse$ = exports.ListProvisionedConcurrencyConfigsRequest$ = exports.ListLayerVersionsResponse$ = exports.ListLayerVersionsRequest$ = exports.ListLayersResponse$ = exports.ListLayersRequest$ = exports.ListFunctionVersionsByCapacityProviderResponse$ = exports.ListFunctionVersionsByCapacityProviderRequest$ = exports.ListFunctionUrlConfigsResponse$ = exports.ListFunctionUrlConfigsRequest$ = exports.ListFunctionsResponse$ = exports.ListFunctionsRequest$ = exports.ListFunctionsByCodeSigningConfigResponse$ = exports.ListFunctionsByCodeSigningConfigRequest$ = exports.ListFunctionEventInvokeConfigsResponse$ = exports.ListFunctionEventInvokeConfigsRequest$ = exports.ListEventSourceMappingsResponse$ = exports.ListEventSourceMappingsRequest$ = exports.ListDurableExecutionsByFunctionResponse$ = exports.ListDurableExecutionsByFunctionRequest$ = exports.ListCodeSigningConfigsResponse$ = exports.ListCodeSigningConfigsRequest$ = exports.ListCapacityProvidersResponse$ = exports.ListCapacityProvidersRequest$ = exports.ListAliasesResponse$ = exports.ListAliasesRequest$ = exports.LayerVersionsListItem$ = exports.LayerVersionContentOutput$ = exports.LayerVersionContentInput$ = exports.LayersListItem$ = exports.Layer$ = exports.LambdaManagedInstancesCapacityProviderConfig$ = exports.KafkaSchemaValidationConfig$ = void 0;
|
|
8
|
+
exports.UpdateFunctionEventInvokeConfigRequest$ = exports.UpdateFunctionConfigurationRequest$ = exports.UpdateFunctionCodeRequest$ = exports.UpdateEventSourceMappingRequest$ = exports.UpdateCodeSigningConfigResponse$ = exports.UpdateCodeSigningConfigRequest$ = exports.UpdateCapacityProviderResponse$ = exports.UpdateCapacityProviderRequest$ = exports.UpdateAliasRequest$ = exports.UntagResourceRequest$ = exports.TracingConfigResponse$ = exports.TracingConfig$ = exports.TraceHeader$ = exports.TenancyConfig$ = exports.TargetTrackingScalingPolicy$ = exports.TagsError$ = exports.TagResourceRequest$ = exports.StopDurableExecutionResponse$ = exports.StopDurableExecutionRequest$ = exports.StepSucceededDetails$ = exports.StepStartedDetails$ = exports.StepOptions$ = exports.StepFailedDetails$ = exports.StepDetails$ = exports.SourceAccessConfiguration$ = exports.SnapStartResponse$ = exports.SnapStart$ = exports.SendDurableExecutionCallbackSuccessResponse$ = exports.SendDurableExecutionCallbackSuccessRequest$ = exports.SendDurableExecutionCallbackHeartbeatResponse$ = exports.SendDurableExecutionCallbackHeartbeatRequest$ = exports.SendDurableExecutionCallbackFailureResponse$ = exports.SendDurableExecutionCallbackFailureRequest$ = exports.SelfManagedKafkaEventSourceConfig$ = exports.SelfManagedEventSource$ = exports.ScalingConfig$ = exports.RuntimeVersionError$ = exports.RuntimeVersionConfig$ = exports.RetryDetails$ = exports.RemovePermissionRequest$ = exports.RemoveLayerVersionPermissionRequest$ = exports.PutRuntimeManagementConfigResponse$ = exports.PutRuntimeManagementConfigRequest$ = exports.PutProvisionedConcurrencyConfigResponse$ = exports.PutProvisionedConcurrencyConfigRequest$ = exports.PutFunctionScalingConfigResponse$ = exports.PutFunctionScalingConfigRequest$ = exports.PutFunctionRecursionConfigResponse$ = exports.PutFunctionRecursionConfigRequest$ = exports.PutFunctionEventInvokeConfigRequest$ = void 0;
|
|
9
|
+
exports.GetPolicy$ = exports.GetLayerVersionPolicy$ = exports.GetLayerVersionByArn$ = exports.GetLayerVersion$ = exports.GetFunctionUrlConfig$ = exports.GetFunctionScalingConfig$ = exports.GetFunctionRecursionConfig$ = exports.GetFunctionEventInvokeConfig$ = exports.GetFunctionConfiguration$ = exports.GetFunctionConcurrency$ = exports.GetFunctionCodeSigningConfig$ = exports.GetFunction$ = exports.GetEventSourceMapping$ = exports.GetDurableExecutionState$ = exports.GetDurableExecutionHistory$ = exports.GetDurableExecution$ = exports.GetCodeSigningConfig$ = exports.GetCapacityProvider$ = exports.GetAlias$ = exports.GetAccountSettings$ = exports.DeleteProvisionedConcurrencyConfig$ = exports.DeleteLayerVersion$ = exports.DeleteFunctionUrlConfig$ = exports.DeleteFunctionEventInvokeConfig$ = exports.DeleteFunctionConcurrency$ = exports.DeleteFunctionCodeSigningConfig$ = exports.DeleteFunction$ = exports.DeleteEventSourceMapping$ = exports.DeleteCodeSigningConfig$ = exports.DeleteCapacityProvider$ = exports.DeleteAlias$ = exports.CreateFunctionUrlConfig$ = exports.CreateFunction$ = exports.CreateEventSourceMapping$ = exports.CreateCodeSigningConfig$ = exports.CreateCapacityProvider$ = exports.CreateAlias$ = exports.CheckpointDurableExecution$ = exports.AddPermission$ = exports.AddLayerVersionPermission$ = exports.InvokeWithResponseStreamResponseEvent$ = exports.WaitSucceededDetails$ = exports.WaitStartedDetails$ = exports.WaitOptions$ = exports.WaitDetails$ = exports.WaitCancelledDetails$ = exports.VpcConfigResponse$ = exports.VpcConfig$ = exports.UpdateFunctionUrlConfigResponse$ = exports.UpdateFunctionUrlConfigRequest$ = void 0;
|
|
10
|
+
exports.UpdateFunctionUrlConfig$ = exports.UpdateFunctionEventInvokeConfig$ = exports.UpdateFunctionConfiguration$ = exports.UpdateFunctionCode$ = exports.UpdateEventSourceMapping$ = exports.UpdateCodeSigningConfig$ = exports.UpdateCapacityProvider$ = exports.UpdateAlias$ = exports.UntagResource$ = exports.TagResource$ = exports.StopDurableExecution$ = exports.SendDurableExecutionCallbackSuccess$ = exports.SendDurableExecutionCallbackHeartbeat$ = exports.SendDurableExecutionCallbackFailure$ = exports.RemovePermission$ = exports.RemoveLayerVersionPermission$ = exports.PutRuntimeManagementConfig$ = exports.PutProvisionedConcurrencyConfig$ = exports.PutFunctionScalingConfig$ = exports.PutFunctionRecursionConfig$ = exports.PutFunctionEventInvokeConfig$ = exports.PutFunctionConcurrency$ = exports.PutFunctionCodeSigningConfig$ = exports.PublishVersion$ = exports.PublishLayerVersion$ = exports.ListVersionsByFunction$ = exports.ListTags$ = exports.ListProvisionedConcurrencyConfigs$ = exports.ListLayerVersions$ = exports.ListLayers$ = exports.ListFunctionVersionsByCapacityProvider$ = exports.ListFunctionUrlConfigs$ = exports.ListFunctionsByCodeSigningConfig$ = exports.ListFunctions$ = exports.ListFunctionEventInvokeConfigs$ = exports.ListEventSourceMappings$ = exports.ListDurableExecutionsByFunction$ = exports.ListCodeSigningConfigs$ = exports.ListCapacityProviders$ = exports.ListAliases$ = exports.InvokeWithResponseStream$ = exports.InvokeAsync$ = exports.Invoke$ = exports.GetRuntimeManagementConfig$ = exports.GetProvisionedConcurrencyConfig$ = void 0;
|
|
11
11
|
const _A = "Action";
|
|
12
12
|
const _AA = "AliasArn";
|
|
13
13
|
const _AC = "AliasConfiguration";
|
|
@@ -589,6 +589,9 @@ const _SDERt = "StopDurableExecutionResponse";
|
|
|
589
589
|
const _SE = "ServiceException";
|
|
590
590
|
const _SET = "ScheduledEndTimestamp";
|
|
591
591
|
const _SFD = "StepFailedDetails";
|
|
592
|
+
const _SFMCE = "S3FilesMountConnectivityException";
|
|
593
|
+
const _SFMFE = "S3FilesMountFailureException";
|
|
594
|
+
const _SFMTE = "S3FilesMountTimeoutException";
|
|
592
595
|
const _SGI = "SecurityGroupIds";
|
|
593
596
|
const _SI = "StatementId";
|
|
594
597
|
const _SIPALRE = "SubnetIPAddressLimitReachedException";
|
|
@@ -945,6 +948,24 @@ exports.ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
|
945
948
|
[0, 0]
|
|
946
949
|
];
|
|
947
950
|
n0_registry.registerError(exports.ResourceNotReadyException$, errors_1.ResourceNotReadyException);
|
|
951
|
+
exports.S3FilesMountConnectivityException$ = [-3, n0, _SFMCE,
|
|
952
|
+
{ [_e]: _c, [_hE]: 408 },
|
|
953
|
+
[_T, _M],
|
|
954
|
+
[0, 0]
|
|
955
|
+
];
|
|
956
|
+
n0_registry.registerError(exports.S3FilesMountConnectivityException$, errors_1.S3FilesMountConnectivityException);
|
|
957
|
+
exports.S3FilesMountFailureException$ = [-3, n0, _SFMFE,
|
|
958
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
959
|
+
[_T, _M],
|
|
960
|
+
[0, 0]
|
|
961
|
+
];
|
|
962
|
+
n0_registry.registerError(exports.S3FilesMountFailureException$, errors_1.S3FilesMountFailureException);
|
|
963
|
+
exports.S3FilesMountTimeoutException$ = [-3, n0, _SFMTE,
|
|
964
|
+
{ [_e]: _c, [_hE]: 408 },
|
|
965
|
+
[_T, _M],
|
|
966
|
+
[0, 0]
|
|
967
|
+
];
|
|
968
|
+
n0_registry.registerError(exports.S3FilesMountTimeoutException$, errors_1.S3FilesMountTimeoutException);
|
|
948
969
|
exports.SerializedRequestEntityTooLargeException$ = [-3, n0, _SRETLE,
|
|
949
970
|
{ [_e]: _c, [_hE]: 413 },
|
|
950
971
|
[_T, _m],
|
package/dist-es/models/errors.js
CHANGED
|
@@ -559,6 +559,54 @@ export class ResourceNotReadyException extends __BaseException {
|
|
|
559
559
|
this.Type = opts.Type;
|
|
560
560
|
}
|
|
561
561
|
}
|
|
562
|
+
export class S3FilesMountConnectivityException extends __BaseException {
|
|
563
|
+
name = "S3FilesMountConnectivityException";
|
|
564
|
+
$fault = "client";
|
|
565
|
+
Type;
|
|
566
|
+
Message;
|
|
567
|
+
constructor(opts) {
|
|
568
|
+
super({
|
|
569
|
+
name: "S3FilesMountConnectivityException",
|
|
570
|
+
$fault: "client",
|
|
571
|
+
...opts,
|
|
572
|
+
});
|
|
573
|
+
Object.setPrototypeOf(this, S3FilesMountConnectivityException.prototype);
|
|
574
|
+
this.Type = opts.Type;
|
|
575
|
+
this.Message = opts.Message;
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
export class S3FilesMountFailureException extends __BaseException {
|
|
579
|
+
name = "S3FilesMountFailureException";
|
|
580
|
+
$fault = "client";
|
|
581
|
+
Type;
|
|
582
|
+
Message;
|
|
583
|
+
constructor(opts) {
|
|
584
|
+
super({
|
|
585
|
+
name: "S3FilesMountFailureException",
|
|
586
|
+
$fault: "client",
|
|
587
|
+
...opts,
|
|
588
|
+
});
|
|
589
|
+
Object.setPrototypeOf(this, S3FilesMountFailureException.prototype);
|
|
590
|
+
this.Type = opts.Type;
|
|
591
|
+
this.Message = opts.Message;
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
export class S3FilesMountTimeoutException extends __BaseException {
|
|
595
|
+
name = "S3FilesMountTimeoutException";
|
|
596
|
+
$fault = "client";
|
|
597
|
+
Type;
|
|
598
|
+
Message;
|
|
599
|
+
constructor(opts) {
|
|
600
|
+
super({
|
|
601
|
+
name: "S3FilesMountTimeoutException",
|
|
602
|
+
$fault: "client",
|
|
603
|
+
...opts,
|
|
604
|
+
});
|
|
605
|
+
Object.setPrototypeOf(this, S3FilesMountTimeoutException.prototype);
|
|
606
|
+
this.Type = opts.Type;
|
|
607
|
+
this.Message = opts.Message;
|
|
608
|
+
}
|
|
609
|
+
}
|
|
562
610
|
export class SerializedRequestEntityTooLargeException extends __BaseException {
|
|
563
611
|
name = "SerializedRequestEntityTooLargeException";
|
|
564
612
|
$fault = "client";
|
|
@@ -579,6 +579,9 @@ const _SDERt = "StopDurableExecutionResponse";
|
|
|
579
579
|
const _SE = "ServiceException";
|
|
580
580
|
const _SET = "ScheduledEndTimestamp";
|
|
581
581
|
const _SFD = "StepFailedDetails";
|
|
582
|
+
const _SFMCE = "S3FilesMountConnectivityException";
|
|
583
|
+
const _SFMFE = "S3FilesMountFailureException";
|
|
584
|
+
const _SFMTE = "S3FilesMountTimeoutException";
|
|
582
585
|
const _SGI = "SecurityGroupIds";
|
|
583
586
|
const _SI = "StatementId";
|
|
584
587
|
const _SIPALRE = "SubnetIPAddressLimitReachedException";
|
|
@@ -713,7 +716,7 @@ const _st = "streaming";
|
|
|
713
716
|
const _tK = "tagKeys";
|
|
714
717
|
const n0 = "com.amazonaws.lambda";
|
|
715
718
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
716
|
-
import { CallbackTimeoutException, CapacityProviderLimitExceededException, CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, DurableExecutionAlreadyStartedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, NoPublishedVersionException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, SerializedRequestEntityTooLargeException, ServiceException, SnapStartException, SnapStartNotReadyException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException, } from "../models/errors";
|
|
719
|
+
import { CallbackTimeoutException, CapacityProviderLimitExceededException, CodeSigningConfigNotFoundException, CodeStorageExceededException, CodeVerificationFailedException, DurableExecutionAlreadyStartedException, EC2AccessDeniedException, EC2ThrottledException, EC2UnexpectedException, EFSIOException, EFSMountConnectivityException, EFSMountFailureException, EFSMountTimeoutException, ENILimitReachedException, FunctionVersionsPerCapacityProviderLimitExceededException, InvalidCodeSignatureException, InvalidParameterValueException, InvalidRequestContentException, InvalidRuntimeException, InvalidSecurityGroupIDException, InvalidSubnetIDException, InvalidZipFileException, KMSAccessDeniedException, KMSDisabledException, KMSInvalidStateException, KMSNotFoundException, NoPublishedVersionException, PolicyLengthExceededException, PreconditionFailedException, ProvisionedConcurrencyConfigNotFoundException, RecursiveInvocationException, RequestTooLargeException, ResourceConflictException, ResourceInUseException, ResourceNotFoundException, ResourceNotReadyException, S3FilesMountConnectivityException, S3FilesMountFailureException, S3FilesMountTimeoutException, SerializedRequestEntityTooLargeException, ServiceException, SnapStartException, SnapStartNotReadyException, SnapStartTimeoutException, SubnetIPAddressLimitReachedException, TooManyRequestsException, UnsupportedMediaTypeException, } from "../models/errors";
|
|
717
720
|
import { LambdaServiceException } from "../models/LambdaServiceException";
|
|
718
721
|
const _s_registry = TypeRegistry.for(_s);
|
|
719
722
|
export var LambdaServiceException$ = [-3, _s, "LambdaServiceException", 0, [], []];
|
|
@@ -935,6 +938,24 @@ export var ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
|
935
938
|
[0, 0]
|
|
936
939
|
];
|
|
937
940
|
n0_registry.registerError(ResourceNotReadyException$, ResourceNotReadyException);
|
|
941
|
+
export var S3FilesMountConnectivityException$ = [-3, n0, _SFMCE,
|
|
942
|
+
{ [_e]: _c, [_hE]: 408 },
|
|
943
|
+
[_T, _M],
|
|
944
|
+
[0, 0]
|
|
945
|
+
];
|
|
946
|
+
n0_registry.registerError(S3FilesMountConnectivityException$, S3FilesMountConnectivityException);
|
|
947
|
+
export var S3FilesMountFailureException$ = [-3, n0, _SFMFE,
|
|
948
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
949
|
+
[_T, _M],
|
|
950
|
+
[0, 0]
|
|
951
|
+
];
|
|
952
|
+
n0_registry.registerError(S3FilesMountFailureException$, S3FilesMountFailureException);
|
|
953
|
+
export var S3FilesMountTimeoutException$ = [-3, n0, _SFMTE,
|
|
954
|
+
{ [_e]: _c, [_hE]: 408 },
|
|
955
|
+
[_T, _M],
|
|
956
|
+
[0, 0]
|
|
957
|
+
];
|
|
958
|
+
n0_registry.registerError(S3FilesMountTimeoutException$, S3FilesMountTimeoutException);
|
|
938
959
|
export var SerializedRequestEntityTooLargeException$ = [-3, n0, _SRETLE,
|
|
939
960
|
{ [_e]: _c, [_hE]: 413 },
|
|
940
961
|
[_T, _m],
|
|
@@ -153,6 +153,15 @@ declare const InvokeCommand_base: {
|
|
|
153
153
|
* @throws {@link ResourceNotReadyException} (server fault)
|
|
154
154
|
* <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
|
|
155
155
|
*
|
|
156
|
+
* @throws {@link S3FilesMountConnectivityException} (client fault)
|
|
157
|
+
* <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
|
|
158
|
+
*
|
|
159
|
+
* @throws {@link S3FilesMountFailureException} (client fault)
|
|
160
|
+
* <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
|
|
161
|
+
*
|
|
162
|
+
* @throws {@link S3FilesMountTimeoutException} (client fault)
|
|
163
|
+
* <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
|
|
164
|
+
*
|
|
156
165
|
* @throws {@link SerializedRequestEntityTooLargeException} (client fault)
|
|
157
166
|
* <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
|
|
158
167
|
*
|
|
@@ -149,6 +149,15 @@ declare const InvokeWithResponseStreamCommand_base: {
|
|
|
149
149
|
* @throws {@link ResourceNotReadyException} (server fault)
|
|
150
150
|
* <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
|
|
151
151
|
*
|
|
152
|
+
* @throws {@link S3FilesMountConnectivityException} (client fault)
|
|
153
|
+
* <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
|
|
154
|
+
*
|
|
155
|
+
* @throws {@link S3FilesMountFailureException} (client fault)
|
|
156
|
+
* <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
|
|
157
|
+
*
|
|
158
|
+
* @throws {@link S3FilesMountTimeoutException} (client fault)
|
|
159
|
+
* <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
|
|
160
|
+
*
|
|
152
161
|
* @throws {@link SerializedRequestEntityTooLargeException} (client fault)
|
|
153
162
|
* <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
|
|
154
163
|
*
|
|
@@ -549,6 +549,72 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
549
549
|
*/
|
|
550
550
|
constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
|
|
551
551
|
}
|
|
552
|
+
/**
|
|
553
|
+
* <p>The Lambda function couldn't make a network connection to the configured S3 Files access point.</p>
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
556
|
+
export declare class S3FilesMountConnectivityException extends __BaseException {
|
|
557
|
+
readonly name: "S3FilesMountConnectivityException";
|
|
558
|
+
readonly $fault: "client";
|
|
559
|
+
/**
|
|
560
|
+
* <p>The exception type.</p>
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
563
|
+
Type?: string | undefined;
|
|
564
|
+
/**
|
|
565
|
+
* <p>The exception message.</p>
|
|
566
|
+
* @public
|
|
567
|
+
*/
|
|
568
|
+
Message?: string | undefined;
|
|
569
|
+
/**
|
|
570
|
+
* @internal
|
|
571
|
+
*/
|
|
572
|
+
constructor(opts: __ExceptionOptionType<S3FilesMountConnectivityException, __BaseException>);
|
|
573
|
+
}
|
|
574
|
+
/**
|
|
575
|
+
* <p>The Lambda function couldn't mount the configured S3 Files access point due to a permission or configuration issue.</p>
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
578
|
+
export declare class S3FilesMountFailureException extends __BaseException {
|
|
579
|
+
readonly name: "S3FilesMountFailureException";
|
|
580
|
+
readonly $fault: "client";
|
|
581
|
+
/**
|
|
582
|
+
* <p>The exception type.</p>
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
Type?: string | undefined;
|
|
586
|
+
/**
|
|
587
|
+
* <p>The exception message.</p>
|
|
588
|
+
* @public
|
|
589
|
+
*/
|
|
590
|
+
Message?: string | undefined;
|
|
591
|
+
/**
|
|
592
|
+
* @internal
|
|
593
|
+
*/
|
|
594
|
+
constructor(opts: __ExceptionOptionType<S3FilesMountFailureException, __BaseException>);
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* <p>The Lambda function made a network connection to the configured S3 Files access point, but the mount operation timed out.</p>
|
|
598
|
+
* @public
|
|
599
|
+
*/
|
|
600
|
+
export declare class S3FilesMountTimeoutException extends __BaseException {
|
|
601
|
+
readonly name: "S3FilesMountTimeoutException";
|
|
602
|
+
readonly $fault: "client";
|
|
603
|
+
/**
|
|
604
|
+
* <p>The exception type.</p>
|
|
605
|
+
* @public
|
|
606
|
+
*/
|
|
607
|
+
Type?: string | undefined;
|
|
608
|
+
/**
|
|
609
|
+
* <p>The exception message.</p>
|
|
610
|
+
* @public
|
|
611
|
+
*/
|
|
612
|
+
Message?: string | undefined;
|
|
613
|
+
/**
|
|
614
|
+
* @internal
|
|
615
|
+
*/
|
|
616
|
+
constructor(opts: __ExceptionOptionType<S3FilesMountTimeoutException, __BaseException>);
|
|
617
|
+
}
|
|
552
618
|
/**
|
|
553
619
|
* <p>The request payload exceeded the maximum allowed size for serialized request entities.</p>
|
|
554
620
|
* @public
|
|
@@ -2102,12 +2102,12 @@ export interface EphemeralStorage {
|
|
|
2102
2102
|
Size: number | undefined;
|
|
2103
2103
|
}
|
|
2104
2104
|
/**
|
|
2105
|
-
* <p>Details about the connection between a Lambda function and an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
|
|
2105
|
+
* <p>Details about the connection between a Lambda function and an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a> or an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon S3 Files file system</a>.</p>
|
|
2106
2106
|
* @public
|
|
2107
2107
|
*/
|
|
2108
2108
|
export interface FileSystemConfig {
|
|
2109
2109
|
/**
|
|
2110
|
-
* <p>The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.</p>
|
|
2110
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon EFS or Amazon S3 Files access point that provides access to the file system.</p>
|
|
2111
2111
|
* @public
|
|
2112
2112
|
*/
|
|
2113
2113
|
Arn: string | undefined;
|
|
@@ -2308,7 +2308,7 @@ export interface CreateFunctionRequest {
|
|
|
2308
2308
|
*/
|
|
2309
2309
|
Layers?: string[] | undefined;
|
|
2310
2310
|
/**
|
|
2311
|
-
* <p>Connection settings for an Amazon EFS file system.</p>
|
|
2311
|
+
* <p>Connection settings for an Amazon EFS file system or an Amazon S3 Files file system.</p>
|
|
2312
2312
|
* @public
|
|
2313
2313
|
*/
|
|
2314
2314
|
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
@@ -2674,7 +2674,7 @@ export interface FunctionConfiguration {
|
|
|
2674
2674
|
*/
|
|
2675
2675
|
LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | undefined;
|
|
2676
2676
|
/**
|
|
2677
|
-
* <p>Connection settings for an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
|
|
2677
|
+
* <p>Connection settings for an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a> or an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon S3 Files file system</a>.</p>
|
|
2678
2678
|
* @public
|
|
2679
2679
|
*/
|
|
2680
2680
|
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
@@ -3962,7 +3962,7 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
3962
3962
|
*/
|
|
3963
3963
|
Layers?: string[] | undefined;
|
|
3964
3964
|
/**
|
|
3965
|
-
* <p>Connection settings for an Amazon EFS file system.</p>
|
|
3965
|
+
* <p>Connection settings for an Amazon EFS file system or an Amazon S3 Files file system.</p>
|
|
3966
3966
|
* @public
|
|
3967
3967
|
*/
|
|
3968
3968
|
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
@@ -5494,7 +5494,7 @@ export interface ListDurableExecutionsByFunctionRequest {
|
|
|
5494
5494
|
*/
|
|
5495
5495
|
Qualifier?: string | undefined;
|
|
5496
5496
|
/**
|
|
5497
|
-
* <p>Filter executions by name. Only executions with names that
|
|
5497
|
+
* <p>Filter executions by name. Only executions with names that matches this string are returned.</p>
|
|
5498
5498
|
* @public
|
|
5499
5499
|
*/
|
|
5500
5500
|
DurableExecutionName?: string | undefined;
|
|
@@ -37,6 +37,9 @@ export declare var ResourceConflictException$: StaticErrorSchema;
|
|
|
37
37
|
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
38
38
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
39
39
|
export declare var ResourceNotReadyException$: StaticErrorSchema;
|
|
40
|
+
export declare var S3FilesMountConnectivityException$: StaticErrorSchema;
|
|
41
|
+
export declare var S3FilesMountFailureException$: StaticErrorSchema;
|
|
42
|
+
export declare var S3FilesMountTimeoutException$: StaticErrorSchema;
|
|
40
43
|
export declare var SerializedRequestEntityTooLargeException$: StaticErrorSchema;
|
|
41
44
|
export declare var ServiceException$: StaticErrorSchema;
|
|
42
45
|
export declare var SnapStartException$: StaticErrorSchema;
|
|
@@ -331,6 +331,36 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
331
331
|
opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
|
|
332
332
|
);
|
|
333
333
|
}
|
|
334
|
+
export declare class S3FilesMountConnectivityException extends __BaseException {
|
|
335
|
+
readonly name: "S3FilesMountConnectivityException";
|
|
336
|
+
readonly $fault: "client";
|
|
337
|
+
Type?: string | undefined;
|
|
338
|
+
Message?: string | undefined;
|
|
339
|
+
constructor(
|
|
340
|
+
opts: __ExceptionOptionType<
|
|
341
|
+
S3FilesMountConnectivityException,
|
|
342
|
+
__BaseException
|
|
343
|
+
>
|
|
344
|
+
);
|
|
345
|
+
}
|
|
346
|
+
export declare class S3FilesMountFailureException extends __BaseException {
|
|
347
|
+
readonly name: "S3FilesMountFailureException";
|
|
348
|
+
readonly $fault: "client";
|
|
349
|
+
Type?: string | undefined;
|
|
350
|
+
Message?: string | undefined;
|
|
351
|
+
constructor(
|
|
352
|
+
opts: __ExceptionOptionType<S3FilesMountFailureException, __BaseException>
|
|
353
|
+
);
|
|
354
|
+
}
|
|
355
|
+
export declare class S3FilesMountTimeoutException extends __BaseException {
|
|
356
|
+
readonly name: "S3FilesMountTimeoutException";
|
|
357
|
+
readonly $fault: "client";
|
|
358
|
+
Type?: string | undefined;
|
|
359
|
+
Message?: string | undefined;
|
|
360
|
+
constructor(
|
|
361
|
+
opts: __ExceptionOptionType<S3FilesMountTimeoutException, __BaseException>
|
|
362
|
+
);
|
|
363
|
+
}
|
|
334
364
|
export declare class SerializedRequestEntityTooLargeException extends __BaseException {
|
|
335
365
|
readonly name: "SerializedRequestEntityTooLargeException";
|
|
336
366
|
readonly $fault: "client";
|
|
@@ -42,6 +42,9 @@ export declare var ResourceConflictException$: StaticErrorSchema;
|
|
|
42
42
|
export declare var ResourceInUseException$: StaticErrorSchema;
|
|
43
43
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
44
44
|
export declare var ResourceNotReadyException$: StaticErrorSchema;
|
|
45
|
+
export declare var S3FilesMountConnectivityException$: StaticErrorSchema;
|
|
46
|
+
export declare var S3FilesMountFailureException$: StaticErrorSchema;
|
|
47
|
+
export declare var S3FilesMountTimeoutException$: StaticErrorSchema;
|
|
45
48
|
export declare var SerializedRequestEntityTooLargeException$: StaticErrorSchema;
|
|
46
49
|
export declare var ServiceException$: StaticErrorSchema;
|
|
47
50
|
export declare var SnapStartException$: StaticErrorSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lambda",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lambda Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1026.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lambda",
|
|
@@ -23,47 +23,47 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
34
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
37
|
-
"@smithy/config-resolver": "^4.4.
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
39
|
-
"@smithy/eventstream-serde-browser": "^4.2.
|
|
40
|
-
"@smithy/eventstream-serde-config-resolver": "^4.3.
|
|
41
|
-
"@smithy/eventstream-serde-node": "^4.2.
|
|
42
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
43
|
-
"@smithy/hash-node": "^4.2.
|
|
44
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
45
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
46
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
47
|
-
"@smithy/middleware-retry": "^4.
|
|
48
|
-
"@smithy/middleware-serde": "^4.2.
|
|
49
|
-
"@smithy/middleware-stack": "^4.2.
|
|
50
|
-
"@smithy/node-config-provider": "^4.3.
|
|
51
|
-
"@smithy/node-http-handler": "^4.5.
|
|
52
|
-
"@smithy/protocol-http": "^5.3.
|
|
53
|
-
"@smithy/smithy-client": "^4.12.
|
|
54
|
-
"@smithy/types": "^4.
|
|
55
|
-
"@smithy/url-parser": "^4.2.
|
|
26
|
+
"@aws-sdk/core": "^3.973.27",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.30",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.9",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.9",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.10",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.29",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.11",
|
|
33
|
+
"@aws-sdk/types": "^3.973.7",
|
|
34
|
+
"@aws-sdk/util-endpoints": "^3.996.6",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.9",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.15",
|
|
37
|
+
"@smithy/config-resolver": "^4.4.14",
|
|
38
|
+
"@smithy/core": "^3.23.14",
|
|
39
|
+
"@smithy/eventstream-serde-browser": "^4.2.13",
|
|
40
|
+
"@smithy/eventstream-serde-config-resolver": "^4.3.13",
|
|
41
|
+
"@smithy/eventstream-serde-node": "^4.2.13",
|
|
42
|
+
"@smithy/fetch-http-handler": "^5.3.16",
|
|
43
|
+
"@smithy/hash-node": "^4.2.13",
|
|
44
|
+
"@smithy/invalid-dependency": "^4.2.13",
|
|
45
|
+
"@smithy/middleware-content-length": "^4.2.13",
|
|
46
|
+
"@smithy/middleware-endpoint": "^4.4.29",
|
|
47
|
+
"@smithy/middleware-retry": "^4.5.0",
|
|
48
|
+
"@smithy/middleware-serde": "^4.2.17",
|
|
49
|
+
"@smithy/middleware-stack": "^4.2.13",
|
|
50
|
+
"@smithy/node-config-provider": "^4.3.13",
|
|
51
|
+
"@smithy/node-http-handler": "^4.5.2",
|
|
52
|
+
"@smithy/protocol-http": "^5.3.13",
|
|
53
|
+
"@smithy/smithy-client": "^4.12.9",
|
|
54
|
+
"@smithy/types": "^4.14.0",
|
|
55
|
+
"@smithy/url-parser": "^4.2.13",
|
|
56
56
|
"@smithy/util-base64": "^4.3.2",
|
|
57
57
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
58
58
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
59
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
60
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
61
|
-
"@smithy/util-endpoints": "^3.3.
|
|
62
|
-
"@smithy/util-middleware": "^4.2.
|
|
63
|
-
"@smithy/util-retry": "^4.
|
|
64
|
-
"@smithy/util-stream": "^4.5.
|
|
59
|
+
"@smithy/util-defaults-mode-browser": "^4.3.45",
|
|
60
|
+
"@smithy/util-defaults-mode-node": "^4.2.49",
|
|
61
|
+
"@smithy/util-endpoints": "^3.3.4",
|
|
62
|
+
"@smithy/util-middleware": "^4.2.13",
|
|
63
|
+
"@smithy/util-retry": "^4.3.0",
|
|
64
|
+
"@smithy/util-stream": "^4.5.22",
|
|
65
65
|
"@smithy/util-utf8": "^4.2.2",
|
|
66
|
-
"@smithy/util-waiter": "^4.2.
|
|
66
|
+
"@smithy/util-waiter": "^4.2.15",
|
|
67
67
|
"tslib": "^2.6.2"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|