@aws-sdk/client-lambda 3.933.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
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
export const ThrottleReason = {
|
|
2
|
+
CallerRateLimitExceeded: "CallerRateLimitExceeded",
|
|
3
|
+
ConcurrentInvocationLimitExceeded: "ConcurrentInvocationLimitExceeded",
|
|
4
|
+
ConcurrentSnapshotCreateLimitExceeded: "ConcurrentSnapshotCreateLimitExceeded",
|
|
5
|
+
FunctionInvocationRateLimitExceeded: "FunctionInvocationRateLimitExceeded",
|
|
6
|
+
ReservedFunctionConcurrentInvocationLimitExceeded: "ReservedFunctionConcurrentInvocationLimitExceeded",
|
|
7
|
+
ReservedFunctionInvocationRateLimitExceeded: "ReservedFunctionInvocationRateLimitExceeded",
|
|
8
|
+
};
|
|
9
|
+
export const FunctionUrlAuthType = {
|
|
10
|
+
AWS_IAM: "AWS_IAM",
|
|
11
|
+
NONE: "NONE",
|
|
12
|
+
};
|
|
13
|
+
export const KafkaSchemaRegistryAuthType = {
|
|
14
|
+
BASIC_AUTH: "BASIC_AUTH",
|
|
15
|
+
CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH",
|
|
16
|
+
SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE",
|
|
17
|
+
};
|
|
18
|
+
export const SchemaRegistryEventRecordFormat = {
|
|
19
|
+
JSON: "JSON",
|
|
20
|
+
SOURCE: "SOURCE",
|
|
21
|
+
};
|
|
22
|
+
export const KafkaSchemaValidationAttribute = {
|
|
23
|
+
KEY: "KEY",
|
|
24
|
+
VALUE: "VALUE",
|
|
25
|
+
};
|
|
26
|
+
export const ApplicationLogLevel = {
|
|
27
|
+
Debug: "DEBUG",
|
|
28
|
+
Error: "ERROR",
|
|
29
|
+
Fatal: "FATAL",
|
|
30
|
+
Info: "INFO",
|
|
31
|
+
Trace: "TRACE",
|
|
32
|
+
Warn: "WARN",
|
|
33
|
+
};
|
|
34
|
+
export const Architecture = {
|
|
35
|
+
arm64: "arm64",
|
|
36
|
+
x86_64: "x86_64",
|
|
37
|
+
};
|
|
38
|
+
export const CodeSigningPolicy = {
|
|
39
|
+
Enforce: "Enforce",
|
|
40
|
+
Warn: "Warn",
|
|
41
|
+
};
|
|
42
|
+
export const FullDocument = {
|
|
43
|
+
Default: "Default",
|
|
44
|
+
UpdateLookup: "UpdateLookup",
|
|
45
|
+
};
|
|
46
|
+
export const FunctionResponseType = {
|
|
47
|
+
ReportBatchItemFailures: "ReportBatchItemFailures",
|
|
48
|
+
};
|
|
49
|
+
export const EventSourceMappingMetric = {
|
|
50
|
+
EventCount: "EventCount",
|
|
51
|
+
};
|
|
52
|
+
export const EndPointType = {
|
|
53
|
+
KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS",
|
|
54
|
+
};
|
|
55
|
+
export const SourceAccessType = {
|
|
56
|
+
BASIC_AUTH: "BASIC_AUTH",
|
|
57
|
+
CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH",
|
|
58
|
+
SASL_SCRAM_256_AUTH: "SASL_SCRAM_256_AUTH",
|
|
59
|
+
SASL_SCRAM_512_AUTH: "SASL_SCRAM_512_AUTH",
|
|
60
|
+
SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE",
|
|
61
|
+
VIRTUAL_HOST: "VIRTUAL_HOST",
|
|
62
|
+
VPC_SECURITY_GROUP: "VPC_SECURITY_GROUP",
|
|
63
|
+
VPC_SUBNET: "VPC_SUBNET",
|
|
64
|
+
};
|
|
65
|
+
export const EventSourcePosition = {
|
|
66
|
+
AT_TIMESTAMP: "AT_TIMESTAMP",
|
|
67
|
+
LATEST: "LATEST",
|
|
68
|
+
TRIM_HORIZON: "TRIM_HORIZON",
|
|
69
|
+
};
|
|
70
|
+
export const LogFormat = {
|
|
71
|
+
Json: "JSON",
|
|
72
|
+
Text: "Text",
|
|
73
|
+
};
|
|
74
|
+
export const SystemLogLevel = {
|
|
75
|
+
Debug: "DEBUG",
|
|
76
|
+
Info: "INFO",
|
|
77
|
+
Warn: "WARN",
|
|
78
|
+
};
|
|
79
|
+
export const PackageType = {
|
|
80
|
+
Image: "Image",
|
|
81
|
+
Zip: "Zip",
|
|
82
|
+
};
|
|
83
|
+
export const Runtime = {
|
|
84
|
+
dotnet6: "dotnet6",
|
|
85
|
+
dotnet8: "dotnet8",
|
|
86
|
+
dotnetcore10: "dotnetcore1.0",
|
|
87
|
+
dotnetcore20: "dotnetcore2.0",
|
|
88
|
+
dotnetcore21: "dotnetcore2.1",
|
|
89
|
+
dotnetcore31: "dotnetcore3.1",
|
|
90
|
+
go1x: "go1.x",
|
|
91
|
+
java11: "java11",
|
|
92
|
+
java17: "java17",
|
|
93
|
+
java21: "java21",
|
|
94
|
+
java25: "java25",
|
|
95
|
+
java8: "java8",
|
|
96
|
+
java8al2: "java8.al2",
|
|
97
|
+
nodejs: "nodejs",
|
|
98
|
+
nodejs10x: "nodejs10.x",
|
|
99
|
+
nodejs12x: "nodejs12.x",
|
|
100
|
+
nodejs14x: "nodejs14.x",
|
|
101
|
+
nodejs16x: "nodejs16.x",
|
|
102
|
+
nodejs18x: "nodejs18.x",
|
|
103
|
+
nodejs20x: "nodejs20.x",
|
|
104
|
+
nodejs22x: "nodejs22.x",
|
|
105
|
+
nodejs24x: "nodejs24.x",
|
|
106
|
+
nodejs43: "nodejs4.3",
|
|
107
|
+
nodejs43edge: "nodejs4.3-edge",
|
|
108
|
+
nodejs610: "nodejs6.10",
|
|
109
|
+
nodejs810: "nodejs8.10",
|
|
110
|
+
provided: "provided",
|
|
111
|
+
providedal2: "provided.al2",
|
|
112
|
+
providedal2023: "provided.al2023",
|
|
113
|
+
python27: "python2.7",
|
|
114
|
+
python310: "python3.10",
|
|
115
|
+
python311: "python3.11",
|
|
116
|
+
python312: "python3.12",
|
|
117
|
+
python313: "python3.13",
|
|
118
|
+
python314: "python3.14",
|
|
119
|
+
python36: "python3.6",
|
|
120
|
+
python37: "python3.7",
|
|
121
|
+
python38: "python3.8",
|
|
122
|
+
python39: "python3.9",
|
|
123
|
+
ruby25: "ruby2.5",
|
|
124
|
+
ruby27: "ruby2.7",
|
|
125
|
+
ruby32: "ruby3.2",
|
|
126
|
+
ruby33: "ruby3.3",
|
|
127
|
+
ruby34: "ruby3.4",
|
|
128
|
+
};
|
|
129
|
+
export const SnapStartApplyOn = {
|
|
130
|
+
None: "None",
|
|
131
|
+
PublishedVersions: "PublishedVersions",
|
|
132
|
+
};
|
|
133
|
+
export const TenantIsolationMode = {
|
|
134
|
+
PER_TENANT: "PER_TENANT",
|
|
135
|
+
};
|
|
136
|
+
export const TracingMode = {
|
|
137
|
+
Active: "Active",
|
|
138
|
+
PassThrough: "PassThrough",
|
|
139
|
+
};
|
|
140
|
+
export const LastUpdateStatus = {
|
|
141
|
+
Failed: "Failed",
|
|
142
|
+
InProgress: "InProgress",
|
|
143
|
+
Successful: "Successful",
|
|
144
|
+
};
|
|
145
|
+
export const LastUpdateStatusReasonCode = {
|
|
146
|
+
DisabledKMSKey: "DisabledKMSKey",
|
|
147
|
+
EFSIOError: "EFSIOError",
|
|
148
|
+
EFSMountConnectivityError: "EFSMountConnectivityError",
|
|
149
|
+
EFSMountFailure: "EFSMountFailure",
|
|
150
|
+
EFSMountTimeout: "EFSMountTimeout",
|
|
151
|
+
EniLimitExceeded: "EniLimitExceeded",
|
|
152
|
+
FunctionError: "FunctionError",
|
|
153
|
+
ImageAccessDenied: "ImageAccessDenied",
|
|
154
|
+
ImageDeleted: "ImageDeleted",
|
|
155
|
+
InsufficientRolePermissions: "InsufficientRolePermissions",
|
|
156
|
+
InternalError: "InternalError",
|
|
157
|
+
InvalidConfiguration: "InvalidConfiguration",
|
|
158
|
+
InvalidImage: "InvalidImage",
|
|
159
|
+
InvalidRuntime: "InvalidRuntime",
|
|
160
|
+
InvalidSecurityGroup: "InvalidSecurityGroup",
|
|
161
|
+
InvalidStateKMSKey: "InvalidStateKMSKey",
|
|
162
|
+
InvalidSubnet: "InvalidSubnet",
|
|
163
|
+
InvalidZipFileException: "InvalidZipFileException",
|
|
164
|
+
KMSKeyAccessDenied: "KMSKeyAccessDenied",
|
|
165
|
+
KMSKeyNotFound: "KMSKeyNotFound",
|
|
166
|
+
SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
|
|
167
|
+
};
|
|
168
|
+
export const SnapStartOptimizationStatus = {
|
|
169
|
+
Off: "Off",
|
|
170
|
+
On: "On",
|
|
171
|
+
};
|
|
172
|
+
export const State = {
|
|
173
|
+
Active: "Active",
|
|
174
|
+
Failed: "Failed",
|
|
175
|
+
Inactive: "Inactive",
|
|
176
|
+
Pending: "Pending",
|
|
177
|
+
};
|
|
178
|
+
export const StateReasonCode = {
|
|
179
|
+
Creating: "Creating",
|
|
180
|
+
DisabledKMSKey: "DisabledKMSKey",
|
|
181
|
+
EFSIOError: "EFSIOError",
|
|
182
|
+
EFSMountConnectivityError: "EFSMountConnectivityError",
|
|
183
|
+
EFSMountFailure: "EFSMountFailure",
|
|
184
|
+
EFSMountTimeout: "EFSMountTimeout",
|
|
185
|
+
EniLimitExceeded: "EniLimitExceeded",
|
|
186
|
+
FunctionError: "FunctionError",
|
|
187
|
+
Idle: "Idle",
|
|
188
|
+
ImageAccessDenied: "ImageAccessDenied",
|
|
189
|
+
ImageDeleted: "ImageDeleted",
|
|
190
|
+
InsufficientRolePermissions: "InsufficientRolePermissions",
|
|
191
|
+
InternalError: "InternalError",
|
|
192
|
+
InvalidConfiguration: "InvalidConfiguration",
|
|
193
|
+
InvalidImage: "InvalidImage",
|
|
194
|
+
InvalidRuntime: "InvalidRuntime",
|
|
195
|
+
InvalidSecurityGroup: "InvalidSecurityGroup",
|
|
196
|
+
InvalidStateKMSKey: "InvalidStateKMSKey",
|
|
197
|
+
InvalidSubnet: "InvalidSubnet",
|
|
198
|
+
InvalidZipFileException: "InvalidZipFileException",
|
|
199
|
+
KMSKeyAccessDenied: "KMSKeyAccessDenied",
|
|
200
|
+
KMSKeyNotFound: "KMSKeyNotFound",
|
|
201
|
+
Restoring: "Restoring",
|
|
202
|
+
SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses",
|
|
203
|
+
};
|
|
204
|
+
export const InvokeMode = {
|
|
205
|
+
BUFFERED: "BUFFERED",
|
|
206
|
+
RESPONSE_STREAM: "RESPONSE_STREAM",
|
|
207
|
+
};
|
|
208
|
+
export const RecursiveLoop = {
|
|
209
|
+
Allow: "Allow",
|
|
210
|
+
Terminate: "Terminate",
|
|
211
|
+
};
|
|
212
|
+
export const UpdateRuntimeOn = {
|
|
213
|
+
Auto: "Auto",
|
|
214
|
+
FunctionUpdate: "FunctionUpdate",
|
|
215
|
+
Manual: "Manual",
|
|
216
|
+
};
|
|
217
|
+
export const InvocationType = {
|
|
218
|
+
DryRun: "DryRun",
|
|
219
|
+
Event: "Event",
|
|
220
|
+
RequestResponse: "RequestResponse",
|
|
221
|
+
};
|
|
222
|
+
export const LogType = {
|
|
223
|
+
None: "None",
|
|
224
|
+
Tail: "Tail",
|
|
225
|
+
};
|
|
226
|
+
export const ResponseStreamingInvocationType = {
|
|
227
|
+
DryRun: "DryRun",
|
|
228
|
+
RequestResponse: "RequestResponse",
|
|
229
|
+
};
|
|
230
|
+
export const FunctionVersion = {
|
|
231
|
+
ALL: "ALL",
|
|
232
|
+
};
|
|
233
|
+
export const ProvisionedConcurrencyStatusEnum = {
|
|
234
|
+
FAILED: "FAILED",
|
|
235
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
236
|
+
READY: "READY",
|
|
237
|
+
};
|