@aws-sdk/client-lambda 3.301.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +173 -196
- package/dist-es/models/models_0.js +173 -196
- package/dist-types/models/models_0.d.ts +288 -173
- package/dist-types/ts3.4/models/models_0.d.ts +211 -173
- package/package.json +35 -35
|
@@ -187,15 +187,20 @@ export declare class ServiceException extends __BaseException {
|
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
189
|
* @public
|
|
190
|
+
* @enum
|
|
190
191
|
*/
|
|
191
|
-
export declare
|
|
192
|
-
CallerRateLimitExceeded
|
|
193
|
-
ConcurrentInvocationLimitExceeded
|
|
194
|
-
ConcurrentSnapshotCreateLimitExceeded
|
|
195
|
-
FunctionInvocationRateLimitExceeded
|
|
196
|
-
ReservedFunctionConcurrentInvocationLimitExceeded
|
|
197
|
-
ReservedFunctionInvocationRateLimitExceeded
|
|
198
|
-
}
|
|
192
|
+
export declare const ThrottleReason: {
|
|
193
|
+
readonly CallerRateLimitExceeded: "CallerRateLimitExceeded";
|
|
194
|
+
readonly ConcurrentInvocationLimitExceeded: "ConcurrentInvocationLimitExceeded";
|
|
195
|
+
readonly ConcurrentSnapshotCreateLimitExceeded: "ConcurrentSnapshotCreateLimitExceeded";
|
|
196
|
+
readonly FunctionInvocationRateLimitExceeded: "FunctionInvocationRateLimitExceeded";
|
|
197
|
+
readonly ReservedFunctionConcurrentInvocationLimitExceeded: "ReservedFunctionConcurrentInvocationLimitExceeded";
|
|
198
|
+
readonly ReservedFunctionInvocationRateLimitExceeded: "ReservedFunctionInvocationRateLimitExceeded";
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
export type ThrottleReason = (typeof ThrottleReason)[keyof typeof ThrottleReason];
|
|
199
204
|
/**
|
|
200
205
|
* @public
|
|
201
206
|
* <p>The request throughput limit was exceeded. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html#api-requests">Lambda quotas</a>.</p>
|
|
@@ -216,11 +221,16 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
216
221
|
}
|
|
217
222
|
/**
|
|
218
223
|
* @public
|
|
224
|
+
* @enum
|
|
219
225
|
*/
|
|
220
|
-
export declare
|
|
221
|
-
AWS_IAM
|
|
222
|
-
NONE
|
|
223
|
-
}
|
|
226
|
+
export declare const FunctionUrlAuthType: {
|
|
227
|
+
readonly AWS_IAM: "AWS_IAM";
|
|
228
|
+
readonly NONE: "NONE";
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
export type FunctionUrlAuthType = (typeof FunctionUrlAuthType)[keyof typeof FunctionUrlAuthType];
|
|
224
234
|
/**
|
|
225
235
|
* @public
|
|
226
236
|
*/
|
|
@@ -375,11 +385,16 @@ export interface AmazonManagedKafkaEventSourceConfig {
|
|
|
375
385
|
}
|
|
376
386
|
/**
|
|
377
387
|
* @public
|
|
388
|
+
* @enum
|
|
378
389
|
*/
|
|
379
|
-
export declare
|
|
380
|
-
arm64
|
|
381
|
-
x86_64
|
|
382
|
-
}
|
|
390
|
+
export declare const Architecture: {
|
|
391
|
+
readonly arm64: "arm64";
|
|
392
|
+
readonly x86_64: "x86_64";
|
|
393
|
+
};
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
397
|
+
export type Architecture = (typeof Architecture)[keyof typeof Architecture];
|
|
383
398
|
/**
|
|
384
399
|
* @public
|
|
385
400
|
*/
|
|
@@ -427,11 +442,16 @@ export interface CreateAliasRequest {
|
|
|
427
442
|
}
|
|
428
443
|
/**
|
|
429
444
|
* @public
|
|
445
|
+
* @enum
|
|
430
446
|
*/
|
|
431
|
-
export declare
|
|
432
|
-
Enforce
|
|
433
|
-
Warn
|
|
434
|
-
}
|
|
447
|
+
export declare const CodeSigningPolicy: {
|
|
448
|
+
readonly Enforce: "Enforce";
|
|
449
|
+
readonly Warn: "Warn";
|
|
450
|
+
};
|
|
451
|
+
/**
|
|
452
|
+
* @public
|
|
453
|
+
*/
|
|
454
|
+
export type CodeSigningPolicy = (typeof CodeSigningPolicy)[keyof typeof CodeSigningPolicy];
|
|
435
455
|
/**
|
|
436
456
|
* @public
|
|
437
457
|
* <p>Code signing configuration <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html#config-codesigning-policies">policies</a> specify the validation failure action for signature mismatch or
|
|
@@ -539,11 +559,16 @@ export interface DestinationConfig {
|
|
|
539
559
|
}
|
|
540
560
|
/**
|
|
541
561
|
* @public
|
|
562
|
+
* @enum
|
|
542
563
|
*/
|
|
543
|
-
export declare
|
|
544
|
-
Default
|
|
545
|
-
UpdateLookup
|
|
546
|
-
}
|
|
564
|
+
export declare const FullDocument: {
|
|
565
|
+
readonly Default: "Default";
|
|
566
|
+
readonly UpdateLookup: "UpdateLookup";
|
|
567
|
+
};
|
|
568
|
+
/**
|
|
569
|
+
* @public
|
|
570
|
+
*/
|
|
571
|
+
export type FullDocument = (typeof FullDocument)[keyof typeof FullDocument];
|
|
547
572
|
/**
|
|
548
573
|
* @public
|
|
549
574
|
* <p>
|
|
@@ -602,10 +627,15 @@ export interface FilterCriteria {
|
|
|
602
627
|
}
|
|
603
628
|
/**
|
|
604
629
|
* @public
|
|
630
|
+
* @enum
|
|
605
631
|
*/
|
|
606
|
-
export declare
|
|
607
|
-
ReportBatchItemFailures
|
|
608
|
-
}
|
|
632
|
+
export declare const FunctionResponseType: {
|
|
633
|
+
readonly ReportBatchItemFailures: "ReportBatchItemFailures";
|
|
634
|
+
};
|
|
635
|
+
/**
|
|
636
|
+
* @public
|
|
637
|
+
*/
|
|
638
|
+
export type FunctionResponseType = (typeof FunctionResponseType)[keyof typeof FunctionResponseType];
|
|
609
639
|
/**
|
|
610
640
|
* @public
|
|
611
641
|
* <p>(Amazon SQS only) The scaling configuration for the event source. To remove the configuration, pass an empty value.</p>
|
|
@@ -618,10 +648,15 @@ export interface ScalingConfig {
|
|
|
618
648
|
}
|
|
619
649
|
/**
|
|
620
650
|
* @public
|
|
651
|
+
* @enum
|
|
621
652
|
*/
|
|
622
|
-
export declare
|
|
623
|
-
KAFKA_BOOTSTRAP_SERVERS
|
|
624
|
-
}
|
|
653
|
+
export declare const EndPointType: {
|
|
654
|
+
readonly KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS";
|
|
655
|
+
};
|
|
656
|
+
/**
|
|
657
|
+
* @public
|
|
658
|
+
*/
|
|
659
|
+
export type EndPointType = (typeof EndPointType)[keyof typeof EndPointType];
|
|
625
660
|
/**
|
|
626
661
|
* @public
|
|
627
662
|
* <p>The self-managed Apache Kafka cluster for your event source.</p>
|
|
@@ -647,17 +682,22 @@ export interface SelfManagedKafkaEventSourceConfig {
|
|
|
647
682
|
}
|
|
648
683
|
/**
|
|
649
684
|
* @public
|
|
685
|
+
* @enum
|
|
650
686
|
*/
|
|
651
|
-
export declare
|
|
652
|
-
BASIC_AUTH
|
|
653
|
-
CLIENT_CERTIFICATE_TLS_AUTH
|
|
654
|
-
SASL_SCRAM_256_AUTH
|
|
655
|
-
SASL_SCRAM_512_AUTH
|
|
656
|
-
SERVER_ROOT_CA_CERTIFICATE
|
|
657
|
-
VIRTUAL_HOST
|
|
658
|
-
VPC_SECURITY_GROUP
|
|
659
|
-
VPC_SUBNET
|
|
660
|
-
}
|
|
687
|
+
export declare const SourceAccessType: {
|
|
688
|
+
readonly BASIC_AUTH: "BASIC_AUTH";
|
|
689
|
+
readonly CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH";
|
|
690
|
+
readonly SASL_SCRAM_256_AUTH: "SASL_SCRAM_256_AUTH";
|
|
691
|
+
readonly SASL_SCRAM_512_AUTH: "SASL_SCRAM_512_AUTH";
|
|
692
|
+
readonly SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE";
|
|
693
|
+
readonly VIRTUAL_HOST: "VIRTUAL_HOST";
|
|
694
|
+
readonly VPC_SECURITY_GROUP: "VPC_SECURITY_GROUP";
|
|
695
|
+
readonly VPC_SUBNET: "VPC_SUBNET";
|
|
696
|
+
};
|
|
697
|
+
/**
|
|
698
|
+
* @public
|
|
699
|
+
*/
|
|
700
|
+
export type SourceAccessType = (typeof SourceAccessType)[keyof typeof SourceAccessType];
|
|
661
701
|
/**
|
|
662
702
|
* @public
|
|
663
703
|
* <p>To secure and define access to your event source, you can specify the authentication protocol, VPC components, or virtual host.</p>
|
|
@@ -715,12 +755,17 @@ export interface SourceAccessConfiguration {
|
|
|
715
755
|
}
|
|
716
756
|
/**
|
|
717
757
|
* @public
|
|
758
|
+
* @enum
|
|
718
759
|
*/
|
|
719
|
-
export declare
|
|
720
|
-
AT_TIMESTAMP
|
|
721
|
-
LATEST
|
|
722
|
-
TRIM_HORIZON
|
|
723
|
-
}
|
|
760
|
+
export declare const EventSourcePosition: {
|
|
761
|
+
readonly AT_TIMESTAMP: "AT_TIMESTAMP";
|
|
762
|
+
readonly LATEST: "LATEST";
|
|
763
|
+
readonly TRIM_HORIZON: "TRIM_HORIZON";
|
|
764
|
+
};
|
|
765
|
+
/**
|
|
766
|
+
* @public
|
|
767
|
+
*/
|
|
768
|
+
export type EventSourcePosition = (typeof EventSourcePosition)[keyof typeof EventSourcePosition];
|
|
724
769
|
/**
|
|
725
770
|
* @public
|
|
726
771
|
*/
|
|
@@ -1173,51 +1218,66 @@ export interface ImageConfig {
|
|
|
1173
1218
|
}
|
|
1174
1219
|
/**
|
|
1175
1220
|
* @public
|
|
1221
|
+
* @enum
|
|
1176
1222
|
*/
|
|
1177
|
-
export declare
|
|
1178
|
-
Image
|
|
1179
|
-
Zip
|
|
1180
|
-
}
|
|
1223
|
+
export declare const PackageType: {
|
|
1224
|
+
readonly Image: "Image";
|
|
1225
|
+
readonly Zip: "Zip";
|
|
1226
|
+
};
|
|
1181
1227
|
/**
|
|
1182
1228
|
* @public
|
|
1183
1229
|
*/
|
|
1184
|
-
export
|
|
1185
|
-
dotnet6 = "dotnet6",
|
|
1186
|
-
dotnetcore10 = "dotnetcore1.0",
|
|
1187
|
-
dotnetcore20 = "dotnetcore2.0",
|
|
1188
|
-
dotnetcore21 = "dotnetcore2.1",
|
|
1189
|
-
dotnetcore31 = "dotnetcore3.1",
|
|
1190
|
-
go1x = "go1.x",
|
|
1191
|
-
java11 = "java11",
|
|
1192
|
-
java8 = "java8",
|
|
1193
|
-
java8al2 = "java8.al2",
|
|
1194
|
-
nodejs = "nodejs",
|
|
1195
|
-
nodejs10x = "nodejs10.x",
|
|
1196
|
-
nodejs12x = "nodejs12.x",
|
|
1197
|
-
nodejs14x = "nodejs14.x",
|
|
1198
|
-
nodejs16x = "nodejs16.x",
|
|
1199
|
-
nodejs18x = "nodejs18.x",
|
|
1200
|
-
nodejs43 = "nodejs4.3",
|
|
1201
|
-
nodejs43edge = "nodejs4.3-edge",
|
|
1202
|
-
nodejs610 = "nodejs6.10",
|
|
1203
|
-
nodejs810 = "nodejs8.10",
|
|
1204
|
-
provided = "provided",
|
|
1205
|
-
providedal2 = "provided.al2",
|
|
1206
|
-
python27 = "python2.7",
|
|
1207
|
-
python36 = "python3.6",
|
|
1208
|
-
python37 = "python3.7",
|
|
1209
|
-
python38 = "python3.8",
|
|
1210
|
-
python39 = "python3.9",
|
|
1211
|
-
ruby25 = "ruby2.5",
|
|
1212
|
-
ruby27 = "ruby2.7"
|
|
1213
|
-
}
|
|
1230
|
+
export type PackageType = (typeof PackageType)[keyof typeof PackageType];
|
|
1214
1231
|
/**
|
|
1215
1232
|
* @public
|
|
1233
|
+
* @enum
|
|
1216
1234
|
*/
|
|
1217
|
-
export declare
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1235
|
+
export declare const Runtime: {
|
|
1236
|
+
readonly dotnet6: "dotnet6";
|
|
1237
|
+
readonly dotnetcore10: "dotnetcore1.0";
|
|
1238
|
+
readonly dotnetcore20: "dotnetcore2.0";
|
|
1239
|
+
readonly dotnetcore21: "dotnetcore2.1";
|
|
1240
|
+
readonly dotnetcore31: "dotnetcore3.1";
|
|
1241
|
+
readonly go1x: "go1.x";
|
|
1242
|
+
readonly java11: "java11";
|
|
1243
|
+
readonly java8: "java8";
|
|
1244
|
+
readonly java8al2: "java8.al2";
|
|
1245
|
+
readonly nodejs: "nodejs";
|
|
1246
|
+
readonly nodejs10x: "nodejs10.x";
|
|
1247
|
+
readonly nodejs12x: "nodejs12.x";
|
|
1248
|
+
readonly nodejs14x: "nodejs14.x";
|
|
1249
|
+
readonly nodejs16x: "nodejs16.x";
|
|
1250
|
+
readonly nodejs18x: "nodejs18.x";
|
|
1251
|
+
readonly nodejs43: "nodejs4.3";
|
|
1252
|
+
readonly nodejs43edge: "nodejs4.3-edge";
|
|
1253
|
+
readonly nodejs610: "nodejs6.10";
|
|
1254
|
+
readonly nodejs810: "nodejs8.10";
|
|
1255
|
+
readonly provided: "provided";
|
|
1256
|
+
readonly providedal2: "provided.al2";
|
|
1257
|
+
readonly python27: "python2.7";
|
|
1258
|
+
readonly python36: "python3.6";
|
|
1259
|
+
readonly python37: "python3.7";
|
|
1260
|
+
readonly python38: "python3.8";
|
|
1261
|
+
readonly python39: "python3.9";
|
|
1262
|
+
readonly ruby25: "ruby2.5";
|
|
1263
|
+
readonly ruby27: "ruby2.7";
|
|
1264
|
+
};
|
|
1265
|
+
/**
|
|
1266
|
+
* @public
|
|
1267
|
+
*/
|
|
1268
|
+
export type Runtime = (typeof Runtime)[keyof typeof Runtime];
|
|
1269
|
+
/**
|
|
1270
|
+
* @public
|
|
1271
|
+
* @enum
|
|
1272
|
+
*/
|
|
1273
|
+
export declare const SnapStartApplyOn: {
|
|
1274
|
+
readonly None: "None";
|
|
1275
|
+
readonly PublishedVersions: "PublishedVersions";
|
|
1276
|
+
};
|
|
1277
|
+
/**
|
|
1278
|
+
* @public
|
|
1279
|
+
*/
|
|
1280
|
+
export type SnapStartApplyOn = (typeof SnapStartApplyOn)[keyof typeof SnapStartApplyOn];
|
|
1221
1281
|
/**
|
|
1222
1282
|
* @public
|
|
1223
1283
|
* <p>The function's Lambda SnapStart setting. Set <code>ApplyOn</code> to <code>PublishedVersions</code> to create a
|
|
@@ -1234,11 +1294,16 @@ export interface SnapStart {
|
|
|
1234
1294
|
}
|
|
1235
1295
|
/**
|
|
1236
1296
|
* @public
|
|
1297
|
+
* @enum
|
|
1237
1298
|
*/
|
|
1238
|
-
export declare
|
|
1239
|
-
Active
|
|
1240
|
-
PassThrough
|
|
1241
|
-
}
|
|
1299
|
+
export declare const TracingMode: {
|
|
1300
|
+
readonly Active: "Active";
|
|
1301
|
+
readonly PassThrough: "PassThrough";
|
|
1302
|
+
};
|
|
1303
|
+
/**
|
|
1304
|
+
* @public
|
|
1305
|
+
*/
|
|
1306
|
+
export type TracingMode = (typeof TracingMode)[keyof typeof TracingMode];
|
|
1242
1307
|
/**
|
|
1243
1308
|
* @public
|
|
1244
1309
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a> tracing configuration.
|
|
@@ -1457,38 +1522,48 @@ export interface ImageConfigResponse {
|
|
|
1457
1522
|
}
|
|
1458
1523
|
/**
|
|
1459
1524
|
* @public
|
|
1525
|
+
* @enum
|
|
1460
1526
|
*/
|
|
1461
|
-
export declare
|
|
1462
|
-
Failed
|
|
1463
|
-
InProgress
|
|
1464
|
-
Successful
|
|
1465
|
-
}
|
|
1527
|
+
export declare const LastUpdateStatus: {
|
|
1528
|
+
readonly Failed: "Failed";
|
|
1529
|
+
readonly InProgress: "InProgress";
|
|
1530
|
+
readonly Successful: "Successful";
|
|
1531
|
+
};
|
|
1466
1532
|
/**
|
|
1467
1533
|
* @public
|
|
1468
1534
|
*/
|
|
1469
|
-
export
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1535
|
+
export type LastUpdateStatus = (typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
|
|
1536
|
+
/**
|
|
1537
|
+
* @public
|
|
1538
|
+
* @enum
|
|
1539
|
+
*/
|
|
1540
|
+
export declare const LastUpdateStatusReasonCode: {
|
|
1541
|
+
readonly DisabledKMSKey: "DisabledKMSKey";
|
|
1542
|
+
readonly EFSIOError: "EFSIOError";
|
|
1543
|
+
readonly EFSMountConnectivityError: "EFSMountConnectivityError";
|
|
1544
|
+
readonly EFSMountFailure: "EFSMountFailure";
|
|
1545
|
+
readonly EFSMountTimeout: "EFSMountTimeout";
|
|
1546
|
+
readonly EniLimitExceeded: "EniLimitExceeded";
|
|
1547
|
+
readonly FunctionError: "FunctionError";
|
|
1548
|
+
readonly ImageAccessDenied: "ImageAccessDenied";
|
|
1549
|
+
readonly ImageDeleted: "ImageDeleted";
|
|
1550
|
+
readonly InsufficientRolePermissions: "InsufficientRolePermissions";
|
|
1551
|
+
readonly InternalError: "InternalError";
|
|
1552
|
+
readonly InvalidConfiguration: "InvalidConfiguration";
|
|
1553
|
+
readonly InvalidImage: "InvalidImage";
|
|
1554
|
+
readonly InvalidRuntime: "InvalidRuntime";
|
|
1555
|
+
readonly InvalidSecurityGroup: "InvalidSecurityGroup";
|
|
1556
|
+
readonly InvalidStateKMSKey: "InvalidStateKMSKey";
|
|
1557
|
+
readonly InvalidSubnet: "InvalidSubnet";
|
|
1558
|
+
readonly InvalidZipFileException: "InvalidZipFileException";
|
|
1559
|
+
readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
|
|
1560
|
+
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
1561
|
+
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
1562
|
+
};
|
|
1563
|
+
/**
|
|
1564
|
+
* @public
|
|
1565
|
+
*/
|
|
1566
|
+
export type LastUpdateStatusReasonCode = (typeof LastUpdateStatusReasonCode)[keyof typeof LastUpdateStatusReasonCode];
|
|
1492
1567
|
/**
|
|
1493
1568
|
* @public
|
|
1494
1569
|
* <p>An <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
@@ -1542,11 +1617,16 @@ export interface RuntimeVersionConfig {
|
|
|
1542
1617
|
}
|
|
1543
1618
|
/**
|
|
1544
1619
|
* @public
|
|
1620
|
+
* @enum
|
|
1545
1621
|
*/
|
|
1546
|
-
export declare
|
|
1547
|
-
Off
|
|
1548
|
-
On
|
|
1549
|
-
}
|
|
1622
|
+
export declare const SnapStartOptimizationStatus: {
|
|
1623
|
+
readonly Off: "Off";
|
|
1624
|
+
readonly On: "On";
|
|
1625
|
+
};
|
|
1626
|
+
/**
|
|
1627
|
+
* @public
|
|
1628
|
+
*/
|
|
1629
|
+
export type SnapStartOptimizationStatus = (typeof SnapStartOptimizationStatus)[keyof typeof SnapStartOptimizationStatus];
|
|
1550
1630
|
/**
|
|
1551
1631
|
* @public
|
|
1552
1632
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
|
|
@@ -1563,42 +1643,52 @@ export interface SnapStartResponse {
|
|
|
1563
1643
|
}
|
|
1564
1644
|
/**
|
|
1565
1645
|
* @public
|
|
1646
|
+
* @enum
|
|
1566
1647
|
*/
|
|
1567
|
-
export declare
|
|
1568
|
-
Active
|
|
1569
|
-
Failed
|
|
1570
|
-
Inactive
|
|
1571
|
-
Pending
|
|
1572
|
-
}
|
|
1648
|
+
export declare const State: {
|
|
1649
|
+
readonly Active: "Active";
|
|
1650
|
+
readonly Failed: "Failed";
|
|
1651
|
+
readonly Inactive: "Inactive";
|
|
1652
|
+
readonly Pending: "Pending";
|
|
1653
|
+
};
|
|
1573
1654
|
/**
|
|
1574
1655
|
* @public
|
|
1575
1656
|
*/
|
|
1576
|
-
export
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1657
|
+
export type State = (typeof State)[keyof typeof State];
|
|
1658
|
+
/**
|
|
1659
|
+
* @public
|
|
1660
|
+
* @enum
|
|
1661
|
+
*/
|
|
1662
|
+
export declare const StateReasonCode: {
|
|
1663
|
+
readonly Creating: "Creating";
|
|
1664
|
+
readonly DisabledKMSKey: "DisabledKMSKey";
|
|
1665
|
+
readonly EFSIOError: "EFSIOError";
|
|
1666
|
+
readonly EFSMountConnectivityError: "EFSMountConnectivityError";
|
|
1667
|
+
readonly EFSMountFailure: "EFSMountFailure";
|
|
1668
|
+
readonly EFSMountTimeout: "EFSMountTimeout";
|
|
1669
|
+
readonly EniLimitExceeded: "EniLimitExceeded";
|
|
1670
|
+
readonly FunctionError: "FunctionError";
|
|
1671
|
+
readonly Idle: "Idle";
|
|
1672
|
+
readonly ImageAccessDenied: "ImageAccessDenied";
|
|
1673
|
+
readonly ImageDeleted: "ImageDeleted";
|
|
1674
|
+
readonly InsufficientRolePermissions: "InsufficientRolePermissions";
|
|
1675
|
+
readonly InternalError: "InternalError";
|
|
1676
|
+
readonly InvalidConfiguration: "InvalidConfiguration";
|
|
1677
|
+
readonly InvalidImage: "InvalidImage";
|
|
1678
|
+
readonly InvalidRuntime: "InvalidRuntime";
|
|
1679
|
+
readonly InvalidSecurityGroup: "InvalidSecurityGroup";
|
|
1680
|
+
readonly InvalidStateKMSKey: "InvalidStateKMSKey";
|
|
1681
|
+
readonly InvalidSubnet: "InvalidSubnet";
|
|
1682
|
+
readonly InvalidZipFileException: "InvalidZipFileException";
|
|
1683
|
+
readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
|
|
1684
|
+
readonly KMSKeyNotFound: "KMSKeyNotFound";
|
|
1685
|
+
readonly Restoring: "Restoring";
|
|
1686
|
+
readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
|
|
1687
|
+
};
|
|
1688
|
+
/**
|
|
1689
|
+
* @public
|
|
1690
|
+
*/
|
|
1691
|
+
export type StateReasonCode = (typeof StateReasonCode)[keyof typeof StateReasonCode];
|
|
1602
1692
|
/**
|
|
1603
1693
|
* @public
|
|
1604
1694
|
* <p>The function's X-Ray tracing configuration.</p>
|
|
@@ -2803,12 +2893,17 @@ export interface GetProvisionedConcurrencyConfigRequest {
|
|
|
2803
2893
|
}
|
|
2804
2894
|
/**
|
|
2805
2895
|
* @public
|
|
2896
|
+
* @enum
|
|
2806
2897
|
*/
|
|
2807
|
-
export declare
|
|
2808
|
-
FAILED
|
|
2809
|
-
IN_PROGRESS
|
|
2810
|
-
READY
|
|
2811
|
-
}
|
|
2898
|
+
export declare const ProvisionedConcurrencyStatusEnum: {
|
|
2899
|
+
readonly FAILED: "FAILED";
|
|
2900
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2901
|
+
readonly READY: "READY";
|
|
2902
|
+
};
|
|
2903
|
+
/**
|
|
2904
|
+
* @public
|
|
2905
|
+
*/
|
|
2906
|
+
export type ProvisionedConcurrencyStatusEnum = (typeof ProvisionedConcurrencyStatusEnum)[keyof typeof ProvisionedConcurrencyStatusEnum];
|
|
2812
2907
|
/**
|
|
2813
2908
|
* @public
|
|
2814
2909
|
*/
|
|
@@ -2886,12 +2981,17 @@ export interface GetRuntimeManagementConfigRequest {
|
|
|
2886
2981
|
}
|
|
2887
2982
|
/**
|
|
2888
2983
|
* @public
|
|
2984
|
+
* @enum
|
|
2889
2985
|
*/
|
|
2890
|
-
export declare
|
|
2891
|
-
Auto
|
|
2892
|
-
FunctionUpdate
|
|
2893
|
-
Manual
|
|
2894
|
-
}
|
|
2986
|
+
export declare const UpdateRuntimeOn: {
|
|
2987
|
+
readonly Auto: "Auto";
|
|
2988
|
+
readonly FunctionUpdate: "FunctionUpdate";
|
|
2989
|
+
readonly Manual: "Manual";
|
|
2990
|
+
};
|
|
2991
|
+
/**
|
|
2992
|
+
* @public
|
|
2993
|
+
*/
|
|
2994
|
+
export type UpdateRuntimeOn = (typeof UpdateRuntimeOn)[keyof typeof UpdateRuntimeOn];
|
|
2895
2995
|
/**
|
|
2896
2996
|
* @public
|
|
2897
2997
|
*/
|
|
@@ -3103,19 +3203,29 @@ export declare class InvalidZipFileException extends __BaseException {
|
|
|
3103
3203
|
}
|
|
3104
3204
|
/**
|
|
3105
3205
|
* @public
|
|
3206
|
+
* @enum
|
|
3106
3207
|
*/
|
|
3107
|
-
export declare
|
|
3108
|
-
DryRun
|
|
3109
|
-
Event
|
|
3110
|
-
RequestResponse
|
|
3111
|
-
}
|
|
3208
|
+
export declare const InvocationType: {
|
|
3209
|
+
readonly DryRun: "DryRun";
|
|
3210
|
+
readonly Event: "Event";
|
|
3211
|
+
readonly RequestResponse: "RequestResponse";
|
|
3212
|
+
};
|
|
3112
3213
|
/**
|
|
3113
3214
|
* @public
|
|
3114
3215
|
*/
|
|
3115
|
-
export
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3216
|
+
export type InvocationType = (typeof InvocationType)[keyof typeof InvocationType];
|
|
3217
|
+
/**
|
|
3218
|
+
* @public
|
|
3219
|
+
* @enum
|
|
3220
|
+
*/
|
|
3221
|
+
export declare const LogType: {
|
|
3222
|
+
readonly None: "None";
|
|
3223
|
+
readonly Tail: "Tail";
|
|
3224
|
+
};
|
|
3225
|
+
/**
|
|
3226
|
+
* @public
|
|
3227
|
+
*/
|
|
3228
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
3119
3229
|
/**
|
|
3120
3230
|
* @public
|
|
3121
3231
|
*/
|
|
@@ -3629,10 +3739,15 @@ export interface ListFunctionEventInvokeConfigsResponse {
|
|
|
3629
3739
|
}
|
|
3630
3740
|
/**
|
|
3631
3741
|
* @public
|
|
3742
|
+
* @enum
|
|
3632
3743
|
*/
|
|
3633
|
-
export declare
|
|
3634
|
-
ALL
|
|
3635
|
-
}
|
|
3744
|
+
export declare const FunctionVersion: {
|
|
3745
|
+
readonly ALL: "ALL";
|
|
3746
|
+
};
|
|
3747
|
+
/**
|
|
3748
|
+
* @public
|
|
3749
|
+
*/
|
|
3750
|
+
export type FunctionVersion = (typeof FunctionVersion)[keyof typeof FunctionVersion];
|
|
3636
3751
|
/**
|
|
3637
3752
|
* @public
|
|
3638
3753
|
*/
|