@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.
Files changed (36) hide show
  1. package/dist-cjs/index.js +262 -236
  2. package/dist-es/index.js +2 -1
  3. package/dist-es/models/enums.js +237 -0
  4. package/dist-es/models/errors.js +607 -0
  5. package/dist-es/models/models_0.js +1 -841
  6. package/dist-es/schemas/schemas_0.js +24 -3
  7. package/dist-types/commands/CreateFunctionCommand.d.ts +8 -2
  8. package/dist-types/commands/GetFunctionCommand.d.ts +4 -1
  9. package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +4 -1
  10. package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
  11. package/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
  12. package/dist-types/commands/GetProvisionedConcurrencyConfigCommand.d.ts +4 -4
  13. package/dist-types/commands/InvokeCommand.d.ts +1 -0
  14. package/dist-types/commands/InvokeWithResponseStreamCommand.d.ts +1 -0
  15. package/dist-types/commands/ListFunctionsCommand.d.ts +4 -1
  16. package/dist-types/commands/ListLayerVersionsCommand.d.ts +2 -2
  17. package/dist-types/commands/ListLayersCommand.d.ts +2 -2
  18. package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +4 -1
  19. package/dist-types/commands/PublishLayerVersionCommand.d.ts +2 -2
  20. package/dist-types/commands/PublishVersionCommand.d.ts +4 -1
  21. package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +4 -1
  22. package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +5 -2
  23. package/dist-types/index.d.ts +3 -1
  24. package/dist-types/models/enums.d.ts +509 -0
  25. package/dist-types/models/errors.d.ts +580 -0
  26. package/dist-types/models/models_0.d.ts +34 -1079
  27. package/dist-types/schemas/schemas_0.d.ts +1 -0
  28. package/dist-types/ts3.4/index.d.ts +3 -1
  29. package/dist-types/ts3.4/models/enums.d.ts +294 -0
  30. package/dist-types/ts3.4/models/errors.d.ts +357 -0
  31. package/dist-types/ts3.4/models/models_0.d.ts +42 -645
  32. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
  33. package/package.json +12 -12
  34. package/dist-es/models/index.js +0 -1
  35. package/dist-types/models/index.d.ts +0 -1
  36. package/dist-types/ts3.4/models/index.d.ts +0 -1
@@ -1,6 +1,5 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { StreamingBlobTypes } from "@smithy/types";
3
- import { LambdaServiceException as __BaseException } from "./LambdaServiceException";
2
+ import { ApplicationLogLevel, Architecture, CodeSigningPolicy, EndPointType, EventSourceMappingMetric, EventSourcePosition, FullDocument, FunctionResponseType, FunctionUrlAuthType, FunctionVersion, InvocationType, InvokeMode, KafkaSchemaRegistryAuthType, KafkaSchemaValidationAttribute, LastUpdateStatus, LastUpdateStatusReasonCode, LogFormat, LogType, PackageType, ProvisionedConcurrencyStatusEnum, RecursiveLoop, ResponseStreamingInvocationType, Runtime, SchemaRegistryEventRecordFormat, SnapStartApplyOn, SnapStartOptimizationStatus, SourceAccessType, State, StateReasonCode, SystemLogLevel, TenantIsolationMode, TracingMode, UpdateRuntimeOn } from "./enums";
4
3
  /**
5
4
  * <p>Limits that are related to concurrency and storage. All file and storage sizes are in bytes.</p>
6
5
  * @public
@@ -103,145 +102,6 @@ export interface AddLayerVersionPermissionResponse {
103
102
  */
104
103
  RevisionId?: string | undefined;
105
104
  }
106
- /**
107
- * <p>One of the parameters in the request is not valid.</p>
108
- * @public
109
- */
110
- export declare class InvalidParameterValueException extends __BaseException {
111
- readonly name: "InvalidParameterValueException";
112
- readonly $fault: "client";
113
- /**
114
- * <p>The exception type.</p>
115
- * @public
116
- */
117
- Type?: string | undefined;
118
- /**
119
- * @internal
120
- */
121
- constructor(opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>);
122
- }
123
- /**
124
- * <p>The permissions policy for the resource is too large. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
125
- * @public
126
- */
127
- export declare class PolicyLengthExceededException extends __BaseException {
128
- readonly name: "PolicyLengthExceededException";
129
- readonly $fault: "client";
130
- Type?: string | undefined;
131
- /**
132
- * @internal
133
- */
134
- constructor(opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>);
135
- }
136
- /**
137
- * <p>The RevisionId provided does not match the latest RevisionId for the Lambda function or alias.</p> <ul> <li> <p> <b>For AddPermission and RemovePermission API operations:</b> Call <code>GetPolicy</code> to retrieve the latest RevisionId for your resource.</p> </li> <li> <p> <b>For all other API operations:</b> Call <code>GetFunction</code> or <code>GetAlias</code> to retrieve the latest RevisionId for your resource.</p> </li> </ul>
138
- * @public
139
- */
140
- export declare class PreconditionFailedException extends __BaseException {
141
- readonly name: "PreconditionFailedException";
142
- readonly $fault: "client";
143
- /**
144
- * <p>The exception type.</p>
145
- * @public
146
- */
147
- Type?: string | undefined;
148
- /**
149
- * @internal
150
- */
151
- constructor(opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>);
152
- }
153
- /**
154
- * <p>The resource already exists, or another operation is in progress.</p>
155
- * @public
156
- */
157
- export declare class ResourceConflictException extends __BaseException {
158
- readonly name: "ResourceConflictException";
159
- readonly $fault: "client";
160
- /**
161
- * <p>The exception type.</p>
162
- * @public
163
- */
164
- Type?: string | undefined;
165
- /**
166
- * @internal
167
- */
168
- constructor(opts: __ExceptionOptionType<ResourceConflictException, __BaseException>);
169
- }
170
- /**
171
- * <p>The resource specified in the request does not exist.</p>
172
- * @public
173
- */
174
- export declare class ResourceNotFoundException extends __BaseException {
175
- readonly name: "ResourceNotFoundException";
176
- readonly $fault: "client";
177
- Type?: string | undefined;
178
- Message?: string | undefined;
179
- /**
180
- * @internal
181
- */
182
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
183
- }
184
- /**
185
- * <p>The Lambda service encountered an internal error.</p>
186
- * @public
187
- */
188
- export declare class ServiceException extends __BaseException {
189
- readonly name: "ServiceException";
190
- readonly $fault: "server";
191
- Type?: string | undefined;
192
- Message?: string | undefined;
193
- /**
194
- * @internal
195
- */
196
- constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
197
- }
198
- /**
199
- * @public
200
- * @enum
201
- */
202
- export declare const ThrottleReason: {
203
- readonly CallerRateLimitExceeded: "CallerRateLimitExceeded";
204
- readonly ConcurrentInvocationLimitExceeded: "ConcurrentInvocationLimitExceeded";
205
- readonly ConcurrentSnapshotCreateLimitExceeded: "ConcurrentSnapshotCreateLimitExceeded";
206
- readonly FunctionInvocationRateLimitExceeded: "FunctionInvocationRateLimitExceeded";
207
- readonly ReservedFunctionConcurrentInvocationLimitExceeded: "ReservedFunctionConcurrentInvocationLimitExceeded";
208
- readonly ReservedFunctionInvocationRateLimitExceeded: "ReservedFunctionInvocationRateLimitExceeded";
209
- };
210
- /**
211
- * @public
212
- */
213
- export type ThrottleReason = (typeof ThrottleReason)[keyof typeof ThrottleReason];
214
- /**
215
- * <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
- * @public
217
- */
218
- export declare class TooManyRequestsException extends __BaseException {
219
- readonly name: "TooManyRequestsException";
220
- readonly $fault: "client";
221
- /**
222
- * <p>The number of seconds the caller should wait before retrying.</p>
223
- * @public
224
- */
225
- retryAfterSeconds?: string | undefined;
226
- Type?: string | undefined;
227
- Reason?: ThrottleReason | undefined;
228
- /**
229
- * @internal
230
- */
231
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
232
- }
233
- /**
234
- * @public
235
- * @enum
236
- */
237
- export declare const FunctionUrlAuthType: {
238
- readonly AWS_IAM: "AWS_IAM";
239
- readonly NONE: "NONE";
240
- };
241
- /**
242
- * @public
243
- */
244
- export type FunctionUrlAuthType = (typeof FunctionUrlAuthType)[keyof typeof FunctionUrlAuthType];
245
105
  /**
246
106
  * @public
247
107
  */
