@effect-aws/client-lambda 1.4.0 → 1.5.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/CHANGELOG.md +6 -0
- package/README.md +82 -1
- package/lib/LambdaService.d.ts +143 -137
- package/lib/LambdaService.js +5 -2
- package/lib/esm/LambdaService.js +5 -2
- package/package.json +6 -6
- package/vitest.config.ts +3 -0
package/lib/LambdaService.d.ts
CHANGED
|
@@ -2,355 +2,361 @@
|
|
|
2
2
|
* @since 1.0.0
|
|
3
3
|
*/
|
|
4
4
|
import { type AddLayerVersionPermissionCommandInput, type AddLayerVersionPermissionCommandOutput, type AddPermissionCommandInput, type AddPermissionCommandOutput, type CreateAliasCommandInput, type CreateAliasCommandOutput, type CreateCodeSigningConfigCommandInput, type CreateCodeSigningConfigCommandOutput, type CreateEventSourceMappingCommandInput, type CreateEventSourceMappingCommandOutput, type CreateFunctionCommandInput, type CreateFunctionCommandOutput, type CreateFunctionUrlConfigCommandInput, type CreateFunctionUrlConfigCommandOutput, type DeleteAliasCommandInput, type DeleteAliasCommandOutput, type DeleteCodeSigningConfigCommandInput, type DeleteCodeSigningConfigCommandOutput, type DeleteEventSourceMappingCommandInput, type DeleteEventSourceMappingCommandOutput, type DeleteFunctionCommandInput, type DeleteFunctionCommandOutput, type DeleteFunctionCodeSigningConfigCommandInput, type DeleteFunctionCodeSigningConfigCommandOutput, type DeleteFunctionConcurrencyCommandInput, type DeleteFunctionConcurrencyCommandOutput, type DeleteFunctionEventInvokeConfigCommandInput, type DeleteFunctionEventInvokeConfigCommandOutput, type DeleteFunctionUrlConfigCommandInput, type DeleteFunctionUrlConfigCommandOutput, type DeleteLayerVersionCommandInput, type DeleteLayerVersionCommandOutput, type DeleteProvisionedConcurrencyConfigCommandInput, type DeleteProvisionedConcurrencyConfigCommandOutput, type GetAccountSettingsCommandInput, type GetAccountSettingsCommandOutput, type GetAliasCommandInput, type GetAliasCommandOutput, type GetCodeSigningConfigCommandInput, type GetCodeSigningConfigCommandOutput, type GetEventSourceMappingCommandInput, type GetEventSourceMappingCommandOutput, type GetFunctionCommandInput, type GetFunctionCommandOutput, type GetFunctionCodeSigningConfigCommandInput, type GetFunctionCodeSigningConfigCommandOutput, type GetFunctionConcurrencyCommandInput, type GetFunctionConcurrencyCommandOutput, type GetFunctionConfigurationCommandInput, type GetFunctionConfigurationCommandOutput, type GetFunctionEventInvokeConfigCommandInput, type GetFunctionEventInvokeConfigCommandOutput, type GetFunctionRecursionConfigCommandInput, type GetFunctionRecursionConfigCommandOutput, type GetFunctionUrlConfigCommandInput, type GetFunctionUrlConfigCommandOutput, type GetLayerVersionCommandInput, type GetLayerVersionCommandOutput, type GetLayerVersionByArnCommandInput, type GetLayerVersionByArnCommandOutput, type GetLayerVersionPolicyCommandInput, type GetLayerVersionPolicyCommandOutput, type GetPolicyCommandInput, type GetPolicyCommandOutput, type GetProvisionedConcurrencyConfigCommandInput, type GetProvisionedConcurrencyConfigCommandOutput, type GetRuntimeManagementConfigCommandInput, type GetRuntimeManagementConfigCommandOutput, type InvokeCommandInput, type InvokeCommandOutput, type InvokeAsyncCommandInput, type InvokeAsyncCommandOutput, type InvokeWithResponseStreamCommandInput, type InvokeWithResponseStreamCommandOutput, type ListAliasesCommandInput, type ListAliasesCommandOutput, type ListCodeSigningConfigsCommandInput, type ListCodeSigningConfigsCommandOutput, type ListEventSourceMappingsCommandInput, type ListEventSourceMappingsCommandOutput, type ListFunctionEventInvokeConfigsCommandInput, type ListFunctionEventInvokeConfigsCommandOutput, type ListFunctionsCommandInput, type ListFunctionsCommandOutput, type ListFunctionsByCodeSigningConfigCommandInput, type ListFunctionsByCodeSigningConfigCommandOutput, type ListFunctionUrlConfigsCommandInput, type ListFunctionUrlConfigsCommandOutput, type ListLayersCommandInput, type ListLayersCommandOutput, type ListLayerVersionsCommandInput, type ListLayerVersionsCommandOutput, type ListProvisionedConcurrencyConfigsCommandInput, type ListProvisionedConcurrencyConfigsCommandOutput, type ListTagsCommandInput, type ListTagsCommandOutput, type ListVersionsByFunctionCommandInput, type ListVersionsByFunctionCommandOutput, type PublishLayerVersionCommandInput, type PublishLayerVersionCommandOutput, type PublishVersionCommandInput, type PublishVersionCommandOutput, type PutFunctionCodeSigningConfigCommandInput, type PutFunctionCodeSigningConfigCommandOutput, type PutFunctionConcurrencyCommandInput, type PutFunctionConcurrencyCommandOutput, type PutFunctionEventInvokeConfigCommandInput, type PutFunctionEventInvokeConfigCommandOutput, type PutFunctionRecursionConfigCommandInput, type PutFunctionRecursionConfigCommandOutput, type PutProvisionedConcurrencyConfigCommandInput, type PutProvisionedConcurrencyConfigCommandOutput, type PutRuntimeManagementConfigCommandInput, type PutRuntimeManagementConfigCommandOutput, type RemoveLayerVersionPermissionCommandInput, type RemoveLayerVersionPermissionCommandOutput, type RemovePermissionCommandInput, type RemovePermissionCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAliasCommandInput, type UpdateAliasCommandOutput, type UpdateCodeSigningConfigCommandInput, type UpdateCodeSigningConfigCommandOutput, type UpdateEventSourceMappingCommandInput, type UpdateEventSourceMappingCommandOutput, type UpdateFunctionCodeCommandInput, type UpdateFunctionCodeCommandOutput, type UpdateFunctionConfigurationCommandInput, type UpdateFunctionConfigurationCommandOutput, type UpdateFunctionEventInvokeConfigCommandInput, type UpdateFunctionEventInvokeConfigCommandOutput, type UpdateFunctionUrlConfigCommandInput, type UpdateFunctionUrlConfigCommandOutput } from "@aws-sdk/client-lambda";
|
|
5
|
-
import { type HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
6
5
|
import { Effect, Layer } from "effect";
|
|
7
6
|
import { CodeSigningConfigNotFoundError, CodeStorageExceededError, CodeVerificationFailedError, EC2AccessDeniedError, EC2ThrottledError, EC2UnexpectedError, EFSIOError, EFSMountConnectivityError, EFSMountFailureError, EFSMountTimeoutError, ENILimitReachedError, InvalidCodeSignatureError, InvalidParameterValueError, InvalidRequestContentError, InvalidRuntimeError, InvalidSecurityGroupIDError, InvalidSubnetIDError, InvalidZipFileError, KMSAccessDeniedError, KMSDisabledError, KMSInvalidStateError, KMSNotFoundError, PolicyLengthExceededError, PreconditionFailedError, ProvisionedConcurrencyConfigNotFoundError, RecursiveInvocationError, RequestTooLargeError, ResourceConflictError, ResourceInUseError, ResourceNotFoundError, ResourceNotReadyError, ServiceError, SnapStartError, SnapStartNotReadyError, SnapStartTimeoutError, SubnetIPAddressLimitReachedError, TooManyRequestsError, UnsupportedMediaTypeError, SdkError } from "./Errors";
|
|
8
7
|
import { LambdaClientInstance } from "./LambdaClientInstance";
|
|
8
|
+
interface HttpHandlerOptions {
|
|
9
|
+
/**
|
|
10
|
+
* The maximum time in milliseconds that the connection phase of a request
|
|
11
|
+
* may take before the connection attempt is abandoned.
|
|
12
|
+
*/
|
|
13
|
+
requestTimeout?: number;
|
|
14
|
+
}
|
|
9
15
|
interface LambdaService$ {
|
|
10
16
|
readonly _: unique symbol;
|
|
11
17
|
/**
|
|
12
18
|
* @see {@link AddLayerVersionPermissionCommand}
|
|
13
19
|
*/
|
|
14
|
-
addLayerVersionPermission(args: AddLayerVersionPermissionCommandInput, options?:
|
|
20
|
+
addLayerVersionPermission(args: AddLayerVersionPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddLayerVersionPermissionCommandOutput, SdkError | InvalidParameterValueError | PolicyLengthExceededError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
15
21
|
/**
|
|
16
22
|
* @see {@link AddPermissionCommand}
|
|
17
23
|
*/
|
|
18
|
-
addPermission(args: AddPermissionCommandInput, options?:
|
|
24
|
+
addPermission(args: AddPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddPermissionCommandOutput, SdkError | InvalidParameterValueError | PolicyLengthExceededError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
19
25
|
/**
|
|
20
26
|
* @see {@link CreateAliasCommand}
|
|
21
27
|
*/
|
|
22
|
-
createAlias(args: CreateAliasCommandInput, options?:
|
|
28
|
+
createAlias(args: CreateAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAliasCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
23
29
|
/**
|
|
24
30
|
* @see {@link CreateCodeSigningConfigCommand}
|
|
25
31
|
*/
|
|
26
|
-
createCodeSigningConfig(args: CreateCodeSigningConfigCommandInput, options?:
|
|
32
|
+
createCodeSigningConfig(args: CreateCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ServiceError>;
|
|
27
33
|
/**
|
|
28
34
|
* @see {@link CreateEventSourceMappingCommand}
|
|
29
35
|
*/
|
|
30
|
-
createEventSourceMapping(args: CreateEventSourceMappingCommandInput, options?:
|
|
36
|
+
createEventSourceMapping(args: CreateEventSourceMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
31
37
|
/**
|
|
32
38
|
* @see {@link CreateFunctionCommand}
|
|
33
39
|
*/
|
|
34
|
-
createFunction(args: CreateFunctionCommandInput, options?:
|
|
40
|
+
createFunction(args: CreateFunctionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateFunctionCommandOutput, SdkError | CodeSigningConfigNotFoundError | CodeStorageExceededError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
35
41
|
/**
|
|
36
42
|
* @see {@link CreateFunctionUrlConfigCommand}
|
|
37
43
|
*/
|
|
38
|
-
createFunctionUrlConfig(args: CreateFunctionUrlConfigCommandInput, options?:
|
|
44
|
+
createFunctionUrlConfig(args: CreateFunctionUrlConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateFunctionUrlConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
39
45
|
/**
|
|
40
46
|
* @see {@link DeleteAliasCommand}
|
|
41
47
|
*/
|
|
42
|
-
deleteAlias(args: DeleteAliasCommandInput, options?:
|
|
48
|
+
deleteAlias(args: DeleteAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAliasCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ServiceError | TooManyRequestsError>;
|
|
43
49
|
/**
|
|
44
50
|
* @see {@link DeleteCodeSigningConfigCommand}
|
|
45
51
|
*/
|
|
46
|
-
deleteCodeSigningConfig(args: DeleteCodeSigningConfigCommandInput, options?:
|
|
52
|
+
deleteCodeSigningConfig(args: DeleteCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError>;
|
|
47
53
|
/**
|
|
48
54
|
* @see {@link DeleteEventSourceMappingCommand}
|
|
49
55
|
*/
|
|
50
|
-
deleteEventSourceMapping(args: DeleteEventSourceMappingCommandInput, options?:
|
|
56
|
+
deleteEventSourceMapping(args: DeleteEventSourceMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceInUseError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
51
57
|
/**
|
|
52
58
|
* @see {@link DeleteFunctionCommand}
|
|
53
59
|
*/
|
|
54
|
-
deleteFunction(args: DeleteFunctionCommandInput, options?:
|
|
60
|
+
deleteFunction(args: DeleteFunctionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteFunctionCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
55
61
|
/**
|
|
56
62
|
* @see {@link DeleteFunctionCodeSigningConfigCommand}
|
|
57
63
|
*/
|
|
58
|
-
deleteFunctionCodeSigningConfig(args: DeleteFunctionCodeSigningConfigCommandInput, options?:
|
|
64
|
+
deleteFunctionCodeSigningConfig(args: DeleteFunctionCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteFunctionCodeSigningConfigCommandOutput, SdkError | CodeSigningConfigNotFoundError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
59
65
|
/**
|
|
60
66
|
* @see {@link DeleteFunctionConcurrencyCommand}
|
|
61
67
|
*/
|
|
62
|
-
deleteFunctionConcurrency(args: DeleteFunctionConcurrencyCommandInput, options?:
|
|
68
|
+
deleteFunctionConcurrency(args: DeleteFunctionConcurrencyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteFunctionConcurrencyCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
63
69
|
/**
|
|
64
70
|
* @see {@link DeleteFunctionEventInvokeConfigCommand}
|
|
65
71
|
*/
|
|
66
|
-
deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, options?:
|
|
72
|
+
deleteFunctionEventInvokeConfig(args: DeleteFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
67
73
|
/**
|
|
68
74
|
* @see {@link DeleteFunctionUrlConfigCommand}
|
|
69
75
|
*/
|
|
70
|
-
deleteFunctionUrlConfig(args: DeleteFunctionUrlConfigCommandInput, options?:
|
|
76
|
+
deleteFunctionUrlConfig(args: DeleteFunctionUrlConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteFunctionUrlConfigCommandOutput, SdkError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
71
77
|
/**
|
|
72
78
|
* @see {@link DeleteLayerVersionCommand}
|
|
73
79
|
*/
|
|
74
|
-
deleteLayerVersion(args: DeleteLayerVersionCommandInput, options?:
|
|
80
|
+
deleteLayerVersion(args: DeleteLayerVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteLayerVersionCommandOutput, SdkError | ServiceError | TooManyRequestsError>;
|
|
75
81
|
/**
|
|
76
82
|
* @see {@link DeleteProvisionedConcurrencyConfigCommand}
|
|
77
83
|
*/
|
|
78
|
-
deleteProvisionedConcurrencyConfig(args: DeleteProvisionedConcurrencyConfigCommandInput, options?:
|
|
84
|
+
deleteProvisionedConcurrencyConfig(args: DeleteProvisionedConcurrencyConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteProvisionedConcurrencyConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
79
85
|
/**
|
|
80
86
|
* @see {@link GetAccountSettingsCommand}
|
|
81
87
|
*/
|
|
82
|
-
getAccountSettings(args: GetAccountSettingsCommandInput, options?:
|
|
88
|
+
getAccountSettings(args: GetAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccountSettingsCommandOutput, SdkError | ServiceError | TooManyRequestsError>;
|
|
83
89
|
/**
|
|
84
90
|
* @see {@link GetAliasCommand}
|
|
85
91
|
*/
|
|
86
|
-
getAlias(args: GetAliasCommandInput, options?:
|
|
92
|
+
getAlias(args: GetAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAliasCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
87
93
|
/**
|
|
88
94
|
* @see {@link GetCodeSigningConfigCommand}
|
|
89
95
|
*/
|
|
90
|
-
getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options?:
|
|
96
|
+
getCodeSigningConfig(args: GetCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError>;
|
|
91
97
|
/**
|
|
92
98
|
* @see {@link GetEventSourceMappingCommand}
|
|
93
99
|
*/
|
|
94
|
-
getEventSourceMapping(args: GetEventSourceMappingCommandInput, options?:
|
|
100
|
+
getEventSourceMapping(args: GetEventSourceMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
95
101
|
/**
|
|
96
102
|
* @see {@link GetFunctionCommand}
|
|
97
103
|
*/
|
|
98
|
-
getFunction(args: GetFunctionCommandInput, options?:
|
|
104
|
+
getFunction(args: GetFunctionCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFunctionCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
99
105
|
/**
|
|
100
106
|
* @see {@link GetFunctionCodeSigningConfigCommand}
|
|
101
107
|
*/
|
|
102
|
-
getFunctionCodeSigningConfig(args: GetFunctionCodeSigningConfigCommandInput, options?:
|
|
108
|
+
getFunctionCodeSigningConfig(args: GetFunctionCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFunctionCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
103
109
|
/**
|
|
104
110
|
* @see {@link GetFunctionConcurrencyCommand}
|
|
105
111
|
*/
|
|
106
|
-
getFunctionConcurrency(args: GetFunctionConcurrencyCommandInput, options?:
|
|
112
|
+
getFunctionConcurrency(args: GetFunctionConcurrencyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFunctionConcurrencyCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
107
113
|
/**
|
|
108
114
|
* @see {@link GetFunctionConfigurationCommand}
|
|
109
115
|
*/
|
|
110
|
-
getFunctionConfiguration(args: GetFunctionConfigurationCommandInput, options?:
|
|
116
|
+
getFunctionConfiguration(args: GetFunctionConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFunctionConfigurationCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
111
117
|
/**
|
|
112
118
|
* @see {@link GetFunctionEventInvokeConfigCommand}
|
|
113
119
|
*/
|
|
114
|
-
getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, options?:
|
|
120
|
+
getFunctionEventInvokeConfig(args: GetFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
115
121
|
/**
|
|
116
122
|
* @see {@link GetFunctionRecursionConfigCommand}
|
|
117
123
|
*/
|
|
118
|
-
getFunctionRecursionConfig(args: GetFunctionRecursionConfigCommandInput, options?:
|
|
124
|
+
getFunctionRecursionConfig(args: GetFunctionRecursionConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFunctionRecursionConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
119
125
|
/**
|
|
120
126
|
* @see {@link GetFunctionUrlConfigCommand}
|
|
121
127
|
*/
|
|
122
|
-
getFunctionUrlConfig(args: GetFunctionUrlConfigCommandInput, options?:
|
|
128
|
+
getFunctionUrlConfig(args: GetFunctionUrlConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetFunctionUrlConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
123
129
|
/**
|
|
124
130
|
* @see {@link GetLayerVersionCommand}
|
|
125
131
|
*/
|
|
126
|
-
getLayerVersion(args: GetLayerVersionCommandInput, options?:
|
|
132
|
+
getLayerVersion(args: GetLayerVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetLayerVersionCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
127
133
|
/**
|
|
128
134
|
* @see {@link GetLayerVersionByArnCommand}
|
|
129
135
|
*/
|
|
130
|
-
getLayerVersionByArn(args: GetLayerVersionByArnCommandInput, options?:
|
|
136
|
+
getLayerVersionByArn(args: GetLayerVersionByArnCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetLayerVersionByArnCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
131
137
|
/**
|
|
132
138
|
* @see {@link GetLayerVersionPolicyCommand}
|
|
133
139
|
*/
|
|
134
|
-
getLayerVersionPolicy(args: GetLayerVersionPolicyCommandInput, options?:
|
|
140
|
+
getLayerVersionPolicy(args: GetLayerVersionPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetLayerVersionPolicyCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
135
141
|
/**
|
|
136
142
|
* @see {@link GetPolicyCommand}
|
|
137
143
|
*/
|
|
138
|
-
getPolicy(args: GetPolicyCommandInput, options?:
|
|
144
|
+
getPolicy(args: GetPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPolicyCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
139
145
|
/**
|
|
140
146
|
* @see {@link GetProvisionedConcurrencyConfigCommand}
|
|
141
147
|
*/
|
|
142
|
-
getProvisionedConcurrencyConfig(args: GetProvisionedConcurrencyConfigCommandInput, options?:
|
|
148
|
+
getProvisionedConcurrencyConfig(args: GetProvisionedConcurrencyConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetProvisionedConcurrencyConfigCommandOutput, SdkError | InvalidParameterValueError | ProvisionedConcurrencyConfigNotFoundError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
143
149
|
/**
|
|
144
150
|
* @see {@link GetRuntimeManagementConfigCommand}
|
|
145
151
|
*/
|
|
146
|
-
getRuntimeManagementConfig(args: GetRuntimeManagementConfigCommandInput, options?:
|
|
152
|
+
getRuntimeManagementConfig(args: GetRuntimeManagementConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetRuntimeManagementConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
147
153
|
/**
|
|
148
154
|
* @see {@link InvokeCommand}
|
|
149
155
|
*/
|
|
150
|
-
invoke(args: InvokeCommandInput, options?:
|
|
156
|
+
invoke(args: InvokeCommandInput, options?: HttpHandlerOptions): Effect.Effect<InvokeCommandOutput, SdkError | EC2AccessDeniedError | EC2ThrottledError | EC2UnexpectedError | EFSIOError | EFSMountConnectivityError | EFSMountFailureError | EFSMountTimeoutError | ENILimitReachedError | InvalidParameterValueError | InvalidRequestContentError | InvalidRuntimeError | InvalidSecurityGroupIDError | InvalidSubnetIDError | InvalidZipFileError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | RecursiveInvocationError | RequestTooLargeError | ResourceConflictError | ResourceNotFoundError | ResourceNotReadyError | ServiceError | SnapStartError | SnapStartNotReadyError | SnapStartTimeoutError | SubnetIPAddressLimitReachedError | TooManyRequestsError | UnsupportedMediaTypeError>;
|
|
151
157
|
/**
|
|
152
158
|
* @see {@link InvokeAsyncCommand}
|
|
153
159
|
*/
|
|
154
|
-
invokeAsync(args: InvokeAsyncCommandInput, options?:
|
|
160
|
+
invokeAsync(args: InvokeAsyncCommandInput, options?: HttpHandlerOptions): Effect.Effect<InvokeAsyncCommandOutput, SdkError | InvalidRequestContentError | InvalidRuntimeError | ResourceConflictError | ResourceNotFoundError | ServiceError>;
|
|
155
161
|
/**
|
|
156
162
|
* @see {@link InvokeWithResponseStreamCommand}
|
|
157
163
|
*/
|
|
158
|
-
invokeWithResponseStream(args: InvokeWithResponseStreamCommandInput, options?:
|
|
164
|
+
invokeWithResponseStream(args: InvokeWithResponseStreamCommandInput, options?: HttpHandlerOptions): Effect.Effect<InvokeWithResponseStreamCommandOutput, SdkError | EC2AccessDeniedError | EC2ThrottledError | EC2UnexpectedError | EFSIOError | EFSMountConnectivityError | EFSMountFailureError | EFSMountTimeoutError | ENILimitReachedError | InvalidParameterValueError | InvalidRequestContentError | InvalidRuntimeError | InvalidSecurityGroupIDError | InvalidSubnetIDError | InvalidZipFileError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | RecursiveInvocationError | RequestTooLargeError | ResourceConflictError | ResourceNotFoundError | ResourceNotReadyError | ServiceError | SnapStartError | SnapStartNotReadyError | SnapStartTimeoutError | SubnetIPAddressLimitReachedError | TooManyRequestsError | UnsupportedMediaTypeError>;
|
|
159
165
|
/**
|
|
160
166
|
* @see {@link ListAliasesCommand}
|
|
161
167
|
*/
|
|
162
|
-
listAliases(args: ListAliasesCommandInput, options?:
|
|
168
|
+
listAliases(args: ListAliasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAliasesCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
163
169
|
/**
|
|
164
170
|
* @see {@link ListCodeSigningConfigsCommand}
|
|
165
171
|
*/
|
|
166
|
-
listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options?:
|
|
172
|
+
listCodeSigningConfigs(args: ListCodeSigningConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCodeSigningConfigsCommandOutput, SdkError | InvalidParameterValueError | ServiceError>;
|
|
167
173
|
/**
|
|
168
174
|
* @see {@link ListEventSourceMappingsCommand}
|
|
169
175
|
*/
|
|
170
|
-
listEventSourceMappings(args: ListEventSourceMappingsCommandInput, options?:
|
|
176
|
+
listEventSourceMappings(args: ListEventSourceMappingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListEventSourceMappingsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
171
177
|
/**
|
|
172
178
|
* @see {@link ListFunctionEventInvokeConfigsCommand}
|
|
173
179
|
*/
|
|
174
|
-
listFunctionEventInvokeConfigs(args: ListFunctionEventInvokeConfigsCommandInput, options?:
|
|
180
|
+
listFunctionEventInvokeConfigs(args: ListFunctionEventInvokeConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFunctionEventInvokeConfigsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
175
181
|
/**
|
|
176
182
|
* @see {@link ListFunctionsCommand}
|
|
177
183
|
*/
|
|
178
|
-
listFunctions(args: ListFunctionsCommandInput, options?:
|
|
184
|
+
listFunctions(args: ListFunctionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFunctionsCommandOutput, SdkError | InvalidParameterValueError | ServiceError | TooManyRequestsError>;
|
|
179
185
|
/**
|
|
180
186
|
* @see {@link ListFunctionsByCodeSigningConfigCommand}
|
|
181
187
|
*/
|
|
182
|
-
listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, options?:
|
|
188
|
+
listFunctionsByCodeSigningConfig(args: ListFunctionsByCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFunctionsByCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError>;
|
|
183
189
|
/**
|
|
184
190
|
* @see {@link ListFunctionUrlConfigsCommand}
|
|
185
191
|
*/
|
|
186
|
-
listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options?:
|
|
192
|
+
listFunctionUrlConfigs(args: ListFunctionUrlConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListFunctionUrlConfigsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
187
193
|
/**
|
|
188
194
|
* @see {@link ListLayersCommand}
|
|
189
195
|
*/
|
|
190
|
-
listLayers(args: ListLayersCommandInput, options?:
|
|
196
|
+
listLayers(args: ListLayersCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListLayersCommandOutput, SdkError | InvalidParameterValueError | ServiceError | TooManyRequestsError>;
|
|
191
197
|
/**
|
|
192
198
|
* @see {@link ListLayerVersionsCommand}
|
|
193
199
|
*/
|
|
194
|
-
listLayerVersions(args: ListLayerVersionsCommandInput, options?:
|
|
200
|
+
listLayerVersions(args: ListLayerVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListLayerVersionsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
195
201
|
/**
|
|
196
202
|
* @see {@link ListProvisionedConcurrencyConfigsCommand}
|
|
197
203
|
*/
|
|
198
|
-
listProvisionedConcurrencyConfigs(args: ListProvisionedConcurrencyConfigsCommandInput, options?:
|
|
204
|
+
listProvisionedConcurrencyConfigs(args: ListProvisionedConcurrencyConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListProvisionedConcurrencyConfigsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
199
205
|
/**
|
|
200
206
|
* @see {@link ListTagsCommand}
|
|
201
207
|
*/
|
|
202
|
-
listTags(args: ListTagsCommandInput, options?:
|
|
208
|
+
listTags(args: ListTagsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
203
209
|
/**
|
|
204
210
|
* @see {@link ListVersionsByFunctionCommand}
|
|
205
211
|
*/
|
|
206
|
-
listVersionsByFunction(args: ListVersionsByFunctionCommandInput, options?:
|
|
212
|
+
listVersionsByFunction(args: ListVersionsByFunctionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVersionsByFunctionCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
207
213
|
/**
|
|
208
214
|
* @see {@link PublishLayerVersionCommand}
|
|
209
215
|
*/
|
|
210
|
-
publishLayerVersion(args: PublishLayerVersionCommandInput, options?:
|
|
216
|
+
publishLayerVersion(args: PublishLayerVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishLayerVersionCommandOutput, SdkError | CodeStorageExceededError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
211
217
|
/**
|
|
212
218
|
* @see {@link PublishVersionCommand}
|
|
213
219
|
*/
|
|
214
|
-
publishVersion(args: PublishVersionCommandInput, options?:
|
|
220
|
+
publishVersion(args: PublishVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishVersionCommandOutput, SdkError | CodeStorageExceededError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
215
221
|
/**
|
|
216
222
|
* @see {@link PutFunctionCodeSigningConfigCommand}
|
|
217
223
|
*/
|
|
218
|
-
putFunctionCodeSigningConfig(args: PutFunctionCodeSigningConfigCommandInput, options?:
|
|
224
|
+
putFunctionCodeSigningConfig(args: PutFunctionCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutFunctionCodeSigningConfigCommandOutput, SdkError | CodeSigningConfigNotFoundError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
219
225
|
/**
|
|
220
226
|
* @see {@link PutFunctionConcurrencyCommand}
|
|
221
227
|
*/
|
|
222
|
-
putFunctionConcurrency(args: PutFunctionConcurrencyCommandInput, options?:
|
|
228
|
+
putFunctionConcurrency(args: PutFunctionConcurrencyCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutFunctionConcurrencyCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
223
229
|
/**
|
|
224
230
|
* @see {@link PutFunctionEventInvokeConfigCommand}
|
|
225
231
|
*/
|
|
226
|
-
putFunctionEventInvokeConfig(args: PutFunctionEventInvokeConfigCommandInput, options?:
|
|
232
|
+
putFunctionEventInvokeConfig(args: PutFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
227
233
|
/**
|
|
228
234
|
* @see {@link PutFunctionRecursionConfigCommand}
|
|
229
235
|
*/
|
|
230
|
-
putFunctionRecursionConfig(args: PutFunctionRecursionConfigCommandInput, options?:
|
|
236
|
+
putFunctionRecursionConfig(args: PutFunctionRecursionConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutFunctionRecursionConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
231
237
|
/**
|
|
232
238
|
* @see {@link PutProvisionedConcurrencyConfigCommand}
|
|
233
239
|
*/
|
|
234
|
-
putProvisionedConcurrencyConfig(args: PutProvisionedConcurrencyConfigCommandInput, options?:
|
|
240
|
+
putProvisionedConcurrencyConfig(args: PutProvisionedConcurrencyConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutProvisionedConcurrencyConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
235
241
|
/**
|
|
236
242
|
* @see {@link PutRuntimeManagementConfigCommand}
|
|
237
243
|
*/
|
|
238
|
-
putRuntimeManagementConfig(args: PutRuntimeManagementConfigCommandInput, options?:
|
|
244
|
+
putRuntimeManagementConfig(args: PutRuntimeManagementConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<PutRuntimeManagementConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
239
245
|
/**
|
|
240
246
|
* @see {@link RemoveLayerVersionPermissionCommand}
|
|
241
247
|
*/
|
|
242
|
-
removeLayerVersionPermission(args: RemoveLayerVersionPermissionCommandInput, options?:
|
|
248
|
+
removeLayerVersionPermission(args: RemoveLayerVersionPermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemoveLayerVersionPermissionCommandOutput, SdkError | InvalidParameterValueError | PreconditionFailedError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
243
249
|
/**
|
|
244
250
|
* @see {@link RemovePermissionCommand}
|
|
245
251
|
*/
|
|
246
|
-
removePermission(args: RemovePermissionCommandInput, options?:
|
|
252
|
+
removePermission(args: RemovePermissionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemovePermissionCommandOutput, SdkError | InvalidParameterValueError | PreconditionFailedError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
247
253
|
/**
|
|
248
254
|
* @see {@link TagResourceCommand}
|
|
249
255
|
*/
|
|
250
|
-
tagResource(args: TagResourceCommandInput, options?:
|
|
256
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
251
257
|
/**
|
|
252
258
|
* @see {@link UntagResourceCommand}
|
|
253
259
|
*/
|
|
254
|
-
untagResource(args: UntagResourceCommandInput, options?:
|
|
260
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
255
261
|
/**
|
|
256
262
|
* @see {@link UpdateAliasCommand}
|
|
257
263
|
*/
|
|
258
|
-
updateAlias(args: UpdateAliasCommandInput, options?:
|
|
264
|
+
updateAlias(args: UpdateAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAliasCommandOutput, SdkError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
259
265
|
/**
|
|
260
266
|
* @see {@link UpdateCodeSigningConfigCommand}
|
|
261
267
|
*/
|
|
262
|
-
updateCodeSigningConfig(args: UpdateCodeSigningConfigCommandInput, options?:
|
|
268
|
+
updateCodeSigningConfig(args: UpdateCodeSigningConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCodeSigningConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceNotFoundError | ServiceError>;
|
|
263
269
|
/**
|
|
264
270
|
* @see {@link UpdateEventSourceMappingCommand}
|
|
265
271
|
*/
|
|
266
|
-
updateEventSourceMapping(args: UpdateEventSourceMappingCommandInput, options?:
|
|
272
|
+
updateEventSourceMapping(args: UpdateEventSourceMappingCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateEventSourceMappingCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceInUseError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
267
273
|
/**
|
|
268
274
|
* @see {@link UpdateFunctionCodeCommand}
|
|
269
275
|
*/
|
|
270
|
-
updateFunctionCode(args: UpdateFunctionCodeCommandInput, options?:
|
|
276
|
+
updateFunctionCode(args: UpdateFunctionCodeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateFunctionCodeCommandOutput, SdkError | CodeSigningConfigNotFoundError | CodeStorageExceededError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
271
277
|
/**
|
|
272
278
|
* @see {@link UpdateFunctionConfigurationCommand}
|
|
273
279
|
*/
|
|
274
|
-
updateFunctionConfiguration(args: UpdateFunctionConfigurationCommandInput, options?:
|
|
280
|
+
updateFunctionConfiguration(args: UpdateFunctionConfigurationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateFunctionConfigurationCommandOutput, SdkError | CodeSigningConfigNotFoundError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
275
281
|
/**
|
|
276
282
|
* @see {@link UpdateFunctionEventInvokeConfigCommand}
|
|
277
283
|
*/
|
|
278
|
-
updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options?:
|
|
284
|
+
updateFunctionEventInvokeConfig(args: UpdateFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateFunctionEventInvokeConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
279
285
|
/**
|
|
280
286
|
* @see {@link UpdateFunctionUrlConfigCommand}
|
|
281
287
|
*/
|
|
282
|
-
updateFunctionUrlConfig(args: UpdateFunctionUrlConfigCommandInput, options?:
|
|
288
|
+
updateFunctionUrlConfig(args: UpdateFunctionUrlConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateFunctionUrlConfigCommandOutput, SdkError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError>;
|
|
283
289
|
}
|
|
284
290
|
declare const LambdaService_base: import("effect/Context").TagClass<LambdaService, "@effect-aws/client-lambda/LambdaService", LambdaService$> & {
|
|
285
291
|
readonly _: Effect.Effect<LambdaService$["_"], never, LambdaService>;
|
|
286
|
-
addLayerVersionPermission: (args: AddLayerVersionPermissionCommandInput, options?:
|
|
287
|
-
addPermission: (args: AddPermissionCommandInput, options?:
|
|
288
|
-
createAlias: (args: CreateAliasCommandInput, options?:
|
|
289
|
-
createCodeSigningConfig: (args: CreateCodeSigningConfigCommandInput, options?:
|
|
290
|
-
createEventSourceMapping: (args: CreateEventSourceMappingCommandInput, options?:
|
|
291
|
-
createFunction: (args: CreateFunctionCommandInput, options?:
|
|
292
|
-
createFunctionUrlConfig: (args: CreateFunctionUrlConfigCommandInput, options?:
|
|
293
|
-
deleteAlias: (args: DeleteAliasCommandInput, options?:
|
|
294
|
-
deleteCodeSigningConfig: (args: DeleteCodeSigningConfigCommandInput, options?:
|
|
295
|
-
deleteEventSourceMapping: (args: DeleteEventSourceMappingCommandInput, options?:
|
|
296
|
-
deleteFunction: (args: DeleteFunctionCommandInput, options?:
|
|
297
|
-
deleteFunctionCodeSigningConfig: (args: DeleteFunctionCodeSigningConfigCommandInput, options?:
|
|
298
|
-
deleteFunctionConcurrency: (args: DeleteFunctionConcurrencyCommandInput, options?:
|
|
299
|
-
deleteFunctionEventInvokeConfig: (args: DeleteFunctionEventInvokeConfigCommandInput, options?:
|
|
300
|
-
deleteFunctionUrlConfig: (args: DeleteFunctionUrlConfigCommandInput, options?:
|
|
301
|
-
deleteLayerVersion: (args: DeleteLayerVersionCommandInput, options?:
|
|
302
|
-
deleteProvisionedConcurrencyConfig: (args: DeleteProvisionedConcurrencyConfigCommandInput, options?:
|
|
303
|
-
getAccountSettings: (args: GetAccountSettingsCommandInput, options?:
|
|
304
|
-
getAlias: (args: GetAliasCommandInput, options?:
|
|
305
|
-
getCodeSigningConfig: (args: GetCodeSigningConfigCommandInput, options?:
|
|
306
|
-
getEventSourceMapping: (args: GetEventSourceMappingCommandInput, options?:
|
|
307
|
-
getFunction: (args: GetFunctionCommandInput, options?:
|
|
308
|
-
getFunctionCodeSigningConfig: (args: GetFunctionCodeSigningConfigCommandInput, options?:
|
|
309
|
-
getFunctionConcurrency: (args: GetFunctionConcurrencyCommandInput, options?:
|
|
310
|
-
getFunctionConfiguration: (args: GetFunctionConfigurationCommandInput, options?:
|
|
311
|
-
getFunctionEventInvokeConfig: (args: GetFunctionEventInvokeConfigCommandInput, options?:
|
|
312
|
-
getFunctionRecursionConfig: (args: GetFunctionRecursionConfigCommandInput, options?:
|
|
313
|
-
getFunctionUrlConfig: (args: GetFunctionUrlConfigCommandInput, options?:
|
|
314
|
-
getLayerVersion: (args: GetLayerVersionCommandInput, options?:
|
|
315
|
-
getLayerVersionByArn: (args: GetLayerVersionByArnCommandInput, options?:
|
|
316
|
-
getLayerVersionPolicy: (args: GetLayerVersionPolicyCommandInput, options?:
|
|
317
|
-
getPolicy: (args: GetPolicyCommandInput, options?:
|
|
318
|
-
getProvisionedConcurrencyConfig: (args: GetProvisionedConcurrencyConfigCommandInput, options?:
|
|
319
|
-
getRuntimeManagementConfig: (args: GetRuntimeManagementConfigCommandInput, options?:
|
|
320
|
-
invoke: (args: InvokeCommandInput, options?:
|
|
321
|
-
invokeAsync: (args: InvokeAsyncCommandInput, options?:
|
|
322
|
-
invokeWithResponseStream: (args: InvokeWithResponseStreamCommandInput, options?:
|
|
323
|
-
listAliases: (args: ListAliasesCommandInput, options?:
|
|
324
|
-
listCodeSigningConfigs: (args: ListCodeSigningConfigsCommandInput, options?:
|
|
325
|
-
listEventSourceMappings: (args: ListEventSourceMappingsCommandInput, options?:
|
|
326
|
-
listFunctionEventInvokeConfigs: (args: ListFunctionEventInvokeConfigsCommandInput, options?:
|
|
327
|
-
listFunctions: (args: ListFunctionsCommandInput, options?:
|
|
328
|
-
listFunctionsByCodeSigningConfig: (args: ListFunctionsByCodeSigningConfigCommandInput, options?:
|
|
329
|
-
listFunctionUrlConfigs: (args: ListFunctionUrlConfigsCommandInput, options?:
|
|
330
|
-
listLayers: (args: ListLayersCommandInput, options?:
|
|
331
|
-
listLayerVersions: (args: ListLayerVersionsCommandInput, options?:
|
|
332
|
-
listProvisionedConcurrencyConfigs: (args: ListProvisionedConcurrencyConfigsCommandInput, options?:
|
|
333
|
-
listTags: (args: ListTagsCommandInput, options?:
|
|
334
|
-
listVersionsByFunction: (args: ListVersionsByFunctionCommandInput, options?:
|
|
335
|
-
publishLayerVersion: (args: PublishLayerVersionCommandInput, options?:
|
|
336
|
-
publishVersion: (args: PublishVersionCommandInput, options?:
|
|
337
|
-
putFunctionCodeSigningConfig: (args: PutFunctionCodeSigningConfigCommandInput, options?:
|
|
338
|
-
putFunctionConcurrency: (args: PutFunctionConcurrencyCommandInput, options?:
|
|
339
|
-
putFunctionEventInvokeConfig: (args: PutFunctionEventInvokeConfigCommandInput, options?:
|
|
340
|
-
putFunctionRecursionConfig: (args: PutFunctionRecursionConfigCommandInput, options?:
|
|
341
|
-
putProvisionedConcurrencyConfig: (args: PutProvisionedConcurrencyConfigCommandInput, options?:
|
|
342
|
-
putRuntimeManagementConfig: (args: PutRuntimeManagementConfigCommandInput, options?:
|
|
343
|
-
removeLayerVersionPermission: (args: RemoveLayerVersionPermissionCommandInput, options?:
|
|
344
|
-
removePermission: (args: RemovePermissionCommandInput, options?:
|
|
345
|
-
tagResource: (args: TagResourceCommandInput, options?:
|
|
346
|
-
untagResource: (args: UntagResourceCommandInput, options?:
|
|
347
|
-
updateAlias: (args: UpdateAliasCommandInput, options?:
|
|
348
|
-
updateCodeSigningConfig: (args: UpdateCodeSigningConfigCommandInput, options?:
|
|
349
|
-
updateEventSourceMapping: (args: UpdateEventSourceMappingCommandInput, options?:
|
|
350
|
-
updateFunctionCode: (args: UpdateFunctionCodeCommandInput, options?:
|
|
351
|
-
updateFunctionConfiguration: (args: UpdateFunctionConfigurationCommandInput, options?:
|
|
352
|
-
updateFunctionEventInvokeConfig: (args: UpdateFunctionEventInvokeConfigCommandInput, options?:
|
|
353
|
-
updateFunctionUrlConfig: (args: UpdateFunctionUrlConfigCommandInput, options?:
|
|
292
|
+
addLayerVersionPermission: (args: AddLayerVersionPermissionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<AddLayerVersionPermissionCommandOutput, InvalidParameterValueError | PolicyLengthExceededError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
293
|
+
addPermission: (args: AddPermissionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<AddPermissionCommandOutput, InvalidParameterValueError | PolicyLengthExceededError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
294
|
+
createAlias: (args: CreateAliasCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateAliasCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
295
|
+
createCodeSigningConfig: (args: CreateCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateCodeSigningConfigCommandOutput, InvalidParameterValueError | ServiceError | SdkError, LambdaService>;
|
|
296
|
+
createEventSourceMapping: (args: CreateEventSourceMappingCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateEventSourceMappingCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
297
|
+
createFunction: (args: CreateFunctionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateFunctionCommandOutput, CodeSigningConfigNotFoundError | CodeStorageExceededError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
298
|
+
createFunctionUrlConfig: (args: CreateFunctionUrlConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<CreateFunctionUrlConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
299
|
+
deleteAlias: (args: DeleteAliasCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteAliasCommandOutput, InvalidParameterValueError | ResourceConflictError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
300
|
+
deleteCodeSigningConfig: (args: DeleteCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteCodeSigningConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | SdkError, LambdaService>;
|
|
301
|
+
deleteEventSourceMapping: (args: DeleteEventSourceMappingCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteEventSourceMappingCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceInUseError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
302
|
+
deleteFunction: (args: DeleteFunctionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteFunctionCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
303
|
+
deleteFunctionCodeSigningConfig: (args: DeleteFunctionCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteFunctionCodeSigningConfigCommandOutput, CodeSigningConfigNotFoundError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
304
|
+
deleteFunctionConcurrency: (args: DeleteFunctionConcurrencyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteFunctionConcurrencyCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
305
|
+
deleteFunctionEventInvokeConfig: (args: DeleteFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteFunctionEventInvokeConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
306
|
+
deleteFunctionUrlConfig: (args: DeleteFunctionUrlConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteFunctionUrlConfigCommandOutput, ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
307
|
+
deleteLayerVersion: (args: DeleteLayerVersionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteLayerVersionCommandOutput, ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
308
|
+
deleteProvisionedConcurrencyConfig: (args: DeleteProvisionedConcurrencyConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<DeleteProvisionedConcurrencyConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
309
|
+
getAccountSettings: (args: GetAccountSettingsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetAccountSettingsCommandOutput, ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
310
|
+
getAlias: (args: GetAliasCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetAliasCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
311
|
+
getCodeSigningConfig: (args: GetCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetCodeSigningConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | SdkError, LambdaService>;
|
|
312
|
+
getEventSourceMapping: (args: GetEventSourceMappingCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetEventSourceMappingCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
313
|
+
getFunction: (args: GetFunctionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetFunctionCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
314
|
+
getFunctionCodeSigningConfig: (args: GetFunctionCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetFunctionCodeSigningConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
315
|
+
getFunctionConcurrency: (args: GetFunctionConcurrencyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetFunctionConcurrencyCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
316
|
+
getFunctionConfiguration: (args: GetFunctionConfigurationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetFunctionConfigurationCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
317
|
+
getFunctionEventInvokeConfig: (args: GetFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetFunctionEventInvokeConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
318
|
+
getFunctionRecursionConfig: (args: GetFunctionRecursionConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetFunctionRecursionConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
319
|
+
getFunctionUrlConfig: (args: GetFunctionUrlConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetFunctionUrlConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
320
|
+
getLayerVersion: (args: GetLayerVersionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetLayerVersionCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
321
|
+
getLayerVersionByArn: (args: GetLayerVersionByArnCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetLayerVersionByArnCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
322
|
+
getLayerVersionPolicy: (args: GetLayerVersionPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetLayerVersionPolicyCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
323
|
+
getPolicy: (args: GetPolicyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetPolicyCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
324
|
+
getProvisionedConcurrencyConfig: (args: GetProvisionedConcurrencyConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetProvisionedConcurrencyConfigCommandOutput, InvalidParameterValueError | ProvisionedConcurrencyConfigNotFoundError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
325
|
+
getRuntimeManagementConfig: (args: GetRuntimeManagementConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<GetRuntimeManagementConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
326
|
+
invoke: (args: InvokeCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<InvokeCommandOutput, EC2AccessDeniedError | EC2ThrottledError | EC2UnexpectedError | EFSIOError | EFSMountConnectivityError | EFSMountFailureError | EFSMountTimeoutError | ENILimitReachedError | InvalidParameterValueError | InvalidRequestContentError | InvalidRuntimeError | InvalidSecurityGroupIDError | InvalidSubnetIDError | InvalidZipFileError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | RecursiveInvocationError | RequestTooLargeError | ResourceConflictError | ResourceNotFoundError | ResourceNotReadyError | ServiceError | SnapStartError | SnapStartNotReadyError | SnapStartTimeoutError | SubnetIPAddressLimitReachedError | TooManyRequestsError | UnsupportedMediaTypeError | SdkError, LambdaService>;
|
|
327
|
+
invokeAsync: (args: InvokeAsyncCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<InvokeAsyncCommandOutput, InvalidRequestContentError | InvalidRuntimeError | ResourceConflictError | ResourceNotFoundError | ServiceError | SdkError, LambdaService>;
|
|
328
|
+
invokeWithResponseStream: (args: InvokeWithResponseStreamCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<InvokeWithResponseStreamCommandOutput, EC2AccessDeniedError | EC2ThrottledError | EC2UnexpectedError | EFSIOError | EFSMountConnectivityError | EFSMountFailureError | EFSMountTimeoutError | ENILimitReachedError | InvalidParameterValueError | InvalidRequestContentError | InvalidRuntimeError | InvalidSecurityGroupIDError | InvalidSubnetIDError | InvalidZipFileError | KMSAccessDeniedError | KMSDisabledError | KMSInvalidStateError | KMSNotFoundError | RecursiveInvocationError | RequestTooLargeError | ResourceConflictError | ResourceNotFoundError | ResourceNotReadyError | ServiceError | SnapStartError | SnapStartNotReadyError | SnapStartTimeoutError | SubnetIPAddressLimitReachedError | TooManyRequestsError | UnsupportedMediaTypeError | SdkError, LambdaService>;
|
|
329
|
+
listAliases: (args: ListAliasesCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListAliasesCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
330
|
+
listCodeSigningConfigs: (args: ListCodeSigningConfigsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListCodeSigningConfigsCommandOutput, InvalidParameterValueError | ServiceError | SdkError, LambdaService>;
|
|
331
|
+
listEventSourceMappings: (args: ListEventSourceMappingsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListEventSourceMappingsCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
332
|
+
listFunctionEventInvokeConfigs: (args: ListFunctionEventInvokeConfigsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListFunctionEventInvokeConfigsCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
333
|
+
listFunctions: (args: ListFunctionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListFunctionsCommandOutput, InvalidParameterValueError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
334
|
+
listFunctionsByCodeSigningConfig: (args: ListFunctionsByCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListFunctionsByCodeSigningConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | SdkError, LambdaService>;
|
|
335
|
+
listFunctionUrlConfigs: (args: ListFunctionUrlConfigsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListFunctionUrlConfigsCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
336
|
+
listLayers: (args: ListLayersCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListLayersCommandOutput, InvalidParameterValueError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
337
|
+
listLayerVersions: (args: ListLayerVersionsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListLayerVersionsCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
338
|
+
listProvisionedConcurrencyConfigs: (args: ListProvisionedConcurrencyConfigsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListProvisionedConcurrencyConfigsCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
339
|
+
listTags: (args: ListTagsCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListTagsCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
340
|
+
listVersionsByFunction: (args: ListVersionsByFunctionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<ListVersionsByFunctionCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
341
|
+
publishLayerVersion: (args: PublishLayerVersionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PublishLayerVersionCommandOutput, CodeStorageExceededError | InvalidParameterValueError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
342
|
+
publishVersion: (args: PublishVersionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PublishVersionCommandOutput, CodeStorageExceededError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
343
|
+
putFunctionCodeSigningConfig: (args: PutFunctionCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutFunctionCodeSigningConfigCommandOutput, CodeSigningConfigNotFoundError | InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
344
|
+
putFunctionConcurrency: (args: PutFunctionConcurrencyCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutFunctionConcurrencyCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
345
|
+
putFunctionEventInvokeConfig: (args: PutFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutFunctionEventInvokeConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
346
|
+
putFunctionRecursionConfig: (args: PutFunctionRecursionConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutFunctionRecursionConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
347
|
+
putProvisionedConcurrencyConfig: (args: PutProvisionedConcurrencyConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutProvisionedConcurrencyConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
348
|
+
putRuntimeManagementConfig: (args: PutRuntimeManagementConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<PutRuntimeManagementConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
349
|
+
removeLayerVersionPermission: (args: RemoveLayerVersionPermissionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<RemoveLayerVersionPermissionCommandOutput, InvalidParameterValueError | PreconditionFailedError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
350
|
+
removePermission: (args: RemovePermissionCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<RemovePermissionCommandOutput, InvalidParameterValueError | PreconditionFailedError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
351
|
+
tagResource: (args: TagResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<TagResourceCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
352
|
+
untagResource: (args: UntagResourceCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UntagResourceCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
353
|
+
updateAlias: (args: UpdateAliasCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateAliasCommandOutput, InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
354
|
+
updateCodeSigningConfig: (args: UpdateCodeSigningConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateCodeSigningConfigCommandOutput, InvalidParameterValueError | ResourceNotFoundError | ServiceError | SdkError, LambdaService>;
|
|
355
|
+
updateEventSourceMapping: (args: UpdateEventSourceMappingCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateEventSourceMappingCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceInUseError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
356
|
+
updateFunctionCode: (args: UpdateFunctionCodeCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateFunctionCodeCommandOutput, CodeSigningConfigNotFoundError | CodeStorageExceededError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
357
|
+
updateFunctionConfiguration: (args: UpdateFunctionConfigurationCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateFunctionConfigurationCommandOutput, CodeSigningConfigNotFoundError | CodeVerificationFailedError | InvalidCodeSignatureError | InvalidParameterValueError | PreconditionFailedError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
358
|
+
updateFunctionEventInvokeConfig: (args: UpdateFunctionEventInvokeConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateFunctionEventInvokeConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
359
|
+
updateFunctionUrlConfig: (args: UpdateFunctionUrlConfigCommandInput, options?: HttpHandlerOptions | undefined) => Effect.Effect<UpdateFunctionUrlConfigCommandOutput, InvalidParameterValueError | ResourceConflictError | ResourceNotFoundError | ServiceError | TooManyRequestsError | SdkError, LambdaService>;
|
|
354
360
|
} & {
|
|
355
361
|
use: <X>(body: (_: LambdaService$) => X) => X extends Effect.Effect<infer A, infer E, infer R> ? Effect.Effect<A, E, R | LambdaService> : Effect.Effect<X, never, LambdaService>;
|
|
356
362
|
};
|