@aws-sdk/client-lambda 3.934.0 → 3.935.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/index.js +262 -236
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +237 -0
- package/dist-es/models/errors.js +607 -0
- package/dist-es/models/models_0.js +1 -841
- package/dist-es/schemas/schemas_0.js +24 -3
- package/dist-types/commands/CreateFunctionCommand.d.ts +8 -2
- package/dist-types/commands/GetFunctionCommand.d.ts +4 -1
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +4 -1
- package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
- package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
- package/dist-types/commands/InvokeCommand.d.ts +1 -0
- package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +1 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +4 -1
- package/dist-types/commands/ListLayerVersionsCommand.d.ts +2 -2
- package/dist-types/commands/ListLayersCommand.d.ts +2 -2
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +4 -1
- package/dist-types/commands/PublishLayerVersionCommand.d.ts +2 -2
- package/dist-types/commands/PublishVersionCommand.d.ts +4 -1
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +4 -1
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +5 -2
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +509 -0
- package/dist-types/models/errors.d.ts +580 -0
- package/dist-types/models/models_0.d.ts +34 -1079
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +294 -0
- package/dist-types/ts3.4/models/errors.d.ts +357 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -645
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -193,6 +193,7 @@ export declare var SourceAccessConfiguration: StaticStructureSchema;
|
|
|
193
193
|
export declare var SubnetIPAddressLimitReachedException: StaticErrorSchema;
|
|
194
194
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
195
195
|
export declare var TagsError: StaticStructureSchema;
|
|
196
|
+
export declare var TenancyConfig: StaticStructureSchema;
|
|
196
197
|
export declare var TooManyRequestsException: StaticErrorSchema;
|
|
197
198
|
export declare var TracingConfig: StaticStructureSchema;
|
|
198
199
|
export declare var TracingConfigResponse: StaticStructureSchema;
|
|
@@ -6,5 +6,7 @@ export { LambdaExtensionConfiguration } from "./extensionConfiguration";
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./waiters";
|
|
9
|
-
export * from "./models";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
10
12
|
export { LambdaServiceException } from "./models/LambdaServiceException";
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
export declare const ThrottleReason: {
|
|
2
|
+
readonly CallerRateLimitExceeded: "CallerRateLimitExceeded";
|
|
3
|
+
readonly ConcurrentInvocationLimitExceeded: "ConcurrentInvocationLimitExceeded";
|
|
4
|
+
readonly ConcurrentSnapshotCreateLimitExceeded: "ConcurrentSnapshotCreateLimitExceeded";
|
|
5
|
+
readonly FunctionInvocationRateLimitExceeded: "FunctionInvocationRateLimitExceeded";
|
|
6
|
+
readonly ReservedFunctionConcurrentInvocationLimitExceeded: "ReservedFunctionConcurrentInvocationLimitExceeded";
|
|
7
|
+
readonly ReservedFunctionInvocationRateLimitExceeded: "ReservedFunctionInvocationRateLimitExceeded";
|
|
8
|
+
};
|
|
9
|
+
export type ThrottleReason =
|
|
10
|
+
(typeof ThrottleReason)[keyof typeof ThrottleReason];
|
|
11
|
+
export declare const FunctionUrlAuthType: {
|
|
12
|
+
readonly AWS_IAM: "AWS_IAM";
|
|
13
|
+
readonly NONE: "NONE";
|
|
14
|
+
};
|
|
15
|
+
export type FunctionUrlAuthType =
|
|
16
|
+
(typeof FunctionUrlAuthType)[keyof typeof FunctionUrlAuthType];
|
|
17
|
+
export declare const KafkaSchemaRegistryAuthType: {
|
|
18
|
+
readonly BASIC_AUTH: "BASIC_AUTH";
|
|
19
|
+
readonly CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH";
|
|
20
|
+
readonly SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE";
|
|
21
|
+
};
|
|
22
|
+
export type KafkaSchemaRegistryAuthType =
|
|
23
|
+
(typeof KafkaSchemaRegistryAuthType)[keyof typeof KafkaSchemaRegistryAuthType];
|
|
24
|
+
export declare const SchemaRegistryEventRecordFormat: {
|
|
25
|
+
readonly JSON: "JSON";
|
|
26
|
+
readonly SOURCE: "SOURCE";
|
|
27
|
+
};
|
|
28
|
+
export type SchemaRegistryEventRecordFormat =
|
|
29
|
+
(typeof SchemaRegistryEventRecordFormat)[keyof typeof SchemaRegistryEventRecordFormat];
|
|
30
|
+
export declare const KafkaSchemaValidationAttribute: {
|
|
31
|
+
readonly KEY: "KEY";
|
|
32
|
+
readonly VALUE: "VALUE";
|
|
33
|
+
};
|
|
34
|
+
export type KafkaSchemaValidationAttribute =
|
|
35
|
+
(typeof KafkaSchemaValidationAttribute)[keyof typeof KafkaSchemaValidationAttribute];
|
|
36
|
+
export declare const ApplicationLogLevel: {
|
|
37
|
+
readonly Debug: "DEBUG";
|
|
38
|
+
readonly Error: "ERROR";
|
|
39
|
+
readonly Fatal: "FATAL";
|
|
40
|
+
readonly Info: "INFO";
|
|
41
|
+
readonly Trace: "TRACE";
|
|
42
|
+
readonly Warn: "WARN";
|
|
43
|
+
};
|
|
44
|
+
export type ApplicationLogLevel =
|
|
45
|
+
(typeof ApplicationLogLevel)[keyof typeof ApplicationLogLevel];
|
|
46
|
+
export declare const Architecture: {
|
|
47
|
+
readonly arm64: "arm64";
|
|
48
|
+
readonly x86_64: "x86_64";
|
|
49
|
+
};
|
|
50
|
+
export type Architecture = (typeof Architecture)[keyof typeof Architecture];
|
|
51
|
+
export declare const CodeSigningPolicy: {
|
|
52
|
+
readonly Enforce: "Enforce";
|
|
53
|
+
readonly Warn: "Warn";
|
|
54
|
+
};
|
|
55
|
+
export type CodeSigningPolicy =
|
|
56
|
+
(typeof CodeSigningPolicy)[keyof typeof CodeSigningPolicy];
|
|
57
|
+
export declare const FullDocument: {
|
|
58
|
+
readonly Default: "Default";
|
|
59
|
+
readonly UpdateLookup: "UpdateLookup";
|
|
60
|
+
};
|
|
61
|
+
export type FullDocument = (typeof FullDocument)[keyof typeof FullDocument];
|
|
62
|
+
export declare const FunctionResponseType: {
|
|
63
|
+
readonly ReportBatchItemFailures: "ReportBatchItemFailures";
|
|
64
|
+
};
|
|
65
|
+
export type FunctionResponseType =
|
|
66
|
+
(typeof FunctionResponseType)[keyof typeof FunctionResponseType];
|
|
67
|
+
export declare const EventSourceMappingMetric: {
|
|
68
|
+
readonly EventCount: "EventCount";
|
|
69
|
+
};
|
|
70
|
+
export type EventSourceMappingMetric =
|
|
71
|
+
(typeof EventSourceMappingMetric)[keyof typeof EventSourceMappingMetric];
|
|
72
|
+
export declare const EndPointType: {
|
|
73
|
+
readonly KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS";
|
|
74
|
+
};
|
|
75
|
+
export type EndPointType = (typeof EndPointType)[keyof typeof EndPointType];
|
|
76
|
+
export declare const SourceAccessType: {
|
|
77
|
+
readonly BASIC_AUTH: "BASIC_AUTH";
|
|
78
|
+
readonly CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH";
|
|
79
|
+
readonly SASL_SCRAM_256_AUTH: "SASL_SCRAM_256_AUTH";
|
|
80
|
+
readonly SASL_SCRAM_512_AUTH: "SASL_SCRAM_512_AUTH";
|
|
81
|
+
readonly SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE";
|
|
82
|
+
readonly VIRTUAL_HOST: "VIRTUAL_HOST";
|
|
83
|
+
readonly VPC_SECURITY_GROUP: "VPC_SECURITY_GROUP";
|
|
84
|
+
readonly VPC_SUBNET: "VPC_SUBNET";
|
|
85
|
+
};
|
|
86
|
+
export type SourceAccessType =
|
|
87
|
+
(typeof SourceAccessType)[keyof typeof SourceAccessType];
|
|
88
|
+
export declare const EventSourcePosition: {
|
|
89
|
+
readonly AT_TIMESTAMP: "AT_TIMESTAMP";
|
|
90
|
+
readonly LATEST: "LATEST";
|
|
91
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
92
|
+
};
|
|
93
|
+
export type EventSourcePosition =
|
|
94
|
+
(typeof EventSourcePosition)[keyof typeof EventSourcePosition];
|
|
95
|
+
export declare const LogFormat: {
|
|
96
|
+
readonly Json: "JSON";
|
|
97
|
+
readonly Text: "Text";
|
|
98
|
+
};
|
|
99
|
+
export type LogFormat = (typeof LogFormat)[keyof typeof LogFormat];
|
|
100
|
+
export declare const SystemLogLevel: {
|
|
101
|
+
readonly Debug: "DEBUG";
|
|
102
|
+
readonly Info: "INFO";
|
|
103
|
+
readonly Warn: "WARN";
|
|
104
|
+
};
|
|
105
|
+
export type SystemLogLevel =
|
|
106
|
+
(typeof SystemLogLevel)[keyof typeof SystemLogLevel];
|
|
107
|
+
export declare const PackageType: {
|
|
108
|
+
readonly Image: "Image";
|
|
109
|
+
readonly Zip: "Zip";
|
|
110
|
+
};
|
|
111
|
+
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
112
|
+
export declare const Runtime: {
|
|
113
|
+
readonly dotnet6: "dotnet6";
|
|
114
|
+
readonly dotnet8: "dotnet8";
|
|
115
|
+
readonly dotnetcore10: "dotnetcore1.0";
|
|
116
|
+
readonly dotnetcore20: "dotnetcore2.0";
|
|
117
|
+
readonly dotnetcore21: "dotnetcore2.1";
|
|
118
|
+
readonly dotnetcore31: "dotnetcore3.1";
|
|
119
|
+
readonly go1x: "go1.x";
|
|
120
|
+
readonly java11: "java11";
|
|
121
|
+
readonly java17: "java17";
|
|
122
|
+
readonly java21: "java21";
|
|
123
|
+
readonly java25: "java25";
|
|
124
|
+
readonly java8: "java8";
|
|
125
|
+
readonly java8al2: "java8.al2";
|
|
126
|
+
readonly nodejs: "nodejs";
|
|
127
|
+
readonly nodejs10x: "nodejs10.x";
|
|
128
|
+
readonly nodejs12x: "nodejs12.x";
|
|
129
|
+
readonly nodejs14x: "nodejs14.x";
|
|
130
|
+
readonly nodejs16x: "nodejs16.x";
|
|
131
|
+
readonly nodejs18x: "nodejs18.x";
|
|
132
|
+
readonly nodejs20x: "nodejs20.x";
|
|
133
|
+
readonly nodejs22x: "nodejs22.x";
|
|
134
|
+
readonly nodejs24x: "nodejs24.x";
|
|
135
|
+
readonly nodejs43: "nodejs4.3";
|
|
136
|
+
readonly nodejs43edge: "nodejs4.3-edge";
|
|
137
|
+
readonly nodejs610: "nodejs6.10";
|
|
138
|
+
readonly nodejs810: "nodejs8.10";
|
|
139
|
+
readonly provided: "provided";
|
|
140
|
+
readonly providedal2: "provided.al2";
|
|
141
|
+
readonly providedal2023: "provided.al2023";
|
|
142
|
+
readonly python27: "python2.7";
|
|
143
|
+
readonly python310: "python3.10";
|
|
144
|
+
readonly python311: "python3.11";
|
|
145
|
+
readonly python312: "python3.12";
|
|
146
|
+
readonly python313: "python3.13";
|
|
147
|
+
readonly python314: "python3.14";
|
|
148
|
+
readonly python36: "python3.6";
|
|
149
|
+
readonly python37: "python3.7";
|
|
150
|
+
readonly python38: "python3.8";
|
|
151
|
+
readonly python39: "python3.9";
|
|
152
|
+
readonly ruby25: "ruby2.5";
|
|
153
|
+
readonly ruby27: "ruby2.7";
|
|
154
|
+
readonly ruby32: "ruby3.2";
|
|
155
|
+
readonly ruby33: "ruby3.3";
|
|
156
|
+
readonly ruby34: "ruby3.4";
|
|
157
|
+
};
|
|
158
|
+
export type Runtime = (typeof Runtime)[keyof typeof Runtime];
|
|
159
|
+
export declare const SnapStartApplyOn: {
|
|
160
|
+
readonly None: "None";
|
|
161
|
+
readonly PublishedVersions: "PublishedVersions";
|
|
162
|
+
};
|
|
163
|
+
export type SnapStartApplyOn =
|
|
164
|
+
(typeof SnapStartApplyOn)[keyof typeof SnapStartApplyOn];
|
|
165
|
+
export declare const TenantIsolationMode: {
|
|
166
|
+
readonly PER_TENANT: "PER_TENANT";
|
|
167
|
+
};
|
|
168
|
+
export type TenantIsolationMode =
|
|
169
|
+
(typeof TenantIsolationMode)[keyof typeof TenantIsolationMode];
|
|
170
|
+
export declare const TracingMode: {
|
|
171
|
+
readonly Active: "Active";
|
|
172
|
+
readonly PassThrough: "PassThrough";
|
|
173
|
+
};
|
|
174
|
+
export type TracingMode = (typeof TracingMode)[keyof typeof TracingMode];
|
|
175
|
+
export declare const LastUpdateStatus: {
|
|
176
|
+
readonly Failed: "Failed";
|
|
177
|
+
readonly InProgress: "InProgress";
|
|
178
|
+
readonly Successful: "Successful";
|
|
179
|
+
};
|
|
180
|
+
export type LastUpdateStatus =
|
|
181
|
+
(typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
|
|
182
|
+
export declare const LastUpdateStatusReasonCode: {
|
|
183
|
+
readonly DisabledKMSKey: "DisabledKMSKey";
|
|
184
|
+
readonly EFSIOError: "EFSIOError";
|
|
185
|
+
readonly EFSMountConnectivityError: "EFSMountConnectivityError";
|
|
186
|
+
readonly EFSMountFailure: "EFSMountFailure";
|
|
187
|
+
readonly EFSMountTimeout: "EFSMountTimeout";
|
|
188
|
+
readonly EniLimitExceeded: "EniLimitExceeded";
|
|
189
|
+
readonly FunctionError: "FunctionError";
|
|
190
|
+
readonly ImageAccessDenied: "ImageAccessDenied";
|
|
191
|
+
readonly ImageDeleted: "ImageDeleted";
|
|
192
|
+
readonly InsufficientRolePermissions: "InsufficientRolePermissions";
|
|
193
|
+
readonly InternalError: "InternalError";
|
|
194
|
+
readonly InvalidConfiguration: "InvalidConfiguration";
|
|
195
|
+
readonly InvalidImage: "InvalidImage";
|
|
196
|
+
readonly InvalidRuntime: "InvalidRuntime";
|
|
197
|
+
readonly InvalidSecurityGroup: "InvalidSecurityGroup";
|
|
198
|
+
readonly InvalidStateKMSKey: "InvalidStateKMSKey";
|
|
199
|
+
readonly InvalidSubnet: "InvalidSubnet";
|
|
200
|
+
readonly InvalidZipFileException: "InvalidZipFileException";
|
|
201
|
+
readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
|
|
202
|
+
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
203
|
+
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
204
|
+
};
|
|
205
|
+
export type LastUpdateStatusReasonCode =
|
|
206
|
+
(typeof LastUpdateStatusReasonCode)[keyof typeof LastUpdateStatusReasonCode];
|
|
207
|
+
export declare const SnapStartOptimizationStatus: {
|
|
208
|
+
readonly Off: "Off";
|
|
209
|
+
readonly On: "On";
|
|
210
|
+
};
|
|
211
|
+
export type SnapStartOptimizationStatus =
|
|
212
|
+
(typeof SnapStartOptimizationStatus)[keyof typeof SnapStartOptimizationStatus];
|
|
213
|
+
export declare const State: {
|
|
214
|
+
readonly Active: "Active";
|
|
215
|
+
readonly Failed: "Failed";
|
|
216
|
+
readonly Inactive: "Inactive";
|
|
217
|
+
readonly Pending: "Pending";
|
|
218
|
+
};
|
|
219
|
+
export type State = (typeof State)[keyof typeof State];
|
|
220
|
+
export declare const StateReasonCode: {
|
|
221
|
+
readonly Creating: "Creating";
|
|
222
|
+
readonly DisabledKMSKey: "DisabledKMSKey";
|
|
223
|
+
readonly EFSIOError: "EFSIOError";
|
|
224
|
+
readonly EFSMountConnectivityError: "EFSMountConnectivityError";
|
|
225
|
+
readonly EFSMountFailure: "EFSMountFailure";
|
|
226
|
+
readonly EFSMountTimeout: "EFSMountTimeout";
|
|
227
|
+
readonly EniLimitExceeded: "EniLimitExceeded";
|
|
228
|
+
readonly FunctionError: "FunctionError";
|
|
229
|
+
readonly Idle: "Idle";
|
|
230
|
+
readonly ImageAccessDenied: "ImageAccessDenied";
|
|
231
|
+
readonly ImageDeleted: "ImageDeleted";
|
|
232
|
+
readonly InsufficientRolePermissions: "InsufficientRolePermissions";
|
|
233
|
+
readonly InternalError: "InternalError";
|
|
234
|
+
readonly InvalidConfiguration: "InvalidConfiguration";
|
|
235
|
+
readonly InvalidImage: "InvalidImage";
|
|
236
|
+
readonly InvalidRuntime: "InvalidRuntime";
|
|
237
|
+
readonly InvalidSecurityGroup: "InvalidSecurityGroup";
|
|
238
|
+
readonly InvalidStateKMSKey: "InvalidStateKMSKey";
|
|
239
|
+
readonly InvalidSubnet: "InvalidSubnet";
|
|
240
|
+
readonly InvalidZipFileException: "InvalidZipFileException";
|
|
241
|
+
readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
|
|
242
|
+
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
243
|
+
readonly Restoring: "Restoring";
|
|
244
|
+
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
245
|
+
};
|
|
246
|
+
export type StateReasonCode =
|
|
247
|
+
(typeof StateReasonCode)[keyof typeof StateReasonCode];
|
|
248
|
+
export declare const InvokeMode: {
|
|
249
|
+
readonly BUFFERED: "BUFFERED";
|
|
250
|
+
readonly RESPONSE_STREAM: "RESPONSE_STREAM";
|
|
251
|
+
};
|
|
252
|
+
export type InvokeMode = (typeof InvokeMode)[keyof typeof InvokeMode];
|
|
253
|
+
export declare const RecursiveLoop: {
|
|
254
|
+
readonly Allow: "Allow";
|
|
255
|
+
readonly Terminate: "Terminate";
|
|
256
|
+
};
|
|
257
|
+
export type RecursiveLoop = (typeof RecursiveLoop)[keyof typeof RecursiveLoop];
|
|
258
|
+
export declare const UpdateRuntimeOn: {
|
|
259
|
+
readonly Auto: "Auto";
|
|
260
|
+
readonly FunctionUpdate: "FunctionUpdate";
|
|
261
|
+
readonly Manual: "Manual";
|
|
262
|
+
};
|
|
263
|
+
export type UpdateRuntimeOn =
|
|
264
|
+
(typeof UpdateRuntimeOn)[keyof typeof UpdateRuntimeOn];
|
|
265
|
+
export declare const InvocationType: {
|
|
266
|
+
readonly DryRun: "DryRun";
|
|
267
|
+
readonly Event: "Event";
|
|
268
|
+
readonly RequestResponse: "RequestResponse";
|
|
269
|
+
};
|
|
270
|
+
export type InvocationType =
|
|
271
|
+
(typeof InvocationType)[keyof typeof InvocationType];
|
|
272
|
+
export declare const LogType: {
|
|
273
|
+
readonly None: "None";
|
|
274
|
+
readonly Tail: "Tail";
|
|
275
|
+
};
|
|
276
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
277
|
+
export declare const ResponseStreamingInvocationType: {
|
|
278
|
+
readonly DryRun: "DryRun";
|
|
279
|
+
readonly RequestResponse: "RequestResponse";
|
|
280
|
+
};
|
|
281
|
+
export type ResponseStreamingInvocationType =
|
|
282
|
+
(typeof ResponseStreamingInvocationType)[keyof typeof ResponseStreamingInvocationType];
|
|
283
|
+
export declare const FunctionVersion: {
|
|
284
|
+
readonly ALL: "ALL";
|
|
285
|
+
};
|
|
286
|
+
export type FunctionVersion =
|
|
287
|
+
(typeof FunctionVersion)[keyof typeof FunctionVersion];
|
|
288
|
+
export declare const ProvisionedConcurrencyStatusEnum: {
|
|
289
|
+
readonly FAILED: "FAILED";
|
|
290
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
291
|
+
readonly READY: "READY";
|
|
292
|
+
};
|
|
293
|
+
export type ProvisionedConcurrencyStatusEnum =
|
|
294
|
+
(typeof ProvisionedConcurrencyStatusEnum)[keyof typeof ProvisionedConcurrencyStatusEnum];
|
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ThrottleReason } from "./enums";
|
|
3
|
+
import { LambdaServiceException as __BaseException } from "./LambdaServiceException";
|
|
4
|
+
export declare class InvalidParameterValueException extends __BaseException {
|
|
5
|
+
readonly name: "InvalidParameterValueException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
Type?: string | undefined;
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export declare class PolicyLengthExceededException extends __BaseException {
|
|
13
|
+
readonly name: "PolicyLengthExceededException";
|
|
14
|
+
readonly $fault: "client";
|
|
15
|
+
Type?: string | undefined;
|
|
16
|
+
constructor(
|
|
17
|
+
opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>
|
|
18
|
+
);
|
|
19
|
+
}
|
|
20
|
+
export declare class PreconditionFailedException extends __BaseException {
|
|
21
|
+
readonly name: "PreconditionFailedException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Type?: string | undefined;
|
|
24
|
+
constructor(
|
|
25
|
+
opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
export declare class ResourceConflictException extends __BaseException {
|
|
29
|
+
readonly name: "ResourceConflictException";
|
|
30
|
+
readonly $fault: "client";
|
|
31
|
+
Type?: string | undefined;
|
|
32
|
+
constructor(
|
|
33
|
+
opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
|
|
34
|
+
);
|
|
35
|
+
}
|
|
36
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
37
|
+
readonly name: "ResourceNotFoundException";
|
|
38
|
+
readonly $fault: "client";
|
|
39
|
+
Type?: string | undefined;
|
|
40
|
+
Message?: string | undefined;
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class ServiceException extends __BaseException {
|
|
46
|
+
readonly name: "ServiceException";
|
|
47
|
+
readonly $fault: "server";
|
|
48
|
+
Type?: string | undefined;
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
53
|
+
readonly name: "TooManyRequestsException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
retryAfterSeconds?: string | undefined;
|
|
56
|
+
Type?: string | undefined;
|
|
57
|
+
Reason?: ThrottleReason | undefined;
|
|
58
|
+
constructor(
|
|
59
|
+
opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
63
|
+
readonly name: "ResourceInUseException";
|
|
64
|
+
readonly $fault: "client";
|
|
65
|
+
Type?: string | undefined;
|
|
66
|
+
Message?: string | undefined;
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
export declare class CodeSigningConfigNotFoundException extends __BaseException {
|
|
72
|
+
readonly name: "CodeSigningConfigNotFoundException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
Type?: string | undefined;
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
constructor(
|
|
77
|
+
opts: __ExceptionOptionType<
|
|
78
|
+
CodeSigningConfigNotFoundException,
|
|
79
|
+
__BaseException
|
|
80
|
+
>
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
export declare class CodeStorageExceededException extends __BaseException {
|
|
84
|
+
readonly name: "CodeStorageExceededException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
Type?: string | undefined;
|
|
87
|
+
constructor(
|
|
88
|
+
opts: __ExceptionOptionType<CodeStorageExceededException, __BaseException>
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
export declare class CodeVerificationFailedException extends __BaseException {
|
|
92
|
+
readonly name: "CodeVerificationFailedException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
Type?: string | undefined;
|
|
95
|
+
Message?: string | undefined;
|
|
96
|
+
constructor(
|
|
97
|
+
opts: __ExceptionOptionType<
|
|
98
|
+
CodeVerificationFailedException,
|
|
99
|
+
__BaseException
|
|
100
|
+
>
|
|
101
|
+
);
|
|
102
|
+
}
|
|
103
|
+
export declare class InvalidCodeSignatureException extends __BaseException {
|
|
104
|
+
readonly name: "InvalidCodeSignatureException";
|
|
105
|
+
readonly $fault: "client";
|
|
106
|
+
Type?: string | undefined;
|
|
107
|
+
Message?: string | undefined;
|
|
108
|
+
constructor(
|
|
109
|
+
opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
export declare class EC2AccessDeniedException extends __BaseException {
|
|
113
|
+
readonly name: "EC2AccessDeniedException";
|
|
114
|
+
readonly $fault: "server";
|
|
115
|
+
Type?: string | undefined;
|
|
116
|
+
Message?: string | undefined;
|
|
117
|
+
constructor(
|
|
118
|
+
opts: __ExceptionOptionType<EC2AccessDeniedException, __BaseException>
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
export declare class EC2ThrottledException extends __BaseException {
|
|
122
|
+
readonly name: "EC2ThrottledException";
|
|
123
|
+
readonly $fault: "server";
|
|
124
|
+
Type?: string | undefined;
|
|
125
|
+
Message?: string | undefined;
|
|
126
|
+
constructor(
|
|
127
|
+
opts: __ExceptionOptionType<EC2ThrottledException, __BaseException>
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
export declare class EC2UnexpectedException extends __BaseException {
|
|
131
|
+
readonly name: "EC2UnexpectedException";
|
|
132
|
+
readonly $fault: "server";
|
|
133
|
+
Type?: string | undefined;
|
|
134
|
+
Message?: string | undefined;
|
|
135
|
+
EC2ErrorCode?: string | undefined;
|
|
136
|
+
constructor(
|
|
137
|
+
opts: __ExceptionOptionType<EC2UnexpectedException, __BaseException>
|
|
138
|
+
);
|
|
139
|
+
}
|
|
140
|
+
export declare class EFSIOException extends __BaseException {
|
|
141
|
+
readonly name: "EFSIOException";
|
|
142
|
+
readonly $fault: "client";
|
|
143
|
+
Type?: string | undefined;
|
|
144
|
+
Message?: string | undefined;
|
|
145
|
+
constructor(opts: __ExceptionOptionType<EFSIOException, __BaseException>);
|
|
146
|
+
}
|
|
147
|
+
export declare class EFSMountConnectivityException extends __BaseException {
|
|
148
|
+
readonly name: "EFSMountConnectivityException";
|
|
149
|
+
readonly $fault: "client";
|
|
150
|
+
Type?: string | undefined;
|
|
151
|
+
Message?: string | undefined;
|
|
152
|
+
constructor(
|
|
153
|
+
opts: __ExceptionOptionType<EFSMountConnectivityException, __BaseException>
|
|
154
|
+
);
|
|
155
|
+
}
|
|
156
|
+
export declare class EFSMountFailureException extends __BaseException {
|
|
157
|
+
readonly name: "EFSMountFailureException";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
Type?: string | undefined;
|
|
160
|
+
Message?: string | undefined;
|
|
161
|
+
constructor(
|
|
162
|
+
opts: __ExceptionOptionType<EFSMountFailureException, __BaseException>
|
|
163
|
+
);
|
|
164
|
+
}
|
|
165
|
+
export declare class EFSMountTimeoutException extends __BaseException {
|
|
166
|
+
readonly name: "EFSMountTimeoutException";
|
|
167
|
+
readonly $fault: "client";
|
|
168
|
+
Type?: string | undefined;
|
|
169
|
+
Message?: string | undefined;
|
|
170
|
+
constructor(
|
|
171
|
+
opts: __ExceptionOptionType<EFSMountTimeoutException, __BaseException>
|
|
172
|
+
);
|
|
173
|
+
}
|
|
174
|
+
export declare class ENILimitReachedException extends __BaseException {
|
|
175
|
+
readonly name: "ENILimitReachedException";
|
|
176
|
+
readonly $fault: "server";
|
|
177
|
+
Type?: string | undefined;
|
|
178
|
+
Message?: string | undefined;
|
|
179
|
+
constructor(
|
|
180
|
+
opts: __ExceptionOptionType<ENILimitReachedException, __BaseException>
|
|
181
|
+
);
|
|
182
|
+
}
|
|
183
|
+
export declare class InvalidRequestContentException extends __BaseException {
|
|
184
|
+
readonly name: "InvalidRequestContentException";
|
|
185
|
+
readonly $fault: "client";
|
|
186
|
+
Type?: string | undefined;
|
|
187
|
+
constructor(
|
|
188
|
+
opts: __ExceptionOptionType<InvalidRequestContentException, __BaseException>
|
|
189
|
+
);
|
|
190
|
+
}
|
|
191
|
+
export declare class InvalidRuntimeException extends __BaseException {
|
|
192
|
+
readonly name: "InvalidRuntimeException";
|
|
193
|
+
readonly $fault: "server";
|
|
194
|
+
Type?: string | undefined;
|
|
195
|
+
Message?: string | undefined;
|
|
196
|
+
constructor(
|
|
197
|
+
opts: __ExceptionOptionType<InvalidRuntimeException, __BaseException>
|
|
198
|
+
);
|
|
199
|
+
}
|
|
200
|
+
export declare class InvalidSecurityGroupIDException extends __BaseException {
|
|
201
|
+
readonly name: "InvalidSecurityGroupIDException";
|
|
202
|
+
readonly $fault: "server";
|
|
203
|
+
Type?: string | undefined;
|
|
204
|
+
Message?: string | undefined;
|
|
205
|
+
constructor(
|
|
206
|
+
opts: __ExceptionOptionType<
|
|
207
|
+
InvalidSecurityGroupIDException,
|
|
208
|
+
__BaseException
|
|
209
|
+
>
|
|
210
|
+
);
|
|
211
|
+
}
|
|
212
|
+
export declare class InvalidSubnetIDException extends __BaseException {
|
|
213
|
+
readonly name: "InvalidSubnetIDException";
|
|
214
|
+
readonly $fault: "server";
|
|
215
|
+
Type?: string | undefined;
|
|
216
|
+
Message?: string | undefined;
|
|
217
|
+
constructor(
|
|
218
|
+
opts: __ExceptionOptionType<InvalidSubnetIDException, __BaseException>
|
|
219
|
+
);
|
|
220
|
+
}
|
|
221
|
+
export declare class InvalidZipFileException extends __BaseException {
|
|
222
|
+
readonly name: "InvalidZipFileException";
|
|
223
|
+
readonly $fault: "server";
|
|
224
|
+
Type?: string | undefined;
|
|
225
|
+
Message?: string | undefined;
|
|
226
|
+
constructor(
|
|
227
|
+
opts: __ExceptionOptionType<InvalidZipFileException, __BaseException>
|
|
228
|
+
);
|
|
229
|
+
}
|
|
230
|
+
export declare class KMSAccessDeniedException extends __BaseException {
|
|
231
|
+
readonly name: "KMSAccessDeniedException";
|
|
232
|
+
readonly $fault: "server";
|
|
233
|
+
Type?: string | undefined;
|
|
234
|
+
Message?: string | undefined;
|
|
235
|
+
constructor(
|
|
236
|
+
opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
export declare class KMSDisabledException extends __BaseException {
|
|
240
|
+
readonly name: "KMSDisabledException";
|
|
241
|
+
readonly $fault: "server";
|
|
242
|
+
Type?: string | undefined;
|
|
243
|
+
Message?: string | undefined;
|
|
244
|
+
constructor(
|
|
245
|
+
opts: __ExceptionOptionType<KMSDisabledException, __BaseException>
|
|
246
|
+
);
|
|
247
|
+
}
|
|
248
|
+
export declare class KMSInvalidStateException extends __BaseException {
|
|
249
|
+
readonly name: "KMSInvalidStateException";
|
|
250
|
+
readonly $fault: "server";
|
|
251
|
+
Type?: string | undefined;
|
|
252
|
+
Message?: string | undefined;
|
|
253
|
+
constructor(
|
|
254
|
+
opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>
|
|
255
|
+
);
|
|
256
|
+
}
|
|
257
|
+
export declare class KMSNotFoundException extends __BaseException {
|
|
258
|
+
readonly name: "KMSNotFoundException";
|
|
259
|
+
readonly $fault: "server";
|
|
260
|
+
Type?: string | undefined;
|
|
261
|
+
Message?: string | undefined;
|
|
262
|
+
constructor(
|
|
263
|
+
opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>
|
|
264
|
+
);
|
|
265
|
+
}
|
|
266
|
+
export declare class RecursiveInvocationException extends __BaseException {
|
|
267
|
+
readonly name: "RecursiveInvocationException";
|
|
268
|
+
readonly $fault: "client";
|
|
269
|
+
Type?: string | undefined;
|
|
270
|
+
Message?: string | undefined;
|
|
271
|
+
constructor(
|
|
272
|
+
opts: __ExceptionOptionType<RecursiveInvocationException, __BaseException>
|
|
273
|
+
);
|
|
274
|
+
}
|
|
275
|
+
export declare class RequestTooLargeException extends __BaseException {
|
|
276
|
+
readonly name: "RequestTooLargeException";
|
|
277
|
+
readonly $fault: "client";
|
|
278
|
+
Type?: string | undefined;
|
|
279
|
+
constructor(
|
|
280
|
+
opts: __ExceptionOptionType<RequestTooLargeException, __BaseException>
|
|
281
|
+
);
|
|
282
|
+
}
|
|
283
|
+
export declare class ResourceNotReadyException extends __BaseException {
|
|
284
|
+
readonly name: "ResourceNotReadyException";
|
|
285
|
+
readonly $fault: "server";
|
|
286
|
+
Type?: string | undefined;
|
|
287
|
+
constructor(
|
|
288
|
+
opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
|
|
289
|
+
);
|
|
290
|
+
}
|
|
291
|
+
export declare class SerializedRequestEntityTooLargeException extends __BaseException {
|
|
292
|
+
readonly name: "SerializedRequestEntityTooLargeException";
|
|
293
|
+
readonly $fault: "client";
|
|
294
|
+
Type?: string | undefined;
|
|
295
|
+
constructor(
|
|
296
|
+
opts: __ExceptionOptionType<
|
|
297
|
+
SerializedRequestEntityTooLargeException,
|
|
298
|
+
__BaseException
|
|
299
|
+
>
|
|
300
|
+
);
|
|
301
|
+
}
|
|
302
|
+
export declare class SnapStartException extends __BaseException {
|
|
303
|
+
readonly name: "SnapStartException";
|
|
304
|
+
readonly $fault: "client";
|
|
305
|
+
Type?: string | undefined;
|
|
306
|
+
Message?: string | undefined;
|
|
307
|
+
constructor(opts: __ExceptionOptionType<SnapStartException, __BaseException>);
|
|
308
|
+
}
|
|
309
|
+
export declare class SnapStartNotReadyException extends __BaseException {
|
|
310
|
+
readonly name: "SnapStartNotReadyException";
|
|
311
|
+
readonly $fault: "client";
|
|
312
|
+
Type?: string | undefined;
|
|
313
|
+
Message?: string | undefined;
|
|
314
|
+
constructor(
|
|
315
|
+
opts: __ExceptionOptionType<SnapStartNotReadyException, __BaseException>
|
|
316
|
+
);
|
|
317
|
+
}
|
|
318
|
+
export declare class SnapStartTimeoutException extends __BaseException {
|
|
319
|
+
readonly name: "SnapStartTimeoutException";
|
|
320
|
+
readonly $fault: "client";
|
|
321
|
+
Type?: string | undefined;
|
|
322
|
+
Message?: string | undefined;
|
|
323
|
+
constructor(
|
|
324
|
+
opts: __ExceptionOptionType<SnapStartTimeoutException, __BaseException>
|
|
325
|
+
);
|
|
326
|
+
}
|
|
327
|
+
export declare class SubnetIPAddressLimitReachedException extends __BaseException {
|
|
328
|
+
readonly name: "SubnetIPAddressLimitReachedException";
|
|
329
|
+
readonly $fault: "server";
|
|
330
|
+
Type?: string | undefined;
|
|
331
|
+
Message?: string | undefined;
|
|
332
|
+
constructor(
|
|
333
|
+
opts: __ExceptionOptionType<
|
|
334
|
+
SubnetIPAddressLimitReachedException,
|
|
335
|
+
__BaseException
|
|
336
|
+
>
|
|
337
|
+
);
|
|
338
|
+
}
|
|
339
|
+
export declare class UnsupportedMediaTypeException extends __BaseException {
|
|
340
|
+
readonly name: "UnsupportedMediaTypeException";
|
|
341
|
+
readonly $fault: "client";
|
|
342
|
+
Type?: string | undefined;
|
|
343
|
+
constructor(
|
|
344
|
+
opts: __ExceptionOptionType<UnsupportedMediaTypeException, __BaseException>
|
|
345
|
+
);
|
|
346
|
+
}
|
|
347
|
+
export declare class ProvisionedConcurrencyConfigNotFoundException extends __BaseException {
|
|
348
|
+
readonly name: "ProvisionedConcurrencyConfigNotFoundException";
|
|
349
|
+
readonly $fault: "client";
|
|
350
|
+
Type?: string | undefined;
|
|
351
|
+
constructor(
|
|
352
|
+
opts: __ExceptionOptionType<
|
|
353
|
+
ProvisionedConcurrencyConfigNotFoundException,
|
|
354
|
+
__BaseException
|
|
355
|
+
>
|
|
356
|
+
);
|
|
357
|
+
}
|