@@ -302,7 +162,7 @@ export interface AddPermissionRequest {
302
162
  */
303
163
  FunctionUrlAuthType?: FunctionUrlAuthType | undefined;
304
164
  /**
305
- * <p>Restricts the <code>lambda:InvokeFunction</code> action to function URL calls. When set to <code>true</code>, this prevents the principal from invoking the function by any means other than the function URL. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html">Control access to Lambda function URLs</a>.</p>
165
+ * <p>Restricts the <code>lambda:InvokeFunction</code> action to function URL calls. When specified, this option prevents the principal from invoking the function by any means other than the function URL. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html">Control access to Lambda function URLs</a>.</p>
306
166
  * @public
307
167
  */
308
168
  InvokedViaFunctionUrl?: boolean | undefined;
@@ -375,19 +235,6 @@ export interface AllowedPublishers {
375
235
  */
376
236
  SigningProfileVersionArns: string[] | undefined;
377
237
  }
378
- /**
379
- * @public
380
- * @enum
381
- */
382
- export declare const KafkaSchemaRegistryAuthType: {
383
- readonly BASIC_AUTH: "BASIC_AUTH";
384
- readonly CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH";
385
- readonly SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE";
386
- };
387
- /**
388
- * @public
389
- */
390
- export type KafkaSchemaRegistryAuthType = (typeof KafkaSchemaRegistryAuthType)[keyof typeof KafkaSchemaRegistryAuthType];
391
238
  /**
392
239
  * <p>Specific access configuration settings that tell Lambda how to authenticate with your schema registry.</p> <p>If you're working with an Glue schema registry, don't provide authentication details in this object. Instead, ensure that your execution role has the required permissions for Lambda to access your cluster.</p> <p>If you're working with a Confluent schema registry, choose the authentication method in the <code>Type</code> field, and provide the Secrets Manager secret ARN in the <code>URI</code> field.</p>
393
240
  * @public
@@ -404,30 +251,6 @@ export interface KafkaSchemaRegistryAccessConfig {
404
251
  */
405
252
  URI?: string | undefined;
406
253
  }
407
- /**
408
- * @public
409
- * @enum
410
- */
411
- export declare const SchemaRegistryEventRecordFormat: {
412
- readonly JSON: "JSON";
413
- readonly SOURCE: "SOURCE";
414
- };
415
- /**
416
- * @public
417
- */
418
- export type SchemaRegistryEventRecordFormat = (typeof SchemaRegistryEventRecordFormat)[keyof typeof SchemaRegistryEventRecordFormat];
419
- /**
420
- * @public
421
- * @enum
422
- */
423
- export declare const KafkaSchemaValidationAttribute: {
424
- readonly KEY: "KEY";
425
- readonly VALUE: "VALUE";
426
- };
427
- /**
428
- * @public
429
- */
430
- export type KafkaSchemaValidationAttribute = (typeof KafkaSchemaValidationAttribute)[keyof typeof KafkaSchemaValidationAttribute];
431
254
  /**
432
255
  * <p>Specific schema validation configuration settings that tell Lambda the message attributes you want to validate and filter using your schema registry.</p>
433
256
  * @public
@@ -481,46 +304,6 @@ export interface AmazonManagedKafkaEventSourceConfig {
481
304
  */
482
305
  SchemaRegistryConfig?: KafkaSchemaRegistryConfig | undefined;
483
306
  }
484
- /**
485
- * @public
486
- * @enum
487
- */
488
- export declare const ApplicationLogLevel: {
489
- readonly Debug: "DEBUG";
490
- readonly Error: "ERROR";
491
- readonly Fatal: "FATAL";
492
- readonly Info: "INFO";
493
- readonly Trace: "TRACE";
494
- readonly Warn: "WARN";
495
- };
496
- /**
497
- * @public
498
- */
499
- export type ApplicationLogLevel = (typeof ApplicationLogLevel)[keyof typeof ApplicationLogLevel];
500
- /**
501
- * @public
502
- * @enum
503
- */
504
- export declare const Architecture: {
505
- readonly arm64: "arm64";
506
- readonly x86_64: "x86_64";
507
- };
508
- /**
509
- * @public
510
- */
511
- export type Architecture = (typeof Architecture)[keyof typeof Architecture];
512
- /**
513
- * @public
514
- * @enum
515
- */
516
- export declare const CodeSigningPolicy: {
517
- readonly Enforce: "Enforce";
518
- readonly Warn: "Warn";
519
- };
520
- /**
521
- * @public
522
- */
523
- export type CodeSigningPolicy = (typeof CodeSigningPolicy)[keyof typeof CodeSigningPolicy];
524
307
  /**
525
308
  * <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 expiry.</p>
526
309
  * @public
@@ -776,18 +559,6 @@ export interface DestinationConfig {
776
559
  */
777
560
  OnFailure?: OnFailure | undefined;
778
561
  }
779
- /**
780
- * @public
781
- * @enum
782
- */
783
- export declare const FullDocument: {
784
- readonly Default: "Default";
785
- readonly UpdateLookup: "UpdateLookup";
786
- };
787
- /**
788
- * @public
789
- */
790
- export type FullDocument = (typeof FullDocument)[keyof typeof FullDocument];
791
562
  /**
792
563
  * <p> Specific configuration settings for a DocumentDB event source. </p>
793
564
  * @public
@@ -831,28 +602,6 @@ export interface FilterCriteria {
831
602
  */
832
603
  Filters?: Filter[] | undefined;
833
604
  }
834
- /**
835
- * @public
836
- * @enum
837
- */
838
- export declare const FunctionResponseType: {
839
- readonly ReportBatchItemFailures: "ReportBatchItemFailures";
840
- };
841
- /**
842
- * @public
843
- */
844
- export type FunctionResponseType = (typeof FunctionResponseType)[keyof typeof FunctionResponseType];
845
- /**
846
- * @public
847
- * @enum
848
- */
849
- export declare const EventSourceMappingMetric: {
850
- readonly EventCount: "EventCount";
851
- };
852
- /**
853
- * @public
854
- */
855
- export type EventSourceMappingMetric = (typeof EventSourceMappingMetric)[keyof typeof EventSourceMappingMetric];
856
605
  /**
857
606
  * <p>The metrics configuration for your event source. Use this configuration object to define which metrics you want your event source mapping to produce.</p>
858
607
  * @public
@@ -865,17 +614,17 @@ export interface EventSourceMappingMetricsConfig {
865
614
  Metrics?: EventSourceMappingMetric[] | undefined;
866
615
  }
867
616
  /**
868
- * <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode"> provisioned mode</a> configuration for the event source. Use Provisioned Mode to customize the minimum and maximum number of event pollers for your event source. An event poller is a compute unit that provides approximately 5 MBps of throughput.</p>
617
+ * <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode"> provisioned mode</a> configuration for the event source. Use Provisioned Mode to customize the minimum and maximum number of event pollers for your event source.</p>
869
618
  * @public
870
619
  */
