@aws-sdk/client-lambda 3.688.0 → 3.691.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.
@@ -2,15 +2,15 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { StreamingBlobTypes } from "@smithy/types";
3
3
  import { LambdaServiceException as __BaseException } from "./LambdaServiceException";
4
4
  export interface AccountLimit {
5
- TotalCodeSize?: number;
6
- CodeSizeUnzipped?: number;
7
- CodeSizeZipped?: number;
8
- ConcurrentExecutions?: number;
9
- UnreservedConcurrentExecutions?: number;
5
+ TotalCodeSize?: number | undefined;
6
+ CodeSizeUnzipped?: number | undefined;
7
+ CodeSizeZipped?: number | undefined;
8
+ ConcurrentExecutions?: number | undefined;
9
+ UnreservedConcurrentExecutions?: number | undefined;
10
10
  }
11
11
  export interface AccountUsage {
12
- TotalCodeSize?: number;
13
- FunctionCount?: number;
12
+ TotalCodeSize?: number | undefined;
13
+ FunctionCount?: number | undefined;
14
14
  }
15
15
  export interface AddLayerVersionPermissionRequest {
16
16
  LayerName: string | undefined;
@@ -18,17 +18,17 @@ export interface AddLayerVersionPermissionRequest {
18
18
  StatementId: string | undefined;
19
19
  Action: string | undefined;
20
20
  Principal: string | undefined;
21
- OrganizationId?: string;
22
- RevisionId?: string;
21
+ OrganizationId?: string | undefined;
22
+ RevisionId?: string | undefined;
23
23
  }
24
24
  export interface AddLayerVersionPermissionResponse {
25
- Statement?: string;
26
- RevisionId?: string;
25
+ Statement?: string | undefined;
26
+ RevisionId?: string | undefined;
27
27
  }
28
28
  export declare class InvalidParameterValueException extends __BaseException {
29
29
  readonly name: "InvalidParameterValueException";
30
30
  readonly $fault: "client";
31
- Type?: string;
31
+ Type?: string | undefined;
32
32
  constructor(
33
33
  opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
34
34
  );
@@ -36,7 +36,7 @@ export declare class InvalidParameterValueException extends __BaseException {
36
36
  export declare class PolicyLengthExceededException extends __BaseException {
37
37
  readonly name: "PolicyLengthExceededException";
38
38
  readonly $fault: "client";
39
- Type?: string;
39
+ Type?: string | undefined;
40
40
  constructor(
41
41
  opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>
42
42
  );
@@ -44,7 +44,7 @@ export declare class PolicyLengthExceededException extends __BaseException {
44
44
  export declare class PreconditionFailedException extends __BaseException {
45
45
  readonly name: "PreconditionFailedException";
46
46
  readonly $fault: "client";
47
- Type?: string;
47
+ Type?: string | undefined;
48
48
  constructor(
49
49
  opts: __ExceptionOptionType<PreconditionFailedException, __BaseException>
50
50
  );
@@ -52,7 +52,7 @@ export declare class PreconditionFailedException extends __BaseException {
52
52
  export declare class ResourceConflictException extends __BaseException {
53
53
  readonly name: "ResourceConflictException";
54
54
  readonly $fault: "client";
55
- Type?: string;
55
+ Type?: string | undefined;
56
56
  constructor(
57
57
  opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
58
58
  );
@@ -60,8 +60,8 @@ export declare class ResourceConflictException extends __BaseException {
60
60
  export declare class ResourceNotFoundException extends __BaseException {
61
61
  readonly name: "ResourceNotFoundException";
62
62
  readonly $fault: "client";
63
- Type?: string;
64
- Message?: string;
63
+ Type?: string | undefined;
64
+ Message?: string | undefined;
65
65
  constructor(
66
66
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
67
67
  );
@@ -69,8 +69,8 @@ export declare class ResourceNotFoundException extends __BaseException {
69
69
  export declare class ServiceException extends __BaseException {
70
70
  readonly name: "ServiceException";
71
71
  readonly $fault: "server";
72
- Type?: string;
73
- Message?: string;
72
+ Type?: string | undefined;
73
+ Message?: string | undefined;
74
74
  constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
75
75
  }
76
76
  export declare const ThrottleReason: {
@@ -86,9 +86,9 @@ export type ThrottleReason =
86
86
  export declare class TooManyRequestsException extends __BaseException {
87
87
  readonly name: "TooManyRequestsException";
88
88
  readonly $fault: "client";
89
- retryAfterSeconds?: string;
90
- Type?: string;
91
- Reason?: ThrottleReason;
89
+ retryAfterSeconds?: string | undefined;
90
+ Type?: string | undefined;
91
+ Reason?: ThrottleReason | undefined;
92
92
  constructor(
93
93
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
94
94
  );
@@ -104,33 +104,33 @@ export interface AddPermissionRequest {
104
104
  StatementId: string | undefined;
105
105
  Action: string | undefined;
106
106
  Principal: string | undefined;
107
- SourceArn?: string;
108
- SourceAccount?: string;
109
- EventSourceToken?: string;
110
- Qualifier?: string;
111
- RevisionId?: string;
112
- PrincipalOrgID?: string;
113
- FunctionUrlAuthType?: FunctionUrlAuthType;
107
+ SourceArn?: string | undefined;
108
+ SourceAccount?: string | undefined;
109
+ EventSourceToken?: string | undefined;
110
+ Qualifier?: string | undefined;
111
+ RevisionId?: string | undefined;
112
+ PrincipalOrgID?: string | undefined;
113
+ FunctionUrlAuthType?: FunctionUrlAuthType | undefined;
114
114
  }
115
115
  export interface AddPermissionResponse {
116
- Statement?: string;
116
+ Statement?: string | undefined;
117
117
  }
118
118
  export interface AliasRoutingConfiguration {
119
- AdditionalVersionWeights?: Record<string, number>;
119
+ AdditionalVersionWeights?: Record<string, number> | undefined;
120
120
  }
121
121
  export interface AliasConfiguration {
122
- AliasArn?: string;
123
- Name?: string;
124
- FunctionVersion?: string;
125
- Description?: string;
126
- RoutingConfig?: AliasRoutingConfiguration;
127
- RevisionId?: string;
122
+ AliasArn?: string | undefined;
123
+ Name?: string | undefined;
124
+ FunctionVersion?: string | undefined;
125
+ Description?: string | undefined;
126
+ RoutingConfig?: AliasRoutingConfiguration | undefined;
127
+ RevisionId?: string | undefined;
128
128
  }
129
129
  export interface AllowedPublishers {
130
130
  SigningProfileVersionArns: string[] | undefined;
131
131
  }
132
132
  export interface AmazonManagedKafkaEventSourceConfig {
133
- ConsumerGroupId?: string;
133
+ ConsumerGroupId?: string | undefined;
134
134
  }
135
135
  export declare const ApplicationLogLevel: {
136
136
  readonly Debug: "DEBUG";
@@ -151,8 +151,8 @@ export interface CreateAliasRequest {
151
151
  FunctionName: string | undefined;
152
152
  Name: string | undefined;
153
153
  FunctionVersion: string | undefined;
154
- Description?: string;
155
- RoutingConfig?: AliasRoutingConfiguration;
154
+ Description?: string | undefined;
155
+ RoutingConfig?: AliasRoutingConfiguration | undefined;
156
156
  }
157
157
  export declare const CodeSigningPolicy: {
158
158
  readonly Enforce: "Enforce";
@@ -161,18 +161,18 @@ export declare const CodeSigningPolicy: {
161
161
  export type CodeSigningPolicy =
162
162
  (typeof CodeSigningPolicy)[keyof typeof CodeSigningPolicy];
163
163
  export interface CodeSigningPolicies {
164
- UntrustedArtifactOnDeployment?: CodeSigningPolicy;
164
+ UntrustedArtifactOnDeployment?: CodeSigningPolicy | undefined;
165
165
  }
166
166
  export interface CreateCodeSigningConfigRequest {
167
- Description?: string;
167
+ Description?: string | undefined;
168
168
  AllowedPublishers: AllowedPublishers | undefined;
169
- CodeSigningPolicies?: CodeSigningPolicies;
170
- Tags?: Record<string, string>;
169
+ CodeSigningPolicies?: CodeSigningPolicies | undefined;
170
+ Tags?: Record<string, string> | undefined;
171
171
  }
172
172
  export interface CodeSigningConfig {
173
173
  CodeSigningConfigId: string | undefined;
174
174
  CodeSigningConfigArn: string | undefined;
175
- Description?: string;
175
+ Description?: string | undefined;
176
176
  AllowedPublishers: AllowedPublishers | undefined;
177
177
  CodeSigningPolicies: CodeSigningPolicies | undefined;
178
178
  LastModified: string | undefined;
@@ -181,14 +181,14 @@ export interface CreateCodeSigningConfigResponse {
181
181
  CodeSigningConfig: CodeSigningConfig | undefined;
182
182
  }
183
183
  export interface OnFailure {
184
- Destination?: string;
184
+ Destination?: string | undefined;
185
185
  }
186
186
  export interface OnSuccess {
187
- Destination?: string;
187
+ Destination?: string | undefined;
188
188
  }
189
189
  export interface DestinationConfig {
190
- OnSuccess?: OnSuccess;
191
- OnFailure?: OnFailure;
190
+ OnSuccess?: OnSuccess | undefined;
191
+ OnFailure?: OnFailure | undefined;
192
192
  }
193
193
  export declare const FullDocument: {
194
194
  readonly Default: "Default";
@@ -196,15 +196,15 @@ export declare const FullDocument: {
196
196
  };
197
197
  export type FullDocument = (typeof FullDocument)[keyof typeof FullDocument];
198
198
  export interface DocumentDBEventSourceConfig {
199
- DatabaseName?: string;
200
- CollectionName?: string;
201
- FullDocument?: FullDocument;
199
+ DatabaseName?: string | undefined;
200
+ CollectionName?: string | undefined;
201
+ FullDocument?: FullDocument | undefined;
202
202
  }
203
203
  export interface Filter {
204
- Pattern?: string;
204
+ Pattern?: string | undefined;
205
205
  }
206
206
  export interface FilterCriteria {
207
- Filters?: Filter[];
207
+ Filters?: Filter[] | undefined;
208
208
  }
209
209
  export declare const FunctionResponseType: {
210
210
  readonly ReportBatchItemFailures: "ReportBatchItemFailures";
@@ -212,17 +212,17 @@ export declare const FunctionResponseType: {
212
212
  export type FunctionResponseType =
213
213
  (typeof FunctionResponseType)[keyof typeof FunctionResponseType];
214
214
  export interface ScalingConfig {
215
- MaximumConcurrency?: number;
215
+ MaximumConcurrency?: number | undefined;
216
216
  }
217
217
  export declare const EndPointType: {
218
218
  readonly KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS";
219
219
  };
220
220
  export type EndPointType = (typeof EndPointType)[keyof typeof EndPointType];
221
221
  export interface SelfManagedEventSource {
222
- Endpoints?: Partial<Record<EndPointType, string[]>>;
222
+ Endpoints?: Partial<Record<EndPointType, string[]>> | undefined;
223
223
  }
224
224
  export interface SelfManagedKafkaEventSourceConfig {
225
- ConsumerGroupId?: string;
225
+ ConsumerGroupId?: string | undefined;
226
226
  }
227
227
  export declare const SourceAccessType: {
228
228
  readonly BASIC_AUTH: "BASIC_AUTH";
@@ -237,8 +237,8 @@ export declare const SourceAccessType: {
237
237
  export type SourceAccessType =
238
238
  (typeof SourceAccessType)[keyof typeof SourceAccessType];
239
239
  export interface SourceAccessConfiguration {
240
- Type?: SourceAccessType;
241
- URI?: string;
240
+ Type?: SourceAccessType | undefined;
241
+ URI?: string | undefined;
242
242
  }
243
243
  export declare const EventSourcePosition: {
244
244
  readonly AT_TIMESTAMP: "AT_TIMESTAMP";
@@ -248,73 +248,81 @@ export declare const EventSourcePosition: {
248
248
  export type EventSourcePosition =
249
249
  (typeof EventSourcePosition)[keyof typeof EventSourcePosition];
250
250
  export interface CreateEventSourceMappingRequest {
251
- EventSourceArn?: string;
251
+ EventSourceArn?: string | undefined;
252
252
  FunctionName: string | undefined;
253
- Enabled?: boolean;
254
- BatchSize?: number;
255
- FilterCriteria?: FilterCriteria;
256
- MaximumBatchingWindowInSeconds?: number;
257
- ParallelizationFactor?: number;
258
- StartingPosition?: EventSourcePosition;
259
- StartingPositionTimestamp?: Date;
260
- DestinationConfig?: DestinationConfig;
261
- MaximumRecordAgeInSeconds?: number;
262
- BisectBatchOnFunctionError?: boolean;
263
- MaximumRetryAttempts?: number;
264
- Tags?: Record<string, string>;
265
- TumblingWindowInSeconds?: number;
266
- Topics?: string[];
267
- Queues?: string[];
268
- SourceAccessConfigurations?: SourceAccessConfiguration[];
269
- SelfManagedEventSource?: SelfManagedEventSource;
270
- FunctionResponseTypes?: FunctionResponseType[];
271
- AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig;
272
- SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig;
273
- ScalingConfig?: ScalingConfig;
274
- DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
275
- KMSKeyArn?: string;
253
+ Enabled?: boolean | undefined;
254
+ BatchSize?: number | undefined;
255
+ FilterCriteria?: FilterCriteria | undefined;
256
+ MaximumBatchingWindowInSeconds?: number | undefined;
257
+ ParallelizationFactor?: number | undefined;
258
+ StartingPosition?: EventSourcePosition | undefined;
259
+ StartingPositionTimestamp?: Date | undefined;
260
+ DestinationConfig?: DestinationConfig | undefined;
261
+ MaximumRecordAgeInSeconds?: number | undefined;
262
+ BisectBatchOnFunctionError?: boolean | undefined;
263
+ MaximumRetryAttempts?: number | undefined;
264
+ Tags?: Record<string, string> | undefined;
265
+ TumblingWindowInSeconds?: number | undefined;
266
+ Topics?: string[] | undefined;
267
+ Queues?: string[] | undefined;
268
+ SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
269
+ SelfManagedEventSource?: SelfManagedEventSource | undefined;
270
+ FunctionResponseTypes?: FunctionResponseType[] | undefined;
271
+ AmazonManagedKafkaEventSourceConfig?:
272
+ | AmazonManagedKafkaEventSourceConfig
273
+ | undefined;
274
+ SelfManagedKafkaEventSourceConfig?:
275
+ | SelfManagedKafkaEventSourceConfig
276
+ | undefined;
277
+ ScalingConfig?: ScalingConfig | undefined;
278
+ DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
279
+ KMSKeyArn?: string | undefined;
276
280
  }
277
281
  export interface FilterCriteriaError {
278
- ErrorCode?: string;
279
- Message?: string;
282
+ ErrorCode?: string | undefined;
283
+ Message?: string | undefined;
280
284
  }
281
285
  export interface EventSourceMappingConfiguration {
282
- UUID?: string;
283
- StartingPosition?: EventSourcePosition;
284
- StartingPositionTimestamp?: Date;
285
- BatchSize?: number;
286
- MaximumBatchingWindowInSeconds?: number;
287
- ParallelizationFactor?: number;
288
- EventSourceArn?: string;
289
- FilterCriteria?: FilterCriteria;
290
- FunctionArn?: string;
291
- LastModified?: Date;
292
- LastProcessingResult?: string;
293
- State?: string;
294
- StateTransitionReason?: string;
295
- DestinationConfig?: DestinationConfig;
296
- Topics?: string[];
297
- Queues?: string[];
298
- SourceAccessConfigurations?: SourceAccessConfiguration[];
299
- SelfManagedEventSource?: SelfManagedEventSource;
300
- MaximumRecordAgeInSeconds?: number;
301
- BisectBatchOnFunctionError?: boolean;
302
- MaximumRetryAttempts?: number;
303
- TumblingWindowInSeconds?: number;
304
- FunctionResponseTypes?: FunctionResponseType[];
305
- AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig;
306
- SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig;
307
- ScalingConfig?: ScalingConfig;
308
- DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
309
- KMSKeyArn?: string;
310
- FilterCriteriaError?: FilterCriteriaError;
311
- EventSourceMappingArn?: string;
286
+ UUID?: string | undefined;
287
+ StartingPosition?: EventSourcePosition | undefined;
288
+ StartingPositionTimestamp?: Date | undefined;
289
+ BatchSize?: number | undefined;
290
+ MaximumBatchingWindowInSeconds?: number | undefined;
291
+ ParallelizationFactor?: number | undefined;
292
+ EventSourceArn?: string | undefined;
293
+ FilterCriteria?: FilterCriteria | undefined;
294
+ FunctionArn?: string | undefined;
295
+ LastModified?: Date | undefined;
296
+ LastProcessingResult?: string | undefined;
297
+ State?: string | undefined;
298
+ StateTransitionReason?: string | undefined;
299
+ DestinationConfig?: DestinationConfig | undefined;
300
+ Topics?: string[] | undefined;
301
+ Queues?: string[] | undefined;
302
+ SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
303
+ SelfManagedEventSource?: SelfManagedEventSource | undefined;
304
+ MaximumRecordAgeInSeconds?: number | undefined;
305
+ BisectBatchOnFunctionError?: boolean | undefined;
306
+ MaximumRetryAttempts?: number | undefined;
307
+ TumblingWindowInSeconds?: number | undefined;
308
+ FunctionResponseTypes?: FunctionResponseType[] | undefined;
309
+ AmazonManagedKafkaEventSourceConfig?:
310
+ | AmazonManagedKafkaEventSourceConfig
311
+ | undefined;
312
+ SelfManagedKafkaEventSourceConfig?:
313
+ | SelfManagedKafkaEventSourceConfig
314
+ | undefined;
315
+ ScalingConfig?: ScalingConfig | undefined;
316
+ DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
317
+ KMSKeyArn?: string | undefined;
318
+ FilterCriteriaError?: FilterCriteriaError | undefined;
319
+ EventSourceMappingArn?: string | undefined;
312
320
  }
313
321
  export declare class CodeSigningConfigNotFoundException extends __BaseException {
314
322
  readonly name: "CodeSigningConfigNotFoundException";
315
323
  readonly $fault: "client";
316
- Type?: string;
317
- Message?: string;
324
+ Type?: string | undefined;
325
+ Message?: string | undefined;
318
326
  constructor(
319
327
  opts: __ExceptionOptionType<
320
328
  CodeSigningConfigNotFoundException,
@@ -325,7 +333,7 @@ export declare class CodeSigningConfigNotFoundException extends __BaseException
325
333
  export declare class CodeStorageExceededException extends __BaseException {
326
334
  readonly name: "CodeStorageExceededException";
327
335
  readonly $fault: "client";
328
- Type?: string;
336
+ Type?: string | undefined;
329
337
  constructor(
330
338
  opts: __ExceptionOptionType<CodeStorageExceededException, __BaseException>
331
339
  );
@@ -333,8 +341,8 @@ export declare class CodeStorageExceededException extends __BaseException {
333
341
  export declare class CodeVerificationFailedException extends __BaseException {
334
342
  readonly name: "CodeVerificationFailedException";
335
343
  readonly $fault: "client";
336
- Type?: string;
337
- Message?: string;
344
+ Type?: string | undefined;
345
+ Message?: string | undefined;
338
346
  constructor(
339
347
  opts: __ExceptionOptionType<
340
348
  CodeVerificationFailedException,
@@ -343,18 +351,18 @@ export declare class CodeVerificationFailedException extends __BaseException {
343
351
  );
344
352
  }
345
353
  export interface FunctionCode {
346
- ZipFile?: Uint8Array;
347
- S3Bucket?: string;
348
- S3Key?: string;
349
- S3ObjectVersion?: string;
350
- ImageUri?: string;
351
- SourceKMSKeyArn?: string;
354
+ ZipFile?: Uint8Array | undefined;
355
+ S3Bucket?: string | undefined;
356
+ S3Key?: string | undefined;
357
+ S3ObjectVersion?: string | undefined;
358
+ ImageUri?: string | undefined;
359
+ SourceKMSKeyArn?: string | undefined;
352
360
  }
353
361
  export interface DeadLetterConfig {
354
- TargetArn?: string;
362
+ TargetArn?: string | undefined;
355
363
  }
356
364
  export interface Environment {
357
- Variables?: Record<string, string>;
365
+ Variables?: Record<string, string> | undefined;
358
366
  }
359
367
  export interface EphemeralStorage {
360
368
  Size: number | undefined;
@@ -364,9 +372,9 @@ export interface FileSystemConfig {
364
372
  LocalMountPath: string | undefined;
365
373
  }
366
374
  export interface ImageConfig {
367
- EntryPoint?: string[];
368
- Command?: string[];
369
- WorkingDirectory?: string;
375
+ EntryPoint?: string[] | undefined;
376
+ Command?: string[] | undefined;
377
+ WorkingDirectory?: string | undefined;
370
378
  }
371
379
  export declare const LogFormat: {
372
380
  readonly Json: "JSON";
@@ -381,10 +389,10 @@ export declare const SystemLogLevel: {
381
389
  export type SystemLogLevel =
382
390
  (typeof SystemLogLevel)[keyof typeof SystemLogLevel];
383
391
  export interface LoggingConfig {
384
- LogFormat?: LogFormat;
385
- ApplicationLogLevel?: ApplicationLogLevel;
386
- SystemLogLevel?: SystemLogLevel;
387
- LogGroup?: string;
392
+ LogFormat?: LogFormat | undefined;
393
+ ApplicationLogLevel?: ApplicationLogLevel | undefined;
394
+ SystemLogLevel?: SystemLogLevel | undefined;
395
+ LogGroup?: string | undefined;
388
396
  }
389
397
  export declare const PackageType: {
390
398
  readonly Image: "Image";
@@ -422,6 +430,7 @@ export declare const Runtime: {
422
430
  readonly python310: "python3.10";
423
431
  readonly python311: "python3.11";
424
432
  readonly python312: "python3.12";
433
+ readonly python313: "python3.13";
425
434
  readonly python36: "python3.6";
426
435
  readonly python37: "python3.7";
427
436
  readonly python38: "python3.8";
@@ -439,7 +448,7 @@ export declare const SnapStartApplyOn: {
439
448
  export type SnapStartApplyOn =
440
449
  (typeof SnapStartApplyOn)[keyof typeof SnapStartApplyOn];
441
450
  export interface SnapStart {
442
- ApplyOn?: SnapStartApplyOn;
451
+ ApplyOn?: SnapStartApplyOn | undefined;
443
452
  }
444
453
  export declare const TracingMode: {
445
454
  readonly Active: "Active";
@@ -447,54 +456,54 @@ export declare const TracingMode: {
447
456
  };
448
457
  export type TracingMode = (typeof TracingMode)[keyof typeof TracingMode];
449
458
  export interface TracingConfig {
450
- Mode?: TracingMode;
459
+ Mode?: TracingMode | undefined;
451
460
  }
452
461
  export interface VpcConfig {
453
- SubnetIds?: string[];
454
- SecurityGroupIds?: string[];
455
- Ipv6AllowedForDualStack?: boolean;
462
+ SubnetIds?: string[] | undefined;
463
+ SecurityGroupIds?: string[] | undefined;
464
+ Ipv6AllowedForDualStack?: boolean | undefined;
456
465
  }
457
466
  export interface CreateFunctionRequest {
458
467
  FunctionName: string | undefined;
459
- Runtime?: Runtime;
468
+ Runtime?: Runtime | undefined;
460
469
  Role: string | undefined;
461
- Handler?: string;
470
+ Handler?: string | undefined;
462
471
  Code: FunctionCode | undefined;
463
- Description?: string;
464
- Timeout?: number;
465
- MemorySize?: number;
466
- Publish?: boolean;
467
- VpcConfig?: VpcConfig;
468
- PackageType?: PackageType;
469
- DeadLetterConfig?: DeadLetterConfig;
470
- Environment?: Environment;
471
- KMSKeyArn?: string;
472
- TracingConfig?: TracingConfig;
473
- Tags?: Record<string, string>;
474
- Layers?: string[];
475
- FileSystemConfigs?: FileSystemConfig[];
476
- ImageConfig?: ImageConfig;
477
- CodeSigningConfigArn?: string;
478
- Architectures?: Architecture[];
479
- EphemeralStorage?: EphemeralStorage;
480
- SnapStart?: SnapStart;
481
- LoggingConfig?: LoggingConfig;
472
+ Description?: string | undefined;
473
+ Timeout?: number | undefined;
474
+ MemorySize?: number | undefined;
475
+ Publish?: boolean | undefined;
476
+ VpcConfig?: VpcConfig | undefined;
477
+ PackageType?: PackageType | undefined;
478
+ DeadLetterConfig?: DeadLetterConfig | undefined;
479
+ Environment?: Environment | undefined;
480
+ KMSKeyArn?: string | undefined;
481
+ TracingConfig?: TracingConfig | undefined;
482
+ Tags?: Record<string, string> | undefined;
483
+ Layers?: string[] | undefined;
484
+ FileSystemConfigs?: FileSystemConfig[] | undefined;
485
+ ImageConfig?: ImageConfig | undefined;
486
+ CodeSigningConfigArn?: string | undefined;
487
+ Architectures?: Architecture[] | undefined;
488
+ EphemeralStorage?: EphemeralStorage | undefined;
489
+ SnapStart?: SnapStart | undefined;
490
+ LoggingConfig?: LoggingConfig | undefined;
482
491
  }
483
492
  export interface EnvironmentError {
484
- ErrorCode?: string;
485
- Message?: string;
493
+ ErrorCode?: string | undefined;
494
+ Message?: string | undefined;
486
495
  }
487
496
  export interface EnvironmentResponse {
488
- Variables?: Record<string, string>;
489
- Error?: EnvironmentError;
497
+ Variables?: Record<string, string> | undefined;
498
+ Error?: EnvironmentError | undefined;
490
499
  }
491
500
  export interface ImageConfigError {
492
- ErrorCode?: string;
493
- Message?: string;
501
+ ErrorCode?: string | undefined;
502
+ Message?: string | undefined;
494
503
  }
495
504
  export interface ImageConfigResponse {
496
- ImageConfig?: ImageConfig;
497
- Error?: ImageConfigError;
505
+ ImageConfig?: ImageConfig | undefined;
506
+ Error?: ImageConfigError | undefined;
498
507
  }
499
508
  export declare const LastUpdateStatus: {
500
509
  readonly Failed: "Failed";
@@ -529,18 +538,18 @@ export declare const LastUpdateStatusReasonCode: {
529
538
  export type LastUpdateStatusReasonCode =
530
539
  (typeof LastUpdateStatusReasonCode)[keyof typeof LastUpdateStatusReasonCode];
531
540
  export interface Layer {
532
- Arn?: string;
533
- CodeSize?: number;
534
- SigningProfileVersionArn?: string;
535
- SigningJobArn?: string;
541
+ Arn?: string | undefined;
542
+ CodeSize?: number | undefined;
543
+ SigningProfileVersionArn?: string | undefined;
544
+ SigningJobArn?: string | undefined;
536
545
  }
537
546
  export interface RuntimeVersionError {
538
- ErrorCode?: string;
539
- Message?: string;
547
+ ErrorCode?: string | undefined;
548
+ Message?: string | undefined;
540
549
  }
541
550
  export interface RuntimeVersionConfig {
542
- RuntimeVersionArn?: string;
543
- Error?: RuntimeVersionError;
551
+ RuntimeVersionArn?: string | undefined;
552
+ Error?: RuntimeVersionError | undefined;
544
553
  }
545
554
  export declare const SnapStartOptimizationStatus: {
546
555
  readonly Off: "Off";
@@ -549,8 +558,8 @@ export declare const SnapStartOptimizationStatus: {
549
558
  export type SnapStartOptimizationStatus =
550
559
  (typeof SnapStartOptimizationStatus)[keyof typeof SnapStartOptimizationStatus];
551
560
  export interface SnapStartResponse {
552
- ApplyOn?: SnapStartApplyOn;
553
- OptimizationStatus?: SnapStartOptimizationStatus;
561
+ ApplyOn?: SnapStartApplyOn | undefined;
562
+ OptimizationStatus?: SnapStartOptimizationStatus | undefined;
554
563
  }
555
564
  export declare const State: {
556
565
  readonly Active: "Active";
@@ -588,68 +597,68 @@ export declare const StateReasonCode: {
588
597
  export type StateReasonCode =
589
598
  (typeof StateReasonCode)[keyof typeof StateReasonCode];
590
599
  export interface TracingConfigResponse {
591
- Mode?: TracingMode;
600
+ Mode?: TracingMode | undefined;
592
601
  }
593
602
  export interface VpcConfigResponse {
594
- SubnetIds?: string[];
595
- SecurityGroupIds?: string[];
596
- VpcId?: string;
597
- Ipv6AllowedForDualStack?: boolean;
603
+ SubnetIds?: string[] | undefined;
604
+ SecurityGroupIds?: string[] | undefined;
605
+ VpcId?: string | undefined;
606
+ Ipv6AllowedForDualStack?: boolean | undefined;
598
607
  }
599
608
  export interface FunctionConfiguration {
600
- FunctionName?: string;
601
- FunctionArn?: string;
602
- Runtime?: Runtime;
603
- Role?: string;
604
- Handler?: string;
605
- CodeSize?: number;
606
- Description?: string;
607
- Timeout?: number;
608
- MemorySize?: number;
609
- LastModified?: string;
610
- CodeSha256?: string;
611
- Version?: string;
612
- VpcConfig?: VpcConfigResponse;
613
- DeadLetterConfig?: DeadLetterConfig;
614
- Environment?: EnvironmentResponse;
615
- KMSKeyArn?: string;
616
- TracingConfig?: TracingConfigResponse;
617
- MasterArn?: string;
618
- RevisionId?: string;
619
- Layers?: Layer[];
620
- State?: State;
621
- StateReason?: string;
622
- StateReasonCode?: StateReasonCode;
623
- LastUpdateStatus?: LastUpdateStatus;
624
- LastUpdateStatusReason?: string;
625
- LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode;
626
- FileSystemConfigs?: FileSystemConfig[];
627
- PackageType?: PackageType;
628
- ImageConfigResponse?: ImageConfigResponse;
629
- SigningProfileVersionArn?: string;
630
- SigningJobArn?: string;
631
- Architectures?: Architecture[];
632
- EphemeralStorage?: EphemeralStorage;
633
- SnapStart?: SnapStartResponse;
634
- RuntimeVersionConfig?: RuntimeVersionConfig;
635
- LoggingConfig?: LoggingConfig;
609
+ FunctionName?: string | undefined;
610
+ FunctionArn?: string | undefined;
611
+ Runtime?: Runtime | undefined;
612
+ Role?: string | undefined;
613
+ Handler?: string | undefined;
614
+ CodeSize?: number | undefined;
615
+ Description?: string | undefined;
616
+ Timeout?: number | undefined;
617
+ MemorySize?: number | undefined;
618
+ LastModified?: string | undefined;
619
+ CodeSha256?: string | undefined;
620
+ Version?: string | undefined;
621
+ VpcConfig?: VpcConfigResponse | undefined;
622
+ DeadLetterConfig?: DeadLetterConfig | undefined;
623
+ Environment?: EnvironmentResponse | undefined;
624
+ KMSKeyArn?: string | undefined;
625
+ TracingConfig?: TracingConfigResponse | undefined;
626
+ MasterArn?: string | undefined;
627
+ RevisionId?: string | undefined;
628
+ Layers?: Layer[] | undefined;
629
+ State?: State | undefined;
630
+ StateReason?: string | undefined;
631
+ StateReasonCode?: StateReasonCode | undefined;
632
+ LastUpdateStatus?: LastUpdateStatus | undefined;
633
+ LastUpdateStatusReason?: string | undefined;
634
+ LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | undefined;
635
+ FileSystemConfigs?: FileSystemConfig[] | undefined;
636
+ PackageType?: PackageType | undefined;
637
+ ImageConfigResponse?: ImageConfigResponse | undefined;
638
+ SigningProfileVersionArn?: string | undefined;
639
+ SigningJobArn?: string | undefined;
640
+ Architectures?: Architecture[] | undefined;
641
+ EphemeralStorage?: EphemeralStorage | undefined;
642
+ SnapStart?: SnapStartResponse | undefined;
643
+ RuntimeVersionConfig?: RuntimeVersionConfig | undefined;
644
+ LoggingConfig?: LoggingConfig | undefined;
636
645
  }
637
646
  export declare class InvalidCodeSignatureException extends __BaseException {
638
647
  readonly name: "InvalidCodeSignatureException";
639
648
  readonly $fault: "client";
640
- Type?: string;
641
- Message?: string;
649
+ Type?: string | undefined;
650
+ Message?: string | undefined;
642
651
  constructor(
643
652
  opts: __ExceptionOptionType<InvalidCodeSignatureException, __BaseException>
644
653
  );
645
654
  }
646
655
  export interface Cors {
647
- AllowCredentials?: boolean;
648
- AllowHeaders?: string[];
649
- AllowMethods?: string[];
650
- AllowOrigins?: string[];
651
- ExposeHeaders?: string[];
652
- MaxAge?: number;
656
+ AllowCredentials?: boolean | undefined;
657
+ AllowHeaders?: string[] | undefined;
658
+ AllowMethods?: string[] | undefined;
659
+ AllowOrigins?: string[] | undefined;
660
+ ExposeHeaders?: string[] | undefined;
661
+ MaxAge?: number | undefined;
653
662
  }
654
663
  export declare const InvokeMode: {
655
664
  readonly BUFFERED: "BUFFERED";
@@ -658,18 +667,18 @@ export declare const InvokeMode: {
658
667
  export type InvokeMode = (typeof InvokeMode)[keyof typeof InvokeMode];
659
668
  export interface CreateFunctionUrlConfigRequest {
660
669
  FunctionName: string | undefined;
661
- Qualifier?: string;
670
+ Qualifier?: string | undefined;
662
671
  AuthType: FunctionUrlAuthType | undefined;
663
- Cors?: Cors;
664
- InvokeMode?: InvokeMode;
672
+ Cors?: Cors | undefined;
673
+ InvokeMode?: InvokeMode | undefined;
665
674
  }
666
675
  export interface CreateFunctionUrlConfigResponse {
667
676
  FunctionUrl: string | undefined;
668
677
  FunctionArn: string | undefined;
669
678
  AuthType: FunctionUrlAuthType | undefined;
670
- Cors?: Cors;
679
+ Cors?: Cors | undefined;
671
680
  CreationTime: string | undefined;
672
- InvokeMode?: InvokeMode;
681
+ InvokeMode?: InvokeMode | undefined;
673
682
  }
674
683
  export interface DeleteAliasRequest {
675
684
  FunctionName: string | undefined;
@@ -685,15 +694,15 @@ export interface DeleteEventSourceMappingRequest {
685
694
  export declare class ResourceInUseException extends __BaseException {
686
695
  readonly name: "ResourceInUseException";
687
696
  readonly $fault: "client";
688
- Type?: string;
689
- Message?: string;
697
+ Type?: string | undefined;
698
+ Message?: string | undefined;
690
699
  constructor(
691
700
  opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
692
701
  );
693
702
  }
694
703
  export interface DeleteFunctionRequest {
695
704
  FunctionName: string | undefined;
696
- Qualifier?: string;
705
+ Qualifier?: string | undefined;
697
706
  }
698
707
  export interface DeleteFunctionCodeSigningConfigRequest {
699
708
  FunctionName: string | undefined;
@@ -703,11 +712,11 @@ export interface DeleteFunctionConcurrencyRequest {
703
712
  }
704
713
  export interface DeleteFunctionEventInvokeConfigRequest {
705
714
  FunctionName: string | undefined;
706
- Qualifier?: string;
715
+ Qualifier?: string | undefined;
707
716
  }
708
717
  export interface DeleteFunctionUrlConfigRequest {
709
718
  FunctionName: string | undefined;
710
- Qualifier?: string;
719
+ Qualifier?: string | undefined;
711
720
  }
712
721
  export interface DeleteLayerVersionRequest {
713
722
  LayerName: string | undefined;
@@ -719,8 +728,8 @@ export interface DeleteProvisionedConcurrencyConfigRequest {
719
728
  }
720
729
  export interface GetAccountSettingsRequest {}
721
730
  export interface GetAccountSettingsResponse {
722
- AccountLimit?: AccountLimit;
723
- AccountUsage?: AccountUsage;
731
+ AccountLimit?: AccountLimit | undefined;
732
+ AccountUsage?: AccountUsage | undefined;
724
733
  }
725
734
  export interface GetAliasRequest {
726
735
  FunctionName: string | undefined;
@@ -737,28 +746,28 @@ export interface GetEventSourceMappingRequest {
737
746
  }
738
747
  export interface GetFunctionRequest {
739
748
  FunctionName: string | undefined;
740
- Qualifier?: string;
749
+ Qualifier?: string | undefined;
741
750
  }
742
751
  export interface FunctionCodeLocation {
743
- RepositoryType?: string;
744
- Location?: string;
745
- ImageUri?: string;
746
- ResolvedImageUri?: string;
747
- SourceKMSKeyArn?: string;
752
+ RepositoryType?: string | undefined;
753
+ Location?: string | undefined;
754
+ ImageUri?: string | undefined;
755
+ ResolvedImageUri?: string | undefined;
756
+ SourceKMSKeyArn?: string | undefined;
748
757
  }
749
758
  export interface Concurrency {
750
- ReservedConcurrentExecutions?: number;
759
+ ReservedConcurrentExecutions?: number | undefined;
751
760
  }
752
761
  export interface TagsError {
753
762
  ErrorCode: string | undefined;
754
763
  Message: string | undefined;
755
764
  }
756
765
  export interface GetFunctionResponse {
757
- Configuration?: FunctionConfiguration;
758
- Code?: FunctionCodeLocation;
759
- Tags?: Record<string, string>;
760
- TagsError?: TagsError;
761
- Concurrency?: Concurrency;
766
+ Configuration?: FunctionConfiguration | undefined;
767
+ Code?: FunctionCodeLocation | undefined;
768
+ Tags?: Record<string, string> | undefined;
769
+ TagsError?: TagsError | undefined;
770
+ Concurrency?: Concurrency | undefined;
762
771
  }
763
772
  export interface GetFunctionCodeSigningConfigRequest {
764
773
  FunctionName: string | undefined;
@@ -771,22 +780,22 @@ export interface GetFunctionConcurrencyRequest {
771
780
  FunctionName: string | undefined;
772
781
  }
773
782
  export interface GetFunctionConcurrencyResponse {
774
- ReservedConcurrentExecutions?: number;
783
+ ReservedConcurrentExecutions?: number | undefined;
775
784
  }
776
785
  export interface GetFunctionConfigurationRequest {
777
786
  FunctionName: string | undefined;
778
- Qualifier?: string;
787
+ Qualifier?: string | undefined;
779
788
  }
780
789
  export interface FunctionEventInvokeConfig {
781
- LastModified?: Date;
782
- FunctionArn?: string;
783
- MaximumRetryAttempts?: number;
784
- MaximumEventAgeInSeconds?: number;
785
- DestinationConfig?: DestinationConfig;
790
+ LastModified?: Date | undefined;
791
+ FunctionArn?: string | undefined;
792
+ MaximumRetryAttempts?: number | undefined;
793
+ MaximumEventAgeInSeconds?: number | undefined;
794
+ DestinationConfig?: DestinationConfig | undefined;
786
795
  }
787
796
  export interface GetFunctionEventInvokeConfigRequest {
788
797
  FunctionName: string | undefined;
789
- Qualifier?: string;
798
+ Qualifier?: string | undefined;
790
799
  }
791
800
  export interface GetFunctionRecursionConfigRequest {
792
801
  FunctionName: string | undefined;
@@ -797,42 +806,42 @@ export declare const RecursiveLoop: {
797
806
  };
798
807
  export type RecursiveLoop = (typeof RecursiveLoop)[keyof typeof RecursiveLoop];
799
808
  export interface GetFunctionRecursionConfigResponse {
800
- RecursiveLoop?: RecursiveLoop;
809
+ RecursiveLoop?: RecursiveLoop | undefined;
801
810
  }
802
811
  export interface GetFunctionUrlConfigRequest {
803
812
  FunctionName: string | undefined;
804
- Qualifier?: string;
813
+ Qualifier?: string | undefined;
805
814
  }
806
815
  export interface GetFunctionUrlConfigResponse {
807
816
  FunctionUrl: string | undefined;
808
817
  FunctionArn: string | undefined;
809
818
  AuthType: FunctionUrlAuthType | undefined;
810
- Cors?: Cors;
819
+ Cors?: Cors | undefined;
811
820
  CreationTime: string | undefined;
812
821
  LastModifiedTime: string | undefined;
813
- InvokeMode?: InvokeMode;
822
+ InvokeMode?: InvokeMode | undefined;
814
823
  }
815
824
  export interface GetLayerVersionRequest {
816
825
  LayerName: string | undefined;
817
826
  VersionNumber: number | undefined;
818
827
  }
819
828
  export interface LayerVersionContentOutput {
820
- Location?: string;
821
- CodeSha256?: string;
822
- CodeSize?: number;
823
- SigningProfileVersionArn?: string;
824
- SigningJobArn?: string;
829
+ Location?: string | undefined;
830
+ CodeSha256?: string | undefined;
831
+ CodeSize?: number | undefined;
832
+ SigningProfileVersionArn?: string | undefined;
833
+ SigningJobArn?: string | undefined;
825
834
  }
826
835
  export interface GetLayerVersionResponse {
827
- Content?: LayerVersionContentOutput;
828
- LayerArn?: string;
829
- LayerVersionArn?: string;
830
- Description?: string;
831
- CreatedDate?: string;
832
- Version?: number;
833
- CompatibleRuntimes?: Runtime[];
834
- LicenseInfo?: string;
835
- CompatibleArchitectures?: Architecture[];
836
+ Content?: LayerVersionContentOutput | undefined;
837
+ LayerArn?: string | undefined;
838
+ LayerVersionArn?: string | undefined;
839
+ Description?: string | undefined;
840
+ CreatedDate?: string | undefined;
841
+ Version?: number | undefined;
842
+ CompatibleRuntimes?: Runtime[] | undefined;
843
+ LicenseInfo?: string | undefined;
844
+ CompatibleArchitectures?: Architecture[] | undefined;
836
845
  }
837
846
  export interface GetLayerVersionByArnRequest {
838
847
  Arn: string | undefined;
@@ -842,16 +851,16 @@ export interface GetLayerVersionPolicyRequest {
842
851
  VersionNumber: number | undefined;
843
852
  }
844
853
  export interface GetLayerVersionPolicyResponse {
845
- Policy?: string;
846
- RevisionId?: string;
854
+ Policy?: string | undefined;
855
+ RevisionId?: string | undefined;
847
856
  }
848
857
  export interface GetPolicyRequest {
849
858
  FunctionName: string | undefined;
850
- Qualifier?: string;
859
+ Qualifier?: string | undefined;
851
860
  }
852
861
  export interface GetPolicyResponse {
853
- Policy?: string;
854
- RevisionId?: string;
862
+ Policy?: string | undefined;
863
+ RevisionId?: string | undefined;
855
864
  }
856
865
  export interface GetProvisionedConcurrencyConfigRequest {
857
866
  FunctionName: string | undefined;
@@ -865,17 +874,17 @@ export declare const ProvisionedConcurrencyStatusEnum: {
865
874
  export type ProvisionedConcurrencyStatusEnum =
866
875
  (typeof ProvisionedConcurrencyStatusEnum)[keyof typeof ProvisionedConcurrencyStatusEnum];
867
876
  export interface GetProvisionedConcurrencyConfigResponse {
868
- RequestedProvisionedConcurrentExecutions?: number;
869
- AvailableProvisionedConcurrentExecutions?: number;
870
- AllocatedProvisionedConcurrentExecutions?: number;
871
- Status?: ProvisionedConcurrencyStatusEnum;
872
- StatusReason?: string;
873
- LastModified?: string;
877
+ RequestedProvisionedConcurrentExecutions?: number | undefined;
878
+ AvailableProvisionedConcurrentExecutions?: number | undefined;
879
+ AllocatedProvisionedConcurrentExecutions?: number | undefined;
880
+ Status?: ProvisionedConcurrencyStatusEnum | undefined;
881
+ StatusReason?: string | undefined;
882
+ LastModified?: string | undefined;
874
883
  }
875
884
  export declare class ProvisionedConcurrencyConfigNotFoundException extends __BaseException {
876
885
  readonly name: "ProvisionedConcurrencyConfigNotFoundException";
877
886
  readonly $fault: "client";
878
- Type?: string;
887
+ Type?: string | undefined;
879
888
  constructor(
880
889
  opts: __ExceptionOptionType<
881
890
  ProvisionedConcurrencyConfigNotFoundException,
@@ -885,7 +894,7 @@ export declare class ProvisionedConcurrencyConfigNotFoundException extends __Bas
885
894
  }
886
895
  export interface GetRuntimeManagementConfigRequest {
887
896
  FunctionName: string | undefined;
888
- Qualifier?: string;
897
+ Qualifier?: string | undefined;
889
898
  }
890
899
  export declare const UpdateRuntimeOn: {
891
900
  readonly Auto: "Auto";
@@ -895,15 +904,15 @@ export declare const UpdateRuntimeOn: {
895
904
  export type UpdateRuntimeOn =
896
905
  (typeof UpdateRuntimeOn)[keyof typeof UpdateRuntimeOn];
897
906
  export interface GetRuntimeManagementConfigResponse {
898
- UpdateRuntimeOn?: UpdateRuntimeOn;
899
- RuntimeVersionArn?: string;
900
- FunctionArn?: string;
907
+ UpdateRuntimeOn?: UpdateRuntimeOn | undefined;
908
+ RuntimeVersionArn?: string | undefined;
909
+ FunctionArn?: string | undefined;
901
910
  }
902
911
  export declare class EC2AccessDeniedException extends __BaseException {
903
912
  readonly name: "EC2AccessDeniedException";
904
913
  readonly $fault: "server";
905
- Type?: string;
906
- Message?: string;
914
+ Type?: string | undefined;
915
+ Message?: string | undefined;
907
916
  constructor(
908
917
  opts: __ExceptionOptionType<EC2AccessDeniedException, __BaseException>
909
918
  );
@@ -911,8 +920,8 @@ export declare class EC2AccessDeniedException extends __BaseException {
911
920
  export declare class EC2ThrottledException extends __BaseException {
912
921
  readonly name: "EC2ThrottledException";
913
922
  readonly $fault: "server";
914
- Type?: string;
915
- Message?: string;
923
+ Type?: string | undefined;
924
+ Message?: string | undefined;
916
925
  constructor(
917
926
  opts: __ExceptionOptionType<EC2ThrottledException, __BaseException>
918
927
  );
@@ -920,9 +929,9 @@ export declare class EC2ThrottledException extends __BaseException {
920
929
  export declare class EC2UnexpectedException extends __BaseException {
921
930
  readonly name: "EC2UnexpectedException";
922
931
  readonly $fault: "server";
923
- Type?: string;
924
- Message?: string;
925
- EC2ErrorCode?: string;
932
+ Type?: string | undefined;
933
+ Message?: string | undefined;
934
+ EC2ErrorCode?: string | undefined;
926
935
  constructor(
927
936
  opts: __ExceptionOptionType<EC2UnexpectedException, __BaseException>
928
937
  );
@@ -930,15 +939,15 @@ export declare class EC2UnexpectedException extends __BaseException {
930
939
  export declare class EFSIOException extends __BaseException {
931
940
  readonly name: "EFSIOException";
932
941
  readonly $fault: "client";
933
- Type?: string;
934
- Message?: string;
942
+ Type?: string | undefined;
943
+ Message?: string | undefined;
935
944
  constructor(opts: __ExceptionOptionType<EFSIOException, __BaseException>);
936
945
  }
937
946
  export declare class EFSMountConnectivityException extends __BaseException {
938
947
  readonly name: "EFSMountConnectivityException";
939
948
  readonly $fault: "client";
940
- Type?: string;
941
- Message?: string;
949
+ Type?: string | undefined;
950
+ Message?: string | undefined;
942
951
  constructor(
943
952
  opts: __ExceptionOptionType<EFSMountConnectivityException, __BaseException>
944
953
  );
@@ -946,8 +955,8 @@ export declare class EFSMountConnectivityException extends __BaseException {
946
955
  export declare class EFSMountFailureException extends __BaseException {
947
956
  readonly name: "EFSMountFailureException";
948
957
  readonly $fault: "client";
949
- Type?: string;
950
- Message?: string;
958
+ Type?: string | undefined;
959
+ Message?: string | undefined;
951
960
  constructor(
952
961
  opts: __ExceptionOptionType<EFSMountFailureException, __BaseException>
953
962
  );
@@ -955,8 +964,8 @@ export declare class EFSMountFailureException extends __BaseException {
955
964
  export declare class EFSMountTimeoutException extends __BaseException {
956
965
  readonly name: "EFSMountTimeoutException";
957
966
  readonly $fault: "client";
958
- Type?: string;
959
- Message?: string;
967
+ Type?: string | undefined;
968
+ Message?: string | undefined;
960
969
  constructor(
961
970
  opts: __ExceptionOptionType<EFSMountTimeoutException, __BaseException>
962
971
  );
@@ -964,8 +973,8 @@ export declare class EFSMountTimeoutException extends __BaseException {
964
973
  export declare class ENILimitReachedException extends __BaseException {
965
974
  readonly name: "ENILimitReachedException";
966
975
  readonly $fault: "server";
967
- Type?: string;
968
- Message?: string;
976
+ Type?: string | undefined;
977
+ Message?: string | undefined;
969
978
  constructor(
970
979
  opts: __ExceptionOptionType<ENILimitReachedException, __BaseException>
971
980
  );
@@ -973,7 +982,7 @@ export declare class ENILimitReachedException extends __BaseException {
973
982
  export declare class InvalidRequestContentException extends __BaseException {
974
983
  readonly name: "InvalidRequestContentException";
975
984
  readonly $fault: "client";
976
- Type?: string;
985
+ Type?: string | undefined;
977
986
  constructor(
978
987
  opts: __ExceptionOptionType<InvalidRequestContentException, __BaseException>
979
988
  );
@@ -981,8 +990,8 @@ export declare class InvalidRequestContentException extends __BaseException {
981
990
  export declare class InvalidRuntimeException extends __BaseException {
982
991
  readonly name: "InvalidRuntimeException";
983
992
  readonly $fault: "server";
984
- Type?: string;
985
- Message?: string;
993
+ Type?: string | undefined;
994
+ Message?: string | undefined;
986
995
  constructor(
987
996
  opts: __ExceptionOptionType<InvalidRuntimeException, __BaseException>
988
997
  );
@@ -990,8 +999,8 @@ export declare class InvalidRuntimeException extends __BaseException {
990
999
  export declare class InvalidSecurityGroupIDException extends __BaseException {
991
1000
  readonly name: "InvalidSecurityGroupIDException";
992
1001
  readonly $fault: "server";
993
- Type?: string;
994
- Message?: string;
1002
+ Type?: string | undefined;
1003
+ Message?: string | undefined;
995
1004
  constructor(
996
1005
  opts: __ExceptionOptionType<
997
1006
  InvalidSecurityGroupIDException,
@@ -1002,8 +1011,8 @@ export declare class InvalidSecurityGroupIDException extends __BaseException {
1002
1011
  export declare class InvalidSubnetIDException extends __BaseException {
1003
1012
  readonly name: "InvalidSubnetIDException";
1004
1013
  readonly $fault: "server";
1005
- Type?: string;
1006
- Message?: string;
1014
+ Type?: string | undefined;
1015
+ Message?: string | undefined;
1007
1016
  constructor(
1008
1017
  opts: __ExceptionOptionType<InvalidSubnetIDException, __BaseException>
1009
1018
  );
@@ -1011,8 +1020,8 @@ export declare class InvalidSubnetIDException extends __BaseException {
1011
1020
  export declare class InvalidZipFileException extends __BaseException {
1012
1021
  readonly name: "InvalidZipFileException";
1013
1022
  readonly $fault: "server";
1014
- Type?: string;
1015
- Message?: string;
1023
+ Type?: string | undefined;
1024
+ Message?: string | undefined;
1016
1025
  constructor(
1017
1026
  opts: __ExceptionOptionType<InvalidZipFileException, __BaseException>
1018
1027
  );
@@ -1031,24 +1040,24 @@ export declare const LogType: {
1031
1040
  export type LogType = (typeof LogType)[keyof typeof LogType];
1032
1041
  export interface InvocationRequest {
1033
1042
  FunctionName: string | undefined;
1034
- InvocationType?: InvocationType;
1035
- LogType?: LogType;
1036
- ClientContext?: string;
1037
- Payload?: Uint8Array;
1038
- Qualifier?: string;
1043
+ InvocationType?: InvocationType | undefined;
1044
+ LogType?: LogType | undefined;
1045
+ ClientContext?: string | undefined;
1046
+ Payload?: Uint8Array | undefined;
1047
+ Qualifier?: string | undefined;
1039
1048
  }
1040
1049
  export interface InvocationResponse {
1041
- StatusCode?: number;
1042
- FunctionError?: string;
1043
- LogResult?: string;
1044
- Payload?: Uint8Array;
1045
- ExecutedVersion?: string;
1050
+ StatusCode?: number | undefined;
1051
+ FunctionError?: string | undefined;
1052
+ LogResult?: string | undefined;
1053
+ Payload?: Uint8Array | undefined;
1054
+ ExecutedVersion?: string | undefined;
1046
1055
  }
1047
1056
  export declare class KMSAccessDeniedException extends __BaseException {
1048
1057
  readonly name: "KMSAccessDeniedException";
1049
1058
  readonly $fault: "server";
1050
- Type?: string;
1051
- Message?: string;
1059
+ Type?: string | undefined;
1060
+ Message?: string | undefined;
1052
1061
  constructor(
1053
1062
  opts: __ExceptionOptionType<KMSAccessDeniedException, __BaseException>
1054
1063
  );
@@ -1056,8 +1065,8 @@ export declare class KMSAccessDeniedException extends __BaseException {
1056
1065
  export declare class KMSDisabledException extends __BaseException {
1057
1066
  readonly name: "KMSDisabledException";
1058
1067
  readonly $fault: "server";
1059
- Type?: string;
1060
- Message?: string;
1068
+ Type?: string | undefined;
1069
+ Message?: string | undefined;
1061
1070
  constructor(
1062
1071
  opts: __ExceptionOptionType<KMSDisabledException, __BaseException>
1063
1072
  );
@@ -1065,8 +1074,8 @@ export declare class KMSDisabledException extends __BaseException {
1065
1074
  export declare class KMSInvalidStateException extends __BaseException {
1066
1075
  readonly name: "KMSInvalidStateException";
1067
1076
  readonly $fault: "server";
1068
- Type?: string;
1069
- Message?: string;
1077
+ Type?: string | undefined;
1078
+ Message?: string | undefined;
1070
1079
  constructor(
1071
1080
  opts: __ExceptionOptionType<KMSInvalidStateException, __BaseException>
1072
1081
  );
@@ -1074,8 +1083,8 @@ export declare class KMSInvalidStateException extends __BaseException {
1074
1083
  export declare class KMSNotFoundException extends __BaseException {
1075
1084
  readonly name: "KMSNotFoundException";
1076
1085
  readonly $fault: "server";
1077
- Type?: string;
1078
- Message?: string;
1086
+ Type?: string | undefined;
1087
+ Message?: string | undefined;
1079
1088
  constructor(
1080
1089
  opts: __ExceptionOptionType<KMSNotFoundException, __BaseException>
1081
1090
  );
@@ -1083,8 +1092,8 @@ export declare class KMSNotFoundException extends __BaseException {
1083
1092
  export declare class RecursiveInvocationException extends __BaseException {
1084
1093
  readonly name: "RecursiveInvocationException";
1085
1094
  readonly $fault: "client";
1086
- Type?: string;
1087
- Message?: string;
1095
+ Type?: string | undefined;
1096
+ Message?: string | undefined;
1088
1097
  constructor(
1089
1098
  opts: __ExceptionOptionType<RecursiveInvocationException, __BaseException>
1090
1099
  );
@@ -1092,7 +1101,7 @@ export declare class RecursiveInvocationException extends __BaseException {
1092
1101
  export declare class RequestTooLargeException extends __BaseException {
1093
1102
  readonly name: "RequestTooLargeException";
1094
1103
  readonly $fault: "client";
1095
- Type?: string;
1104
+ Type?: string | undefined;
1096
1105
  constructor(
1097
1106
  opts: __ExceptionOptionType<RequestTooLargeException, __BaseException>
1098
1107
  );
@@ -1100,7 +1109,7 @@ export declare class RequestTooLargeException extends __BaseException {
1100
1109
  export declare class ResourceNotReadyException extends __BaseException {
1101
1110
  readonly name: "ResourceNotReadyException";
1102
1111
  readonly $fault: "server";
1103
- Type?: string;
1112
+ Type?: string | undefined;
1104
1113
  constructor(
1105
1114
  opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
1106
1115
  );
@@ -1108,15 +1117,15 @@ export declare class ResourceNotReadyException extends __BaseException {
1108
1117
  export declare class SnapStartException extends __BaseException {
1109
1118
  readonly name: "SnapStartException";
1110
1119
  readonly $fault: "client";
1111
- Type?: string;
1112
- Message?: string;
1120
+ Type?: string | undefined;
1121
+ Message?: string | undefined;
1113
1122
  constructor(opts: __ExceptionOptionType<SnapStartException, __BaseException>);
1114
1123
  }
1115
1124
  export declare class SnapStartNotReadyException extends __BaseException {
1116
1125
  readonly name: "SnapStartNotReadyException";
1117
1126
  readonly $fault: "client";
1118
- Type?: string;
1119
- Message?: string;
1127
+ Type?: string | undefined;
1128
+ Message?: string | undefined;
1120
1129
  constructor(
1121
1130
  opts: __ExceptionOptionType<SnapStartNotReadyException, __BaseException>
1122
1131
  );
@@ -1124,8 +1133,8 @@ export declare class SnapStartNotReadyException extends __BaseException {
1124
1133
  export declare class SnapStartTimeoutException extends __BaseException {
1125
1134
  readonly name: "SnapStartTimeoutException";
1126
1135
  readonly $fault: "client";
1127
- Type?: string;
1128
- Message?: string;
1136
+ Type?: string | undefined;
1137
+ Message?: string | undefined;
1129
1138
  constructor(
1130
1139
  opts: __ExceptionOptionType<SnapStartTimeoutException, __BaseException>
1131
1140
  );
@@ -1133,8 +1142,8 @@ export declare class SnapStartTimeoutException extends __BaseException {
1133
1142
  export declare class SubnetIPAddressLimitReachedException extends __BaseException {
1134
1143
  readonly name: "SubnetIPAddressLimitReachedException";
1135
1144
  readonly $fault: "server";
1136
- Type?: string;
1137
- Message?: string;
1145
+ Type?: string | undefined;
1146
+ Message?: string | undefined;
1138
1147
  constructor(
1139
1148
  opts: __ExceptionOptionType<
1140
1149
  SubnetIPAddressLimitReachedException,
@@ -1145,7 +1154,7 @@ export declare class SubnetIPAddressLimitReachedException extends __BaseExceptio
1145
1154
  export declare class UnsupportedMediaTypeException extends __BaseException {
1146
1155
  readonly name: "UnsupportedMediaTypeException";
1147
1156
  readonly $fault: "client";
1148
- Type?: string;
1157
+ Type?: string | undefined;
1149
1158
  constructor(
1150
1159
  opts: __ExceptionOptionType<UnsupportedMediaTypeException, __BaseException>
1151
1160
  );
@@ -1155,7 +1164,7 @@ export interface InvokeAsyncRequest {
1155
1164
  InvokeArgs: StreamingBlobTypes | undefined;
1156
1165
  }
1157
1166
  export interface InvokeAsyncResponse {
1158
- Status?: number;
1167
+ Status?: number | undefined;
1159
1168
  }
1160
1169
  export declare const ResponseStreamingInvocationType: {
1161
1170
  readonly DryRun: "DryRun";
@@ -1165,19 +1174,19 @@ export type ResponseStreamingInvocationType =
1165
1174
  (typeof ResponseStreamingInvocationType)[keyof typeof ResponseStreamingInvocationType];
1166
1175
  export interface InvokeWithResponseStreamRequest {
1167
1176
  FunctionName: string | undefined;
1168
- InvocationType?: ResponseStreamingInvocationType;
1169
- LogType?: LogType;
1170
- ClientContext?: string;
1171
- Qualifier?: string;
1172
- Payload?: Uint8Array;
1177
+ InvocationType?: ResponseStreamingInvocationType | undefined;
1178
+ LogType?: LogType | undefined;
1179
+ ClientContext?: string | undefined;
1180
+ Qualifier?: string | undefined;
1181
+ Payload?: Uint8Array | undefined;
1173
1182
  }
1174
1183
  export interface InvokeWithResponseStreamCompleteEvent {
1175
- ErrorCode?: string;
1176
- ErrorDetails?: string;
1177
- LogResult?: string;
1184
+ ErrorCode?: string | undefined;
1185
+ ErrorDetails?: string | undefined;
1186
+ LogResult?: string | undefined;
1178
1187
  }
1179
1188
  export interface InvokeResponseStreamUpdate {
1180
- Payload?: Uint8Array;
1189
+ Payload?: Uint8Array | undefined;
1181
1190
  }
1182
1191
  export type InvokeWithResponseStreamResponseEvent =
1183
1192
  | InvokeWithResponseStreamResponseEvent.InvokeCompleteMember
@@ -1210,47 +1219,49 @@ export declare namespace InvokeWithResponseStreamResponseEvent {
1210
1219
  ) => T;
1211
1220
  }
1212
1221
  export interface InvokeWithResponseStreamResponse {
1213
- StatusCode?: number;
1214
- ExecutedVersion?: string;
1215
- EventStream?: AsyncIterable<InvokeWithResponseStreamResponseEvent>;
1216
- ResponseStreamContentType?: string;
1222
+ StatusCode?: number | undefined;
1223
+ ExecutedVersion?: string | undefined;
1224
+ EventStream?:
1225
+ | AsyncIterable<InvokeWithResponseStreamResponseEvent>
1226
+ | undefined;
1227
+ ResponseStreamContentType?: string | undefined;
1217
1228
  }
1218
1229
  export interface ListAliasesRequest {
1219
1230
  FunctionName: string | undefined;
1220
- FunctionVersion?: string;
1221
- Marker?: string;
1222
- MaxItems?: number;
1231
+ FunctionVersion?: string | undefined;
1232
+ Marker?: string | undefined;
1233
+ MaxItems?: number | undefined;
1223
1234
  }
1224
1235
  export interface ListAliasesResponse {
1225
- NextMarker?: string;
1226
- Aliases?: AliasConfiguration[];
1236
+ NextMarker?: string | undefined;
1237
+ Aliases?: AliasConfiguration[] | undefined;
1227
1238
  }
1228
1239
  export interface ListCodeSigningConfigsRequest {
1229
- Marker?: string;
1230
- MaxItems?: number;
1240
+ Marker?: string | undefined;
1241
+ MaxItems?: number | undefined;
1231
1242
  }
1232
1243
  export interface ListCodeSigningConfigsResponse {
1233
- NextMarker?: string;
1234
- CodeSigningConfigs?: CodeSigningConfig[];
1244
+ NextMarker?: string | undefined;
1245
+ CodeSigningConfigs?: CodeSigningConfig[] | undefined;
1235
1246
  }
1236
1247
  export interface ListEventSourceMappingsRequest {
1237
- EventSourceArn?: string;
1238
- FunctionName?: string;
1239
- Marker?: string;
1240
- MaxItems?: number;
1248
+ EventSourceArn?: string | undefined;
1249
+ FunctionName?: string | undefined;
1250
+ Marker?: string | undefined;
1251
+ MaxItems?: number | undefined;
1241
1252
  }
1242
1253
  export interface ListEventSourceMappingsResponse {
1243
- NextMarker?: string;
1244
- EventSourceMappings?: EventSourceMappingConfiguration[];
1254
+ NextMarker?: string | undefined;
1255
+ EventSourceMappings?: EventSourceMappingConfiguration[] | undefined;
1245
1256
  }
1246
1257
  export interface ListFunctionEventInvokeConfigsRequest {
1247
1258
  FunctionName: string | undefined;
1248
- Marker?: string;
1249
- MaxItems?: number;
1259
+ Marker?: string | undefined;
1260
+ MaxItems?: number | undefined;
1250
1261
  }
1251
1262
  export interface ListFunctionEventInvokeConfigsResponse {
1252
- FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[];
1253
- NextMarker?: string;
1263
+ FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[] | undefined;
1264
+ NextMarker?: string | undefined;
1254
1265
  }
1255
1266
  export declare const FunctionVersion: {
1256
1267
  readonly ALL: "ALL";
@@ -1258,140 +1269,142 @@ export declare const FunctionVersion: {
1258
1269
  export type FunctionVersion =
1259
1270
  (typeof FunctionVersion)[keyof typeof FunctionVersion];
1260
1271
  export interface ListFunctionsRequest {
1261
- MasterRegion?: string;
1262
- FunctionVersion?: FunctionVersion;
1263
- Marker?: string;
1264
- MaxItems?: number;
1272
+ MasterRegion?: string | undefined;
1273
+ FunctionVersion?: FunctionVersion | undefined;
1274
+ Marker?: string | undefined;
1275
+ MaxItems?: number | undefined;
1265
1276
  }
1266
1277
  export interface ListFunctionsResponse {
1267
- NextMarker?: string;
1268
- Functions?: FunctionConfiguration[];
1278
+ NextMarker?: string | undefined;
1279
+ Functions?: FunctionConfiguration[] | undefined;
1269
1280
  }
1270
1281
  export interface ListFunctionsByCodeSigningConfigRequest {
1271
1282
  CodeSigningConfigArn: string | undefined;
1272
- Marker?: string;
1273
- MaxItems?: number;
1283
+ Marker?: string | undefined;
1284
+ MaxItems?: number | undefined;
1274
1285
  }
1275
1286
  export interface ListFunctionsByCodeSigningConfigResponse {
1276
- NextMarker?: string;
1277
- FunctionArns?: string[];
1287
+ NextMarker?: string | undefined;
1288
+ FunctionArns?: string[] | undefined;
1278
1289
  }
1279
1290
  export interface ListFunctionUrlConfigsRequest {
1280
1291
  FunctionName: string | undefined;
1281
- Marker?: string;
1282
- MaxItems?: number;
1292
+ Marker?: string | undefined;
1293
+ MaxItems?: number | undefined;
1283
1294
  }
1284
1295
  export interface FunctionUrlConfig {
1285
1296
  FunctionUrl: string | undefined;
1286
1297
  FunctionArn: string | undefined;
1287
1298
  CreationTime: string | undefined;
1288
1299
  LastModifiedTime: string | undefined;
1289
- Cors?: Cors;
1300
+ Cors?: Cors | undefined;
1290
1301
  AuthType: FunctionUrlAuthType | undefined;
1291
- InvokeMode?: InvokeMode;
1302
+ InvokeMode?: InvokeMode | undefined;
1292
1303
  }
1293
1304
  export interface ListFunctionUrlConfigsResponse {
1294
1305
  FunctionUrlConfigs: FunctionUrlConfig[] | undefined;
1295
- NextMarker?: string;
1306
+ NextMarker?: string | undefined;
1296
1307
  }
1297
1308
  export interface ListLayersRequest {
1298
- CompatibleRuntime?: Runtime;
1299
- Marker?: string;
1300
- MaxItems?: number;
1301
- CompatibleArchitecture?: Architecture;
1309
+ CompatibleRuntime?: Runtime | undefined;
1310
+ Marker?: string | undefined;
1311
+ MaxItems?: number | undefined;
1312
+ CompatibleArchitecture?: Architecture | undefined;
1302
1313
  }
1303
1314
  export interface LayerVersionsListItem {
1304
- LayerVersionArn?: string;
1305
- Version?: number;
1306
- Description?: string;
1307
- CreatedDate?: string;
1308
- CompatibleRuntimes?: Runtime[];
1309
- LicenseInfo?: string;
1310
- CompatibleArchitectures?: Architecture[];
1315
+ LayerVersionArn?: string | undefined;
1316
+ Version?: number | undefined;
1317
+ Description?: string | undefined;
1318
+ CreatedDate?: string | undefined;
1319
+ CompatibleRuntimes?: Runtime[] | undefined;
1320
+ LicenseInfo?: string | undefined;
1321
+ CompatibleArchitectures?: Architecture[] | undefined;
1311
1322
  }
1312
1323
  export interface LayersListItem {
1313
- LayerName?: string;
1314
- LayerArn?: string;
1315
- LatestMatchingVersion?: LayerVersionsListItem;
1324
+ LayerName?: string | undefined;
1325
+ LayerArn?: string | undefined;
1326
+ LatestMatchingVersion?: LayerVersionsListItem | undefined;
1316
1327
  }
1317
1328
  export interface ListLayersResponse {
1318
- NextMarker?: string;
1319
- Layers?: LayersListItem[];
1329
+ NextMarker?: string | undefined;
1330
+ Layers?: LayersListItem[] | undefined;
1320
1331
  }
1321
1332
  export interface ListLayerVersionsRequest {
1322
- CompatibleRuntime?: Runtime;
1333
+ CompatibleRuntime?: Runtime | undefined;
1323
1334
  LayerName: string | undefined;
1324
- Marker?: string;
1325
- MaxItems?: number;
1326
- CompatibleArchitecture?: Architecture;
1335
+ Marker?: string | undefined;
1336
+ MaxItems?: number | undefined;
1337
+ CompatibleArchitecture?: Architecture | undefined;
1327
1338
  }
1328
1339
  export interface ListLayerVersionsResponse {
1329
- NextMarker?: string;
1330
- LayerVersions?: LayerVersionsListItem[];
1340
+ NextMarker?: string | undefined;
1341
+ LayerVersions?: LayerVersionsListItem[] | undefined;
1331
1342
  }
1332
1343
  export interface ListProvisionedConcurrencyConfigsRequest {
1333
1344
  FunctionName: string | undefined;
1334
- Marker?: string;
1335
- MaxItems?: number;
1345
+ Marker?: string | undefined;
1346
+ MaxItems?: number | undefined;
1336
1347
  }
1337
1348
  export interface ProvisionedConcurrencyConfigListItem {
1338
- FunctionArn?: string;
1339
- RequestedProvisionedConcurrentExecutions?: number;
1340
- AvailableProvisionedConcurrentExecutions?: number;
1341
- AllocatedProvisionedConcurrentExecutions?: number;
1342
- Status?: ProvisionedConcurrencyStatusEnum;
1343
- StatusReason?: string;
1344
- LastModified?: string;
1349
+ FunctionArn?: string | undefined;
1350
+ RequestedProvisionedConcurrentExecutions?: number | undefined;
1351
+ AvailableProvisionedConcurrentExecutions?: number | undefined;
1352
+ AllocatedProvisionedConcurrentExecutions?: number | undefined;
1353
+ Status?: ProvisionedConcurrencyStatusEnum | undefined;
1354
+ StatusReason?: string | undefined;
1355
+ LastModified?: string | undefined;
1345
1356
  }
1346
1357
  export interface ListProvisionedConcurrencyConfigsResponse {
1347
- ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigListItem[];
1348
- NextMarker?: string;
1358
+ ProvisionedConcurrencyConfigs?:
1359
+ | ProvisionedConcurrencyConfigListItem[]
1360
+ | undefined;
1361
+ NextMarker?: string | undefined;
1349
1362
  }
1350
1363
  export interface ListTagsRequest {
1351
1364
  Resource: string | undefined;
1352
1365
  }
1353
1366
  export interface ListTagsResponse {
1354
- Tags?: Record<string, string>;
1367
+ Tags?: Record<string, string> | undefined;
1355
1368
  }
1356
1369
  export interface ListVersionsByFunctionRequest {
1357
1370
  FunctionName: string | undefined;
1358
- Marker?: string;
1359
- MaxItems?: number;
1371
+ Marker?: string | undefined;
1372
+ MaxItems?: number | undefined;
1360
1373
  }
1361
1374
  export interface ListVersionsByFunctionResponse {
1362
- NextMarker?: string;
1363
- Versions?: FunctionConfiguration[];
1375
+ NextMarker?: string | undefined;
1376
+ Versions?: FunctionConfiguration[] | undefined;
1364
1377
  }
1365
1378
  export interface LayerVersionContentInput {
1366
- S3Bucket?: string;
1367
- S3Key?: string;
1368
- S3ObjectVersion?: string;
1369
- ZipFile?: Uint8Array;
1379
+ S3Bucket?: string | undefined;
1380
+ S3Key?: string | undefined;
1381
+ S3ObjectVersion?: string | undefined;
1382
+ ZipFile?: Uint8Array | undefined;
1370
1383
  }
1371
1384
  export interface PublishLayerVersionRequest {
1372
1385
  LayerName: string | undefined;
1373
- Description?: string;
1386
+ Description?: string | undefined;
1374
1387
  Content: LayerVersionContentInput | undefined;
1375
- CompatibleRuntimes?: Runtime[];
1376
- LicenseInfo?: string;
1377
- CompatibleArchitectures?: Architecture[];
1388
+ CompatibleRuntimes?: Runtime[] | undefined;
1389
+ LicenseInfo?: string | undefined;
1390
+ CompatibleArchitectures?: Architecture[] | undefined;
1378
1391
  }
1379
1392
  export interface PublishLayerVersionResponse {
1380
- Content?: LayerVersionContentOutput;
1381
- LayerArn?: string;
1382
- LayerVersionArn?: string;
1383
- Description?: string;
1384
- CreatedDate?: string;
1385
- Version?: number;
1386
- CompatibleRuntimes?: Runtime[];
1387
- LicenseInfo?: string;
1388
- CompatibleArchitectures?: Architecture[];
1393
+ Content?: LayerVersionContentOutput | undefined;
1394
+ LayerArn?: string | undefined;
1395
+ LayerVersionArn?: string | undefined;
1396
+ Description?: string | undefined;
1397
+ CreatedDate?: string | undefined;
1398
+ Version?: number | undefined;
1399
+ CompatibleRuntimes?: Runtime[] | undefined;
1400
+ LicenseInfo?: string | undefined;
1401
+ CompatibleArchitectures?: Architecture[] | undefined;
1389
1402
  }
1390
1403
  export interface PublishVersionRequest {
1391
1404
  FunctionName: string | undefined;
1392
- CodeSha256?: string;
1393
- Description?: string;
1394
- RevisionId?: string;
1405
+ CodeSha256?: string | undefined;
1406
+ Description?: string | undefined;
1407
+ RevisionId?: string | undefined;
1395
1408
  }
1396
1409
  export interface PutFunctionCodeSigningConfigRequest {
1397
1410
  CodeSigningConfigArn: string | undefined;
@@ -1407,17 +1420,17 @@ export interface PutFunctionConcurrencyRequest {
1407
1420
  }
1408
1421
  export interface PutFunctionEventInvokeConfigRequest {
1409
1422
  FunctionName: string | undefined;
1410
- Qualifier?: string;
1411
- MaximumRetryAttempts?: number;
1412
- MaximumEventAgeInSeconds?: number;
1413
- DestinationConfig?: DestinationConfig;
1423
+ Qualifier?: string | undefined;
1424
+ MaximumRetryAttempts?: number | undefined;
1425
+ MaximumEventAgeInSeconds?: number | undefined;
1426
+ DestinationConfig?: DestinationConfig | undefined;
1414
1427
  }
1415
1428
  export interface PutFunctionRecursionConfigRequest {
1416
1429
  FunctionName: string | undefined;
1417
1430
  RecursiveLoop: RecursiveLoop | undefined;
1418
1431
  }
1419
1432
  export interface PutFunctionRecursionConfigResponse {
1420
- RecursiveLoop?: RecursiveLoop;
1433
+ RecursiveLoop?: RecursiveLoop | undefined;
1421
1434
  }
1422
1435
  export interface PutProvisionedConcurrencyConfigRequest {
1423
1436
  FunctionName: string | undefined;
@@ -1425,35 +1438,35 @@ export interface PutProvisionedConcurrencyConfigRequest {
1425
1438
  ProvisionedConcurrentExecutions: number | undefined;
1426
1439
  }
1427
1440
  export interface PutProvisionedConcurrencyConfigResponse {
1428
- RequestedProvisionedConcurrentExecutions?: number;
1429
- AvailableProvisionedConcurrentExecutions?: number;
1430
- AllocatedProvisionedConcurrentExecutions?: number;
1431
- Status?: ProvisionedConcurrencyStatusEnum;
1432
- StatusReason?: string;
1433
- LastModified?: string;
1441
+ RequestedProvisionedConcurrentExecutions?: number | undefined;
1442
+ AvailableProvisionedConcurrentExecutions?: number | undefined;
1443
+ AllocatedProvisionedConcurrentExecutions?: number | undefined;
1444
+ Status?: ProvisionedConcurrencyStatusEnum | undefined;
1445
+ StatusReason?: string | undefined;
1446
+ LastModified?: string | undefined;
1434
1447
  }
1435
1448
  export interface PutRuntimeManagementConfigRequest {
1436
1449
  FunctionName: string | undefined;
1437
- Qualifier?: string;
1450
+ Qualifier?: string | undefined;
1438
1451
  UpdateRuntimeOn: UpdateRuntimeOn | undefined;
1439
- RuntimeVersionArn?: string;
1452
+ RuntimeVersionArn?: string | undefined;
1440
1453
  }
1441
1454
  export interface PutRuntimeManagementConfigResponse {
1442
1455
  UpdateRuntimeOn: UpdateRuntimeOn | undefined;
1443
1456
  FunctionArn: string | undefined;
1444
- RuntimeVersionArn?: string;
1457
+ RuntimeVersionArn?: string | undefined;
1445
1458
  }
1446
1459
  export interface RemoveLayerVersionPermissionRequest {
1447
1460
  LayerName: string | undefined;
1448
1461
  VersionNumber: number | undefined;
1449
1462
  StatementId: string | undefined;
1450
- RevisionId?: string;
1463
+ RevisionId?: string | undefined;
1451
1464
  }
1452
1465
  export interface RemovePermissionRequest {
1453
1466
  FunctionName: string | undefined;
1454
1467
  StatementId: string | undefined;
1455
- Qualifier?: string;
1456
- RevisionId?: string;
1468
+ Qualifier?: string | undefined;
1469
+ RevisionId?: string | undefined;
1457
1470
  }
1458
1471
  export interface TagResourceRequest {
1459
1472
  Resource: string | undefined;
@@ -1466,95 +1479,95 @@ export interface UntagResourceRequest {
1466
1479
  export interface UpdateAliasRequest {
1467
1480
  FunctionName: string | undefined;
1468
1481
  Name: string | undefined;
1469
- FunctionVersion?: string;
1470
- Description?: string;
1471
- RoutingConfig?: AliasRoutingConfiguration;
1472
- RevisionId?: string;
1482
+ FunctionVersion?: string | undefined;
1483
+ Description?: string | undefined;
1484
+ RoutingConfig?: AliasRoutingConfiguration | undefined;
1485
+ RevisionId?: string | undefined;
1473
1486
  }
1474
1487
  export interface UpdateCodeSigningConfigRequest {
1475
1488
  CodeSigningConfigArn: string | undefined;
1476
- Description?: string;
1477
- AllowedPublishers?: AllowedPublishers;
1478
- CodeSigningPolicies?: CodeSigningPolicies;
1489
+ Description?: string | undefined;
1490
+ AllowedPublishers?: AllowedPublishers | undefined;
1491
+ CodeSigningPolicies?: CodeSigningPolicies | undefined;
1479
1492
  }
1480
1493
  export interface UpdateCodeSigningConfigResponse {
1481
1494
  CodeSigningConfig: CodeSigningConfig | undefined;
1482
1495
  }
1483
1496
  export interface UpdateEventSourceMappingRequest {
1484
1497
  UUID: string | undefined;
1485
- FunctionName?: string;
1486
- Enabled?: boolean;
1487
- BatchSize?: number;
1488
- FilterCriteria?: FilterCriteria;
1489
- MaximumBatchingWindowInSeconds?: number;
1490
- DestinationConfig?: DestinationConfig;
1491
- MaximumRecordAgeInSeconds?: number;
1492
- BisectBatchOnFunctionError?: boolean;
1493
- MaximumRetryAttempts?: number;
1494
- ParallelizationFactor?: number;
1495
- SourceAccessConfigurations?: SourceAccessConfiguration[];
1496
- TumblingWindowInSeconds?: number;
1497
- FunctionResponseTypes?: FunctionResponseType[];
1498
- ScalingConfig?: ScalingConfig;
1499
- DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
1500
- KMSKeyArn?: string;
1498
+ FunctionName?: string | undefined;
1499
+ Enabled?: boolean | undefined;
1500
+ BatchSize?: number | undefined;
1501
+ FilterCriteria?: FilterCriteria | undefined;
1502
+ MaximumBatchingWindowInSeconds?: number | undefined;
1503
+ DestinationConfig?: DestinationConfig | undefined;
1504
+ MaximumRecordAgeInSeconds?: number | undefined;
1505
+ BisectBatchOnFunctionError?: boolean | undefined;
1506
+ MaximumRetryAttempts?: number | undefined;
1507
+ ParallelizationFactor?: number | undefined;
1508
+ SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
1509
+ TumblingWindowInSeconds?: number | undefined;
1510
+ FunctionResponseTypes?: FunctionResponseType[] | undefined;
1511
+ ScalingConfig?: ScalingConfig | undefined;
1512
+ DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
1513
+ KMSKeyArn?: string | undefined;
1501
1514
  }
1502
1515
  export interface UpdateFunctionCodeRequest {
1503
1516
  FunctionName: string | undefined;
1504
- ZipFile?: Uint8Array;
1505
- S3Bucket?: string;
1506
- S3Key?: string;
1507
- S3ObjectVersion?: string;
1508
- ImageUri?: string;
1509
- Publish?: boolean;
1510
- DryRun?: boolean;
1511
- RevisionId?: string;
1512
- Architectures?: Architecture[];
1513
- SourceKMSKeyArn?: string;
1517
+ ZipFile?: Uint8Array | undefined;
1518
+ S3Bucket?: string | undefined;
1519
+ S3Key?: string | undefined;
1520
+ S3ObjectVersion?: string | undefined;
1521
+ ImageUri?: string | undefined;
1522
+ Publish?: boolean | undefined;
1523
+ DryRun?: boolean | undefined;
1524
+ RevisionId?: string | undefined;
1525
+ Architectures?: Architecture[] | undefined;
1526
+ SourceKMSKeyArn?: string | undefined;
1514
1527
  }
1515
1528
  export interface UpdateFunctionConfigurationRequest {
1516
1529
  FunctionName: string | undefined;
1517
- Role?: string;
1518
- Handler?: string;
1519
- Description?: string;
1520
- Timeout?: number;
1521
- MemorySize?: number;
1522
- VpcConfig?: VpcConfig;
1523
- Environment?: Environment;
1524
- Runtime?: Runtime;
1525
- DeadLetterConfig?: DeadLetterConfig;
1526
- KMSKeyArn?: string;
1527
- TracingConfig?: TracingConfig;
1528
- RevisionId?: string;
1529
- Layers?: string[];
1530
- FileSystemConfigs?: FileSystemConfig[];
1531
- ImageConfig?: ImageConfig;
1532
- EphemeralStorage?: EphemeralStorage;
1533
- SnapStart?: SnapStart;
1534
- LoggingConfig?: LoggingConfig;
1530
+ Role?: string | undefined;
1531
+ Handler?: string | undefined;
1532
+ Description?: string | undefined;
1533
+ Timeout?: number | undefined;
1534
+ MemorySize?: number | undefined;
1535
+ VpcConfig?: VpcConfig | undefined;
1536
+ Environment?: Environment | undefined;
1537
+ Runtime?: Runtime | undefined;
1538
+ DeadLetterConfig?: DeadLetterConfig | undefined;
1539
+ KMSKeyArn?: string | undefined;
1540
+ TracingConfig?: TracingConfig | undefined;
1541
+ RevisionId?: string | undefined;
1542
+ Layers?: string[] | undefined;
1543
+ FileSystemConfigs?: FileSystemConfig[] | undefined;
1544
+ ImageConfig?: ImageConfig | undefined;
1545
+ EphemeralStorage?: EphemeralStorage | undefined;
1546
+ SnapStart?: SnapStart | undefined;
1547
+ LoggingConfig?: LoggingConfig | undefined;
1535
1548
  }
1536
1549
  export interface UpdateFunctionEventInvokeConfigRequest {
1537
1550
  FunctionName: string | undefined;
1538
- Qualifier?: string;
1539
- MaximumRetryAttempts?: number;
1540
- MaximumEventAgeInSeconds?: number;
1541
- DestinationConfig?: DestinationConfig;
1551
+ Qualifier?: string | undefined;
1552
+ MaximumRetryAttempts?: number | undefined;
1553
+ MaximumEventAgeInSeconds?: number | undefined;
1554
+ DestinationConfig?: DestinationConfig | undefined;
1542
1555
  }
1543
1556
  export interface UpdateFunctionUrlConfigRequest {
1544
1557
  FunctionName: string | undefined;
1545
- Qualifier?: string;
1546
- AuthType?: FunctionUrlAuthType;
1547
- Cors?: Cors;
1548
- InvokeMode?: InvokeMode;
1558
+ Qualifier?: string | undefined;
1559
+ AuthType?: FunctionUrlAuthType | undefined;
1560
+ Cors?: Cors | undefined;
1561
+ InvokeMode?: InvokeMode | undefined;
1549
1562
  }
1550
1563
  export interface UpdateFunctionUrlConfigResponse {
1551
1564
  FunctionUrl: string | undefined;
1552
1565
  FunctionArn: string | undefined;
1553
1566
  AuthType: FunctionUrlAuthType | undefined;
1554
- Cors?: Cors;
1567
+ Cors?: Cors | undefined;
1555
1568
  CreationTime: string | undefined;
1556
1569
  LastModifiedTime: string | undefined;
1557
- InvokeMode?: InvokeMode;
1570
+ InvokeMode?: InvokeMode | undefined;
1558
1571
  }
1559
1572
  export declare const FunctionCodeFilterSensitiveLog: (obj: FunctionCode) => any;
1560
1573
  export declare const EnvironmentFilterSensitiveLog: (obj: Environment) => any;