871
620
  export interface ProvisionedPollerConfig {
872
621
  /**
873
- * <p>The minimum number of event pollers this event source can scale down to.</p>
622
+ * <p>The minimum number of event pollers this event source can scale down to. For Amazon SQS events source mappings, default is 2, and minimum 2 required. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 1.</p>
874
623
  * @public
875
624
  */
876
625
  MinimumPollers?: number | undefined;
877
626
  /**
878
- * <p>The maximum number of event pollers this event source can scale up to.</p>
627
+ * <p>The maximum number of event pollers this event source can scale up to. For Amazon SQS events source mappings, default is 200, and minimum value allowed is 2. For Amazon MSK and self-managed Apache Kafka event source mappings, default is 200, and minimum value allowed is 1.</p>
879
628
  * @public
880
629
  */
881
630
  MaximumPollers?: number | undefined;
@@ -891,17 +640,6 @@ export interface ScalingConfig {
891
640
  */
892
641
  MaximumConcurrency?: number | undefined;
893
642
  }
894
- /**
895
- * @public
896
- * @enum
897
- */
898
- export declare const EndPointType: {
899
- readonly KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS";
900
- };
901
- /**
902
- * @public
903
- */
904
- export type EndPointType = (typeof EndPointType)[keyof typeof EndPointType];
905
643
  /**
906
644
  * <p>The self-managed Apache Kafka cluster for your event source.</p>
907
645
  * @public
@@ -929,24 +667,6 @@ export interface SelfManagedKafkaEventSourceConfig {
929
667
  */
930
668
  SchemaRegistryConfig?: KafkaSchemaRegistryConfig | undefined;
931
669
  }
932
- /**
933
- * @public
934
- * @enum
935
- */
936
- export declare const SourceAccessType: {
937
- readonly BASIC_AUTH: "BASIC_AUTH";
938
- readonly CLIENT_CERTIFICATE_TLS_AUTH: "CLIENT_CERTIFICATE_TLS_AUTH";
939
- readonly SASL_SCRAM_256_AUTH: "SASL_SCRAM_256_AUTH";
940
- readonly SASL_SCRAM_512_AUTH: "SASL_SCRAM_512_AUTH";
941
- readonly SERVER_ROOT_CA_CERTIFICATE: "SERVER_ROOT_CA_CERTIFICATE";
942
- readonly VIRTUAL_HOST: "VIRTUAL_HOST";
943
- readonly VPC_SECURITY_GROUP: "VPC_SECURITY_GROUP";
944
- readonly VPC_SUBNET: "VPC_SUBNET";
945
- };
946
- /**
947
- * @public
948
- */
949
- export type SourceAccessType = (typeof SourceAccessType)[keyof typeof SourceAccessType];
950
670
  /**
951
671
  * <p>To secure and define access to your event source, you can specify the authentication protocol, VPC components, or virtual host.</p>
952
672
  * @public
@@ -963,19 +683,6 @@ export interface SourceAccessConfiguration {
963
683
  */
964
684
  URI?: string | undefined;
965
685
  }
966
- /**
967
- * @public
968
- * @enum
969
- */
970
- export declare const EventSourcePosition: {
971
- readonly AT_TIMESTAMP: "AT_TIMESTAMP";
972
- readonly LATEST: "LATEST";
973
- readonly TRIM_HORIZON: "TRIM_HORIZON";
974
- };
975
- /**
976
- * @public
977
- */
978
- export type EventSourcePosition = (typeof EventSourcePosition)[keyof typeof EventSourcePosition];
979
686
  /**
980
687
  * @public
981
688
  */
@@ -1111,7 +818,7 @@ export interface CreateEventSourceMappingRequest {
1111
818
  */
1112
819
  MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
1113
820
  /**
1114
- * <p>(Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
821
+ * <p>(Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
1115
822
  * @public
1116
823
  */
1117
824
  ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
@@ -1293,7 +1000,7 @@ export interface EventSourceMappingConfiguration {
1293
1000
  */
1294
1001
  MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
1295
1002
  /**
1296
- * <p>(Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
1003
+ * <p>(Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
1297
1004
  * @public
1298
1005
  */
1299
1006
  ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
@@ -1308,20 +1015,6 @@ export interface DeleteEventSourceMappingRequest {
1308
1015
  */
1309
1016
  UUID: string | undefined;
1310
1017
  }
1311
- /**
1312
- * <p>The operation conflicts with the resource's availability. For example, you tried to update an event source mapping in the CREATING state, or you tried to delete an event source mapping currently UPDATING.</p>
1313
- * @public
1314
- */
1315
- export declare class ResourceInUseException extends __BaseException {
1316
- readonly name: "ResourceInUseException";
1317
- readonly $fault: "client";
1318
- Type?: string | undefined;
1319
- Message?: string | undefined;
1320
- /**
1321
- * @internal
1322
- */
1323
- constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
1324
- }
1325
1018
  /**
1326
1019
  * @public
1327
1020
  */
@@ -1477,56 +1170,11 @@ export interface UpdateEventSourceMappingRequest {
1477
1170
  */
1478
1171
  MetricsConfig?: EventSourceMappingMetricsConfig | undefined;
1479
1172
  /**
1480
- * <p>(Amazon MSK and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
1173
+ * <p>(Amazon SQS, Amazon MSK, and self-managed Apache Kafka only) The provisioned mode configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventsourcemapping.html#invocation-eventsourcemapping-provisioned-mode">provisioned mode</a>.</p>
1481
1174
  * @public
1482
1175
  */
1483
1176
  ProvisionedPollerConfig?: ProvisionedPollerConfig | undefined;
1484
1177
  }
1485
- /**
1486
- * <p>The specified code signing configuration does not exist.</p>
1487
- * @public
1488
- */
1489
- export declare class CodeSigningConfigNotFoundException extends __BaseException {
1490
- readonly name: "CodeSigningConfigNotFoundException";
1491
- readonly $fault: "client";
1492
- Type?: string | undefined;
1493
- Message?: string | undefined;
1494
- /**
1495
- * @internal
1496
- */
1497
- constructor(opts: __ExceptionOptionType<CodeSigningConfigNotFoundException, __BaseException>);
1498
- }
1499
- /**
1500
- * <p>Your Amazon Web Services account has exceeded its maximum total code size. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
1501
- * @public
1502
- */
1503
- export declare class CodeStorageExceededException extends __BaseException {
1504
- readonly name: "CodeStorageExceededException";
1505
- readonly $fault: "client";
1506
- /**
1507
- * <p>The exception type.</p>
1508
- * @public
1509
- */
1510
- Type?: string | undefined;
1511
- /**
1512
- * @internal
1513
- */
1514
- constructor(opts: __ExceptionOptionType<CodeStorageExceededException, __BaseException>);
1515
- }
1516
- /**
1517
- * <p>The code signature failed one or more of the validation checks for signature mismatch or expiry, and the code signing policy is set to ENFORCE. Lambda blocks the deployment.</p>
1518
- * @public
1519
- */
1520
- export declare class CodeVerificationFailedException extends __BaseException {
1521
- readonly name: "CodeVerificationFailedException";
1522
- readonly $fault: "client";
1523
- Type?: string | undefined;
1524
- Message?: string | undefined;
1525
- /**
1526
- * @internal
1527
- */
1528
- constructor(opts: __ExceptionOptionType<CodeVerificationFailedException, __BaseException>);
1529
- }
1530
1178
  /**
1531
1179
  * <p>The code for the Lambda function. You can either specify an object in Amazon S3, upload a .zip file archive deployment package directly, or specify the URI of a container image.</p>
1532
1180
  * @public
@@ -1633,31 +1281,6 @@ export interface ImageConfig {
1633
1281
  */
1634
1282
  WorkingDirectory?: string | undefined;
1635
1283
  }
1636
- /**
1637
- * @public
1638
- * @enum
1639
- */
1640
- export declare const LogFormat: {
1641
- readonly Json: "JSON";
1642
- readonly Text: "Text";
1643
- };
1644
- /**
1645
- * @public
1646
- */
1647
- export type LogFormat = (typeof LogFormat)[keyof typeof LogFormat];
1648
- /**
1649
- * @public
1650
- * @enum
1651
- */
1652
- export declare const SystemLogLevel: {
1653
- readonly Debug: "DEBUG";
1654
- readonly Info: "INFO";
1655
- readonly Warn: "WARN";
1656
- };
1657
- /**
1658
- * @public
1659
- */
1660
- export type SystemLogLevel = (typeof SystemLogLevel)[keyof typeof SystemLogLevel];
1661
1284
  /**
1662
1285
  * <p>The function's Amazon CloudWatch Logs configuration settings.</p>
1663
1286
  * @public
@@ -1684,84 +1307,6 @@ export interface LoggingConfig {
1684
1307
  */
1685
1308
  LogGroup?: string | undefined;
1686
1309
  }
1687
- /**
1688
- * @public
1689
- * @enum
1690
- */
1691
- export declare const PackageType: {
1692
- readonly Image: "Image";
1693
- readonly Zip: "Zip";
1694
- };
1695
- /**
1696
- * @public
1697
- */
1698
- export type PackageType = (typeof PackageType)[keyof typeof PackageType];
1699
- /**
1700
- * @public
1701
- * @enum
1702
- */
1703
- export declare const Runtime: {
1704
- readonly dotnet6: "dotnet6";
1705
- readonly dotnet8: "dotnet8";
1706
- readonly dotnetcore10: "dotnetcore1.0";
1707
- readonly dotnetcore20: "dotnetcore2.0";
1708
- readonly dotnetcore21: "dotnetcore2.1";
1709
- readonly dotnetcore31: "dotnetcore3.1";
1710
- readonly go1x: "go1.x";
1711
- readonly java11: "java11";
1712
- readonly java17: "java17";
1713
- readonly java21: "java21";
1714
- readonly java25: "java25";
1715
- readonly java8: "java8";
1716
- readonly java8al2: "java8.al2";
1717
- readonly nodejs: "nodejs";
1718
- readonly nodejs10x: "nodejs10.x";
1719
- readonly nodejs12x: "nodejs12.x";
1720
- readonly nodejs14x: "nodejs14.x";
1721
- readonly nodejs16x: "nodejs16.x";
1722
- readonly nodejs18x: "nodejs18.x";
1723
- readonly nodejs20x: "nodejs20.x";
1724
- readonly nodejs22x: "nodejs22.x";
1725
- readonly nodejs24x: "nodejs24.x";
1726
- readonly nodejs43: "nodejs4.3";
1727
- readonly nodejs43edge: "nodejs4.3-edge";
1728
- readonly nodejs610: "nodejs6.10";
1729
- readonly nodejs810: "nodejs8.10";
1730
- readonly provided: "provided";
1731
- readonly providedal2: "provided.al2";
1732
- readonly providedal2023: "provided.al2023";
1733
- readonly python27: "python2.7";
1734
- readonly python310: "python3.10";
1735
- readonly python311: "python3.11";
1736
- readonly python312: "python3.12";
1737
- readonly python313: "python3.13";
1738
- readonly python314: "python3.14";
1739
- readonly python36: "python3.6";
1740
- readonly python37: "python3.7";
1741
- readonly python38: "python3.8";
1742
- readonly python39: "python3.9";
1743
- readonly ruby25: "ruby2.5";
1744
- readonly ruby27: "ruby2.7";
1745
- readonly ruby32: "ruby3.2";
1746
- readonly ruby33: "ruby3.3";
1747
- readonly ruby34: "ruby3.4";
1748
- };
1749
- /**
1750
- * @public
1751
- */
1752
- export type Runtime = (typeof Runtime)[keyof typeof Runtime];
1753
- /**
1754
- * @public
1755
- * @enum
1756
- */
1757
- export declare const SnapStartApplyOn: {
1758
- readonly None: "None";
1759
- readonly PublishedVersions: "PublishedVersions";
1760
- };
1761
- /**
1762
- * @public
1763
- */
1764
- export type SnapStartApplyOn = (typeof SnapStartApplyOn)[keyof typeof SnapStartApplyOn];
1765
1310
  /**
1766
1311
  * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">Lambda SnapStart</a> setting. Set <code>ApplyOn</code> to <code>PublishedVersions</code> to create a snapshot of the initialized execution environment when you publish a function version.</p>
1767
1312
  * @public
@@ -1774,17 +1319,16 @@ export interface SnapStart {
1774
1319
  ApplyOn?: SnapStartApplyOn | undefined;
1775
1320
  }
1776
1321
  /**
1777
- * @public
1778
- * @enum
1779
- */
1780
- export declare const TracingMode: {
1781
- readonly Active: "Active";
1782
- readonly PassThrough: "PassThrough";
1783
- };
1784
- /**
1322
+ * <p>Specifies the tenant isolation mode configuration for a Lambda function. This allows you to configure specific tenant isolation strategies for your function invocations. Tenant isolation configuration cannot be modified after function creation.</p>
1785
1323
  * @public
1786
1324
  */
1787
- export type TracingMode = (typeof TracingMode)[keyof typeof TracingMode];
1325
+ export interface TenancyConfig {
1326
+ /**
1327
+ * <p>Tenant isolation mode allows for invocation to be sent to a corresponding execution environment dedicated to a specific tenant ID.</p>
1328
+ * @public
1329
+ */
1330
+ TenantIsolationMode: TenantIsolationMode | undefined;
1331
+ }
1788
1332
  /**
1789
1333
  * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a> tracing configuration. To sample and record incoming requests, set <code>Mode</code> to <code>Active</code>.</p>
1790
1334
  * @public
@@ -1941,6 +1485,11 @@ export interface CreateFunctionRequest {
1941
1485
  * @public
1942
1486
  */
1943
1487
  LoggingConfig?: LoggingConfig | undefined;
1488
+ /**
1489
+ * <p>Configuration for multi-tenant applications that use Lambda functions. Defines tenant isolation settings and resource allocations. Required for functions supporting multiple tenants.</p>
1490
+ * @public
1491
+ */
1492
+ TenancyConfig?: TenancyConfig | undefined;
1944
1493
  }
1945
1494
  /**
1946
1495
  * <p>Error messages for environment variables that couldn't be applied.</p>
@@ -2006,50 +1555,6 @@ export interface ImageConfigResponse {
2006
1555
  */
2007
1556
  Error?: ImageConfigError | undefined;
2008
1557
  }
2009
- /**
2010
- * @public
2011
- * @enum
2012
- */
2013
- export declare const LastUpdateStatus: {
2014
- readonly Failed: "Failed";
2015
- readonly InProgress: "InProgress";
2016
- readonly Successful: "Successful";
2017
- };
2018
- /**
2019
- * @public
2020
- */
2021
- export type LastUpdateStatus = (typeof LastUpdateStatus)[keyof typeof LastUpdateStatus];
2022
- /**
2023
- * @public
2024
- * @enum
2025
- */
2026
- export declare const LastUpdateStatusReasonCode: {
2027
- readonly DisabledKMSKey: "DisabledKMSKey";
2028
- readonly EFSIOError: "EFSIOError";
2029
- readonly EFSMountConnectivityError: "EFSMountConnectivityError";
2030
- readonly EFSMountFailure: "EFSMountFailure";
2031
- readonly EFSMountTimeout: "EFSMountTimeout";
2032
- readonly EniLimitExceeded: "EniLimitExceeded";
2033
- readonly FunctionError: "FunctionError";
2034
- readonly ImageAccessDenied: "ImageAccessDenied";
2035
- readonly ImageDeleted: "ImageDeleted";
2036
- readonly InsufficientRolePermissions: "InsufficientRolePermissions";
2037
- readonly InternalError: "InternalError";
2038
- readonly InvalidConfiguration: "InvalidConfiguration";
2039
- readonly InvalidImage: "InvalidImage";
2040
- readonly InvalidRuntime: "InvalidRuntime";
2041
- readonly InvalidSecurityGroup: "InvalidSecurityGroup";
2042
- readonly InvalidStateKMSKey: "InvalidStateKMSKey";
2043
- readonly InvalidSubnet: "InvalidSubnet";
2044
- readonly InvalidZipFileException: "InvalidZipFileException";
2045
- readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
2046
- readonly KMSKeyNotFound: "KMSKeyNotFound";
2047
- readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
2048
- };
2049
- /**
2050
- * @public
2051
- */
2052
- export type LastUpdateStatusReasonCode = (typeof LastUpdateStatusReasonCode)[keyof typeof LastUpdateStatusReasonCode];
2053
1558
  /**
2054
1559
  * <p>An <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda layer</a>.</p>
2055
1560
  * @public
@@ -2108,18 +1613,6 @@ export interface RuntimeVersionConfig {
2108
1613
  */
2109
1614
  Error?: RuntimeVersionError | undefined;
2110
1615
  }
2111
- /**
2112
- * @public
2113
- * @enum
2114
- */
2115
- export declare const SnapStartOptimizationStatus: {
2116
- readonly Off: "Off";
2117
- readonly On: "On";
2118
- };
2119
- /**
2120
- * @public
2121
- */
2122
- export type SnapStartOptimizationStatus = (typeof SnapStartOptimizationStatus)[keyof typeof SnapStartOptimizationStatus];
2123
1616
  /**
2124
1617
  * <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
2125
1618
  * @public
@@ -2136,54 +1629,6 @@ export interface SnapStartResponse {
2136
1629
  */
2137
1630
  OptimizationStatus?: SnapStartOptimizationStatus | undefined;
2138
1631
  }
2139
- /**
2140
- * @public
2141
- * @enum
2142
- */
2143
- export declare const State: {
2144
- readonly Active: "Active";
2145
- readonly Failed: "Failed";
2146
- readonly Inactive: "Inactive";
2147
- readonly Pending: "Pending";
2148
- };
2149
- /**
2150
- * @public
2151
- */
2152
- export type State = (typeof State)[keyof typeof State];
2153
- /**
2154
- * @public
2155
- * @enum
2156
- */
2157
- export declare const StateReasonCode: {
2158
- readonly Creating: "Creating";
2159
- readonly DisabledKMSKey: "DisabledKMSKey";
2160
- readonly EFSIOError: "EFSIOError";
2161
- readonly EFSMountConnectivityError: "EFSMountConnectivityError";
2162
- readonly EFSMountFailure: "EFSMountFailure";
2163
- readonly EFSMountTimeout: "EFSMountTimeout";
2164
- readonly EniLimitExceeded: "EniLimitExceeded";
2165
- readonly FunctionError: "FunctionError";
2166
- readonly Idle: "Idle";
2167
- readonly ImageAccessDenied: "ImageAccessDenied";
2168
- readonly ImageDeleted: "ImageDeleted";
2169
- readonly InsufficientRolePermissions: "InsufficientRolePermissions";
2170
- readonly InternalError: "InternalError";
2171
- readonly InvalidConfiguration: "InvalidConfiguration";
2172
- readonly InvalidImage: "InvalidImage";
2173
- readonly InvalidRuntime: "InvalidRuntime";
2174
- readonly InvalidSecurityGroup: "InvalidSecurityGroup";
2175
- readonly InvalidStateKMSKey: "InvalidStateKMSKey";
2176
- readonly InvalidSubnet: "InvalidSubnet";
2177
- readonly InvalidZipFileException: "InvalidZipFileException";
2178
- readonly KMSKeyAccessDenied: "KMSKeyAccessDenied";
2179
- readonly KMSKeyNotFound: "KMSKeyNotFound";
2180
- readonly Restoring: "Restoring";
2181
- readonly SubnetOutOfIPAddresses: "SubnetOutOfIPAddresses";
2182
- };
2183
- /**
2184
- * @public
2185
- */
2186
- export type StateReasonCode = (typeof StateReasonCode)[keyof typeof StateReasonCode];
2187
1632
  /**
2188
1633
  * <p>The function's X-Ray tracing configuration.</p>
2189
1634
  * @public
@@ -2406,20 +1851,11 @@ export interface FunctionConfiguration {
2406
1851
  * @public
2407
1852
  */
2408
1853
  LoggingConfig?: LoggingConfig | undefined;
2409
- }
2410
- /**
2411
- * <p>The code signature failed the integrity check. If the integrity check fails, then Lambda blocks deployment, even if the code signing policy is set to WARN.</p>
2412
- * @public
2413
- */
2414
- export declare class InvalidCodeSignatureException extends __BaseException {
2415
- readonly name: "InvalidCodeSignatureException";
2416
- readonly $fault: "client";
2417
- Type?: string | undefined;
2418
- Message?: string | undefined;
2419
1854
  /**
2420
- * @internal
1855
+ * <p>The function's tenant isolation configuration settings. Determines whether the Lambda function runs on a shared or dedicated infrastructure per unique tenant.</p>
1856
+ * @public
2421
1857
  */
2422
- constructor(opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>);
1858
+ TenancyConfig?: TenancyConfig | undefined;
2423
1859
  }
2424
1860
  /**
2425
1861
  * <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings for your Lambda function URL. Use CORS to grant access to your function URL from any origin. You can also use CORS to control access for specific HTTP headers and methods in requests to your function URL.</p>
@@ -2457,18 +1893,6 @@ export interface Cors {
2457
1893
  */
2458
1894
  MaxAge?: number | undefined;
2459
1895
  }
2460
- /**
2461
- * @public
2462
- * @enum
2463
- */
2464
- export declare const InvokeMode: {
2465
- readonly BUFFERED: "BUFFERED";
2466
- readonly RESPONSE_STREAM: "RESPONSE_STREAM";
2467
- };
2468
- /**
2469
- * @public
2470
- */
2471
- export type InvokeMode = (typeof InvokeMode)[keyof typeof InvokeMode];
2472
1896
  /**
2473
1897
  * @public
2474
1898
  */
@@ -2816,18 +2240,6 @@ export interface GetFunctionRecursionConfigRequest {
2816
2240
  */
2817
2241
  FunctionName: string | undefined;
2818
2242
  }
2819
- /**
2820
- * @public
2821
- * @enum
2822
- */
2823
- export declare const RecursiveLoop: {
2824
- readonly Allow: "Allow";
2825
- readonly Terminate: "Terminate";
2826
- };
2827
- /**
2828
- * @public
2829
- */
2830
- export type RecursiveLoop = (typeof RecursiveLoop)[keyof typeof RecursiveLoop];
2831
2243
  /**
2832
2244
  * @public
2833
2245
  */
@@ -2938,19 +2350,6 @@ export interface GetRuntimeManagementConfigRequest {
2938
2350
  */
2939
2351
  Qualifier?: string | undefined;
2940
2352
  }
2941
- /**
2942
- * @public
2943
- * @enum
2944
- */
2945
- export declare const UpdateRuntimeOn: {
2946
- readonly Auto: "Auto";
2947
- readonly FunctionUpdate: "FunctionUpdate";
2948
- readonly Manual: "Manual";
2949
- };
2950
- /**
2951
- * @public
2952
- */
2953
- export type UpdateRuntimeOn = (typeof UpdateRuntimeOn)[keyof typeof UpdateRuntimeOn];
2954
2353
  /**
2955
2354
  * @public
2956
2355
  */
@@ -2971,217 +2370,6 @@ export interface GetRuntimeManagementConfigResponse {
2971
2370
  */
2972
2371
  FunctionArn?: string | undefined;
2973
2372
  }
2974
- /**
2975
- * <p>Need additional permissions to configure VPC settings.</p>
2976
- * @public
2977
- */
2978
- export declare class EC2AccessDeniedException extends __BaseException {
2979
- readonly name: "EC2AccessDeniedException";
2980
- readonly $fault: "server";
2981
- Type?: string | undefined;
2982
- Message?: string | undefined;
2983
- /**
2984
- * @internal
2985
- */
2986
- constructor(opts: __ExceptionOptionType<EC2AccessDeniedException, __BaseException>);
2987
- }
2988
- /**
2989
- * <p>Amazon EC2 throttled Lambda during Lambda function initialization using the execution role provided for the function.</p>
2990
- * @public
2991
- */
2992
- export declare class EC2ThrottledException extends __BaseException {
2993
- readonly name: "EC2ThrottledException";
2994
- readonly $fault: "server";
2995
- Type?: string | undefined;
2996
- Message?: string | undefined;
2997
- /**
2998
- * @internal
2999
- */
3000
- constructor(opts: __ExceptionOptionType<EC2ThrottledException, __BaseException>);
3001
- }
3002
- /**
3003
- * <p>Lambda received an unexpected Amazon EC2 client exception while setting up for the Lambda function.</p>
3004
- * @public
3005
- */
3006
- export declare class EC2UnexpectedException extends __BaseException {
3007
- readonly name: "EC2UnexpectedException";
3008
- readonly $fault: "server";
3009
- Type?: string | undefined;
3010
- Message?: string | undefined;
3011
- EC2ErrorCode?: string | undefined;
3012
- /**
3013
- * @internal
3014
- */
3015
- constructor(opts: __ExceptionOptionType<EC2UnexpectedException, __BaseException>);
3016
- }
3017
- /**
3018
- * <p>An error occurred when reading from or writing to a connected file system.</p>
3019
- * @public
3020
- */
3021
- export declare class EFSIOException extends __BaseException {
3022
- readonly name: "EFSIOException";
3023
- readonly $fault: "client";
3024
- Type?: string | undefined;
3025
- Message?: string | undefined;
3026
- /**
3027
- * @internal
3028
- */
3029
- constructor(opts: __ExceptionOptionType<EFSIOException, __BaseException>);
3030
- }
3031
- /**
3032
- * <p>The Lambda function couldn't make a network connection to the configured file system.</p>
3033
- * @public
3034
- */
3035
- export declare class EFSMountConnectivityException extends __BaseException {
3036
- readonly name: "EFSMountConnectivityException";
3037
- readonly $fault: "client";
3038
- Type?: string | undefined;
3039
- Message?: string | undefined;
3040
- /**
3041
- * @internal
3042
- */
3043
- constructor(opts: __ExceptionOptionType<EFSMountConnectivityException, __BaseException>);
3044
- }
3045
- /**
3046
- * <p>The Lambda function couldn't mount the configured file system due to a permission or configuration issue.</p>
3047
- * @public
3048
- */
3049
- export declare class EFSMountFailureException extends __BaseException {
3050
- readonly name: "EFSMountFailureException";
3051
- readonly $fault: "client";
3052
- Type?: string | undefined;
3053
- Message?: string | undefined;
3054
- /**
3055
- * @internal
3056
- */
3057
- constructor(opts: __ExceptionOptionType<EFSMountFailureException, __BaseException>);
3058
- }
3059
- /**
3060
- * <p>The Lambda function made a network connection to the configured file system, but the mount operation timed out.</p>
3061
- * @public
3062
- */
3063
- export declare class EFSMountTimeoutException extends __BaseException {
3064
- readonly name: "EFSMountTimeoutException";
3065
- readonly $fault: "client";
3066
- Type?: string | undefined;
3067
- Message?: string | undefined;
3068
- /**
3069
- * @internal
3070
- */
3071
- constructor(opts: __ExceptionOptionType<EFSMountTimeoutException, __BaseException>);
3072
- }
3073
- /**
3074
- * <p>Lambda couldn't create an elastic network interface in the VPC, specified as part of Lambda function configuration, because the limit for network interfaces has been reached. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
3075
- * @public
3076
- */
3077
- export declare class ENILimitReachedException extends __BaseException {
3078
- readonly name: "ENILimitReachedException";
3079
- readonly $fault: "server";
3080
- Type?: string | undefined;
3081
- Message?: string | undefined;
3082
- /**
3083
- * @internal
3084
- */
3085
- constructor(opts: __ExceptionOptionType<ENILimitReachedException, __BaseException>);
3086
- }
3087
- /**
3088
- * <p>The request body could not be parsed as JSON, or a request header is invalid. For example, the 'x-amzn-RequestId' header is not a valid UUID string.</p>
3089
- * @public
3090
- */
3091
- export declare class InvalidRequestContentException extends __BaseException {
3092
- readonly name: "InvalidRequestContentException";
3093
- readonly $fault: "client";
3094
- /**
3095
- * <p>The exception type.</p>
3096
- * @public
3097
- */
3098
- Type?: string | undefined;
3099
- /**
3100
- * @internal
3101
- */
3102
- constructor(opts: __ExceptionOptionType<InvalidRequestContentException, __BaseException>);
3103
- }
3104
- /**
3105
- * <p>The runtime or runtime version specified is not supported.</p>
3106
- * @public
3107
- */
3108
- export declare class InvalidRuntimeException extends __BaseException {
3109
- readonly name: "InvalidRuntimeException";
3110
- readonly $fault: "server";
3111
- Type?: string | undefined;
3112
- Message?: string | undefined;
3113
- /**
3114
- * @internal
3115
- */
3116
- constructor(opts: __ExceptionOptionType<InvalidRuntimeException, __BaseException>);
3117
- }
3118
- /**
3119
- * <p>The security group ID provided in the Lambda function VPC configuration is not valid.</p>
3120
- * @public
3121
- */
3122
- export declare class InvalidSecurityGroupIDException extends __BaseException {
3123
- readonly name: "InvalidSecurityGroupIDException";
3124
- readonly $fault: "server";
3125
- Type?: string | undefined;
3126
- Message?: string | undefined;
3127
- /**
3128
- * @internal
3129
- */
3130
- constructor(opts: __ExceptionOptionType<InvalidSecurityGroupIDException, __BaseException>);
3131
- }
3132
- /**
3133
- * <p>The subnet ID provided in the Lambda function VPC configuration is not valid.</p>
3134
- * @public
3135
- */
3136
- export declare class InvalidSubnetIDException extends __BaseException {
3137
- readonly name: "InvalidSubnetIDException";
3138
- readonly $fault: "server";
3139
- Type?: string | undefined;
3140
- Message?: string | undefined;
3141
- /**
3142
- * @internal
3143
- */
3144
- constructor(opts: __ExceptionOptionType<InvalidSubnetIDException, __BaseException>);
3145
- }
3146
- /**
3147
- * <p>Lambda could not unzip the deployment package.</p>
3148
- * @public
3149
- */
3150
- export declare class InvalidZipFileException extends __BaseException {
3151
- readonly name: "InvalidZipFileException";
3152
- readonly $fault: "server";
3153
- Type?: string | undefined;
3154
- Message?: string | undefined;
3155
- /**
3156
- * @internal
3157
- */
3158
- constructor(opts: __ExceptionOptionType<InvalidZipFileException, __BaseException>);
3159
- }
3160
- /**
3161
- * @public
3162
- * @enum
3163
- */
3164
- export declare const InvocationType: {
3165
- readonly DryRun: "DryRun";
3166
- readonly Event: "Event";
3167
- readonly RequestResponse: "RequestResponse";
3168
- };
3169
- /**
3170
- * @public
3171
- */
3172
- export type InvocationType = (typeof InvocationType)[keyof typeof InvocationType];
3173
- /**
3174
- * @public
3175
- * @enum
3176
- */
3177
- export declare const LogType: {
3178
- readonly None: "None";
3179
- readonly Tail: "Tail";
3180
- };
3181
- /**
3182
- * @public
3183
- */
3184
- export type LogType = (typeof LogType)[keyof typeof LogType];
3185
2373
  /**
3186
2374
  * @public
3187
2375
  */
@@ -3216,6 +2404,11 @@ export interface InvocationRequest {
3216
2404
  * @public
3217
2405
  */
3218
2406
  Qualifier?: string | undefined;
2407
+ /**
2408
+ * <p>The identifier of the tenant in a multi-tenant Lambda function.</p>
2409
+ * @public
2410
+ */
2411
+ TenantId?: string | undefined;
3219
2412
  }
3220
2413
  /**
3221
2414
  * @public
@@ -3247,200 +2440,6 @@ export interface InvocationResponse {
3247
2440
  */
3248
2441
  ExecutedVersion?: string | undefined;
3249
2442
  }
3250
- /**
3251
- * <p>Lambda couldn't decrypt the environment variables because KMS access was denied. Check the Lambda function's KMS permissions.</p>
3252
- * @public
3253
- */
3254
- export declare class KMSAccessDeniedException extends __BaseException {
3255
- readonly name: "KMSAccessDeniedException";
3256
- readonly $fault: "server";
3257
- Type?: string | undefined;
3258
- Message?: string | undefined;
3259
- /**
3260
- * @internal
3261
- */
3262
- constructor(opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>);
3263
- }
3264
- /**
3265
- * <p>Lambda couldn't decrypt the environment variables because the KMS key used is disabled. Check the Lambda function's KMS key settings.</p>
3266
- * @public
3267
- */
3268
- export declare class KMSDisabledException extends __BaseException {
3269
- readonly name: "KMSDisabledException";
3270
- readonly $fault: "server";
3271
- Type?: string | undefined;
3272
- Message?: string | undefined;
3273
- /**
3274
- * @internal
3275
- */
3276
- constructor(opts: __ExceptionOptionType<KMSDisabledException, __BaseException>);
3277
- }
3278
- /**
3279
- * <p>Lambda couldn't decrypt the environment variables because the state of the KMS key used is not valid for Decrypt. Check the function's KMS key settings.</p>
3280
- * @public
3281
- */
3282
- export declare class KMSInvalidStateException extends __BaseException {
3283
- readonly name: "KMSInvalidStateException";
3284
- readonly $fault: "server";
3285
- Type?: string | undefined;
3286
- Message?: string | undefined;
3287
- /**
3288
- * @internal
3289
- */
3290
- constructor(opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>);
3291
- }
3292
- /**
3293
- * <p>Lambda couldn't decrypt the environment variables because the KMS key was not found. Check the function's KMS key settings.</p>
3294
- * @public
3295
- */
3296
- export declare class KMSNotFoundException extends __BaseException {
3297
- readonly name: "KMSNotFoundException";
3298
- readonly $fault: "server";
3299
- Type?: string | undefined;
3300
- Message?: string | undefined;
3301
- /**
3302
- * @internal
3303
- */
3304
- constructor(opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>);
3305
- }
3306
- /**
3307
- * <p>Lambda has detected your function being invoked in a recursive loop with other Amazon Web Services resources and stopped your function's invocation.</p>
3308
- * @public
3309
- */
3310
- export declare class RecursiveInvocationException extends __BaseException {
3311
- readonly name: "RecursiveInvocationException";
3312
- readonly $fault: "client";
3313
- /**
3314
- * <p>The exception type.</p>
3315
- * @public
3316
- */
3317
- Type?: string | undefined;
3318
- /**
3319
- * <p>The exception message.</p>
3320
- * @public
3321
- */
3322
- Message?: string | undefined;
3323
- /**
3324
- * @internal
3325
- */
3326
- constructor(opts: __ExceptionOptionType<RecursiveInvocationException, __BaseException>);
3327
- }
3328
- /**
3329
- * <p>The request payload exceeded the <code>Invoke</code> request body JSON input quota. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html">Lambda quotas</a>.</p>
3330
- * @public
3331
- */
3332
- export declare class RequestTooLargeException extends __BaseException {
3333
- readonly name: "RequestTooLargeException";
3334
- readonly $fault: "client";
3335
- Type?: string | undefined;
3336
- /**
3337
- * @internal
3338
- */
3339
- constructor(opts: __ExceptionOptionType<RequestTooLargeException, __BaseException>);
3340
- }
3341
- /**
3342
- * <p>The function is inactive and its VPC connection is no longer available. Wait for the VPC connection to reestablish and try again.</p>
3343
- * @public
3344
- */
3345
- export declare class ResourceNotReadyException extends __BaseException {
3346
- readonly name: "ResourceNotReadyException";
3347
- readonly $fault: "server";
3348
- /**
3349
- * <p>The exception type.</p>
3350
- * @public
3351
- */
3352
- Type?: string | undefined;
3353
- /**
3354
- * @internal
3355
- */
3356
- constructor(opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>);
3357
- }
3358
- /**
3359
- * <p>The processed request payload exceeded the <code>Invoke</code> request body size limit for asynchronous invocations. While the event payload may be under 1 MB, the size after internal serialization exceeds the maximum allowed size for asynchronous invocations.</p>
3360
- * @public
3361
- */
3362
- export declare class SerializedRequestEntityTooLargeException extends __BaseException {
3363
- readonly name: "SerializedRequestEntityTooLargeException";
3364
- readonly $fault: "client";
3365
- /**
3366
- * <p>The error type.</p>
3367
- * @public
3368
- */
3369
- Type?: string | undefined;
3370
- /**
3371
- * @internal
3372
- */
3373
- constructor(opts: __ExceptionOptionType<SerializedRequestEntityTooLargeException, __BaseException>);
3374
- }
3375
- /**
3376
- * <p>The <code>afterRestore()</code> <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart-runtime-hooks.html">runtime hook</a> encountered an error. For more information, check the Amazon CloudWatch logs.</p>
3377
- * @public
3378
- */
3379
- export declare class SnapStartException extends __BaseException {
3380
- readonly name: "SnapStartException";
3381
- readonly $fault: "client";
3382
- Type?: string | undefined;
3383
- Message?: string | undefined;
3384
- /**
3385
- * @internal
3386
- */
3387
- constructor(opts: __ExceptionOptionType<SnapStartException, __BaseException>);
3388
- }
3389
- /**
3390
- * <p>Lambda is initializing your function. You can invoke the function when the <a href="https://docs.aws.amazon.com/lambda/latest/dg/functions-states.html">function state</a> becomes <code>Active</code>.</p>
3391
- * @public
3392
- */
3393
- export declare class SnapStartNotReadyException extends __BaseException {
3394
- readonly name: "SnapStartNotReadyException";
3395
- readonly $fault: "client";
3396
- Type?: string | undefined;
3397
- Message?: string | undefined;
3398
- /**
3399
- * @internal
3400
- */
3401
- constructor(opts: __ExceptionOptionType<SnapStartNotReadyException, __BaseException>);
3402
- }
3403
- /**
3404
- * <p>Lambda couldn't restore the snapshot within the timeout limit.</p>
3405
- * @public
3406
- */
3407
- export declare class SnapStartTimeoutException extends __BaseException {
3408
- readonly name: "SnapStartTimeoutException";
3409
- readonly $fault: "client";
3410
- Type?: string | undefined;
3411
- Message?: string | undefined;
3412
- /**
3413
- * @internal
3414
- */
3415
- constructor(opts: __ExceptionOptionType<SnapStartTimeoutException, __BaseException>);
3416
- }
3417
- /**
3418
- * <p>Lambda couldn't set up VPC access for the Lambda function because one or more configured subnets has no available IP addresses.</p>
3419
- * @public
3420
- */
3421
- export declare class SubnetIPAddressLimitReachedException extends __BaseException {
3422
- readonly name: "SubnetIPAddressLimitReachedException";
3423
- readonly $fault: "server";
3424
- Type?: string | undefined;
3425
- Message?: string | undefined;
3426
- /**
3427
- * @internal
3428
- */
3429
- constructor(opts: __ExceptionOptionType<SubnetIPAddressLimitReachedException, __BaseException>);
3430
- }
3431
- /**
3432
- * <p>The content type of the <code>Invoke</code> request body is not JSON.</p>
3433
- * @public
3434
- */
3435
- export declare class UnsupportedMediaTypeException extends __BaseException {
3436
- readonly name: "UnsupportedMediaTypeException";
3437
- readonly $fault: "client";
3438
- Type?: string | undefined;
3439
- /**
3440
- * @internal
3441
- */
3442
- constructor(opts: __ExceptionOptionType<UnsupportedMediaTypeException, __BaseException>);
3443
- }
3444
2443
  /**
3445
2444
  * @public
3446
2445
  */
@@ -3469,18 +2468,6 @@ export interface InvokeAsyncResponse {
3469
2468
  */
3470
2469
  Status?: number | undefined;
3471
2470
  }
3472
- /**
3473
- * @public
3474
- * @enum
3475
- */
3476
- export declare const ResponseStreamingInvocationType: {
3477
- readonly DryRun: "DryRun";
3478
- readonly RequestResponse: "RequestResponse";
3479
- };
3480
- /**
3481
- * @public
3482
- */
3483
- export type ResponseStreamingInvocationType = (typeof ResponseStreamingInvocationType)[keyof typeof ResponseStreamingInvocationType];
3484
2471
  /**
3485
2472
  * @public
3486
2473
  */
@@ -3515,6 +2502,11 @@ export interface InvokeWithResponseStreamRequest {
3515
2502
  * @public
3516
2503
  */
3517
2504
  Payload?: Uint8Array | undefined;
2505
+ /**
2506
+ * <p>The identifier of the tenant in a multi-tenant Lambda function.</p>
2507
+ * @public
2508
+ */
2509
+ TenantId?: string | undefined;
3518
2510
  }
3519
2511
  /**
3520
2512
  * <p>A response confirming that the event stream is complete.</p>
@@ -3653,17 +2645,6 @@ export interface ListFunctionEventInvokeConfigsResponse {
3653
2645
  */
3654
2646
  NextMarker?: string | undefined;
3655
2647
  }
3656
- /**
3657
- * @public
3658
- * @enum
3659
- */
3660
- export declare const FunctionVersion: {
3661
- readonly ALL: "ALL";
3662
- };
3663
- /**
3664
- * @public
3665
- */
3666
- export type FunctionVersion = (typeof FunctionVersion)[keyof typeof FunctionVersion];
3667
2648
  /**
3668
2649
  * @public
3669
2650
  */
@@ -3801,19 +2782,6 @@ export interface ListProvisionedConcurrencyConfigsRequest {
3801
2782
  */
3802
2783
  MaxItems?: number | undefined;
3803
2784
  }
3804
- /**
3805
- * @public
3806
- * @enum
3807
- */
3808
- export declare const ProvisionedConcurrencyStatusEnum: {
3809
- readonly FAILED: "FAILED";
3810
- readonly IN_PROGRESS: "IN_PROGRESS";
3811
- readonly READY: "READY";
3812
- };
3813
- /**
3814
- * @public
3815
- */
3816
- export type ProvisionedConcurrencyStatusEnum = (typeof ProvisionedConcurrencyStatusEnum)[keyof typeof ProvisionedConcurrencyStatusEnum];
3817
2785
  /**
3818
2786
  * <p>Details about the provisioned concurrency configuration for a function alias or version.</p>
3819
2787
  * @public
@@ -5034,19 +4002,6 @@ export interface GetProvisionedConcurrencyConfigResponse {
5034
4002
  */
5035
4003
  LastModified?: string | undefined;
5036
4004
  }
5037
- /**
5038
- * <p>The specified configuration does not exist.</p>
5039
- * @public
5040
- */
5041
- export declare class ProvisionedConcurrencyConfigNotFoundException extends __BaseException {
5042
- readonly name: "ProvisionedConcurrencyConfigNotFoundException";
5043
- readonly $fault: "client";
5044
- Type?: string | undefined;
5045
- /**
5046
- * @internal
5047
- */
5048
- constructor(opts: __ExceptionOptionType<ProvisionedConcurrencyConfigNotFoundException, __BaseException>);
5049
- }
5050
4005
  /**
5051
4006
  * @public
5052
4007
  */