@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.
- package/dist-cjs/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +2 -2
- package/dist-types/commands/GetFunctionCommand.d.ts +1 -1
- package/dist-types/commands/GetFunctionConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionByArnCommand.d.ts +1 -1
- package/dist-types/commands/GetLayerVersionCommand.d.ts +1 -1
- package/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
- package/dist-types/commands/ListLayerVersionsCommand.d.ts +2 -2
- package/dist-types/commands/ListLayersCommand.d.ts +2 -2
- package/dist-types/commands/ListVersionsByFunctionCommand.d.ts +1 -1
- package/dist-types/commands/PublishLayerVersionCommand.d.ts +2 -2
- package/dist-types/commands/PublishVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFunctionCodeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFunctionConfigurationCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +536 -535
- package/dist-types/ts3.4/models/models_0.d.ts +548 -535
- package/package.json +7 -7
|
@@ -10,29 +10,29 @@ export interface AccountLimit {
|
|
|
10
10
|
* <p>The amount of storage space that you can use for all deployment packages and layer archives.</p>
|
|
11
11
|
* @public
|
|
12
12
|
*/
|
|
13
|
-
TotalCodeSize?: number;
|
|
13
|
+
TotalCodeSize?: number | undefined;
|
|
14
14
|
/**
|
|
15
15
|
* <p>The maximum size of a function's deployment package and layers when they're extracted.</p>
|
|
16
16
|
* @public
|
|
17
17
|
*/
|
|
18
|
-
CodeSizeUnzipped?: number;
|
|
18
|
+
CodeSizeUnzipped?: number | undefined;
|
|
19
19
|
/**
|
|
20
20
|
* <p>The maximum size of a deployment package when it's uploaded directly to Lambda. Use Amazon S3 for larger
|
|
21
21
|
* files.</p>
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
CodeSizeZipped?: number;
|
|
24
|
+
CodeSizeZipped?: number | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* <p>The maximum number of simultaneous function executions.</p>
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
ConcurrentExecutions?: number;
|
|
29
|
+
ConcurrentExecutions?: number | undefined;
|
|
30
30
|
/**
|
|
31
31
|
* <p>The maximum number of simultaneous function executions, minus the capacity that's reserved for individual
|
|
32
32
|
* functions with <a>PutFunctionConcurrency</a>.</p>
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
|
-
UnreservedConcurrentExecutions?: number;
|
|
35
|
+
UnreservedConcurrentExecutions?: number | undefined;
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* <p>The number of functions and amount of storage in use.</p>
|
|
@@ -43,12 +43,12 @@ export interface AccountUsage {
|
|
|
43
43
|
* <p>The amount of storage space, in bytes, that's being used by deployment packages and layer archives.</p>
|
|
44
44
|
* @public
|
|
45
45
|
*/
|
|
46
|
-
TotalCodeSize?: number;
|
|
46
|
+
TotalCodeSize?: number | undefined;
|
|
47
47
|
/**
|
|
48
48
|
* <p>The number of Lambda functions.</p>
|
|
49
49
|
* @public
|
|
50
50
|
*/
|
|
51
|
-
FunctionCount?: number;
|
|
51
|
+
FunctionCount?: number | undefined;
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
* @public
|
|
@@ -87,13 +87,13 @@ export interface AddLayerVersionPermissionRequest {
|
|
|
87
87
|
* organization.</p>
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
OrganizationId?: string;
|
|
90
|
+
OrganizationId?: string | undefined;
|
|
91
91
|
/**
|
|
92
92
|
* <p>Only update the policy if the revision ID matches the ID specified. Use this option to avoid modifying a
|
|
93
93
|
* policy that has changed since you last read it.</p>
|
|
94
94
|
* @public
|
|
95
95
|
*/
|
|
96
|
-
RevisionId?: string;
|
|
96
|
+
RevisionId?: string | undefined;
|
|
97
97
|
}
|
|
98
98
|
/**
|
|
99
99
|
* @public
|
|
@@ -103,12 +103,12 @@ export interface AddLayerVersionPermissionResponse {
|
|
|
103
103
|
* <p>The permission statement.</p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
Statement?: string;
|
|
106
|
+
Statement?: string | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
RevisionId?: string;
|
|
111
|
+
RevisionId?: string | undefined;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* <p>One of the parameters in the request is not valid.</p>
|
|
@@ -121,7 +121,7 @@ export declare class InvalidParameterValueException extends __BaseException {
|
|
|
121
121
|
* <p>The exception type.</p>
|
|
122
122
|
* @public
|
|
123
123
|
*/
|
|
124
|
-
Type?: string;
|
|
124
|
+
Type?: string | undefined;
|
|
125
125
|
/**
|
|
126
126
|
* @internal
|
|
127
127
|
*/
|
|
@@ -134,7 +134,7 @@ export declare class InvalidParameterValueException extends __BaseException {
|
|
|
134
134
|
export declare class PolicyLengthExceededException extends __BaseException {
|
|
135
135
|
readonly name: "PolicyLengthExceededException";
|
|
136
136
|
readonly $fault: "client";
|
|
137
|
-
Type?: string;
|
|
137
|
+
Type?: string | undefined;
|
|
138
138
|
/**
|
|
139
139
|
* @internal
|
|
140
140
|
*/
|
|
@@ -161,7 +161,7 @@ export declare class PreconditionFailedException extends __BaseException {
|
|
|
161
161
|
* <p>The exception type.</p>
|
|
162
162
|
* @public
|
|
163
163
|
*/
|
|
164
|
-
Type?: string;
|
|
164
|
+
Type?: string | undefined;
|
|
165
165
|
/**
|
|
166
166
|
* @internal
|
|
167
167
|
*/
|
|
@@ -178,7 +178,7 @@ export declare class ResourceConflictException extends __BaseException {
|
|
|
178
178
|
* <p>The exception type.</p>
|
|
179
179
|
* @public
|
|
180
180
|
*/
|
|
181
|
-
Type?: string;
|
|
181
|
+
Type?: string | undefined;
|
|
182
182
|
/**
|
|
183
183
|
* @internal
|
|
184
184
|
*/
|
|
@@ -191,8 +191,8 @@ export declare class ResourceConflictException extends __BaseException {
|
|
|
191
191
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
192
192
|
readonly name: "ResourceNotFoundException";
|
|
193
193
|
readonly $fault: "client";
|
|
194
|
-
Type?: string;
|
|
195
|
-
Message?: string;
|
|
194
|
+
Type?: string | undefined;
|
|
195
|
+
Message?: string | undefined;
|
|
196
196
|
/**
|
|
197
197
|
* @internal
|
|
198
198
|
*/
|
|
@@ -205,8 +205,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
205
205
|
export declare class ServiceException extends __BaseException {
|
|
206
206
|
readonly name: "ServiceException";
|
|
207
207
|
readonly $fault: "server";
|
|
208
|
-
Type?: string;
|
|
209
|
-
Message?: string;
|
|
208
|
+
Type?: string | undefined;
|
|
209
|
+
Message?: string | undefined;
|
|
210
210
|
/**
|
|
211
211
|
* @internal
|
|
212
212
|
*/
|
|
@@ -239,9 +239,9 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
239
239
|
* <p>The number of seconds the caller should wait before retrying.</p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
retryAfterSeconds?: string;
|
|
243
|
-
Type?: string;
|
|
244
|
-
Reason?: ThrottleReason;
|
|
242
|
+
retryAfterSeconds?: string | undefined;
|
|
243
|
+
Type?: string | undefined;
|
|
244
|
+
Reason?: ThrottleReason | undefined;
|
|
245
245
|
/**
|
|
246
246
|
* @internal
|
|
247
247
|
*/
|
|
@@ -311,43 +311,43 @@ export interface AddPermissionRequest {
|
|
|
311
311
|
* <p>Note that Lambda configures the comparison using the <code>StringLike</code> operator.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
SourceArn?: string;
|
|
314
|
+
SourceArn?: string | undefined;
|
|
315
315
|
/**
|
|
316
316
|
* <p>For Amazon Web Services service, the ID of the Amazon Web Services account that owns the resource. Use this
|
|
317
317
|
* together with <code>SourceArn</code> to ensure that the specified account owns the resource. It is possible for an
|
|
318
318
|
* Amazon S3 bucket to be deleted by its owner and recreated by another account.</p>
|
|
319
319
|
* @public
|
|
320
320
|
*/
|
|
321
|
-
SourceAccount?: string;
|
|
321
|
+
SourceAccount?: string | undefined;
|
|
322
322
|
/**
|
|
323
323
|
* <p>For Alexa Smart Home functions, a token that the invoker must supply.</p>
|
|
324
324
|
* @public
|
|
325
325
|
*/
|
|
326
|
-
EventSourceToken?: string;
|
|
326
|
+
EventSourceToken?: string | undefined;
|
|
327
327
|
/**
|
|
328
328
|
* <p>Specify a version or alias to add permissions to a published version of the function.</p>
|
|
329
329
|
* @public
|
|
330
330
|
*/
|
|
331
|
-
Qualifier?: string;
|
|
331
|
+
Qualifier?: string | undefined;
|
|
332
332
|
/**
|
|
333
333
|
* <p>Update the policy only if the revision ID matches the ID that's specified. Use this option to avoid modifying a
|
|
334
334
|
* policy that has changed since you last read it.</p>
|
|
335
335
|
* @public
|
|
336
336
|
*/
|
|
337
|
-
RevisionId?: string;
|
|
337
|
+
RevisionId?: string | undefined;
|
|
338
338
|
/**
|
|
339
339
|
* <p>The identifier for your organization in Organizations. Use this to grant permissions to all the
|
|
340
340
|
* Amazon Web Services accounts under this organization.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
PrincipalOrgID?: string;
|
|
343
|
+
PrincipalOrgID?: string | undefined;
|
|
344
344
|
/**
|
|
345
345
|
* <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
|
|
346
346
|
* users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
|
|
347
347
|
* see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html">Security and auth model for Lambda function URLs</a>.</p>
|
|
348
348
|
* @public
|
|
349
349
|
*/
|
|
350
|
-
FunctionUrlAuthType?: FunctionUrlAuthType;
|
|
350
|
+
FunctionUrlAuthType?: FunctionUrlAuthType | undefined;
|
|
351
351
|
}
|
|
352
352
|
/**
|
|
353
353
|
* @public
|
|
@@ -357,7 +357,7 @@ export interface AddPermissionResponse {
|
|
|
357
357
|
* <p>The permission statement that's added to the function policy.</p>
|
|
358
358
|
* @public
|
|
359
359
|
*/
|
|
360
|
-
Statement?: string;
|
|
360
|
+
Statement?: string | undefined;
|
|
361
361
|
}
|
|
362
362
|
/**
|
|
363
363
|
* <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html">traffic-shifting</a> configuration of a Lambda function alias.</p>
|
|
@@ -368,7 +368,7 @@ export interface AliasRoutingConfiguration {
|
|
|
368
368
|
* <p>The second version, and the percentage of traffic that's routed to it.</p>
|
|
369
369
|
* @public
|
|
370
370
|
*/
|
|
371
|
-
AdditionalVersionWeights?: Record<string, number
|
|
371
|
+
AdditionalVersionWeights?: Record<string, number> | undefined;
|
|
372
372
|
}
|
|
373
373
|
/**
|
|
374
374
|
* <p>Provides configuration information about a Lambda function <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html">alias</a>.</p>
|
|
@@ -379,33 +379,33 @@ export interface AliasConfiguration {
|
|
|
379
379
|
* <p>The Amazon Resource Name (ARN) of the alias.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
AliasArn?: string;
|
|
382
|
+
AliasArn?: string | undefined;
|
|
383
383
|
/**
|
|
384
384
|
* <p>The name of the alias.</p>
|
|
385
385
|
* @public
|
|
386
386
|
*/
|
|
387
|
-
Name?: string;
|
|
387
|
+
Name?: string | undefined;
|
|
388
388
|
/**
|
|
389
389
|
* <p>The function version that the alias invokes.</p>
|
|
390
390
|
* @public
|
|
391
391
|
*/
|
|
392
|
-
FunctionVersion?: string;
|
|
392
|
+
FunctionVersion?: string | undefined;
|
|
393
393
|
/**
|
|
394
394
|
* <p>A description of the alias.</p>
|
|
395
395
|
* @public
|
|
396
396
|
*/
|
|
397
|
-
Description?: string;
|
|
397
|
+
Description?: string | undefined;
|
|
398
398
|
/**
|
|
399
399
|
* <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html">routing
|
|
400
400
|
* configuration</a> of the alias.</p>
|
|
401
401
|
* @public
|
|
402
402
|
*/
|
|
403
|
-
RoutingConfig?: AliasRoutingConfiguration;
|
|
403
|
+
RoutingConfig?: AliasRoutingConfiguration | undefined;
|
|
404
404
|
/**
|
|
405
405
|
* <p>A unique identifier that changes when you update the alias.</p>
|
|
406
406
|
* @public
|
|
407
407
|
*/
|
|
408
|
-
RevisionId?: string;
|
|
408
|
+
RevisionId?: string | undefined;
|
|
409
409
|
}
|
|
410
410
|
/**
|
|
411
411
|
* <p>List of signing profiles that can sign a code package. </p>
|
|
@@ -430,7 +430,7 @@ export interface AmazonManagedKafkaEventSourceConfig {
|
|
|
430
430
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id">Customizable consumer group ID</a>.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
ConsumerGroupId?: string;
|
|
433
|
+
ConsumerGroupId?: string | undefined;
|
|
434
434
|
}
|
|
435
435
|
/**
|
|
436
436
|
* @public
|
|
@@ -502,13 +502,13 @@ export interface CreateAliasRequest {
|
|
|
502
502
|
* <p>A description of the alias.</p>
|
|
503
503
|
* @public
|
|
504
504
|
*/
|
|
505
|
-
Description?: string;
|
|
505
|
+
Description?: string | undefined;
|
|
506
506
|
/**
|
|
507
507
|
* <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
|
|
508
508
|
* configuration</a> of the alias.</p>
|
|
509
509
|
* @public
|
|
510
510
|
*/
|
|
511
|
-
RoutingConfig?: AliasRoutingConfiguration;
|
|
511
|
+
RoutingConfig?: AliasRoutingConfiguration | undefined;
|
|
512
512
|
}
|
|
513
513
|
/**
|
|
514
514
|
* @public
|
|
@@ -536,7 +536,7 @@ export interface CodeSigningPolicies {
|
|
|
536
536
|
* </p>
|
|
537
537
|
* @public
|
|
538
538
|
*/
|
|
539
|
-
UntrustedArtifactOnDeployment?: CodeSigningPolicy;
|
|
539
|
+
UntrustedArtifactOnDeployment?: CodeSigningPolicy | undefined;
|
|
540
540
|
}
|
|
541
541
|
/**
|
|
542
542
|
* @public
|
|
@@ -546,7 +546,7 @@ export interface CreateCodeSigningConfigRequest {
|
|
|
546
546
|
* <p>Descriptive name for this code signing configuration.</p>
|
|
547
547
|
* @public
|
|
548
548
|
*/
|
|
549
|
-
Description?: string;
|
|
549
|
+
Description?: string | undefined;
|
|
550
550
|
/**
|
|
551
551
|
* <p>Signing profiles for this code signing configuration.</p>
|
|
552
552
|
* @public
|
|
@@ -556,12 +556,12 @@ export interface CreateCodeSigningConfigRequest {
|
|
|
556
556
|
* <p>The code signing policies define the actions to take if the validation checks fail. </p>
|
|
557
557
|
* @public
|
|
558
558
|
*/
|
|
559
|
-
CodeSigningPolicies?: CodeSigningPolicies;
|
|
559
|
+
CodeSigningPolicies?: CodeSigningPolicies | undefined;
|
|
560
560
|
/**
|
|
561
561
|
* <p>A list of tags to add to the code signing configuration.</p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
Tags?: Record<string, string
|
|
564
|
+
Tags?: Record<string, string> | undefined;
|
|
565
565
|
}
|
|
566
566
|
/**
|
|
567
567
|
* <p>Details about a <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-codesigning.html">Code signing configuration</a>. </p>
|
|
@@ -582,7 +582,7 @@ export interface CodeSigningConfig {
|
|
|
582
582
|
* <p>Code signing configuration description.</p>
|
|
583
583
|
* @public
|
|
584
584
|
*/
|
|
585
|
-
Description?: string;
|
|
585
|
+
Description?: string | undefined;
|
|
586
586
|
/**
|
|
587
587
|
* <p>List of allowed publishers.</p>
|
|
588
588
|
* @public
|
|
@@ -627,7 +627,7 @@ export interface OnFailure {
|
|
|
627
627
|
* you can configure an Amazon SNS topic, Amazon SQS queue, or Amazon S3 bucket as the destination.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
Destination?: string;
|
|
630
|
+
Destination?: string | undefined;
|
|
631
631
|
}
|
|
632
632
|
/**
|
|
633
633
|
* <p>A destination for events that were processed successfully.</p>
|
|
@@ -638,7 +638,7 @@ export interface OnSuccess {
|
|
|
638
638
|
* <p>The Amazon Resource Name (ARN) of the destination resource.</p>
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
Destination?: string;
|
|
641
|
+
Destination?: string | undefined;
|
|
642
642
|
}
|
|
643
643
|
/**
|
|
644
644
|
* <p>A configuration object that specifies the destination of an event after Lambda processes it.</p>
|
|
@@ -649,12 +649,12 @@ export interface DestinationConfig {
|
|
|
649
649
|
* <p>The destination configuration for successful invocations.</p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
OnSuccess?: OnSuccess;
|
|
652
|
+
OnSuccess?: OnSuccess | undefined;
|
|
653
653
|
/**
|
|
654
654
|
* <p>The destination configuration for failed invocations.</p>
|
|
655
655
|
* @public
|
|
656
656
|
*/
|
|
657
|
-
OnFailure?: OnFailure;
|
|
657
|
+
OnFailure?: OnFailure | undefined;
|
|
658
658
|
}
|
|
659
659
|
/**
|
|
660
660
|
* @public
|
|
@@ -681,21 +681,21 @@ export interface DocumentDBEventSourceConfig {
|
|
|
681
681
|
* </p>
|
|
682
682
|
* @public
|
|
683
683
|
*/
|
|
684
|
-
DatabaseName?: string;
|
|
684
|
+
DatabaseName?: string | undefined;
|
|
685
685
|
/**
|
|
686
686
|
* <p>
|
|
687
687
|
* The name of the collection to consume within the database. If you do not specify a collection, Lambda consumes all collections.
|
|
688
688
|
* </p>
|
|
689
689
|
* @public
|
|
690
690
|
*/
|
|
691
|
-
CollectionName?: string;
|
|
691
|
+
CollectionName?: string | undefined;
|
|
692
692
|
/**
|
|
693
693
|
* <p>
|
|
694
694
|
* Determines what DocumentDB sends to your event stream during document update operations. If set to UpdateLookup, DocumentDB sends a delta describing the changes, along with a copy of the entire document. Otherwise, DocumentDB sends only a partial document that contains the changes.
|
|
695
695
|
* </p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
FullDocument?: FullDocument;
|
|
698
|
+
FullDocument?: FullDocument | undefined;
|
|
699
699
|
}
|
|
700
700
|
/**
|
|
701
701
|
* <p>
|
|
@@ -712,7 +712,7 @@ export interface Filter {
|
|
|
712
712
|
* </p>
|
|
713
713
|
* @public
|
|
714
714
|
*/
|
|
715
|
-
Pattern?: string;
|
|
715
|
+
Pattern?: string | undefined;
|
|
716
716
|
}
|
|
717
717
|
/**
|
|
718
718
|
* <p>
|
|
@@ -727,7 +727,7 @@ export interface FilterCriteria {
|
|
|
727
727
|
* </p>
|
|
728
728
|
* @public
|
|
729
729
|
*/
|
|
730
|
-
Filters?: Filter[];
|
|
730
|
+
Filters?: Filter[] | undefined;
|
|
731
731
|
}
|
|
732
732
|
/**
|
|
733
733
|
* @public
|
|
@@ -749,7 +749,7 @@ export interface ScalingConfig {
|
|
|
749
749
|
* <p>Limits the number of concurrent instances that the Amazon SQS event source can invoke.</p>
|
|
750
750
|
* @public
|
|
751
751
|
*/
|
|
752
|
-
MaximumConcurrency?: number;
|
|
752
|
+
MaximumConcurrency?: number | undefined;
|
|
753
753
|
}
|
|
754
754
|
/**
|
|
755
755
|
* @public
|
|
@@ -772,7 +772,7 @@ export interface SelfManagedEventSource {
|
|
|
772
772
|
* ["abc.xyz.com:xxxx","abc2.xyz.com:xxxx"]</code>.</p>
|
|
773
773
|
* @public
|
|
774
774
|
*/
|
|
775
|
-
Endpoints?: Partial<Record<EndPointType, string[]
|
|
775
|
+
Endpoints?: Partial<Record<EndPointType, string[]>> | undefined;
|
|
776
776
|
}
|
|
777
777
|
/**
|
|
778
778
|
* <p>Specific configuration settings for a self-managed Apache Kafka event source.</p>
|
|
@@ -785,7 +785,7 @@ export interface SelfManagedKafkaEventSourceConfig {
|
|
|
785
785
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-msk.html#services-msk-consumer-group-id">Customizable consumer group ID</a>.</p>
|
|
786
786
|
* @public
|
|
787
787
|
*/
|
|
788
|
-
ConsumerGroupId?: string;
|
|
788
|
+
ConsumerGroupId?: string | undefined;
|
|
789
789
|
}
|
|
790
790
|
/**
|
|
791
791
|
* @public
|
|
@@ -855,12 +855,12 @@ export interface SourceAccessConfiguration {
|
|
|
855
855
|
* </ul>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
Type?: SourceAccessType;
|
|
858
|
+
Type?: SourceAccessType | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>The value for your chosen configuration in <code>Type</code>. For example: <code>"URI": "arn:aws:secretsmanager:us-east-1:01234567890:secret:MyBrokerSecretName"</code>.</p>
|
|
861
861
|
* @public
|
|
862
862
|
*/
|
|
863
|
-
URI?: string;
|
|
863
|
+
URI?: string | undefined;
|
|
864
864
|
}
|
|
865
865
|
/**
|
|
866
866
|
* @public
|
|
@@ -909,7 +909,7 @@ export interface CreateEventSourceMappingRequest {
|
|
|
909
909
|
* </ul>
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
EventSourceArn?: string;
|
|
912
|
+
EventSourceArn?: string | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* <p>The name or ARN of the Lambda function.</p>
|
|
915
915
|
* <p class="title">
|
|
@@ -943,7 +943,7 @@ export interface CreateEventSourceMappingRequest {
|
|
|
943
943
|
* <p>Default: True</p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
Enabled?: boolean;
|
|
946
|
+
Enabled?: boolean | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation
|
|
949
949
|
* (6 MB).</p>
|
|
@@ -979,13 +979,13 @@ export interface CreateEventSourceMappingRequest {
|
|
|
979
979
|
* </ul>
|
|
980
980
|
* @public
|
|
981
981
|
*/
|
|
982
|
-
BatchSize?: number;
|
|
982
|
+
BatchSize?: number | undefined;
|
|
983
983
|
/**
|
|
984
984
|
* <p>An object that defines the filter criteria that
|
|
985
985
|
* determine whether Lambda should process an event. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html">Lambda event filtering</a>.</p>
|
|
986
986
|
* @public
|
|
987
987
|
*/
|
|
988
|
-
FilterCriteria?: FilterCriteria;
|
|
988
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
989
989
|
/**
|
|
990
990
|
* <p>The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
|
|
991
991
|
* You can configure <code>MaximumBatchingWindowInSeconds</code> to any value from 0 seconds to 300 seconds in increments of seconds.</p>
|
|
@@ -995,100 +995,100 @@ export interface CreateEventSourceMappingRequest {
|
|
|
995
995
|
* <p>Related setting: For Kinesis, DynamoDB, and Amazon SQS event sources, when you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
|
|
996
996
|
* @public
|
|
997
997
|
*/
|
|
998
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
998
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
999
999
|
/**
|
|
1000
1000
|
* <p>(Kinesis and DynamoDB Streams only) The number of batches to process from each shard concurrently.</p>
|
|
1001
1001
|
* @public
|
|
1002
1002
|
*/
|
|
1003
|
-
ParallelizationFactor?: number;
|
|
1003
|
+
ParallelizationFactor?: number | undefined;
|
|
1004
1004
|
/**
|
|
1005
1005
|
* <p>The position in a stream from which to start reading. Required for Amazon Kinesis and
|
|
1006
1006
|
* Amazon DynamoDB Stream event sources. <code>AT_TIMESTAMP</code> is supported only for
|
|
1007
1007
|
* Amazon Kinesis streams, Amazon DocumentDB, Amazon MSK, and self-managed Apache Kafka.</p>
|
|
1008
1008
|
* @public
|
|
1009
1009
|
*/
|
|
1010
|
-
StartingPosition?: EventSourcePosition;
|
|
1010
|
+
StartingPosition?: EventSourcePosition | undefined;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start
|
|
1013
1013
|
* reading. <code>StartingPositionTimestamp</code> cannot be in the future.</p>
|
|
1014
1014
|
* @public
|
|
1015
1015
|
*/
|
|
1016
|
-
StartingPositionTimestamp?: Date;
|
|
1016
|
+
StartingPositionTimestamp?: Date | undefined;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>(Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only) A configuration object that specifies the destination of an event after Lambda processes it.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
DestinationConfig?: DestinationConfig;
|
|
1021
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* <p>(Kinesis and DynamoDB Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>
|
|
1024
1024
|
* @public
|
|
1025
1025
|
*/
|
|
1026
|
-
MaximumRecordAgeInSeconds?: number;
|
|
1026
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* <p>(Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
BisectBatchOnFunctionError?: boolean;
|
|
1031
|
+
BisectBatchOnFunctionError?: boolean | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* <p>(Kinesis and DynamoDB Streams only) Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.</p>
|
|
1034
1034
|
* @public
|
|
1035
1035
|
*/
|
|
1036
|
-
MaximumRetryAttempts?: number;
|
|
1036
|
+
MaximumRetryAttempts?: number | undefined;
|
|
1037
1037
|
/**
|
|
1038
1038
|
* <p>A list of tags to apply to the event source mapping.</p>
|
|
1039
1039
|
* @public
|
|
1040
1040
|
*/
|
|
1041
|
-
Tags?: Record<string, string
|
|
1041
|
+
Tags?: Record<string, string> | undefined;
|
|
1042
1042
|
/**
|
|
1043
1043
|
* <p>(Kinesis and DynamoDB Streams only) The duration in seconds of a processing window for DynamoDB and Kinesis Streams event sources. A value of 0 seconds indicates no tumbling window.</p>
|
|
1044
1044
|
* @public
|
|
1045
1045
|
*/
|
|
1046
|
-
TumblingWindowInSeconds?: number;
|
|
1046
|
+
TumblingWindowInSeconds?: number | undefined;
|
|
1047
1047
|
/**
|
|
1048
1048
|
* <p>The name of the Kafka topic.</p>
|
|
1049
1049
|
* @public
|
|
1050
1050
|
*/
|
|
1051
|
-
Topics?: string[];
|
|
1051
|
+
Topics?: string[] | undefined;
|
|
1052
1052
|
/**
|
|
1053
1053
|
* <p> (MQ) The name of the Amazon MQ broker destination queue to consume. </p>
|
|
1054
1054
|
* @public
|
|
1055
1055
|
*/
|
|
1056
|
-
Queues?: string[];
|
|
1056
|
+
Queues?: string[] | undefined;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* <p>An array of authentication protocols or VPC components required to secure your event source.</p>
|
|
1059
1059
|
* @public
|
|
1060
1060
|
*/
|
|
1061
|
-
SourceAccessConfigurations?: SourceAccessConfiguration[];
|
|
1061
|
+
SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
|
|
1062
1062
|
/**
|
|
1063
1063
|
* <p>The self-managed Apache Kafka cluster to receive records from.</p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
SelfManagedEventSource?: SelfManagedEventSource;
|
|
1066
|
+
SelfManagedEventSource?: SelfManagedEventSource | undefined;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* <p>(Kinesis, DynamoDB Streams, and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
|
|
1069
1069
|
* @public
|
|
1070
1070
|
*/
|
|
1071
|
-
FunctionResponseTypes?: FunctionResponseType[];
|
|
1071
|
+
FunctionResponseTypes?: FunctionResponseType[] | undefined;
|
|
1072
1072
|
/**
|
|
1073
1073
|
* <p>Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.</p>
|
|
1074
1074
|
* @public
|
|
1075
1075
|
*/
|
|
1076
|
-
AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig;
|
|
1076
|
+
AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig | undefined;
|
|
1077
1077
|
/**
|
|
1078
1078
|
* <p>Specific configuration settings for a self-managed Apache Kafka event source.</p>
|
|
1079
1079
|
* @public
|
|
1080
1080
|
*/
|
|
1081
|
-
SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig;
|
|
1081
|
+
SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig | undefined;
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>(Amazon SQS only) The scaling configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency">Configuring maximum concurrency for Amazon SQS event sources</a>.</p>
|
|
1084
1084
|
* @public
|
|
1085
1085
|
*/
|
|
1086
|
-
ScalingConfig?: ScalingConfig;
|
|
1086
|
+
ScalingConfig?: ScalingConfig | undefined;
|
|
1087
1087
|
/**
|
|
1088
1088
|
* <p>Specific configuration settings for a DocumentDB event source.</p>
|
|
1089
1089
|
* @public
|
|
1090
1090
|
*/
|
|
1091
|
-
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
|
1091
|
+
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
|
|
1092
1092
|
/**
|
|
1093
1093
|
* <p>
|
|
1094
1094
|
* The ARN of the Key Management Service (KMS) customer managed key that Lambda
|
|
@@ -1098,7 +1098,7 @@ export interface CreateEventSourceMappingRequest {
|
|
|
1098
1098
|
* </p>
|
|
1099
1099
|
* @public
|
|
1100
1100
|
*/
|
|
1101
|
-
KMSKeyArn?: string;
|
|
1101
|
+
KMSKeyArn?: string | undefined;
|
|
1102
1102
|
}
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>An object that contains details about an error related to filter criteria encryption.</p>
|
|
@@ -1109,12 +1109,12 @@ export interface FilterCriteriaError {
|
|
|
1109
1109
|
* <p>The KMS exception that resulted from filter criteria encryption or decryption.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
ErrorCode?: string;
|
|
1112
|
+
ErrorCode?: string | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* <p>The error message.</p>
|
|
1115
1115
|
* @public
|
|
1116
1116
|
*/
|
|
1117
|
-
Message?: string;
|
|
1117
|
+
Message?: string | undefined;
|
|
1118
1118
|
}
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>A mapping between an Amazon Web Services resource and a Lambda function. For details, see <a>CreateEventSourceMapping</a>.</p>
|
|
@@ -1125,27 +1125,27 @@ export interface EventSourceMappingConfiguration {
|
|
|
1125
1125
|
* <p>The identifier of the event source mapping.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
UUID?: string;
|
|
1128
|
+
UUID?: string | undefined;
|
|
1129
1129
|
/**
|
|
1130
1130
|
* <p>The position in a stream from which to start reading. Required for Amazon Kinesis and
|
|
1131
1131
|
* Amazon DynamoDB Stream event sources. <code>AT_TIMESTAMP</code> is supported only for
|
|
1132
1132
|
* Amazon Kinesis streams, Amazon DocumentDB, Amazon MSK, and self-managed Apache Kafka.</p>
|
|
1133
1133
|
* @public
|
|
1134
1134
|
*/
|
|
1135
|
-
StartingPosition?: EventSourcePosition;
|
|
1135
|
+
StartingPosition?: EventSourcePosition | undefined;
|
|
1136
1136
|
/**
|
|
1137
1137
|
* <p>With <code>StartingPosition</code> set to <code>AT_TIMESTAMP</code>, the time from which to start
|
|
1138
1138
|
* reading. <code>StartingPositionTimestamp</code> cannot be in the future.</p>
|
|
1139
1139
|
* @public
|
|
1140
1140
|
*/
|
|
1141
|
-
StartingPositionTimestamp?: Date;
|
|
1141
|
+
StartingPositionTimestamp?: Date | undefined;
|
|
1142
1142
|
/**
|
|
1143
1143
|
* <p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation (6 MB).</p>
|
|
1144
1144
|
* <p>Default value: Varies by service. For Amazon SQS, the default is 10. For all other services, the default is 100.</p>
|
|
1145
1145
|
* <p>Related setting: When you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
BatchSize?: number;
|
|
1148
|
+
BatchSize?: number | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* <p>The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
|
|
1151
1151
|
* You can configure <code>MaximumBatchingWindowInSeconds</code> to any value from 0 seconds to 300 seconds in increments of seconds.</p>
|
|
@@ -1155,17 +1155,17 @@ export interface EventSourceMappingConfiguration {
|
|
|
1155
1155
|
* <p>Related setting: For streams and Amazon SQS event sources, when you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
|
|
1156
1156
|
* @public
|
|
1157
1157
|
*/
|
|
1158
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
1158
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
1159
1159
|
/**
|
|
1160
1160
|
* <p>(Kinesis and DynamoDB Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
1161
1161
|
* @public
|
|
1162
1162
|
*/
|
|
1163
|
-
ParallelizationFactor?: number;
|
|
1163
|
+
ParallelizationFactor?: number | undefined;
|
|
1164
1164
|
/**
|
|
1165
1165
|
* <p>The Amazon Resource Name (ARN) of the event source.</p>
|
|
1166
1166
|
* @public
|
|
1167
1167
|
*/
|
|
1168
|
-
EventSourceArn?: string;
|
|
1168
|
+
EventSourceArn?: string | undefined;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* <p>An object that defines the filter criteria that
|
|
1171
1171
|
* determine whether Lambda should process an event. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html">Lambda event filtering</a>.</p>
|
|
@@ -1175,59 +1175,59 @@ export interface EventSourceMappingConfiguration {
|
|
|
1175
1175
|
* <code>kms:Decrypt</code> permissions for the correct KMS key.</p>
|
|
1176
1176
|
* @public
|
|
1177
1177
|
*/
|
|
1178
|
-
FilterCriteria?: FilterCriteria;
|
|
1178
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
1179
1179
|
/**
|
|
1180
1180
|
* <p>The ARN of the Lambda function.</p>
|
|
1181
1181
|
* @public
|
|
1182
1182
|
*/
|
|
1183
|
-
FunctionArn?: string;
|
|
1183
|
+
FunctionArn?: string | undefined;
|
|
1184
1184
|
/**
|
|
1185
1185
|
* <p>The date that the event source mapping was last updated or that its state changed.</p>
|
|
1186
1186
|
* @public
|
|
1187
1187
|
*/
|
|
1188
|
-
LastModified?: Date;
|
|
1188
|
+
LastModified?: Date | undefined;
|
|
1189
1189
|
/**
|
|
1190
1190
|
* <p>The result of the last Lambda invocation of your function.</p>
|
|
1191
1191
|
* @public
|
|
1192
1192
|
*/
|
|
1193
|
-
LastProcessingResult?: string;
|
|
1193
|
+
LastProcessingResult?: string | undefined;
|
|
1194
1194
|
/**
|
|
1195
1195
|
* <p>The state of the event source mapping. It can be one of the following: <code>Creating</code>,
|
|
1196
1196
|
* <code>Enabling</code>, <code>Enabled</code>, <code>Disabling</code>, <code>Disabled</code>,
|
|
1197
1197
|
* <code>Updating</code>, or <code>Deleting</code>.</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
State?: string;
|
|
1200
|
+
State?: string | undefined;
|
|
1201
1201
|
/**
|
|
1202
1202
|
* <p>Indicates whether a user or Lambda made the last change to the event source mapping.</p>
|
|
1203
1203
|
* @public
|
|
1204
1204
|
*/
|
|
1205
|
-
StateTransitionReason?: string;
|
|
1205
|
+
StateTransitionReason?: string | undefined;
|
|
1206
1206
|
/**
|
|
1207
1207
|
* <p>(Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka event sources only) A configuration object that specifies the destination of an event after Lambda processes it.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
DestinationConfig?: DestinationConfig;
|
|
1210
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>The name of the Kafka topic.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
Topics?: string[];
|
|
1215
|
+
Topics?: string[] | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* <p> (Amazon MQ) The name of the Amazon MQ broker destination queue to consume.</p>
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
Queues?: string[];
|
|
1220
|
+
Queues?: string[] | undefined;
|
|
1221
1221
|
/**
|
|
1222
1222
|
* <p>An array of the authentication protocol, VPC components, or virtual host to secure and define your event source.</p>
|
|
1223
1223
|
* @public
|
|
1224
1224
|
*/
|
|
1225
|
-
SourceAccessConfigurations?: SourceAccessConfiguration[];
|
|
1225
|
+
SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
|
|
1226
1226
|
/**
|
|
1227
1227
|
* <p>The self-managed Apache Kafka cluster for your event source.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
SelfManagedEventSource?: SelfManagedEventSource;
|
|
1230
|
+
SelfManagedEventSource?: SelfManagedEventSource | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>(Kinesis and DynamoDB Streams only) Discard records older than the specified age. The default value is -1,
|
|
1233
1233
|
* which sets the maximum age to infinite. When the value is set to infinite, Lambda never discards old records.</p>
|
|
@@ -1236,65 +1236,65 @@ export interface EventSourceMappingConfiguration {
|
|
|
1236
1236
|
* </note>
|
|
1237
1237
|
* @public
|
|
1238
1238
|
*/
|
|
1239
|
-
MaximumRecordAgeInSeconds?: number;
|
|
1239
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
1240
1240
|
/**
|
|
1241
1241
|
* <p>(Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry. The default value is false.</p>
|
|
1242
1242
|
* @public
|
|
1243
1243
|
*/
|
|
1244
|
-
BisectBatchOnFunctionError?: boolean;
|
|
1244
|
+
BisectBatchOnFunctionError?: boolean | undefined;
|
|
1245
1245
|
/**
|
|
1246
1246
|
* <p>(Kinesis and DynamoDB Streams only) Discard records after the specified number of retries. The default value is -1,
|
|
1247
1247
|
* which sets the maximum number of retries to infinite. When MaximumRetryAttempts is infinite, Lambda retries failed records until the record expires in the event source.</p>
|
|
1248
1248
|
* @public
|
|
1249
1249
|
*/
|
|
1250
|
-
MaximumRetryAttempts?: number;
|
|
1250
|
+
MaximumRetryAttempts?: number | undefined;
|
|
1251
1251
|
/**
|
|
1252
1252
|
* <p>(Kinesis and DynamoDB Streams only) The duration in seconds of a processing window for DynamoDB and Kinesis Streams event sources. A value of 0 seconds indicates no tumbling window.</p>
|
|
1253
1253
|
* @public
|
|
1254
1254
|
*/
|
|
1255
|
-
TumblingWindowInSeconds?: number;
|
|
1255
|
+
TumblingWindowInSeconds?: number | undefined;
|
|
1256
1256
|
/**
|
|
1257
1257
|
* <p>(Kinesis, DynamoDB Streams, and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
|
|
1258
1258
|
* @public
|
|
1259
1259
|
*/
|
|
1260
|
-
FunctionResponseTypes?: FunctionResponseType[];
|
|
1260
|
+
FunctionResponseTypes?: FunctionResponseType[] | undefined;
|
|
1261
1261
|
/**
|
|
1262
1262
|
* <p>Specific configuration settings for an Amazon Managed Streaming for Apache Kafka (Amazon MSK) event source.</p>
|
|
1263
1263
|
* @public
|
|
1264
1264
|
*/
|
|
1265
|
-
AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig;
|
|
1265
|
+
AmazonManagedKafkaEventSourceConfig?: AmazonManagedKafkaEventSourceConfig | undefined;
|
|
1266
1266
|
/**
|
|
1267
1267
|
* <p>Specific configuration settings for a self-managed Apache Kafka event source.</p>
|
|
1268
1268
|
* @public
|
|
1269
1269
|
*/
|
|
1270
|
-
SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig;
|
|
1270
|
+
SelfManagedKafkaEventSourceConfig?: SelfManagedKafkaEventSourceConfig | undefined;
|
|
1271
1271
|
/**
|
|
1272
1272
|
* <p>(Amazon SQS only) The scaling configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency">Configuring maximum concurrency for Amazon SQS event sources</a>.</p>
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
ScalingConfig?: ScalingConfig;
|
|
1275
|
+
ScalingConfig?: ScalingConfig | undefined;
|
|
1276
1276
|
/**
|
|
1277
1277
|
* <p>Specific configuration settings for a DocumentDB event source.</p>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
|
1280
|
+
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* <p>
|
|
1283
1283
|
* The ARN of the Key Management Service (KMS) customer managed key that Lambda
|
|
1284
1284
|
* uses to encrypt your function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html#filtering-basics">filter criteria</a>.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
KMSKeyArn?: string;
|
|
1287
|
+
KMSKeyArn?: string | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>An object that contains details about an error related to filter criteria encryption.</p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
FilterCriteriaError?: FilterCriteriaError;
|
|
1292
|
+
FilterCriteriaError?: FilterCriteriaError | undefined;
|
|
1293
1293
|
/**
|
|
1294
1294
|
* <p>The Amazon Resource Name (ARN) of the event source mapping.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
EventSourceMappingArn?: string;
|
|
1297
|
+
EventSourceMappingArn?: string | undefined;
|
|
1298
1298
|
}
|
|
1299
1299
|
/**
|
|
1300
1300
|
* <p>The specified code signing configuration does not exist.</p>
|
|
@@ -1303,8 +1303,8 @@ export interface EventSourceMappingConfiguration {
|
|
|
1303
1303
|
export declare class CodeSigningConfigNotFoundException extends __BaseException {
|
|
1304
1304
|
readonly name: "CodeSigningConfigNotFoundException";
|
|
1305
1305
|
readonly $fault: "client";
|
|
1306
|
-
Type?: string;
|
|
1307
|
-
Message?: string;
|
|
1306
|
+
Type?: string | undefined;
|
|
1307
|
+
Message?: string | undefined;
|
|
1308
1308
|
/**
|
|
1309
1309
|
* @internal
|
|
1310
1310
|
*/
|
|
@@ -1321,7 +1321,7 @@ export declare class CodeStorageExceededException extends __BaseException {
|
|
|
1321
1321
|
* <p>The exception type.</p>
|
|
1322
1322
|
* @public
|
|
1323
1323
|
*/
|
|
1324
|
-
Type?: string;
|
|
1324
|
+
Type?: string | undefined;
|
|
1325
1325
|
/**
|
|
1326
1326
|
* @internal
|
|
1327
1327
|
*/
|
|
@@ -1335,8 +1335,8 @@ export declare class CodeStorageExceededException extends __BaseException {
|
|
|
1335
1335
|
export declare class CodeVerificationFailedException extends __BaseException {
|
|
1336
1336
|
readonly name: "CodeVerificationFailedException";
|
|
1337
1337
|
readonly $fault: "client";
|
|
1338
|
-
Type?: string;
|
|
1339
|
-
Message?: string;
|
|
1338
|
+
Type?: string | undefined;
|
|
1339
|
+
Message?: string | undefined;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* @internal
|
|
1342
1342
|
*/
|
|
@@ -1353,34 +1353,34 @@ export interface FunctionCode {
|
|
|
1353
1353
|
* you.</p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
ZipFile?: Uint8Array;
|
|
1356
|
+
ZipFile?: Uint8Array | undefined;
|
|
1357
1357
|
/**
|
|
1358
1358
|
* <p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different Amazon Web Services account.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
S3Bucket?: string;
|
|
1361
|
+
S3Bucket?: string | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>The Amazon S3 key of the deployment package.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
S3Key?: string;
|
|
1366
|
+
S3Key?: string | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>For versioned objects, the version of the deployment package object to use.</p>
|
|
1369
1369
|
* @public
|
|
1370
1370
|
*/
|
|
1371
|
-
S3ObjectVersion?: string;
|
|
1371
|
+
S3ObjectVersion?: string | undefined;
|
|
1372
1372
|
/**
|
|
1373
1373
|
* <p>URI of a <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-images.html">container image</a> in the
|
|
1374
1374
|
* Amazon ECR registry.</p>
|
|
1375
1375
|
* @public
|
|
1376
1376
|
*/
|
|
1377
|
-
ImageUri?: string;
|
|
1377
|
+
ImageUri?: string | undefined;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's
|
|
1380
1380
|
* .zip deployment package. If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a>.</p>
|
|
1381
1381
|
* @public
|
|
1382
1382
|
*/
|
|
1383
|
-
SourceKMSKeyArn?: string;
|
|
1383
|
+
SourceKMSKeyArn?: string | undefined;
|
|
1384
1384
|
}
|
|
1385
1385
|
/**
|
|
1386
1386
|
* <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq">dead-letter queue</a> for
|
|
@@ -1392,7 +1392,7 @@ export interface DeadLetterConfig {
|
|
|
1392
1392
|
* <p>The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.</p>
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
TargetArn?: string;
|
|
1395
|
+
TargetArn?: string | undefined;
|
|
1396
1396
|
}
|
|
1397
1397
|
/**
|
|
1398
1398
|
* <p>A function's environment variable settings. You can use environment variables to adjust your function's
|
|
@@ -1405,7 +1405,7 @@ export interface Environment {
|
|
|
1405
1405
|
* <p>Environment variable key-value pairs. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html">Using Lambda environment variables</a>.</p>
|
|
1406
1406
|
* @public
|
|
1407
1407
|
*/
|
|
1408
|
-
Variables?: Record<string, string
|
|
1408
|
+
Variables?: Record<string, string> | undefined;
|
|
1409
1409
|
}
|
|
1410
1410
|
/**
|
|
1411
1411
|
* <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole
|
|
@@ -1447,17 +1447,17 @@ export interface ImageConfig {
|
|
|
1447
1447
|
* executable.</p>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
EntryPoint?: string[];
|
|
1450
|
+
EntryPoint?: string[] | undefined;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* <p>Specifies parameters that you want to pass in with ENTRYPOINT.</p>
|
|
1453
1453
|
* @public
|
|
1454
1454
|
*/
|
|
1455
|
-
Command?: string[];
|
|
1455
|
+
Command?: string[] | undefined;
|
|
1456
1456
|
/**
|
|
1457
1457
|
* <p>Specifies the working directory.</p>
|
|
1458
1458
|
* @public
|
|
1459
1459
|
*/
|
|
1460
|
-
WorkingDirectory?: string;
|
|
1460
|
+
WorkingDirectory?: string | undefined;
|
|
1461
1461
|
}
|
|
1462
1462
|
/**
|
|
1463
1463
|
* @public
|
|
@@ -1494,25 +1494,25 @@ export interface LoggingConfig {
|
|
|
1494
1494
|
* plain text and structured JSON.</p>
|
|
1495
1495
|
* @public
|
|
1496
1496
|
*/
|
|
1497
|
-
LogFormat?: LogFormat;
|
|
1497
|
+
LogFormat?: LogFormat | undefined;
|
|
1498
1498
|
/**
|
|
1499
1499
|
* <p>Set this property to filter the application logs for your function that Lambda sends to CloudWatch. Lambda only sends application logs at the
|
|
1500
1500
|
* selected level of detail and lower, where <code>TRACE</code> is the highest level and <code>FATAL</code> is the lowest.</p>
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
ApplicationLogLevel?: ApplicationLogLevel;
|
|
1503
|
+
ApplicationLogLevel?: ApplicationLogLevel | undefined;
|
|
1504
1504
|
/**
|
|
1505
1505
|
* <p>Set this property to filter the system logs for your function that Lambda sends to CloudWatch. Lambda only sends system logs at the
|
|
1506
1506
|
* selected level of detail and lower, where <code>DEBUG</code> is the highest level and <code>WARN</code> is the lowest.</p>
|
|
1507
1507
|
* @public
|
|
1508
1508
|
*/
|
|
1509
|
-
SystemLogLevel?: SystemLogLevel;
|
|
1509
|
+
SystemLogLevel?: SystemLogLevel | undefined;
|
|
1510
1510
|
/**
|
|
1511
1511
|
* <p>The name of the Amazon CloudWatch log group the function sends logs to. By default, Lambda functions send logs to a default
|
|
1512
1512
|
* log group named <code>/aws/lambda/<function name></code>. To use a different log group, enter an existing log group or enter a new log group name.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
LogGroup?: string;
|
|
1515
|
+
LogGroup?: string | undefined;
|
|
1516
1516
|
}
|
|
1517
1517
|
/**
|
|
1518
1518
|
* @public
|
|
@@ -1561,6 +1561,7 @@ export declare const Runtime: {
|
|
|
1561
1561
|
readonly python310: "python3.10";
|
|
1562
1562
|
readonly python311: "python3.11";
|
|
1563
1563
|
readonly python312: "python3.12";
|
|
1564
|
+
readonly python313: "python3.13";
|
|
1564
1565
|
readonly python36: "python3.6";
|
|
1565
1566
|
readonly python37: "python3.7";
|
|
1566
1567
|
readonly python38: "python3.8";
|
|
@@ -1596,7 +1597,7 @@ export interface SnapStart {
|
|
|
1596
1597
|
* <p>Set to <code>PublishedVersions</code> to create a snapshot of the initialized execution environment when you publish a function version.</p>
|
|
1597
1598
|
* @public
|
|
1598
1599
|
*/
|
|
1599
|
-
ApplyOn?: SnapStartApplyOn;
|
|
1600
|
+
ApplyOn?: SnapStartApplyOn | undefined;
|
|
1600
1601
|
}
|
|
1601
1602
|
/**
|
|
1602
1603
|
* @public
|
|
@@ -1620,7 +1621,7 @@ export interface TracingConfig {
|
|
|
1620
1621
|
* <p>The tracing mode.</p>
|
|
1621
1622
|
* @public
|
|
1622
1623
|
*/
|
|
1623
|
-
Mode?: TracingMode;
|
|
1624
|
+
Mode?: TracingMode | undefined;
|
|
1624
1625
|
}
|
|
1625
1626
|
/**
|
|
1626
1627
|
* <p>The VPC security groups and subnets that are attached to a Lambda function. For more information,
|
|
@@ -1633,17 +1634,17 @@ export interface VpcConfig {
|
|
|
1633
1634
|
* <p>A list of VPC subnet IDs.</p>
|
|
1634
1635
|
* @public
|
|
1635
1636
|
*/
|
|
1636
|
-
SubnetIds?: string[];
|
|
1637
|
+
SubnetIds?: string[] | undefined;
|
|
1637
1638
|
/**
|
|
1638
1639
|
* <p>A list of VPC security group IDs.</p>
|
|
1639
1640
|
* @public
|
|
1640
1641
|
*/
|
|
1641
|
-
SecurityGroupIds?: string[];
|
|
1642
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1642
1643
|
/**
|
|
1643
1644
|
* <p>Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.</p>
|
|
1644
1645
|
* @public
|
|
1645
1646
|
*/
|
|
1646
|
-
Ipv6AllowedForDualStack?: boolean;
|
|
1647
|
+
Ipv6AllowedForDualStack?: boolean | undefined;
|
|
1647
1648
|
}
|
|
1648
1649
|
/**
|
|
1649
1650
|
* @public
|
|
@@ -1684,7 +1685,7 @@ export interface CreateFunctionRequest {
|
|
|
1684
1685
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
1685
1686
|
* @public
|
|
1686
1687
|
*/
|
|
1687
|
-
Runtime?: Runtime;
|
|
1688
|
+
Runtime?: Runtime | undefined;
|
|
1688
1689
|
/**
|
|
1689
1690
|
* <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
|
|
1690
1691
|
* @public
|
|
@@ -1697,7 +1698,7 @@ export interface CreateFunctionRequest {
|
|
|
1697
1698
|
* see <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-progmodel.html">Lambda programming model</a>.</p>
|
|
1698
1699
|
* @public
|
|
1699
1700
|
*/
|
|
1700
|
-
Handler?: string;
|
|
1701
|
+
Handler?: string | undefined;
|
|
1701
1702
|
/**
|
|
1702
1703
|
* <p>The code for the function.</p>
|
|
1703
1704
|
* @public
|
|
@@ -1707,47 +1708,47 @@ export interface CreateFunctionRequest {
|
|
|
1707
1708
|
* <p>A description of the function.</p>
|
|
1708
1709
|
* @public
|
|
1709
1710
|
*/
|
|
1710
|
-
Description?: string;
|
|
1711
|
+
Description?: string | undefined;
|
|
1711
1712
|
/**
|
|
1712
1713
|
* <p>The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The
|
|
1713
1714
|
* maximum allowed value is 900 seconds. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda execution environment</a>.</p>
|
|
1714
1715
|
* @public
|
|
1715
1716
|
*/
|
|
1716
|
-
Timeout?: number;
|
|
1717
|
+
Timeout?: number | undefined;
|
|
1717
1718
|
/**
|
|
1718
1719
|
* <p>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console">memory available to the function</a> at runtime.
|
|
1719
1720
|
* Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>
|
|
1720
1721
|
* @public
|
|
1721
1722
|
*/
|
|
1722
|
-
MemorySize?: number;
|
|
1723
|
+
MemorySize?: number | undefined;
|
|
1723
1724
|
/**
|
|
1724
1725
|
* <p>Set to true to publish the first version of the function during creation.</p>
|
|
1725
1726
|
* @public
|
|
1726
1727
|
*/
|
|
1727
|
-
Publish?: boolean;
|
|
1728
|
+
Publish?: boolean | undefined;
|
|
1728
1729
|
/**
|
|
1729
1730
|
* <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC.
|
|
1730
1731
|
* When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more
|
|
1731
1732
|
* information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">Configuring a Lambda function to access resources in a VPC</a>.</p>
|
|
1732
1733
|
* @public
|
|
1733
1734
|
*/
|
|
1734
|
-
VpcConfig?: VpcConfig;
|
|
1735
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1735
1736
|
/**
|
|
1736
1737
|
* <p>The type of deployment package. Set to <code>Image</code> for container image and set to <code>Zip</code> for .zip file archive.</p>
|
|
1737
1738
|
* @public
|
|
1738
1739
|
*/
|
|
1739
|
-
PackageType?: PackageType;
|
|
1740
|
+
PackageType?: PackageType | undefined;
|
|
1740
1741
|
/**
|
|
1741
1742
|
* <p>A dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events
|
|
1742
1743
|
* when they fail processing. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq">Dead-letter queues</a>.</p>
|
|
1743
1744
|
* @public
|
|
1744
1745
|
*/
|
|
1745
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
1746
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
1746
1747
|
/**
|
|
1747
1748
|
* <p>Environment variables that are accessible from function code during execution.</p>
|
|
1748
1749
|
* @public
|
|
1749
1750
|
*/
|
|
1750
|
-
Environment?: Environment;
|
|
1751
|
+
Environment?: Environment | undefined;
|
|
1751
1752
|
/**
|
|
1752
1753
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
|
|
1753
1754
|
* <ul>
|
|
@@ -1768,64 +1769,64 @@ export interface CreateFunctionRequest {
|
|
|
1768
1769
|
* <p>If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a> or an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed key</a>.</p>
|
|
1769
1770
|
* @public
|
|
1770
1771
|
*/
|
|
1771
|
-
KMSKeyArn?: string;
|
|
1772
|
+
KMSKeyArn?: string | undefined;
|
|
1772
1773
|
/**
|
|
1773
1774
|
* <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with
|
|
1774
1775
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
|
|
1775
1776
|
* @public
|
|
1776
1777
|
*/
|
|
1777
|
-
TracingConfig?: TracingConfig;
|
|
1778
|
+
TracingConfig?: TracingConfig | undefined;
|
|
1778
1779
|
/**
|
|
1779
1780
|
* <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to apply to the
|
|
1780
1781
|
* function.</p>
|
|
1781
1782
|
* @public
|
|
1782
1783
|
*/
|
|
1783
|
-
Tags?: Record<string, string
|
|
1784
|
+
Tags?: Record<string, string> | undefined;
|
|
1784
1785
|
/**
|
|
1785
1786
|
* <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a>
|
|
1786
1787
|
* to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
|
|
1787
1788
|
* @public
|
|
1788
1789
|
*/
|
|
1789
|
-
Layers?: string[];
|
|
1790
|
+
Layers?: string[] | undefined;
|
|
1790
1791
|
/**
|
|
1791
1792
|
* <p>Connection settings for an Amazon EFS file system.</p>
|
|
1792
1793
|
* @public
|
|
1793
1794
|
*/
|
|
1794
|
-
FileSystemConfigs?: FileSystemConfig[];
|
|
1795
|
+
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
1795
1796
|
/**
|
|
1796
1797
|
* <p>Container image <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">configuration
|
|
1797
1798
|
* values</a> that override the values in the container image Dockerfile.</p>
|
|
1798
1799
|
* @public
|
|
1799
1800
|
*/
|
|
1800
|
-
ImageConfig?: ImageConfig;
|
|
1801
|
+
ImageConfig?: ImageConfig | undefined;
|
|
1801
1802
|
/**
|
|
1802
1803
|
* <p>To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration
|
|
1803
1804
|
* includes a set of signing profiles, which define the trusted publishers for this function.</p>
|
|
1804
1805
|
* @public
|
|
1805
1806
|
*/
|
|
1806
|
-
CodeSigningConfigArn?: string;
|
|
1807
|
+
CodeSigningConfigArn?: string | undefined;
|
|
1807
1808
|
/**
|
|
1808
1809
|
* <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64).
|
|
1809
1810
|
* The default value is <code>x86_64</code>.</p>
|
|
1810
1811
|
* @public
|
|
1811
1812
|
*/
|
|
1812
|
-
Architectures?: Architecture[];
|
|
1813
|
+
Architectures?: Architecture[] | undefined;
|
|
1813
1814
|
/**
|
|
1814
1815
|
* <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole
|
|
1815
1816
|
* number between 512 and 10,240 MB. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage">Configuring ephemeral storage (console)</a>.</p>
|
|
1816
1817
|
* @public
|
|
1817
1818
|
*/
|
|
1818
|
-
EphemeralStorage?: EphemeralStorage;
|
|
1819
|
+
EphemeralStorage?: EphemeralStorage | undefined;
|
|
1819
1820
|
/**
|
|
1820
1821
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
|
|
1821
1822
|
* @public
|
|
1822
1823
|
*/
|
|
1823
|
-
SnapStart?: SnapStart;
|
|
1824
|
+
SnapStart?: SnapStart | undefined;
|
|
1824
1825
|
/**
|
|
1825
1826
|
* <p>The function's Amazon CloudWatch Logs configuration settings.</p>
|
|
1826
1827
|
* @public
|
|
1827
1828
|
*/
|
|
1828
|
-
LoggingConfig?: LoggingConfig;
|
|
1829
|
+
LoggingConfig?: LoggingConfig | undefined;
|
|
1829
1830
|
}
|
|
1830
1831
|
/**
|
|
1831
1832
|
* <p>Error messages for environment variables that couldn't be applied.</p>
|
|
@@ -1836,12 +1837,12 @@ export interface EnvironmentError {
|
|
|
1836
1837
|
* <p>The error code.</p>
|
|
1837
1838
|
* @public
|
|
1838
1839
|
*/
|
|
1839
|
-
ErrorCode?: string;
|
|
1840
|
+
ErrorCode?: string | undefined;
|
|
1840
1841
|
/**
|
|
1841
1842
|
* <p>The error message.</p>
|
|
1842
1843
|
* @public
|
|
1843
1844
|
*/
|
|
1844
|
-
Message?: string;
|
|
1845
|
+
Message?: string | undefined;
|
|
1845
1846
|
}
|
|
1846
1847
|
/**
|
|
1847
1848
|
* <p>The results of an operation to update or read environment variables. If the operation succeeds, the response
|
|
@@ -1853,12 +1854,12 @@ export interface EnvironmentResponse {
|
|
|
1853
1854
|
* <p>Environment variable key-value pairs. Omitted from CloudTrail logs.</p>
|
|
1854
1855
|
* @public
|
|
1855
1856
|
*/
|
|
1856
|
-
Variables?: Record<string, string
|
|
1857
|
+
Variables?: Record<string, string> | undefined;
|
|
1857
1858
|
/**
|
|
1858
1859
|
* <p>Error messages for environment variables that couldn't be applied.</p>
|
|
1859
1860
|
* @public
|
|
1860
1861
|
*/
|
|
1861
|
-
Error?: EnvironmentError;
|
|
1862
|
+
Error?: EnvironmentError | undefined;
|
|
1862
1863
|
}
|
|
1863
1864
|
/**
|
|
1864
1865
|
* <p>Error response to <code>GetFunctionConfiguration</code>.</p>
|
|
@@ -1869,12 +1870,12 @@ export interface ImageConfigError {
|
|
|
1869
1870
|
* <p>Error code.</p>
|
|
1870
1871
|
* @public
|
|
1871
1872
|
*/
|
|
1872
|
-
ErrorCode?: string;
|
|
1873
|
+
ErrorCode?: string | undefined;
|
|
1873
1874
|
/**
|
|
1874
1875
|
* <p>Error message.</p>
|
|
1875
1876
|
* @public
|
|
1876
1877
|
*/
|
|
1877
|
-
Message?: string;
|
|
1878
|
+
Message?: string | undefined;
|
|
1878
1879
|
}
|
|
1879
1880
|
/**
|
|
1880
1881
|
* <p>Response to a <code>GetFunctionConfiguration</code> request.</p>
|
|
@@ -1885,12 +1886,12 @@ export interface ImageConfigResponse {
|
|
|
1885
1886
|
* <p>Configuration values that override the container image Dockerfile.</p>
|
|
1886
1887
|
* @public
|
|
1887
1888
|
*/
|
|
1888
|
-
ImageConfig?: ImageConfig;
|
|
1889
|
+
ImageConfig?: ImageConfig | undefined;
|
|
1889
1890
|
/**
|
|
1890
1891
|
* <p>Error response to <code>GetFunctionConfiguration</code>.</p>
|
|
1891
1892
|
* @public
|
|
1892
1893
|
*/
|
|
1893
|
-
Error?: ImageConfigError;
|
|
1894
|
+
Error?: ImageConfigError | undefined;
|
|
1894
1895
|
}
|
|
1895
1896
|
/**
|
|
1896
1897
|
* @public
|
|
@@ -1946,22 +1947,22 @@ export interface Layer {
|
|
|
1946
1947
|
* <p>The Amazon Resource Name (ARN) of the function layer.</p>
|
|
1947
1948
|
* @public
|
|
1948
1949
|
*/
|
|
1949
|
-
Arn?: string;
|
|
1950
|
+
Arn?: string | undefined;
|
|
1950
1951
|
/**
|
|
1951
1952
|
* <p>The size of the layer archive in bytes.</p>
|
|
1952
1953
|
* @public
|
|
1953
1954
|
*/
|
|
1954
|
-
CodeSize?: number;
|
|
1955
|
+
CodeSize?: number | undefined;
|
|
1955
1956
|
/**
|
|
1956
1957
|
* <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
|
|
1957
1958
|
* @public
|
|
1958
1959
|
*/
|
|
1959
|
-
SigningProfileVersionArn?: string;
|
|
1960
|
+
SigningProfileVersionArn?: string | undefined;
|
|
1960
1961
|
/**
|
|
1961
1962
|
* <p>The Amazon Resource Name (ARN) of a signing job.</p>
|
|
1962
1963
|
* @public
|
|
1963
1964
|
*/
|
|
1964
|
-
SigningJobArn?: string;
|
|
1965
|
+
SigningJobArn?: string | undefined;
|
|
1965
1966
|
}
|
|
1966
1967
|
/**
|
|
1967
1968
|
* <p>Any error returned when the runtime version information for the function could not be retrieved.</p>
|
|
@@ -1972,12 +1973,12 @@ export interface RuntimeVersionError {
|
|
|
1972
1973
|
* <p>The error code.</p>
|
|
1973
1974
|
* @public
|
|
1974
1975
|
*/
|
|
1975
|
-
ErrorCode?: string;
|
|
1976
|
+
ErrorCode?: string | undefined;
|
|
1976
1977
|
/**
|
|
1977
1978
|
* <p>The error message.</p>
|
|
1978
1979
|
* @public
|
|
1979
1980
|
*/
|
|
1980
|
-
Message?: string;
|
|
1981
|
+
Message?: string | undefined;
|
|
1981
1982
|
}
|
|
1982
1983
|
/**
|
|
1983
1984
|
* <p>The ARN of the runtime and any errors that occured.</p>
|
|
@@ -1988,12 +1989,12 @@ export interface RuntimeVersionConfig {
|
|
|
1988
1989
|
* <p>The ARN of the runtime version you want the function to use.</p>
|
|
1989
1990
|
* @public
|
|
1990
1991
|
*/
|
|
1991
|
-
RuntimeVersionArn?: string;
|
|
1992
|
+
RuntimeVersionArn?: string | undefined;
|
|
1992
1993
|
/**
|
|
1993
1994
|
* <p>Error response when Lambda is unable to retrieve the runtime version for a function.</p>
|
|
1994
1995
|
* @public
|
|
1995
1996
|
*/
|
|
1996
|
-
Error?: RuntimeVersionError;
|
|
1997
|
+
Error?: RuntimeVersionError | undefined;
|
|
1997
1998
|
}
|
|
1998
1999
|
/**
|
|
1999
2000
|
* @public
|
|
@@ -2016,12 +2017,12 @@ export interface SnapStartResponse {
|
|
|
2016
2017
|
* <p>When set to <code>PublishedVersions</code>, Lambda creates a snapshot of the execution environment when you publish a function version.</p>
|
|
2017
2018
|
* @public
|
|
2018
2019
|
*/
|
|
2019
|
-
ApplyOn?: SnapStartApplyOn;
|
|
2020
|
+
ApplyOn?: SnapStartApplyOn | undefined;
|
|
2020
2021
|
/**
|
|
2021
2022
|
* <p>When you provide a <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-versions.html#versioning-versions-using">qualified Amazon Resource Name (ARN)</a>, this response element indicates whether SnapStart is activated for the specified function version.</p>
|
|
2022
2023
|
* @public
|
|
2023
2024
|
*/
|
|
2024
|
-
OptimizationStatus?: SnapStartOptimizationStatus;
|
|
2025
|
+
OptimizationStatus?: SnapStartOptimizationStatus | undefined;
|
|
2025
2026
|
}
|
|
2026
2027
|
/**
|
|
2027
2028
|
* @public
|
|
@@ -2080,7 +2081,7 @@ export interface TracingConfigResponse {
|
|
|
2080
2081
|
* <p>The tracing mode.</p>
|
|
2081
2082
|
* @public
|
|
2082
2083
|
*/
|
|
2083
|
-
Mode?: TracingMode;
|
|
2084
|
+
Mode?: TracingMode | undefined;
|
|
2084
2085
|
}
|
|
2085
2086
|
/**
|
|
2086
2087
|
* <p>The VPC security groups and subnets that are attached to a Lambda function.</p>
|
|
@@ -2091,22 +2092,22 @@ export interface VpcConfigResponse {
|
|
|
2091
2092
|
* <p>A list of VPC subnet IDs.</p>
|
|
2092
2093
|
* @public
|
|
2093
2094
|
*/
|
|
2094
|
-
SubnetIds?: string[];
|
|
2095
|
+
SubnetIds?: string[] | undefined;
|
|
2095
2096
|
/**
|
|
2096
2097
|
* <p>A list of VPC security group IDs.</p>
|
|
2097
2098
|
* @public
|
|
2098
2099
|
*/
|
|
2099
|
-
SecurityGroupIds?: string[];
|
|
2100
|
+
SecurityGroupIds?: string[] | undefined;
|
|
2100
2101
|
/**
|
|
2101
2102
|
* <p>The ID of the VPC.</p>
|
|
2102
2103
|
* @public
|
|
2103
2104
|
*/
|
|
2104
|
-
VpcId?: string;
|
|
2105
|
+
VpcId?: string | undefined;
|
|
2105
2106
|
/**
|
|
2106
2107
|
* <p>Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.</p>
|
|
2107
2108
|
* @public
|
|
2108
2109
|
*/
|
|
2109
|
-
Ipv6AllowedForDualStack?: boolean;
|
|
2110
|
+
Ipv6AllowedForDualStack?: boolean | undefined;
|
|
2110
2111
|
}
|
|
2111
2112
|
/**
|
|
2112
2113
|
* <p>Details about a function's configuration.</p>
|
|
@@ -2117,12 +2118,12 @@ export interface FunctionConfiguration {
|
|
|
2117
2118
|
* <p>The name of the function.</p>
|
|
2118
2119
|
* @public
|
|
2119
2120
|
*/
|
|
2120
|
-
FunctionName?: string;
|
|
2121
|
+
FunctionName?: string | undefined;
|
|
2121
2122
|
/**
|
|
2122
2123
|
* <p>The function's Amazon Resource Name (ARN).</p>
|
|
2123
2124
|
* @public
|
|
2124
2125
|
*/
|
|
2125
|
-
FunctionArn?: string;
|
|
2126
|
+
FunctionArn?: string | undefined;
|
|
2126
2127
|
/**
|
|
2127
2128
|
* <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">
|
|
2128
2129
|
* runtime</a>. Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in
|
|
@@ -2134,67 +2135,67 @@ export interface FunctionConfiguration {
|
|
|
2134
2135
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
2135
2136
|
* @public
|
|
2136
2137
|
*/
|
|
2137
|
-
Runtime?: Runtime;
|
|
2138
|
+
Runtime?: Runtime | undefined;
|
|
2138
2139
|
/**
|
|
2139
2140
|
* <p>The function's execution role.</p>
|
|
2140
2141
|
* @public
|
|
2141
2142
|
*/
|
|
2142
|
-
Role?: string;
|
|
2143
|
+
Role?: string | undefined;
|
|
2143
2144
|
/**
|
|
2144
2145
|
* <p>The function that Lambda calls to begin running your function.</p>
|
|
2145
2146
|
* @public
|
|
2146
2147
|
*/
|
|
2147
|
-
Handler?: string;
|
|
2148
|
+
Handler?: string | undefined;
|
|
2148
2149
|
/**
|
|
2149
2150
|
* <p>The size of the function's deployment package, in bytes.</p>
|
|
2150
2151
|
* @public
|
|
2151
2152
|
*/
|
|
2152
|
-
CodeSize?: number;
|
|
2153
|
+
CodeSize?: number | undefined;
|
|
2153
2154
|
/**
|
|
2154
2155
|
* <p>The function's description.</p>
|
|
2155
2156
|
* @public
|
|
2156
2157
|
*/
|
|
2157
|
-
Description?: string;
|
|
2158
|
+
Description?: string | undefined;
|
|
2158
2159
|
/**
|
|
2159
2160
|
* <p>The amount of time in seconds that Lambda allows a function to run before stopping it.</p>
|
|
2160
2161
|
* @public
|
|
2161
2162
|
*/
|
|
2162
|
-
Timeout?: number;
|
|
2163
|
+
Timeout?: number | undefined;
|
|
2163
2164
|
/**
|
|
2164
2165
|
* <p>The amount of memory available to the function at runtime.</p>
|
|
2165
2166
|
* @public
|
|
2166
2167
|
*/
|
|
2167
|
-
MemorySize?: number;
|
|
2168
|
+
MemorySize?: number | undefined;
|
|
2168
2169
|
/**
|
|
2169
2170
|
* <p>The date and time that the function was last updated, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
2170
2171
|
* @public
|
|
2171
2172
|
*/
|
|
2172
|
-
LastModified?: string;
|
|
2173
|
+
LastModified?: string | undefined;
|
|
2173
2174
|
/**
|
|
2174
2175
|
* <p>The SHA256 hash of the function's deployment package.</p>
|
|
2175
2176
|
* @public
|
|
2176
2177
|
*/
|
|
2177
|
-
CodeSha256?: string;
|
|
2178
|
+
CodeSha256?: string | undefined;
|
|
2178
2179
|
/**
|
|
2179
2180
|
* <p>The version of the Lambda function.</p>
|
|
2180
2181
|
* @public
|
|
2181
2182
|
*/
|
|
2182
|
-
Version?: string;
|
|
2183
|
+
Version?: string | undefined;
|
|
2183
2184
|
/**
|
|
2184
2185
|
* <p>The function's networking configuration.</p>
|
|
2185
2186
|
* @public
|
|
2186
2187
|
*/
|
|
2187
|
-
VpcConfig?: VpcConfigResponse;
|
|
2188
|
+
VpcConfig?: VpcConfigResponse | undefined;
|
|
2188
2189
|
/**
|
|
2189
2190
|
* <p>The function's dead letter queue.</p>
|
|
2190
2191
|
* @public
|
|
2191
2192
|
*/
|
|
2192
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
2193
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
2193
2194
|
/**
|
|
2194
2195
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-envvars.html">environment variables</a>. Omitted from CloudTrail logs.</p>
|
|
2195
2196
|
* @public
|
|
2196
2197
|
*/
|
|
2197
|
-
Environment?: EnvironmentResponse;
|
|
2198
|
+
Environment?: EnvironmentResponse | undefined;
|
|
2198
2199
|
/**
|
|
2199
2200
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
|
|
2200
2201
|
* <ul>
|
|
@@ -2215,113 +2216,113 @@ export interface FunctionConfiguration {
|
|
|
2215
2216
|
* <p>If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a> or an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed key</a>.</p>
|
|
2216
2217
|
* @public
|
|
2217
2218
|
*/
|
|
2218
|
-
KMSKeyArn?: string;
|
|
2219
|
+
KMSKeyArn?: string | undefined;
|
|
2219
2220
|
/**
|
|
2220
2221
|
* <p>The function's X-Ray tracing configuration.</p>
|
|
2221
2222
|
* @public
|
|
2222
2223
|
*/
|
|
2223
|
-
TracingConfig?: TracingConfigResponse;
|
|
2224
|
+
TracingConfig?: TracingConfigResponse | undefined;
|
|
2224
2225
|
/**
|
|
2225
2226
|
* <p>For Lambda@Edge functions, the ARN of the main function.</p>
|
|
2226
2227
|
* @public
|
|
2227
2228
|
*/
|
|
2228
|
-
MasterArn?: string;
|
|
2229
|
+
MasterArn?: string | undefined;
|
|
2229
2230
|
/**
|
|
2230
2231
|
* <p>The latest updated revision of the function or alias.</p>
|
|
2231
2232
|
* @public
|
|
2232
2233
|
*/
|
|
2233
|
-
RevisionId?: string;
|
|
2234
|
+
RevisionId?: string | undefined;
|
|
2234
2235
|
/**
|
|
2235
2236
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">layers</a>.</p>
|
|
2236
2237
|
* @public
|
|
2237
2238
|
*/
|
|
2238
|
-
Layers?: Layer[];
|
|
2239
|
+
Layers?: Layer[] | undefined;
|
|
2239
2240
|
/**
|
|
2240
2241
|
* <p>The current state of the function. When the state is <code>Inactive</code>, you can reactivate the function by
|
|
2241
2242
|
* invoking it.</p>
|
|
2242
2243
|
* @public
|
|
2243
2244
|
*/
|
|
2244
|
-
State?: State;
|
|
2245
|
+
State?: State | undefined;
|
|
2245
2246
|
/**
|
|
2246
2247
|
* <p>The reason for the function's current state.</p>
|
|
2247
2248
|
* @public
|
|
2248
2249
|
*/
|
|
2249
|
-
StateReason?: string;
|
|
2250
|
+
StateReason?: string | undefined;
|
|
2250
2251
|
/**
|
|
2251
2252
|
* <p>The reason code for the function's current state. When the code is <code>Creating</code>, you can't invoke or
|
|
2252
2253
|
* modify the function.</p>
|
|
2253
2254
|
* @public
|
|
2254
2255
|
*/
|
|
2255
|
-
StateReasonCode?: StateReasonCode;
|
|
2256
|
+
StateReasonCode?: StateReasonCode | undefined;
|
|
2256
2257
|
/**
|
|
2257
2258
|
* <p>The status of the last update that was performed on the function. This is first set to <code>Successful</code>
|
|
2258
2259
|
* after function creation completes.</p>
|
|
2259
2260
|
* @public
|
|
2260
2261
|
*/
|
|
2261
|
-
LastUpdateStatus?: LastUpdateStatus;
|
|
2262
|
+
LastUpdateStatus?: LastUpdateStatus | undefined;
|
|
2262
2263
|
/**
|
|
2263
2264
|
* <p>The reason for the last update that was performed on the function.</p>
|
|
2264
2265
|
* @public
|
|
2265
2266
|
*/
|
|
2266
|
-
LastUpdateStatusReason?: string;
|
|
2267
|
+
LastUpdateStatusReason?: string | undefined;
|
|
2267
2268
|
/**
|
|
2268
2269
|
* <p>The reason code for the last update that was performed on the function.</p>
|
|
2269
2270
|
* @public
|
|
2270
2271
|
*/
|
|
2271
|
-
LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode;
|
|
2272
|
+
LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | undefined;
|
|
2272
2273
|
/**
|
|
2273
2274
|
* <p>Connection settings for an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-filesystem.html">Amazon EFS file system</a>.</p>
|
|
2274
2275
|
* @public
|
|
2275
2276
|
*/
|
|
2276
|
-
FileSystemConfigs?: FileSystemConfig[];
|
|
2277
|
+
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
2277
2278
|
/**
|
|
2278
2279
|
* <p>The type of deployment package. Set to <code>Image</code> for container image and set <code>Zip</code> for .zip file archive.</p>
|
|
2279
2280
|
* @public
|
|
2280
2281
|
*/
|
|
2281
|
-
PackageType?: PackageType;
|
|
2282
|
+
PackageType?: PackageType | undefined;
|
|
2282
2283
|
/**
|
|
2283
2284
|
* <p>The function's image configuration values.</p>
|
|
2284
2285
|
* @public
|
|
2285
2286
|
*/
|
|
2286
|
-
ImageConfigResponse?: ImageConfigResponse;
|
|
2287
|
+
ImageConfigResponse?: ImageConfigResponse | undefined;
|
|
2287
2288
|
/**
|
|
2288
2289
|
* <p>The ARN of the signing profile version.</p>
|
|
2289
2290
|
* @public
|
|
2290
2291
|
*/
|
|
2291
|
-
SigningProfileVersionArn?: string;
|
|
2292
|
+
SigningProfileVersionArn?: string | undefined;
|
|
2292
2293
|
/**
|
|
2293
2294
|
* <p>The ARN of the signing job.</p>
|
|
2294
2295
|
* @public
|
|
2295
2296
|
*/
|
|
2296
|
-
SigningJobArn?: string;
|
|
2297
|
+
SigningJobArn?: string | undefined;
|
|
2297
2298
|
/**
|
|
2298
2299
|
* <p>The instruction set architecture that the function supports. Architecture is a string array with one of the
|
|
2299
2300
|
* valid values. The default architecture value is <code>x86_64</code>.</p>
|
|
2300
2301
|
* @public
|
|
2301
2302
|
*/
|
|
2302
|
-
Architectures?: Architecture[];
|
|
2303
|
+
Architectures?: Architecture[] | undefined;
|
|
2303
2304
|
/**
|
|
2304
2305
|
* <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole
|
|
2305
2306
|
* number between 512 and 10,240 MB. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage">Configuring ephemeral storage (console)</a>.</p>
|
|
2306
2307
|
* @public
|
|
2307
2308
|
*/
|
|
2308
|
-
EphemeralStorage?: EphemeralStorage;
|
|
2309
|
+
EphemeralStorage?: EphemeralStorage | undefined;
|
|
2309
2310
|
/**
|
|
2310
2311
|
* <p>Set <code>ApplyOn</code> to <code>PublishedVersions</code> to create a snapshot of the initialized execution
|
|
2311
2312
|
* environment when you publish a function version. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">Improving startup performance with Lambda SnapStart</a>.</p>
|
|
2312
2313
|
* @public
|
|
2313
2314
|
*/
|
|
2314
|
-
SnapStart?: SnapStartResponse;
|
|
2315
|
+
SnapStart?: SnapStartResponse | undefined;
|
|
2315
2316
|
/**
|
|
2316
2317
|
* <p>The ARN of the runtime and any errors that occured.</p>
|
|
2317
2318
|
* @public
|
|
2318
2319
|
*/
|
|
2319
|
-
RuntimeVersionConfig?: RuntimeVersionConfig;
|
|
2320
|
+
RuntimeVersionConfig?: RuntimeVersionConfig | undefined;
|
|
2320
2321
|
/**
|
|
2321
2322
|
* <p>The function's Amazon CloudWatch Logs configuration settings.</p>
|
|
2322
2323
|
* @public
|
|
2323
2324
|
*/
|
|
2324
|
-
LoggingConfig?: LoggingConfig;
|
|
2325
|
+
LoggingConfig?: LoggingConfig | undefined;
|
|
2325
2326
|
}
|
|
2326
2327
|
/**
|
|
2327
2328
|
* <p>The code signature failed the integrity check. If the integrity check fails, then Lambda blocks
|
|
@@ -2331,8 +2332,8 @@ export interface FunctionConfiguration {
|
|
|
2331
2332
|
export declare class InvalidCodeSignatureException extends __BaseException {
|
|
2332
2333
|
readonly name: "InvalidCodeSignatureException";
|
|
2333
2334
|
readonly $fault: "client";
|
|
2334
|
-
Type?: string;
|
|
2335
|
-
Message?: string;
|
|
2335
|
+
Type?: string | undefined;
|
|
2336
|
+
Message?: string | undefined;
|
|
2336
2337
|
/**
|
|
2337
2338
|
* @internal
|
|
2338
2339
|
*/
|
|
@@ -2351,38 +2352,38 @@ export interface Cors {
|
|
|
2351
2352
|
* <code>false</code>.</p>
|
|
2352
2353
|
* @public
|
|
2353
2354
|
*/
|
|
2354
|
-
AllowCredentials?: boolean;
|
|
2355
|
+
AllowCredentials?: boolean | undefined;
|
|
2355
2356
|
/**
|
|
2356
2357
|
* <p>The HTTP headers that origins can include in requests to your function URL. For example: <code>Date</code>, <code>Keep-Alive</code>,
|
|
2357
2358
|
* <code>X-Custom-Header</code>.</p>
|
|
2358
2359
|
* @public
|
|
2359
2360
|
*/
|
|
2360
|
-
AllowHeaders?: string[];
|
|
2361
|
+
AllowHeaders?: string[] | undefined;
|
|
2361
2362
|
/**
|
|
2362
2363
|
* <p>The HTTP methods that are allowed when calling your function URL. For example: <code>GET</code>, <code>POST</code>, <code>DELETE</code>,
|
|
2363
2364
|
* or the wildcard character (<code>*</code>).</p>
|
|
2364
2365
|
* @public
|
|
2365
2366
|
*/
|
|
2366
|
-
AllowMethods?: string[];
|
|
2367
|
+
AllowMethods?: string[] | undefined;
|
|
2367
2368
|
/**
|
|
2368
2369
|
* <p>The origins that can access your function URL. You can list any number of specific origins, separated by a comma. For example:
|
|
2369
2370
|
* <code>https://www.example.com</code>, <code>http://localhost:60905</code>.</p>
|
|
2370
2371
|
* <p>Alternatively, you can grant access to all origins using the wildcard character (<code>*</code>).</p>
|
|
2371
2372
|
* @public
|
|
2372
2373
|
*/
|
|
2373
|
-
AllowOrigins?: string[];
|
|
2374
|
+
AllowOrigins?: string[] | undefined;
|
|
2374
2375
|
/**
|
|
2375
2376
|
* <p>The HTTP headers in your function response that you want to expose to origins that call your function URL. For example:
|
|
2376
2377
|
* <code>Date</code>, <code>Keep-Alive</code>, <code>X-Custom-Header</code>.</p>
|
|
2377
2378
|
* @public
|
|
2378
2379
|
*/
|
|
2379
|
-
ExposeHeaders?: string[];
|
|
2380
|
+
ExposeHeaders?: string[] | undefined;
|
|
2380
2381
|
/**
|
|
2381
2382
|
* <p>The maximum amount of time, in seconds, that web browsers can cache results of a preflight request. By
|
|
2382
2383
|
* default, this is set to <code>0</code>, which means that the browser doesn't cache results.</p>
|
|
2383
2384
|
* @public
|
|
2384
2385
|
*/
|
|
2385
|
-
MaxAge?: number;
|
|
2386
|
+
MaxAge?: number | undefined;
|
|
2386
2387
|
}
|
|
2387
2388
|
/**
|
|
2388
2389
|
* @public
|
|
@@ -2428,7 +2429,7 @@ export interface CreateFunctionUrlConfigRequest {
|
|
|
2428
2429
|
* <p>The alias name.</p>
|
|
2429
2430
|
* @public
|
|
2430
2431
|
*/
|
|
2431
|
-
Qualifier?: string;
|
|
2432
|
+
Qualifier?: string | undefined;
|
|
2432
2433
|
/**
|
|
2433
2434
|
* <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
|
|
2434
2435
|
* users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
|
|
@@ -2441,7 +2442,7 @@ export interface CreateFunctionUrlConfigRequest {
|
|
|
2441
2442
|
* for your function URL.</p>
|
|
2442
2443
|
* @public
|
|
2443
2444
|
*/
|
|
2444
|
-
Cors?: Cors;
|
|
2445
|
+
Cors?: Cors | undefined;
|
|
2445
2446
|
/**
|
|
2446
2447
|
* <p>Use one of the following options:</p>
|
|
2447
2448
|
* <ul>
|
|
@@ -2458,7 +2459,7 @@ export interface CreateFunctionUrlConfigRequest {
|
|
|
2458
2459
|
* </ul>
|
|
2459
2460
|
* @public
|
|
2460
2461
|
*/
|
|
2461
|
-
InvokeMode?: InvokeMode;
|
|
2462
|
+
InvokeMode?: InvokeMode | undefined;
|
|
2462
2463
|
}
|
|
2463
2464
|
/**
|
|
2464
2465
|
* @public
|
|
@@ -2486,7 +2487,7 @@ export interface CreateFunctionUrlConfigResponse {
|
|
|
2486
2487
|
* for your function URL.</p>
|
|
2487
2488
|
* @public
|
|
2488
2489
|
*/
|
|
2489
|
-
Cors?: Cors;
|
|
2490
|
+
Cors?: Cors | undefined;
|
|
2490
2491
|
/**
|
|
2491
2492
|
* <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
2492
2493
|
* @public
|
|
@@ -2508,7 +2509,7 @@ export interface CreateFunctionUrlConfigResponse {
|
|
|
2508
2509
|
* </ul>
|
|
2509
2510
|
* @public
|
|
2510
2511
|
*/
|
|
2511
|
-
InvokeMode?: InvokeMode;
|
|
2512
|
+
InvokeMode?: InvokeMode | undefined;
|
|
2512
2513
|
}
|
|
2513
2514
|
/**
|
|
2514
2515
|
* @public
|
|
@@ -2577,8 +2578,8 @@ export interface DeleteEventSourceMappingRequest {
|
|
|
2577
2578
|
export declare class ResourceInUseException extends __BaseException {
|
|
2578
2579
|
readonly name: "ResourceInUseException";
|
|
2579
2580
|
readonly $fault: "client";
|
|
2580
|
-
Type?: string;
|
|
2581
|
-
Message?: string;
|
|
2581
|
+
Type?: string | undefined;
|
|
2582
|
+
Message?: string | undefined;
|
|
2582
2583
|
/**
|
|
2583
2584
|
* @internal
|
|
2584
2585
|
*/
|
|
@@ -2616,7 +2617,7 @@ export interface DeleteFunctionRequest {
|
|
|
2616
2617
|
* <p>Specify a version to delete. You can't delete a version that an alias references.</p>
|
|
2617
2618
|
* @public
|
|
2618
2619
|
*/
|
|
2619
|
-
Qualifier?: string;
|
|
2620
|
+
Qualifier?: string | undefined;
|
|
2620
2621
|
}
|
|
2621
2622
|
/**
|
|
2622
2623
|
* @public
|
|
@@ -2708,7 +2709,7 @@ export interface DeleteFunctionEventInvokeConfigRequest {
|
|
|
2708
2709
|
* <p>A version number or alias name.</p>
|
|
2709
2710
|
* @public
|
|
2710
2711
|
*/
|
|
2711
|
-
Qualifier?: string;
|
|
2712
|
+
Qualifier?: string | undefined;
|
|
2712
2713
|
}
|
|
2713
2714
|
/**
|
|
2714
2715
|
* @public
|
|
@@ -2742,7 +2743,7 @@ export interface DeleteFunctionUrlConfigRequest {
|
|
|
2742
2743
|
* <p>The alias name.</p>
|
|
2743
2744
|
* @public
|
|
2744
2745
|
*/
|
|
2745
|
-
Qualifier?: string;
|
|
2746
|
+
Qualifier?: string | undefined;
|
|
2746
2747
|
}
|
|
2747
2748
|
/**
|
|
2748
2749
|
* @public
|
|
@@ -2806,12 +2807,12 @@ export interface GetAccountSettingsResponse {
|
|
|
2806
2807
|
* <p>Limits that are related to concurrency and code storage.</p>
|
|
2807
2808
|
* @public
|
|
2808
2809
|
*/
|
|
2809
|
-
AccountLimit?: AccountLimit;
|
|
2810
|
+
AccountLimit?: AccountLimit | undefined;
|
|
2810
2811
|
/**
|
|
2811
2812
|
* <p>The number of functions and amount of storage in use.</p>
|
|
2812
2813
|
* @public
|
|
2813
2814
|
*/
|
|
2814
|
-
AccountUsage?: AccountUsage;
|
|
2815
|
+
AccountUsage?: AccountUsage | undefined;
|
|
2815
2816
|
}
|
|
2816
2817
|
/**
|
|
2817
2818
|
* @public
|
|
@@ -2909,7 +2910,7 @@ export interface GetFunctionRequest {
|
|
|
2909
2910
|
* <p>Specify a version or alias to get details about a published version of the function.</p>
|
|
2910
2911
|
* @public
|
|
2911
2912
|
*/
|
|
2912
|
-
Qualifier?: string;
|
|
2913
|
+
Qualifier?: string | undefined;
|
|
2913
2914
|
}
|
|
2914
2915
|
/**
|
|
2915
2916
|
* <p>Details about a function's deployment package.</p>
|
|
@@ -2920,28 +2921,28 @@ export interface FunctionCodeLocation {
|
|
|
2920
2921
|
* <p>The service that's hosting the file.</p>
|
|
2921
2922
|
* @public
|
|
2922
2923
|
*/
|
|
2923
|
-
RepositoryType?: string;
|
|
2924
|
+
RepositoryType?: string | undefined;
|
|
2924
2925
|
/**
|
|
2925
2926
|
* <p>A presigned URL that you can use to download the deployment package.</p>
|
|
2926
2927
|
* @public
|
|
2927
2928
|
*/
|
|
2928
|
-
Location?: string;
|
|
2929
|
+
Location?: string | undefined;
|
|
2929
2930
|
/**
|
|
2930
2931
|
* <p>URI of a container image in the Amazon ECR registry.</p>
|
|
2931
2932
|
* @public
|
|
2932
2933
|
*/
|
|
2933
|
-
ImageUri?: string;
|
|
2934
|
+
ImageUri?: string | undefined;
|
|
2934
2935
|
/**
|
|
2935
2936
|
* <p>The resolved URI for the image.</p>
|
|
2936
2937
|
* @public
|
|
2937
2938
|
*/
|
|
2938
|
-
ResolvedImageUri?: string;
|
|
2939
|
+
ResolvedImageUri?: string | undefined;
|
|
2939
2940
|
/**
|
|
2940
2941
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's
|
|
2941
2942
|
* .zip deployment package. If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a>.</p>
|
|
2942
2943
|
* @public
|
|
2943
2944
|
*/
|
|
2944
|
-
SourceKMSKeyArn?: string;
|
|
2945
|
+
SourceKMSKeyArn?: string | undefined;
|
|
2945
2946
|
}
|
|
2946
2947
|
/**
|
|
2947
2948
|
* @public
|
|
@@ -2952,7 +2953,7 @@ export interface Concurrency {
|
|
|
2952
2953
|
* concurrency</a>.</p>
|
|
2953
2954
|
* @public
|
|
2954
2955
|
*/
|
|
2955
|
-
ReservedConcurrentExecutions?: number;
|
|
2956
|
+
ReservedConcurrentExecutions?: number | undefined;
|
|
2956
2957
|
}
|
|
2957
2958
|
/**
|
|
2958
2959
|
* <p>An object that contains details about an error related to retrieving tags.</p>
|
|
@@ -2978,29 +2979,29 @@ export interface GetFunctionResponse {
|
|
|
2978
2979
|
* <p>The configuration of the function or version.</p>
|
|
2979
2980
|
* @public
|
|
2980
2981
|
*/
|
|
2981
|
-
Configuration?: FunctionConfiguration;
|
|
2982
|
+
Configuration?: FunctionConfiguration | undefined;
|
|
2982
2983
|
/**
|
|
2983
2984
|
* <p>The deployment package of the function or version.</p>
|
|
2984
2985
|
* @public
|
|
2985
2986
|
*/
|
|
2986
|
-
Code?: FunctionCodeLocation;
|
|
2987
|
+
Code?: FunctionCodeLocation | undefined;
|
|
2987
2988
|
/**
|
|
2988
2989
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>. Lambda
|
|
2989
2990
|
* returns tag data only if you have explicit allow permissions for <a href="https://docs.aws.amazon.com/lambda/latest/api/API_ListTags.html">lambda:ListTags</a>.</p>
|
|
2990
2991
|
* @public
|
|
2991
2992
|
*/
|
|
2992
|
-
Tags?: Record<string, string
|
|
2993
|
+
Tags?: Record<string, string> | undefined;
|
|
2993
2994
|
/**
|
|
2994
2995
|
* <p>An object that contains details about an error related to retrieving tags.</p>
|
|
2995
2996
|
* @public
|
|
2996
2997
|
*/
|
|
2997
|
-
TagsError?: TagsError;
|
|
2998
|
+
TagsError?: TagsError | undefined;
|
|
2998
2999
|
/**
|
|
2999
3000
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html">reserved
|
|
3000
3001
|
* concurrency</a>.</p>
|
|
3001
3002
|
* @public
|
|
3002
3003
|
*/
|
|
3003
|
-
Concurrency?: Concurrency;
|
|
3004
|
+
Concurrency?: Concurrency | undefined;
|
|
3004
3005
|
}
|
|
3005
3006
|
/**
|
|
3006
3007
|
* @public
|
|
@@ -3102,7 +3103,7 @@ export interface GetFunctionConcurrencyResponse {
|
|
|
3102
3103
|
* <p>The number of simultaneous executions that are reserved for the function.</p>
|
|
3103
3104
|
* @public
|
|
3104
3105
|
*/
|
|
3105
|
-
ReservedConcurrentExecutions?: number;
|
|
3106
|
+
ReservedConcurrentExecutions?: number | undefined;
|
|
3106
3107
|
}
|
|
3107
3108
|
/**
|
|
3108
3109
|
* @public
|
|
@@ -3136,7 +3137,7 @@ export interface GetFunctionConfigurationRequest {
|
|
|
3136
3137
|
* <p>Specify a version or alias to get details about a published version of the function.</p>
|
|
3137
3138
|
* @public
|
|
3138
3139
|
*/
|
|
3139
|
-
Qualifier?: string;
|
|
3140
|
+
Qualifier?: string | undefined;
|
|
3140
3141
|
}
|
|
3141
3142
|
/**
|
|
3142
3143
|
* @public
|
|
@@ -3146,22 +3147,22 @@ export interface FunctionEventInvokeConfig {
|
|
|
3146
3147
|
* <p>The date and time that the configuration was last updated.</p>
|
|
3147
3148
|
* @public
|
|
3148
3149
|
*/
|
|
3149
|
-
LastModified?: Date;
|
|
3150
|
+
LastModified?: Date | undefined;
|
|
3150
3151
|
/**
|
|
3151
3152
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
3152
3153
|
* @public
|
|
3153
3154
|
*/
|
|
3154
|
-
FunctionArn?: string;
|
|
3155
|
+
FunctionArn?: string | undefined;
|
|
3155
3156
|
/**
|
|
3156
3157
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
3157
3158
|
* @public
|
|
3158
3159
|
*/
|
|
3159
|
-
MaximumRetryAttempts?: number;
|
|
3160
|
+
MaximumRetryAttempts?: number | undefined;
|
|
3160
3161
|
/**
|
|
3161
3162
|
* <p>The maximum age of a request that Lambda sends to a function for processing.</p>
|
|
3162
3163
|
* @public
|
|
3163
3164
|
*/
|
|
3164
|
-
MaximumEventAgeInSeconds?: number;
|
|
3165
|
+
MaximumEventAgeInSeconds?: number | undefined;
|
|
3165
3166
|
/**
|
|
3166
3167
|
* <p>A destination for events after they have been sent to a function for processing.</p>
|
|
3167
3168
|
* <p class="title">
|
|
@@ -3187,7 +3188,7 @@ export interface FunctionEventInvokeConfig {
|
|
|
3187
3188
|
* </ul>
|
|
3188
3189
|
* @public
|
|
3189
3190
|
*/
|
|
3190
|
-
DestinationConfig?: DestinationConfig;
|
|
3191
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
3191
3192
|
}
|
|
3192
3193
|
/**
|
|
3193
3194
|
* @public
|
|
@@ -3221,7 +3222,7 @@ export interface GetFunctionEventInvokeConfigRequest {
|
|
|
3221
3222
|
* <p>A version number or alias name.</p>
|
|
3222
3223
|
* @public
|
|
3223
3224
|
*/
|
|
3224
|
-
Qualifier?: string;
|
|
3225
|
+
Qualifier?: string | undefined;
|
|
3225
3226
|
}
|
|
3226
3227
|
/**
|
|
3227
3228
|
* @public
|
|
@@ -3258,7 +3259,7 @@ export interface GetFunctionRecursionConfigResponse {
|
|
|
3258
3259
|
* configuration using the <a>PutFunctionRecursionConfig</a> action.</p>
|
|
3259
3260
|
* @public
|
|
3260
3261
|
*/
|
|
3261
|
-
RecursiveLoop?: RecursiveLoop;
|
|
3262
|
+
RecursiveLoop?: RecursiveLoop | undefined;
|
|
3262
3263
|
}
|
|
3263
3264
|
/**
|
|
3264
3265
|
* @public
|
|
@@ -3292,7 +3293,7 @@ export interface GetFunctionUrlConfigRequest {
|
|
|
3292
3293
|
* <p>The alias name.</p>
|
|
3293
3294
|
* @public
|
|
3294
3295
|
*/
|
|
3295
|
-
Qualifier?: string;
|
|
3296
|
+
Qualifier?: string | undefined;
|
|
3296
3297
|
}
|
|
3297
3298
|
/**
|
|
3298
3299
|
* @public
|
|
@@ -3320,7 +3321,7 @@ export interface GetFunctionUrlConfigResponse {
|
|
|
3320
3321
|
* for your function URL.</p>
|
|
3321
3322
|
* @public
|
|
3322
3323
|
*/
|
|
3323
|
-
Cors?: Cors;
|
|
3324
|
+
Cors?: Cors | undefined;
|
|
3324
3325
|
/**
|
|
3325
3326
|
* <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
3326
3327
|
* @public
|
|
@@ -3347,7 +3348,7 @@ export interface GetFunctionUrlConfigResponse {
|
|
|
3347
3348
|
* </ul>
|
|
3348
3349
|
* @public
|
|
3349
3350
|
*/
|
|
3350
|
-
InvokeMode?: InvokeMode;
|
|
3351
|
+
InvokeMode?: InvokeMode | undefined;
|
|
3351
3352
|
}
|
|
3352
3353
|
/**
|
|
3353
3354
|
* @public
|
|
@@ -3374,27 +3375,27 @@ export interface LayerVersionContentOutput {
|
|
|
3374
3375
|
* <p>A link to the layer archive in Amazon S3 that is valid for 10 minutes.</p>
|
|
3375
3376
|
* @public
|
|
3376
3377
|
*/
|
|
3377
|
-
Location?: string;
|
|
3378
|
+
Location?: string | undefined;
|
|
3378
3379
|
/**
|
|
3379
3380
|
* <p>The SHA-256 hash of the layer archive.</p>
|
|
3380
3381
|
* @public
|
|
3381
3382
|
*/
|
|
3382
|
-
CodeSha256?: string;
|
|
3383
|
+
CodeSha256?: string | undefined;
|
|
3383
3384
|
/**
|
|
3384
3385
|
* <p>The size of the layer archive in bytes.</p>
|
|
3385
3386
|
* @public
|
|
3386
3387
|
*/
|
|
3387
|
-
CodeSize?: number;
|
|
3388
|
+
CodeSize?: number | undefined;
|
|
3388
3389
|
/**
|
|
3389
3390
|
* <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
|
|
3390
3391
|
* @public
|
|
3391
3392
|
*/
|
|
3392
|
-
SigningProfileVersionArn?: string;
|
|
3393
|
+
SigningProfileVersionArn?: string | undefined;
|
|
3393
3394
|
/**
|
|
3394
3395
|
* <p>The Amazon Resource Name (ARN) of a signing job.</p>
|
|
3395
3396
|
* @public
|
|
3396
3397
|
*/
|
|
3397
|
-
SigningJobArn?: string;
|
|
3398
|
+
SigningJobArn?: string | undefined;
|
|
3398
3399
|
}
|
|
3399
3400
|
/**
|
|
3400
3401
|
* @public
|
|
@@ -3404,32 +3405,32 @@ export interface GetLayerVersionResponse {
|
|
|
3404
3405
|
* <p>Details about the layer version.</p>
|
|
3405
3406
|
* @public
|
|
3406
3407
|
*/
|
|
3407
|
-
Content?: LayerVersionContentOutput;
|
|
3408
|
+
Content?: LayerVersionContentOutput | undefined;
|
|
3408
3409
|
/**
|
|
3409
3410
|
* <p>The ARN of the layer.</p>
|
|
3410
3411
|
* @public
|
|
3411
3412
|
*/
|
|
3412
|
-
LayerArn?: string;
|
|
3413
|
+
LayerArn?: string | undefined;
|
|
3413
3414
|
/**
|
|
3414
3415
|
* <p>The ARN of the layer version.</p>
|
|
3415
3416
|
* @public
|
|
3416
3417
|
*/
|
|
3417
|
-
LayerVersionArn?: string;
|
|
3418
|
+
LayerVersionArn?: string | undefined;
|
|
3418
3419
|
/**
|
|
3419
3420
|
* <p>The description of the version.</p>
|
|
3420
3421
|
* @public
|
|
3421
3422
|
*/
|
|
3422
|
-
Description?: string;
|
|
3423
|
+
Description?: string | undefined;
|
|
3423
3424
|
/**
|
|
3424
3425
|
* <p>The date that the layer version was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
3425
3426
|
* @public
|
|
3426
3427
|
*/
|
|
3427
|
-
CreatedDate?: string;
|
|
3428
|
+
CreatedDate?: string | undefined;
|
|
3428
3429
|
/**
|
|
3429
3430
|
* <p>The version number.</p>
|
|
3430
3431
|
* @public
|
|
3431
3432
|
*/
|
|
3432
|
-
Version?: number;
|
|
3433
|
+
Version?: number | undefined;
|
|
3433
3434
|
/**
|
|
3434
3435
|
* <p>The layer's compatible runtimes.</p>
|
|
3435
3436
|
* <p>The following list includes deprecated runtimes. For more information, see
|
|
@@ -3438,18 +3439,18 @@ export interface GetLayerVersionResponse {
|
|
|
3438
3439
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
3439
3440
|
* @public
|
|
3440
3441
|
*/
|
|
3441
|
-
CompatibleRuntimes?: Runtime[];
|
|
3442
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
3442
3443
|
/**
|
|
3443
3444
|
* <p>The layer's software license.</p>
|
|
3444
3445
|
* @public
|
|
3445
3446
|
*/
|
|
3446
|
-
LicenseInfo?: string;
|
|
3447
|
+
LicenseInfo?: string | undefined;
|
|
3447
3448
|
/**
|
|
3448
3449
|
* <p>A list of compatible
|
|
3449
3450
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
3450
3451
|
* @public
|
|
3451
3452
|
*/
|
|
3452
|
-
CompatibleArchitectures?: Architecture[];
|
|
3453
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
3453
3454
|
}
|
|
3454
3455
|
/**
|
|
3455
3456
|
* @public
|
|
@@ -3484,12 +3485,12 @@ export interface GetLayerVersionPolicyResponse {
|
|
|
3484
3485
|
* <p>The policy document.</p>
|
|
3485
3486
|
* @public
|
|
3486
3487
|
*/
|
|
3487
|
-
Policy?: string;
|
|
3488
|
+
Policy?: string | undefined;
|
|
3488
3489
|
/**
|
|
3489
3490
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|
3490
3491
|
* @public
|
|
3491
3492
|
*/
|
|
3492
|
-
RevisionId?: string;
|
|
3493
|
+
RevisionId?: string | undefined;
|
|
3493
3494
|
}
|
|
3494
3495
|
/**
|
|
3495
3496
|
* @public
|
|
@@ -3523,7 +3524,7 @@ export interface GetPolicyRequest {
|
|
|
3523
3524
|
* <p>Specify a version or alias to get the policy for that resource.</p>
|
|
3524
3525
|
* @public
|
|
3525
3526
|
*/
|
|
3526
|
-
Qualifier?: string;
|
|
3527
|
+
Qualifier?: string | undefined;
|
|
3527
3528
|
}
|
|
3528
3529
|
/**
|
|
3529
3530
|
* @public
|
|
@@ -3533,12 +3534,12 @@ export interface GetPolicyResponse {
|
|
|
3533
3534
|
* <p>The resource-based policy.</p>
|
|
3534
3535
|
* @public
|
|
3535
3536
|
*/
|
|
3536
|
-
Policy?: string;
|
|
3537
|
+
Policy?: string | undefined;
|
|
3537
3538
|
/**
|
|
3538
3539
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|
3539
3540
|
* @public
|
|
3540
3541
|
*/
|
|
3541
|
-
RevisionId?: string;
|
|
3542
|
+
RevisionId?: string | undefined;
|
|
3542
3543
|
}
|
|
3543
3544
|
/**
|
|
3544
3545
|
* @public
|
|
@@ -3595,32 +3596,32 @@ export interface GetProvisionedConcurrencyConfigResponse {
|
|
|
3595
3596
|
* <p>The amount of provisioned concurrency requested.</p>
|
|
3596
3597
|
* @public
|
|
3597
3598
|
*/
|
|
3598
|
-
RequestedProvisionedConcurrentExecutions?: number;
|
|
3599
|
+
RequestedProvisionedConcurrentExecutions?: number | undefined;
|
|
3599
3600
|
/**
|
|
3600
3601
|
* <p>The amount of provisioned concurrency available.</p>
|
|
3601
3602
|
* @public
|
|
3602
3603
|
*/
|
|
3603
|
-
AvailableProvisionedConcurrentExecutions?: number;
|
|
3604
|
+
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
3604
3605
|
/**
|
|
3605
3606
|
* <p>The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.</p>
|
|
3606
3607
|
* @public
|
|
3607
3608
|
*/
|
|
3608
|
-
AllocatedProvisionedConcurrentExecutions?: number;
|
|
3609
|
+
AllocatedProvisionedConcurrentExecutions?: number | undefined;
|
|
3609
3610
|
/**
|
|
3610
3611
|
* <p>The status of the allocation process.</p>
|
|
3611
3612
|
* @public
|
|
3612
3613
|
*/
|
|
3613
|
-
Status?: ProvisionedConcurrencyStatusEnum;
|
|
3614
|
+
Status?: ProvisionedConcurrencyStatusEnum | undefined;
|
|
3614
3615
|
/**
|
|
3615
3616
|
* <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
|
|
3616
3617
|
* @public
|
|
3617
3618
|
*/
|
|
3618
|
-
StatusReason?: string;
|
|
3619
|
+
StatusReason?: string | undefined;
|
|
3619
3620
|
/**
|
|
3620
3621
|
* <p>The date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>.</p>
|
|
3621
3622
|
* @public
|
|
3622
3623
|
*/
|
|
3623
|
-
LastModified?: string;
|
|
3624
|
+
LastModified?: string | undefined;
|
|
3624
3625
|
}
|
|
3625
3626
|
/**
|
|
3626
3627
|
* <p>The specified configuration does not exist.</p>
|
|
@@ -3629,7 +3630,7 @@ export interface GetProvisionedConcurrencyConfigResponse {
|
|
|
3629
3630
|
export declare class ProvisionedConcurrencyConfigNotFoundException extends __BaseException {
|
|
3630
3631
|
readonly name: "ProvisionedConcurrencyConfigNotFoundException";
|
|
3631
3632
|
readonly $fault: "client";
|
|
3632
|
-
Type?: string;
|
|
3633
|
+
Type?: string | undefined;
|
|
3633
3634
|
/**
|
|
3634
3635
|
* @internal
|
|
3635
3636
|
*/
|
|
@@ -3668,7 +3669,7 @@ export interface GetRuntimeManagementConfigRequest {
|
|
|
3668
3669
|
* <code>$LATEST</code> version is returned.</p>
|
|
3669
3670
|
* @public
|
|
3670
3671
|
*/
|
|
3671
|
-
Qualifier?: string;
|
|
3672
|
+
Qualifier?: string | undefined;
|
|
3672
3673
|
}
|
|
3673
3674
|
/**
|
|
3674
3675
|
* @public
|
|
@@ -3691,18 +3692,18 @@ export interface GetRuntimeManagementConfigResponse {
|
|
|
3691
3692
|
* <p>The current runtime update mode of the function.</p>
|
|
3692
3693
|
* @public
|
|
3693
3694
|
*/
|
|
3694
|
-
UpdateRuntimeOn?: UpdateRuntimeOn;
|
|
3695
|
+
UpdateRuntimeOn?: UpdateRuntimeOn | undefined;
|
|
3695
3696
|
/**
|
|
3696
3697
|
* <p>The ARN of the runtime the function is configured to use. If the runtime update mode is <b>Manual</b>, the ARN is returned, otherwise <code>null</code>
|
|
3697
3698
|
* is returned.</p>
|
|
3698
3699
|
* @public
|
|
3699
3700
|
*/
|
|
3700
|
-
RuntimeVersionArn?: string;
|
|
3701
|
+
RuntimeVersionArn?: string | undefined;
|
|
3701
3702
|
/**
|
|
3702
3703
|
* <p>The Amazon Resource Name (ARN) of your function.</p>
|
|
3703
3704
|
* @public
|
|
3704
3705
|
*/
|
|
3705
|
-
FunctionArn?: string;
|
|
3706
|
+
FunctionArn?: string | undefined;
|
|
3706
3707
|
}
|
|
3707
3708
|
/**
|
|
3708
3709
|
* <p>Need additional permissions to configure VPC settings.</p>
|
|
@@ -3711,8 +3712,8 @@ export interface GetRuntimeManagementConfigResponse {
|
|
|
3711
3712
|
export declare class EC2AccessDeniedException extends __BaseException {
|
|
3712
3713
|
readonly name: "EC2AccessDeniedException";
|
|
3713
3714
|
readonly $fault: "server";
|
|
3714
|
-
Type?: string;
|
|
3715
|
-
Message?: string;
|
|
3715
|
+
Type?: string | undefined;
|
|
3716
|
+
Message?: string | undefined;
|
|
3716
3717
|
/**
|
|
3717
3718
|
* @internal
|
|
3718
3719
|
*/
|
|
@@ -3726,8 +3727,8 @@ export declare class EC2AccessDeniedException extends __BaseException {
|
|
|
3726
3727
|
export declare class EC2ThrottledException extends __BaseException {
|
|
3727
3728
|
readonly name: "EC2ThrottledException";
|
|
3728
3729
|
readonly $fault: "server";
|
|
3729
|
-
Type?: string;
|
|
3730
|
-
Message?: string;
|
|
3730
|
+
Type?: string | undefined;
|
|
3731
|
+
Message?: string | undefined;
|
|
3731
3732
|
/**
|
|
3732
3733
|
* @internal
|
|
3733
3734
|
*/
|
|
@@ -3741,9 +3742,9 @@ export declare class EC2ThrottledException extends __BaseException {
|
|
|
3741
3742
|
export declare class EC2UnexpectedException extends __BaseException {
|
|
3742
3743
|
readonly name: "EC2UnexpectedException";
|
|
3743
3744
|
readonly $fault: "server";
|
|
3744
|
-
Type?: string;
|
|
3745
|
-
Message?: string;
|
|
3746
|
-
EC2ErrorCode?: string;
|
|
3745
|
+
Type?: string | undefined;
|
|
3746
|
+
Message?: string | undefined;
|
|
3747
|
+
EC2ErrorCode?: string | undefined;
|
|
3747
3748
|
/**
|
|
3748
3749
|
* @internal
|
|
3749
3750
|
*/
|
|
@@ -3756,8 +3757,8 @@ export declare class EC2UnexpectedException extends __BaseException {
|
|
|
3756
3757
|
export declare class EFSIOException extends __BaseException {
|
|
3757
3758
|
readonly name: "EFSIOException";
|
|
3758
3759
|
readonly $fault: "client";
|
|
3759
|
-
Type?: string;
|
|
3760
|
-
Message?: string;
|
|
3760
|
+
Type?: string | undefined;
|
|
3761
|
+
Message?: string | undefined;
|
|
3761
3762
|
/**
|
|
3762
3763
|
* @internal
|
|
3763
3764
|
*/
|
|
@@ -3770,8 +3771,8 @@ export declare class EFSIOException extends __BaseException {
|
|
|
3770
3771
|
export declare class EFSMountConnectivityException extends __BaseException {
|
|
3771
3772
|
readonly name: "EFSMountConnectivityException";
|
|
3772
3773
|
readonly $fault: "client";
|
|
3773
|
-
Type?: string;
|
|
3774
|
-
Message?: string;
|
|
3774
|
+
Type?: string | undefined;
|
|
3775
|
+
Message?: string | undefined;
|
|
3775
3776
|
/**
|
|
3776
3777
|
* @internal
|
|
3777
3778
|
*/
|
|
@@ -3785,8 +3786,8 @@ export declare class EFSMountConnectivityException extends __BaseException {
|
|
|
3785
3786
|
export declare class EFSMountFailureException extends __BaseException {
|
|
3786
3787
|
readonly name: "EFSMountFailureException";
|
|
3787
3788
|
readonly $fault: "client";
|
|
3788
|
-
Type?: string;
|
|
3789
|
-
Message?: string;
|
|
3789
|
+
Type?: string | undefined;
|
|
3790
|
+
Message?: string | undefined;
|
|
3790
3791
|
/**
|
|
3791
3792
|
* @internal
|
|
3792
3793
|
*/
|
|
@@ -3800,8 +3801,8 @@ export declare class EFSMountFailureException extends __BaseException {
|
|
|
3800
3801
|
export declare class EFSMountTimeoutException extends __BaseException {
|
|
3801
3802
|
readonly name: "EFSMountTimeoutException";
|
|
3802
3803
|
readonly $fault: "client";
|
|
3803
|
-
Type?: string;
|
|
3804
|
-
Message?: string;
|
|
3804
|
+
Type?: string | undefined;
|
|
3805
|
+
Message?: string | undefined;
|
|
3805
3806
|
/**
|
|
3806
3807
|
* @internal
|
|
3807
3808
|
*/
|
|
@@ -3816,8 +3817,8 @@ export declare class EFSMountTimeoutException extends __BaseException {
|
|
|
3816
3817
|
export declare class ENILimitReachedException extends __BaseException {
|
|
3817
3818
|
readonly name: "ENILimitReachedException";
|
|
3818
3819
|
readonly $fault: "server";
|
|
3819
|
-
Type?: string;
|
|
3820
|
-
Message?: string;
|
|
3820
|
+
Type?: string | undefined;
|
|
3821
|
+
Message?: string | undefined;
|
|
3821
3822
|
/**
|
|
3822
3823
|
* @internal
|
|
3823
3824
|
*/
|
|
@@ -3834,7 +3835,7 @@ export declare class InvalidRequestContentException extends __BaseException {
|
|
|
3834
3835
|
* <p>The exception type.</p>
|
|
3835
3836
|
* @public
|
|
3836
3837
|
*/
|
|
3837
|
-
Type?: string;
|
|
3838
|
+
Type?: string | undefined;
|
|
3838
3839
|
/**
|
|
3839
3840
|
* @internal
|
|
3840
3841
|
*/
|
|
@@ -3847,8 +3848,8 @@ export declare class InvalidRequestContentException extends __BaseException {
|
|
|
3847
3848
|
export declare class InvalidRuntimeException extends __BaseException {
|
|
3848
3849
|
readonly name: "InvalidRuntimeException";
|
|
3849
3850
|
readonly $fault: "server";
|
|
3850
|
-
Type?: string;
|
|
3851
|
-
Message?: string;
|
|
3851
|
+
Type?: string | undefined;
|
|
3852
|
+
Message?: string | undefined;
|
|
3852
3853
|
/**
|
|
3853
3854
|
* @internal
|
|
3854
3855
|
*/
|
|
@@ -3861,8 +3862,8 @@ export declare class InvalidRuntimeException extends __BaseException {
|
|
|
3861
3862
|
export declare class InvalidSecurityGroupIDException extends __BaseException {
|
|
3862
3863
|
readonly name: "InvalidSecurityGroupIDException";
|
|
3863
3864
|
readonly $fault: "server";
|
|
3864
|
-
Type?: string;
|
|
3865
|
-
Message?: string;
|
|
3865
|
+
Type?: string | undefined;
|
|
3866
|
+
Message?: string | undefined;
|
|
3866
3867
|
/**
|
|
3867
3868
|
* @internal
|
|
3868
3869
|
*/
|
|
@@ -3875,8 +3876,8 @@ export declare class InvalidSecurityGroupIDException extends __BaseException {
|
|
|
3875
3876
|
export declare class InvalidSubnetIDException extends __BaseException {
|
|
3876
3877
|
readonly name: "InvalidSubnetIDException";
|
|
3877
3878
|
readonly $fault: "server";
|
|
3878
|
-
Type?: string;
|
|
3879
|
-
Message?: string;
|
|
3879
|
+
Type?: string | undefined;
|
|
3880
|
+
Message?: string | undefined;
|
|
3880
3881
|
/**
|
|
3881
3882
|
* @internal
|
|
3882
3883
|
*/
|
|
@@ -3889,8 +3890,8 @@ export declare class InvalidSubnetIDException extends __BaseException {
|
|
|
3889
3890
|
export declare class InvalidZipFileException extends __BaseException {
|
|
3890
3891
|
readonly name: "InvalidZipFileException";
|
|
3891
3892
|
readonly $fault: "server";
|
|
3892
|
-
Type?: string;
|
|
3893
|
-
Message?: string;
|
|
3893
|
+
Type?: string | undefined;
|
|
3894
|
+
Message?: string | undefined;
|
|
3894
3895
|
/**
|
|
3895
3896
|
* @internal
|
|
3896
3897
|
*/
|
|
@@ -3971,31 +3972,31 @@ export interface InvocationRequest {
|
|
|
3971
3972
|
* </ul>
|
|
3972
3973
|
* @public
|
|
3973
3974
|
*/
|
|
3974
|
-
InvocationType?: InvocationType;
|
|
3975
|
+
InvocationType?: InvocationType | undefined;
|
|
3975
3976
|
/**
|
|
3976
3977
|
* <p>Set to <code>Tail</code> to include the execution log in the response. Applies to synchronously invoked functions only.</p>
|
|
3977
3978
|
* @public
|
|
3978
3979
|
*/
|
|
3979
|
-
LogType?: LogType;
|
|
3980
|
+
LogType?: LogType | undefined;
|
|
3980
3981
|
/**
|
|
3981
3982
|
* <p>Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context
|
|
3982
3983
|
* object. Lambda passes the <code>ClientContext</code> object to your function for
|
|
3983
3984
|
* synchronous invocations only.</p>
|
|
3984
3985
|
* @public
|
|
3985
3986
|
*/
|
|
3986
|
-
ClientContext?: string;
|
|
3987
|
+
ClientContext?: string | undefined;
|
|
3987
3988
|
/**
|
|
3988
3989
|
* <p>The JSON that you want to provide to your Lambda function as input.</p>
|
|
3989
3990
|
* <p>You can enter the JSON directly. For example, <code>--payload '\{ "key": "value" \}'</code>. You can also
|
|
3990
3991
|
* specify a file path. For example, <code>--payload file://payload.json</code>.</p>
|
|
3991
3992
|
* @public
|
|
3992
3993
|
*/
|
|
3993
|
-
Payload?: Uint8Array;
|
|
3994
|
+
Payload?: Uint8Array | undefined;
|
|
3994
3995
|
/**
|
|
3995
3996
|
* <p>Specify a version or alias to invoke a published version of the function.</p>
|
|
3996
3997
|
* @public
|
|
3997
3998
|
*/
|
|
3998
|
-
Qualifier?: string;
|
|
3999
|
+
Qualifier?: string | undefined;
|
|
3999
4000
|
}
|
|
4000
4001
|
/**
|
|
4001
4002
|
* @public
|
|
@@ -4007,29 +4008,29 @@ export interface InvocationResponse {
|
|
|
4007
4008
|
* the <code>DryRun</code> invocation type, the status code is 204.</p>
|
|
4008
4009
|
* @public
|
|
4009
4010
|
*/
|
|
4010
|
-
StatusCode?: number;
|
|
4011
|
+
StatusCode?: number | undefined;
|
|
4011
4012
|
/**
|
|
4012
4013
|
* <p>If present, indicates that an error occurred during function execution. Details about the error are included
|
|
4013
4014
|
* in the response payload.</p>
|
|
4014
4015
|
* @public
|
|
4015
4016
|
*/
|
|
4016
|
-
FunctionError?: string;
|
|
4017
|
+
FunctionError?: string | undefined;
|
|
4017
4018
|
/**
|
|
4018
4019
|
* <p>The last 4 KB of the execution log, which is base64-encoded.</p>
|
|
4019
4020
|
* @public
|
|
4020
4021
|
*/
|
|
4021
|
-
LogResult?: string;
|
|
4022
|
+
LogResult?: string | undefined;
|
|
4022
4023
|
/**
|
|
4023
4024
|
* <p>The response from the function, or an error object.</p>
|
|
4024
4025
|
* @public
|
|
4025
4026
|
*/
|
|
4026
|
-
Payload?: Uint8Array;
|
|
4027
|
+
Payload?: Uint8Array | undefined;
|
|
4027
4028
|
/**
|
|
4028
4029
|
* <p>The version of the function that executed. When you invoke a function with an alias, this indicates which
|
|
4029
4030
|
* version the alias resolved to.</p>
|
|
4030
4031
|
* @public
|
|
4031
4032
|
*/
|
|
4032
|
-
ExecutedVersion?: string;
|
|
4033
|
+
ExecutedVersion?: string | undefined;
|
|
4033
4034
|
}
|
|
4034
4035
|
/**
|
|
4035
4036
|
* <p>Lambda couldn't decrypt the environment variables because KMS access was denied.
|
|
@@ -4039,8 +4040,8 @@ export interface InvocationResponse {
|
|
|
4039
4040
|
export declare class KMSAccessDeniedException extends __BaseException {
|
|
4040
4041
|
readonly name: "KMSAccessDeniedException";
|
|
4041
4042
|
readonly $fault: "server";
|
|
4042
|
-
Type?: string;
|
|
4043
|
-
Message?: string;
|
|
4043
|
+
Type?: string | undefined;
|
|
4044
|
+
Message?: string | undefined;
|
|
4044
4045
|
/**
|
|
4045
4046
|
* @internal
|
|
4046
4047
|
*/
|
|
@@ -4054,8 +4055,8 @@ export declare class KMSAccessDeniedException extends __BaseException {
|
|
|
4054
4055
|
export declare class KMSDisabledException extends __BaseException {
|
|
4055
4056
|
readonly name: "KMSDisabledException";
|
|
4056
4057
|
readonly $fault: "server";
|
|
4057
|
-
Type?: string;
|
|
4058
|
-
Message?: string;
|
|
4058
|
+
Type?: string | undefined;
|
|
4059
|
+
Message?: string | undefined;
|
|
4059
4060
|
/**
|
|
4060
4061
|
* @internal
|
|
4061
4062
|
*/
|
|
@@ -4068,8 +4069,8 @@ export declare class KMSDisabledException extends __BaseException {
|
|
|
4068
4069
|
export declare class KMSInvalidStateException extends __BaseException {
|
|
4069
4070
|
readonly name: "KMSInvalidStateException";
|
|
4070
4071
|
readonly $fault: "server";
|
|
4071
|
-
Type?: string;
|
|
4072
|
-
Message?: string;
|
|
4072
|
+
Type?: string | undefined;
|
|
4073
|
+
Message?: string | undefined;
|
|
4073
4074
|
/**
|
|
4074
4075
|
* @internal
|
|
4075
4076
|
*/
|
|
@@ -4083,8 +4084,8 @@ export declare class KMSInvalidStateException extends __BaseException {
|
|
|
4083
4084
|
export declare class KMSNotFoundException extends __BaseException {
|
|
4084
4085
|
readonly name: "KMSNotFoundException";
|
|
4085
4086
|
readonly $fault: "server";
|
|
4086
|
-
Type?: string;
|
|
4087
|
-
Message?: string;
|
|
4087
|
+
Type?: string | undefined;
|
|
4088
|
+
Message?: string | undefined;
|
|
4088
4089
|
/**
|
|
4089
4090
|
* @internal
|
|
4090
4091
|
*/
|
|
@@ -4101,12 +4102,12 @@ export declare class RecursiveInvocationException extends __BaseException {
|
|
|
4101
4102
|
* <p>The exception type.</p>
|
|
4102
4103
|
* @public
|
|
4103
4104
|
*/
|
|
4104
|
-
Type?: string;
|
|
4105
|
+
Type?: string | undefined;
|
|
4105
4106
|
/**
|
|
4106
4107
|
* <p>The exception message.</p>
|
|
4107
4108
|
* @public
|
|
4108
4109
|
*/
|
|
4109
|
-
Message?: string;
|
|
4110
|
+
Message?: string | undefined;
|
|
4110
4111
|
/**
|
|
4111
4112
|
* @internal
|
|
4112
4113
|
*/
|
|
@@ -4120,7 +4121,7 @@ export declare class RecursiveInvocationException extends __BaseException {
|
|
|
4120
4121
|
export declare class RequestTooLargeException extends __BaseException {
|
|
4121
4122
|
readonly name: "RequestTooLargeException";
|
|
4122
4123
|
readonly $fault: "client";
|
|
4123
|
-
Type?: string;
|
|
4124
|
+
Type?: string | undefined;
|
|
4124
4125
|
/**
|
|
4125
4126
|
* @internal
|
|
4126
4127
|
*/
|
|
@@ -4138,7 +4139,7 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
4138
4139
|
* <p>The exception type.</p>
|
|
4139
4140
|
* @public
|
|
4140
4141
|
*/
|
|
4141
|
-
Type?: string;
|
|
4142
|
+
Type?: string | undefined;
|
|
4142
4143
|
/**
|
|
4143
4144
|
* @internal
|
|
4144
4145
|
*/
|
|
@@ -4152,8 +4153,8 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
4152
4153
|
export declare class SnapStartException extends __BaseException {
|
|
4153
4154
|
readonly name: "SnapStartException";
|
|
4154
4155
|
readonly $fault: "client";
|
|
4155
|
-
Type?: string;
|
|
4156
|
-
Message?: string;
|
|
4156
|
+
Type?: string | undefined;
|
|
4157
|
+
Message?: string | undefined;
|
|
4157
4158
|
/**
|
|
4158
4159
|
* @internal
|
|
4159
4160
|
*/
|
|
@@ -4166,8 +4167,8 @@ export declare class SnapStartException extends __BaseException {
|
|
|
4166
4167
|
export declare class SnapStartNotReadyException extends __BaseException {
|
|
4167
4168
|
readonly name: "SnapStartNotReadyException";
|
|
4168
4169
|
readonly $fault: "client";
|
|
4169
|
-
Type?: string;
|
|
4170
|
-
Message?: string;
|
|
4170
|
+
Type?: string | undefined;
|
|
4171
|
+
Message?: string | undefined;
|
|
4171
4172
|
/**
|
|
4172
4173
|
* @internal
|
|
4173
4174
|
*/
|
|
@@ -4180,8 +4181,8 @@ export declare class SnapStartNotReadyException extends __BaseException {
|
|
|
4180
4181
|
export declare class SnapStartTimeoutException extends __BaseException {
|
|
4181
4182
|
readonly name: "SnapStartTimeoutException";
|
|
4182
4183
|
readonly $fault: "client";
|
|
4183
|
-
Type?: string;
|
|
4184
|
-
Message?: string;
|
|
4184
|
+
Type?: string | undefined;
|
|
4185
|
+
Message?: string | undefined;
|
|
4185
4186
|
/**
|
|
4186
4187
|
* @internal
|
|
4187
4188
|
*/
|
|
@@ -4195,8 +4196,8 @@ export declare class SnapStartTimeoutException extends __BaseException {
|
|
|
4195
4196
|
export declare class SubnetIPAddressLimitReachedException extends __BaseException {
|
|
4196
4197
|
readonly name: "SubnetIPAddressLimitReachedException";
|
|
4197
4198
|
readonly $fault: "server";
|
|
4198
|
-
Type?: string;
|
|
4199
|
-
Message?: string;
|
|
4199
|
+
Type?: string | undefined;
|
|
4200
|
+
Message?: string | undefined;
|
|
4200
4201
|
/**
|
|
4201
4202
|
* @internal
|
|
4202
4203
|
*/
|
|
@@ -4209,7 +4210,7 @@ export declare class SubnetIPAddressLimitReachedException extends __BaseExceptio
|
|
|
4209
4210
|
export declare class UnsupportedMediaTypeException extends __BaseException {
|
|
4210
4211
|
readonly name: "UnsupportedMediaTypeException";
|
|
4211
4212
|
readonly $fault: "client";
|
|
4212
|
-
Type?: string;
|
|
4213
|
+
Type?: string | undefined;
|
|
4213
4214
|
/**
|
|
4214
4215
|
* @internal
|
|
4215
4216
|
*/
|
|
@@ -4260,7 +4261,7 @@ export interface InvokeAsyncResponse {
|
|
|
4260
4261
|
* <p>The status code.</p>
|
|
4261
4262
|
* @public
|
|
4262
4263
|
*/
|
|
4263
|
-
Status?: number;
|
|
4264
|
+
Status?: number | undefined;
|
|
4264
4265
|
}
|
|
4265
4266
|
/**
|
|
4266
4267
|
* @public
|
|
@@ -4319,30 +4320,30 @@ export interface InvokeWithResponseStreamRequest {
|
|
|
4319
4320
|
* </ul>
|
|
4320
4321
|
* @public
|
|
4321
4322
|
*/
|
|
4322
|
-
InvocationType?: ResponseStreamingInvocationType;
|
|
4323
|
+
InvocationType?: ResponseStreamingInvocationType | undefined;
|
|
4323
4324
|
/**
|
|
4324
4325
|
* <p>Set to <code>Tail</code> to include the execution log in the response. Applies to synchronously invoked functions only.</p>
|
|
4325
4326
|
* @public
|
|
4326
4327
|
*/
|
|
4327
|
-
LogType?: LogType;
|
|
4328
|
+
LogType?: LogType | undefined;
|
|
4328
4329
|
/**
|
|
4329
4330
|
* <p>Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context
|
|
4330
4331
|
* object.</p>
|
|
4331
4332
|
* @public
|
|
4332
4333
|
*/
|
|
4333
|
-
ClientContext?: string;
|
|
4334
|
+
ClientContext?: string | undefined;
|
|
4334
4335
|
/**
|
|
4335
4336
|
* <p>The alias name.</p>
|
|
4336
4337
|
* @public
|
|
4337
4338
|
*/
|
|
4338
|
-
Qualifier?: string;
|
|
4339
|
+
Qualifier?: string | undefined;
|
|
4339
4340
|
/**
|
|
4340
4341
|
* <p>The JSON that you want to provide to your Lambda function as input.</p>
|
|
4341
4342
|
* <p>You can enter the JSON directly. For example, <code>--payload '\{ "key": "value" \}'</code>. You can also
|
|
4342
4343
|
* specify a file path. For example, <code>--payload file://payload.json</code>.</p>
|
|
4343
4344
|
* @public
|
|
4344
4345
|
*/
|
|
4345
|
-
Payload?: Uint8Array;
|
|
4346
|
+
Payload?: Uint8Array | undefined;
|
|
4346
4347
|
}
|
|
4347
4348
|
/**
|
|
4348
4349
|
* <p>A response confirming that the event stream is complete.</p>
|
|
@@ -4353,17 +4354,17 @@ export interface InvokeWithResponseStreamCompleteEvent {
|
|
|
4353
4354
|
* <p>An error code.</p>
|
|
4354
4355
|
* @public
|
|
4355
4356
|
*/
|
|
4356
|
-
ErrorCode?: string;
|
|
4357
|
+
ErrorCode?: string | undefined;
|
|
4357
4358
|
/**
|
|
4358
4359
|
* <p>The details of any returned error.</p>
|
|
4359
4360
|
* @public
|
|
4360
4361
|
*/
|
|
4361
|
-
ErrorDetails?: string;
|
|
4362
|
+
ErrorDetails?: string | undefined;
|
|
4362
4363
|
/**
|
|
4363
4364
|
* <p>The last 4 KB of the execution log, which is base64-encoded.</p>
|
|
4364
4365
|
* @public
|
|
4365
4366
|
*/
|
|
4366
|
-
LogResult?: string;
|
|
4367
|
+
LogResult?: string | undefined;
|
|
4367
4368
|
}
|
|
4368
4369
|
/**
|
|
4369
4370
|
* <p>A chunk of the streamed response payload.</p>
|
|
@@ -4374,7 +4375,7 @@ export interface InvokeResponseStreamUpdate {
|
|
|
4374
4375
|
* <p>Data returned by your Lambda function.</p>
|
|
4375
4376
|
* @public
|
|
4376
4377
|
*/
|
|
4377
|
-
Payload?: Uint8Array;
|
|
4378
|
+
Payload?: Uint8Array | undefined;
|
|
4378
4379
|
}
|
|
4379
4380
|
/**
|
|
4380
4381
|
* <p>An object that includes a chunk of the response payload. When the stream has ended, Lambda includes a <code>InvokeComplete</code> object.</p>
|
|
@@ -4429,23 +4430,23 @@ export interface InvokeWithResponseStreamResponse {
|
|
|
4429
4430
|
* invocation type, this status code is 204.</p>
|
|
4430
4431
|
* @public
|
|
4431
4432
|
*/
|
|
4432
|
-
StatusCode?: number;
|
|
4433
|
+
StatusCode?: number | undefined;
|
|
4433
4434
|
/**
|
|
4434
4435
|
* <p>The version of the function that executed. When you invoke a function with an alias, this
|
|
4435
4436
|
* indicates which version the alias resolved to.</p>
|
|
4436
4437
|
* @public
|
|
4437
4438
|
*/
|
|
4438
|
-
ExecutedVersion?: string;
|
|
4439
|
+
ExecutedVersion?: string | undefined;
|
|
4439
4440
|
/**
|
|
4440
4441
|
* <p>The stream of response payloads.</p>
|
|
4441
4442
|
* @public
|
|
4442
4443
|
*/
|
|
4443
|
-
EventStream?: AsyncIterable<InvokeWithResponseStreamResponseEvent
|
|
4444
|
+
EventStream?: AsyncIterable<InvokeWithResponseStreamResponseEvent> | undefined;
|
|
4444
4445
|
/**
|
|
4445
4446
|
* <p>The type of data the stream is returning.</p>
|
|
4446
4447
|
* @public
|
|
4447
4448
|
*/
|
|
4448
|
-
ResponseStreamContentType?: string;
|
|
4449
|
+
ResponseStreamContentType?: string | undefined;
|
|
4449
4450
|
}
|
|
4450
4451
|
/**
|
|
4451
4452
|
* @public
|
|
@@ -4479,17 +4480,17 @@ export interface ListAliasesRequest {
|
|
|
4479
4480
|
* <p>Specify a function version to only list aliases that invoke that version.</p>
|
|
4480
4481
|
* @public
|
|
4481
4482
|
*/
|
|
4482
|
-
FunctionVersion?: string;
|
|
4483
|
+
FunctionVersion?: string | undefined;
|
|
4483
4484
|
/**
|
|
4484
4485
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4485
4486
|
* @public
|
|
4486
4487
|
*/
|
|
4487
|
-
Marker?: string;
|
|
4488
|
+
Marker?: string | undefined;
|
|
4488
4489
|
/**
|
|
4489
4490
|
* <p>Limit the number of aliases returned.</p>
|
|
4490
4491
|
* @public
|
|
4491
4492
|
*/
|
|
4492
|
-
MaxItems?: number;
|
|
4493
|
+
MaxItems?: number | undefined;
|
|
4493
4494
|
}
|
|
4494
4495
|
/**
|
|
4495
4496
|
* @public
|
|
@@ -4499,12 +4500,12 @@ export interface ListAliasesResponse {
|
|
|
4499
4500
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4500
4501
|
* @public
|
|
4501
4502
|
*/
|
|
4502
|
-
NextMarker?: string;
|
|
4503
|
+
NextMarker?: string | undefined;
|
|
4503
4504
|
/**
|
|
4504
4505
|
* <p>A list of aliases.</p>
|
|
4505
4506
|
* @public
|
|
4506
4507
|
*/
|
|
4507
|
-
Aliases?: AliasConfiguration[];
|
|
4508
|
+
Aliases?: AliasConfiguration[] | undefined;
|
|
4508
4509
|
}
|
|
4509
4510
|
/**
|
|
4510
4511
|
* @public
|
|
@@ -4514,12 +4515,12 @@ export interface ListCodeSigningConfigsRequest {
|
|
|
4514
4515
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4515
4516
|
* @public
|
|
4516
4517
|
*/
|
|
4517
|
-
Marker?: string;
|
|
4518
|
+
Marker?: string | undefined;
|
|
4518
4519
|
/**
|
|
4519
4520
|
* <p>Maximum number of items to return.</p>
|
|
4520
4521
|
* @public
|
|
4521
4522
|
*/
|
|
4522
|
-
MaxItems?: number;
|
|
4523
|
+
MaxItems?: number | undefined;
|
|
4523
4524
|
}
|
|
4524
4525
|
/**
|
|
4525
4526
|
* @public
|
|
@@ -4529,12 +4530,12 @@ export interface ListCodeSigningConfigsResponse {
|
|
|
4529
4530
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4530
4531
|
* @public
|
|
4531
4532
|
*/
|
|
4532
|
-
NextMarker?: string;
|
|
4533
|
+
NextMarker?: string | undefined;
|
|
4533
4534
|
/**
|
|
4534
4535
|
* <p>The code signing configurations</p>
|
|
4535
4536
|
* @public
|
|
4536
4537
|
*/
|
|
4537
|
-
CodeSigningConfigs?: CodeSigningConfig[];
|
|
4538
|
+
CodeSigningConfigs?: CodeSigningConfig[] | undefined;
|
|
4538
4539
|
}
|
|
4539
4540
|
/**
|
|
4540
4541
|
* @public
|
|
@@ -4570,7 +4571,7 @@ export interface ListEventSourceMappingsRequest {
|
|
|
4570
4571
|
* </ul>
|
|
4571
4572
|
* @public
|
|
4572
4573
|
*/
|
|
4573
|
-
EventSourceArn?: string;
|
|
4574
|
+
EventSourceArn?: string | undefined;
|
|
4574
4575
|
/**
|
|
4575
4576
|
* <p>The name or ARN of the Lambda function.</p>
|
|
4576
4577
|
* <p class="title">
|
|
@@ -4598,18 +4599,18 @@ export interface ListEventSourceMappingsRequest {
|
|
|
4598
4599
|
* characters in length.</p>
|
|
4599
4600
|
* @public
|
|
4600
4601
|
*/
|
|
4601
|
-
FunctionName?: string;
|
|
4602
|
+
FunctionName?: string | undefined;
|
|
4602
4603
|
/**
|
|
4603
4604
|
* <p>A pagination token returned by a previous call.</p>
|
|
4604
4605
|
* @public
|
|
4605
4606
|
*/
|
|
4606
|
-
Marker?: string;
|
|
4607
|
+
Marker?: string | undefined;
|
|
4607
4608
|
/**
|
|
4608
4609
|
* <p>The maximum number of event source mappings to return. Note that ListEventSourceMappings returns a maximum of
|
|
4609
4610
|
* 100 items in each response, even if you set the number higher.</p>
|
|
4610
4611
|
* @public
|
|
4611
4612
|
*/
|
|
4612
|
-
MaxItems?: number;
|
|
4613
|
+
MaxItems?: number | undefined;
|
|
4613
4614
|
}
|
|
4614
4615
|
/**
|
|
4615
4616
|
* @public
|
|
@@ -4619,12 +4620,12 @@ export interface ListEventSourceMappingsResponse {
|
|
|
4619
4620
|
* <p>A pagination token that's returned when the response doesn't contain all event source mappings.</p>
|
|
4620
4621
|
* @public
|
|
4621
4622
|
*/
|
|
4622
|
-
NextMarker?: string;
|
|
4623
|
+
NextMarker?: string | undefined;
|
|
4623
4624
|
/**
|
|
4624
4625
|
* <p>A list of event source mappings.</p>
|
|
4625
4626
|
* @public
|
|
4626
4627
|
*/
|
|
4627
|
-
EventSourceMappings?: EventSourceMappingConfiguration[];
|
|
4628
|
+
EventSourceMappings?: EventSourceMappingConfiguration[] | undefined;
|
|
4628
4629
|
}
|
|
4629
4630
|
/**
|
|
4630
4631
|
* @public
|
|
@@ -4658,12 +4659,12 @@ export interface ListFunctionEventInvokeConfigsRequest {
|
|
|
4658
4659
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4659
4660
|
* @public
|
|
4660
4661
|
*/
|
|
4661
|
-
Marker?: string;
|
|
4662
|
+
Marker?: string | undefined;
|
|
4662
4663
|
/**
|
|
4663
4664
|
* <p>The maximum number of configurations to return.</p>
|
|
4664
4665
|
* @public
|
|
4665
4666
|
*/
|
|
4666
|
-
MaxItems?: number;
|
|
4667
|
+
MaxItems?: number | undefined;
|
|
4667
4668
|
}
|
|
4668
4669
|
/**
|
|
4669
4670
|
* @public
|
|
@@ -4673,12 +4674,12 @@ export interface ListFunctionEventInvokeConfigsResponse {
|
|
|
4673
4674
|
* <p>A list of configurations.</p>
|
|
4674
4675
|
* @public
|
|
4675
4676
|
*/
|
|
4676
|
-
FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[];
|
|
4677
|
+
FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[] | undefined;
|
|
4677
4678
|
/**
|
|
4678
4679
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4679
4680
|
* @public
|
|
4680
4681
|
*/
|
|
4681
|
-
NextMarker?: string;
|
|
4682
|
+
NextMarker?: string | undefined;
|
|
4682
4683
|
}
|
|
4683
4684
|
/**
|
|
4684
4685
|
* @public
|
|
@@ -4702,23 +4703,23 @@ export interface ListFunctionsRequest {
|
|
|
4702
4703
|
* <code>ALL</code>.</p>
|
|
4703
4704
|
* @public
|
|
4704
4705
|
*/
|
|
4705
|
-
MasterRegion?: string;
|
|
4706
|
+
MasterRegion?: string | undefined;
|
|
4706
4707
|
/**
|
|
4707
4708
|
* <p>Set to <code>ALL</code> to include entries for all published versions of each function.</p>
|
|
4708
4709
|
* @public
|
|
4709
4710
|
*/
|
|
4710
|
-
FunctionVersion?: FunctionVersion;
|
|
4711
|
+
FunctionVersion?: FunctionVersion | undefined;
|
|
4711
4712
|
/**
|
|
4712
4713
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4713
4714
|
* @public
|
|
4714
4715
|
*/
|
|
4715
|
-
Marker?: string;
|
|
4716
|
+
Marker?: string | undefined;
|
|
4716
4717
|
/**
|
|
4717
4718
|
* <p>The maximum number of functions to return in the response. Note that <code>ListFunctions</code> returns a maximum of 50 items in each response,
|
|
4718
4719
|
* even if you set the number higher.</p>
|
|
4719
4720
|
* @public
|
|
4720
4721
|
*/
|
|
4721
|
-
MaxItems?: number;
|
|
4722
|
+
MaxItems?: number | undefined;
|
|
4722
4723
|
}
|
|
4723
4724
|
/**
|
|
4724
4725
|
* <p>A list of Lambda functions.</p>
|
|
@@ -4729,12 +4730,12 @@ export interface ListFunctionsResponse {
|
|
|
4729
4730
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4730
4731
|
* @public
|
|
4731
4732
|
*/
|
|
4732
|
-
NextMarker?: string;
|
|
4733
|
+
NextMarker?: string | undefined;
|
|
4733
4734
|
/**
|
|
4734
4735
|
* <p>A list of Lambda functions.</p>
|
|
4735
4736
|
* @public
|
|
4736
4737
|
*/
|
|
4737
|
-
Functions?: FunctionConfiguration[];
|
|
4738
|
+
Functions?: FunctionConfiguration[] | undefined;
|
|
4738
4739
|
}
|
|
4739
4740
|
/**
|
|
4740
4741
|
* @public
|
|
@@ -4749,12 +4750,12 @@ export interface ListFunctionsByCodeSigningConfigRequest {
|
|
|
4749
4750
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4750
4751
|
* @public
|
|
4751
4752
|
*/
|
|
4752
|
-
Marker?: string;
|
|
4753
|
+
Marker?: string | undefined;
|
|
4753
4754
|
/**
|
|
4754
4755
|
* <p>Maximum number of items to return.</p>
|
|
4755
4756
|
* @public
|
|
4756
4757
|
*/
|
|
4757
|
-
MaxItems?: number;
|
|
4758
|
+
MaxItems?: number | undefined;
|
|
4758
4759
|
}
|
|
4759
4760
|
/**
|
|
4760
4761
|
* @public
|
|
@@ -4764,12 +4765,12 @@ export interface ListFunctionsByCodeSigningConfigResponse {
|
|
|
4764
4765
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4765
4766
|
* @public
|
|
4766
4767
|
*/
|
|
4767
|
-
NextMarker?: string;
|
|
4768
|
+
NextMarker?: string | undefined;
|
|
4768
4769
|
/**
|
|
4769
4770
|
* <p>The function ARNs. </p>
|
|
4770
4771
|
* @public
|
|
4771
4772
|
*/
|
|
4772
|
-
FunctionArns?: string[];
|
|
4773
|
+
FunctionArns?: string[] | undefined;
|
|
4773
4774
|
}
|
|
4774
4775
|
/**
|
|
4775
4776
|
* @public
|
|
@@ -4803,13 +4804,13 @@ export interface ListFunctionUrlConfigsRequest {
|
|
|
4803
4804
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4804
4805
|
* @public
|
|
4805
4806
|
*/
|
|
4806
|
-
Marker?: string;
|
|
4807
|
+
Marker?: string | undefined;
|
|
4807
4808
|
/**
|
|
4808
4809
|
* <p>The maximum number of function URLs to return in the response. Note that <code>ListFunctionUrlConfigs</code>
|
|
4809
4810
|
* returns a maximum of 50 items in each response, even if you set the number higher.</p>
|
|
4810
4811
|
* @public
|
|
4811
4812
|
*/
|
|
4812
|
-
MaxItems?: number;
|
|
4813
|
+
MaxItems?: number | undefined;
|
|
4813
4814
|
}
|
|
4814
4815
|
/**
|
|
4815
4816
|
* <p>Details about a Lambda function URL.</p>
|
|
@@ -4841,7 +4842,7 @@ export interface FunctionUrlConfig {
|
|
|
4841
4842
|
* for your function URL.</p>
|
|
4842
4843
|
* @public
|
|
4843
4844
|
*/
|
|
4844
|
-
Cors?: Cors;
|
|
4845
|
+
Cors?: Cors | undefined;
|
|
4845
4846
|
/**
|
|
4846
4847
|
* <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
|
|
4847
4848
|
* users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
|
|
@@ -4867,7 +4868,7 @@ export interface FunctionUrlConfig {
|
|
|
4867
4868
|
* </ul>
|
|
4868
4869
|
* @public
|
|
4869
4870
|
*/
|
|
4870
|
-
InvokeMode?: InvokeMode;
|
|
4871
|
+
InvokeMode?: InvokeMode | undefined;
|
|
4871
4872
|
}
|
|
4872
4873
|
/**
|
|
4873
4874
|
* @public
|
|
@@ -4882,7 +4883,7 @@ export interface ListFunctionUrlConfigsResponse {
|
|
|
4882
4883
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4883
4884
|
* @public
|
|
4884
4885
|
*/
|
|
4885
|
-
NextMarker?: string;
|
|
4886
|
+
NextMarker?: string | undefined;
|
|
4886
4887
|
}
|
|
4887
4888
|
/**
|
|
4888
4889
|
* @public
|
|
@@ -4896,23 +4897,23 @@ export interface ListLayersRequest {
|
|
|
4896
4897
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
4897
4898
|
* @public
|
|
4898
4899
|
*/
|
|
4899
|
-
CompatibleRuntime?: Runtime;
|
|
4900
|
+
CompatibleRuntime?: Runtime | undefined;
|
|
4900
4901
|
/**
|
|
4901
4902
|
* <p>A pagination token returned by a previous call.</p>
|
|
4902
4903
|
* @public
|
|
4903
4904
|
*/
|
|
4904
|
-
Marker?: string;
|
|
4905
|
+
Marker?: string | undefined;
|
|
4905
4906
|
/**
|
|
4906
4907
|
* <p>The maximum number of layers to return.</p>
|
|
4907
4908
|
* @public
|
|
4908
4909
|
*/
|
|
4909
|
-
MaxItems?: number;
|
|
4910
|
+
MaxItems?: number | undefined;
|
|
4910
4911
|
/**
|
|
4911
4912
|
* <p>The compatible
|
|
4912
4913
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
|
|
4913
4914
|
* @public
|
|
4914
4915
|
*/
|
|
4915
|
-
CompatibleArchitecture?: Architecture;
|
|
4916
|
+
CompatibleArchitecture?: Architecture | undefined;
|
|
4916
4917
|
}
|
|
4917
4918
|
/**
|
|
4918
4919
|
* <p>Details about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
@@ -4924,22 +4925,22 @@ export interface LayerVersionsListItem {
|
|
|
4924
4925
|
* <p>The ARN of the layer version.</p>
|
|
4925
4926
|
* @public
|
|
4926
4927
|
*/
|
|
4927
|
-
LayerVersionArn?: string;
|
|
4928
|
+
LayerVersionArn?: string | undefined;
|
|
4928
4929
|
/**
|
|
4929
4930
|
* <p>The version number.</p>
|
|
4930
4931
|
* @public
|
|
4931
4932
|
*/
|
|
4932
|
-
Version?: number;
|
|
4933
|
+
Version?: number | undefined;
|
|
4933
4934
|
/**
|
|
4934
4935
|
* <p>The description of the version.</p>
|
|
4935
4936
|
* @public
|
|
4936
4937
|
*/
|
|
4937
|
-
Description?: string;
|
|
4938
|
+
Description?: string | undefined;
|
|
4938
4939
|
/**
|
|
4939
4940
|
* <p>The date that the version was created, in ISO 8601 format. For example, <code>2018-11-27T15:10:45.123+0000</code>.</p>
|
|
4940
4941
|
* @public
|
|
4941
4942
|
*/
|
|
4942
|
-
CreatedDate?: string;
|
|
4943
|
+
CreatedDate?: string | undefined;
|
|
4943
4944
|
/**
|
|
4944
4945
|
* <p>The layer's compatible runtimes.</p>
|
|
4945
4946
|
* <p>The following list includes deprecated runtimes. For more information, see
|
|
@@ -4948,18 +4949,18 @@ export interface LayerVersionsListItem {
|
|
|
4948
4949
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
4949
4950
|
* @public
|
|
4950
4951
|
*/
|
|
4951
|
-
CompatibleRuntimes?: Runtime[];
|
|
4952
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
4952
4953
|
/**
|
|
4953
4954
|
* <p>The layer's open-source license.</p>
|
|
4954
4955
|
* @public
|
|
4955
4956
|
*/
|
|
4956
|
-
LicenseInfo?: string;
|
|
4957
|
+
LicenseInfo?: string | undefined;
|
|
4957
4958
|
/**
|
|
4958
4959
|
* <p>A list of compatible
|
|
4959
4960
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
4960
4961
|
* @public
|
|
4961
4962
|
*/
|
|
4962
|
-
CompatibleArchitectures?: Architecture[];
|
|
4963
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
4963
4964
|
}
|
|
4964
4965
|
/**
|
|
4965
4966
|
* <p>Details about an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
@@ -4971,17 +4972,17 @@ export interface LayersListItem {
|
|
|
4971
4972
|
* <p>The name of the layer.</p>
|
|
4972
4973
|
* @public
|
|
4973
4974
|
*/
|
|
4974
|
-
LayerName?: string;
|
|
4975
|
+
LayerName?: string | undefined;
|
|
4975
4976
|
/**
|
|
4976
4977
|
* <p>The Amazon Resource Name (ARN) of the function layer.</p>
|
|
4977
4978
|
* @public
|
|
4978
4979
|
*/
|
|
4979
|
-
LayerArn?: string;
|
|
4980
|
+
LayerArn?: string | undefined;
|
|
4980
4981
|
/**
|
|
4981
4982
|
* <p>The newest version of the layer.</p>
|
|
4982
4983
|
* @public
|
|
4983
4984
|
*/
|
|
4984
|
-
LatestMatchingVersion?: LayerVersionsListItem;
|
|
4985
|
+
LatestMatchingVersion?: LayerVersionsListItem | undefined;
|
|
4985
4986
|
}
|
|
4986
4987
|
/**
|
|
4987
4988
|
* @public
|
|
@@ -4991,12 +4992,12 @@ export interface ListLayersResponse {
|
|
|
4991
4992
|
* <p>A pagination token returned when the response doesn't contain all layers.</p>
|
|
4992
4993
|
* @public
|
|
4993
4994
|
*/
|
|
4994
|
-
NextMarker?: string;
|
|
4995
|
+
NextMarker?: string | undefined;
|
|
4995
4996
|
/**
|
|
4996
4997
|
* <p>A list of function layers.</p>
|
|
4997
4998
|
* @public
|
|
4998
4999
|
*/
|
|
4999
|
-
Layers?: LayersListItem[];
|
|
5000
|
+
Layers?: LayersListItem[] | undefined;
|
|
5000
5001
|
}
|
|
5001
5002
|
/**
|
|
5002
5003
|
* @public
|
|
@@ -5010,7 +5011,7 @@ export interface ListLayerVersionsRequest {
|
|
|
5010
5011
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
5011
5012
|
* @public
|
|
5012
5013
|
*/
|
|
5013
|
-
CompatibleRuntime?: Runtime;
|
|
5014
|
+
CompatibleRuntime?: Runtime | undefined;
|
|
5014
5015
|
/**
|
|
5015
5016
|
* <p>The name or Amazon Resource Name (ARN) of the layer.</p>
|
|
5016
5017
|
* @public
|
|
@@ -5020,18 +5021,18 @@ export interface ListLayerVersionsRequest {
|
|
|
5020
5021
|
* <p>A pagination token returned by a previous call.</p>
|
|
5021
5022
|
* @public
|
|
5022
5023
|
*/
|
|
5023
|
-
Marker?: string;
|
|
5024
|
+
Marker?: string | undefined;
|
|
5024
5025
|
/**
|
|
5025
5026
|
* <p>The maximum number of versions to return.</p>
|
|
5026
5027
|
* @public
|
|
5027
5028
|
*/
|
|
5028
|
-
MaxItems?: number;
|
|
5029
|
+
MaxItems?: number | undefined;
|
|
5029
5030
|
/**
|
|
5030
5031
|
* <p>The compatible
|
|
5031
5032
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
|
|
5032
5033
|
* @public
|
|
5033
5034
|
*/
|
|
5034
|
-
CompatibleArchitecture?: Architecture;
|
|
5035
|
+
CompatibleArchitecture?: Architecture | undefined;
|
|
5035
5036
|
}
|
|
5036
5037
|
/**
|
|
5037
5038
|
* @public
|
|
@@ -5041,12 +5042,12 @@ export interface ListLayerVersionsResponse {
|
|
|
5041
5042
|
* <p>A pagination token returned when the response doesn't contain all versions.</p>
|
|
5042
5043
|
* @public
|
|
5043
5044
|
*/
|
|
5044
|
-
NextMarker?: string;
|
|
5045
|
+
NextMarker?: string | undefined;
|
|
5045
5046
|
/**
|
|
5046
5047
|
* <p>A list of versions.</p>
|
|
5047
5048
|
* @public
|
|
5048
5049
|
*/
|
|
5049
|
-
LayerVersions?: LayerVersionsListItem[];
|
|
5050
|
+
LayerVersions?: LayerVersionsListItem[] | undefined;
|
|
5050
5051
|
}
|
|
5051
5052
|
/**
|
|
5052
5053
|
* @public
|
|
@@ -5080,12 +5081,12 @@ export interface ListProvisionedConcurrencyConfigsRequest {
|
|
|
5080
5081
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
5081
5082
|
* @public
|
|
5082
5083
|
*/
|
|
5083
|
-
Marker?: string;
|
|
5084
|
+
Marker?: string | undefined;
|
|
5084
5085
|
/**
|
|
5085
5086
|
* <p>Specify a number to limit the number of configurations returned.</p>
|
|
5086
5087
|
* @public
|
|
5087
5088
|
*/
|
|
5088
|
-
MaxItems?: number;
|
|
5089
|
+
MaxItems?: number | undefined;
|
|
5089
5090
|
}
|
|
5090
5091
|
/**
|
|
5091
5092
|
* <p>Details about the provisioned concurrency configuration for a function alias or version.</p>
|
|
@@ -5096,37 +5097,37 @@ export interface ProvisionedConcurrencyConfigListItem {
|
|
|
5096
5097
|
* <p>The Amazon Resource Name (ARN) of the alias or version.</p>
|
|
5097
5098
|
* @public
|
|
5098
5099
|
*/
|
|
5099
|
-
FunctionArn?: string;
|
|
5100
|
+
FunctionArn?: string | undefined;
|
|
5100
5101
|
/**
|
|
5101
5102
|
* <p>The amount of provisioned concurrency requested.</p>
|
|
5102
5103
|
* @public
|
|
5103
5104
|
*/
|
|
5104
|
-
RequestedProvisionedConcurrentExecutions?: number;
|
|
5105
|
+
RequestedProvisionedConcurrentExecutions?: number | undefined;
|
|
5105
5106
|
/**
|
|
5106
5107
|
* <p>The amount of provisioned concurrency available.</p>
|
|
5107
5108
|
* @public
|
|
5108
5109
|
*/
|
|
5109
|
-
AvailableProvisionedConcurrentExecutions?: number;
|
|
5110
|
+
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
5110
5111
|
/**
|
|
5111
5112
|
* <p>The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.</p>
|
|
5112
5113
|
* @public
|
|
5113
5114
|
*/
|
|
5114
|
-
AllocatedProvisionedConcurrentExecutions?: number;
|
|
5115
|
+
AllocatedProvisionedConcurrentExecutions?: number | undefined;
|
|
5115
5116
|
/**
|
|
5116
5117
|
* <p>The status of the allocation process.</p>
|
|
5117
5118
|
* @public
|
|
5118
5119
|
*/
|
|
5119
|
-
Status?: ProvisionedConcurrencyStatusEnum;
|
|
5120
|
+
Status?: ProvisionedConcurrencyStatusEnum | undefined;
|
|
5120
5121
|
/**
|
|
5121
5122
|
* <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
|
|
5122
5123
|
* @public
|
|
5123
5124
|
*/
|
|
5124
|
-
StatusReason?: string;
|
|
5125
|
+
StatusReason?: string | undefined;
|
|
5125
5126
|
/**
|
|
5126
5127
|
* <p>The date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>.</p>
|
|
5127
5128
|
* @public
|
|
5128
5129
|
*/
|
|
5129
|
-
LastModified?: string;
|
|
5130
|
+
LastModified?: string | undefined;
|
|
5130
5131
|
}
|
|
5131
5132
|
/**
|
|
5132
5133
|
* @public
|
|
@@ -5136,12 +5137,12 @@ export interface ListProvisionedConcurrencyConfigsResponse {
|
|
|
5136
5137
|
* <p>A list of provisioned concurrency configurations.</p>
|
|
5137
5138
|
* @public
|
|
5138
5139
|
*/
|
|
5139
|
-
ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigListItem[];
|
|
5140
|
+
ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigListItem[] | undefined;
|
|
5140
5141
|
/**
|
|
5141
5142
|
* <p>The pagination token that's included if more results are available.</p>
|
|
5142
5143
|
* @public
|
|
5143
5144
|
*/
|
|
5144
|
-
NextMarker?: string;
|
|
5145
|
+
NextMarker?: string | undefined;
|
|
5145
5146
|
}
|
|
5146
5147
|
/**
|
|
5147
5148
|
* @public
|
|
@@ -5162,7 +5163,7 @@ export interface ListTagsResponse {
|
|
|
5162
5163
|
* <p>The function's tags.</p>
|
|
5163
5164
|
* @public
|
|
5164
5165
|
*/
|
|
5165
|
-
Tags?: Record<string, string
|
|
5166
|
+
Tags?: Record<string, string> | undefined;
|
|
5166
5167
|
}
|
|
5167
5168
|
/**
|
|
5168
5169
|
* @public
|
|
@@ -5196,13 +5197,13 @@ export interface ListVersionsByFunctionRequest {
|
|
|
5196
5197
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
5197
5198
|
* @public
|
|
5198
5199
|
*/
|
|
5199
|
-
Marker?: string;
|
|
5200
|
+
Marker?: string | undefined;
|
|
5200
5201
|
/**
|
|
5201
5202
|
* <p>The maximum number of versions to return. Note that <code>ListVersionsByFunction</code> returns a maximum of 50 items in each response,
|
|
5202
5203
|
* even if you set the number higher.</p>
|
|
5203
5204
|
* @public
|
|
5204
5205
|
*/
|
|
5205
|
-
MaxItems?: number;
|
|
5206
|
+
MaxItems?: number | undefined;
|
|
5206
5207
|
}
|
|
5207
5208
|
/**
|
|
5208
5209
|
* @public
|
|
@@ -5212,12 +5213,12 @@ export interface ListVersionsByFunctionResponse {
|
|
|
5212
5213
|
* <p>The pagination token that's included if more results are available.</p>
|
|
5213
5214
|
* @public
|
|
5214
5215
|
*/
|
|
5215
|
-
NextMarker?: string;
|
|
5216
|
+
NextMarker?: string | undefined;
|
|
5216
5217
|
/**
|
|
5217
5218
|
* <p>A list of Lambda function versions.</p>
|
|
5218
5219
|
* @public
|
|
5219
5220
|
*/
|
|
5220
|
-
Versions?: FunctionConfiguration[];
|
|
5221
|
+
Versions?: FunctionConfiguration[] | undefined;
|
|
5221
5222
|
}
|
|
5222
5223
|
/**
|
|
5223
5224
|
* <p>A ZIP archive that contains the contents of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
@@ -5230,23 +5231,23 @@ export interface LayerVersionContentInput {
|
|
|
5230
5231
|
* <p>The Amazon S3 bucket of the layer archive.</p>
|
|
5231
5232
|
* @public
|
|
5232
5233
|
*/
|
|
5233
|
-
S3Bucket?: string;
|
|
5234
|
+
S3Bucket?: string | undefined;
|
|
5234
5235
|
/**
|
|
5235
5236
|
* <p>The Amazon S3 key of the layer archive.</p>
|
|
5236
5237
|
* @public
|
|
5237
5238
|
*/
|
|
5238
|
-
S3Key?: string;
|
|
5239
|
+
S3Key?: string | undefined;
|
|
5239
5240
|
/**
|
|
5240
5241
|
* <p>For versioned objects, the version of the layer archive object to use.</p>
|
|
5241
5242
|
* @public
|
|
5242
5243
|
*/
|
|
5243
|
-
S3ObjectVersion?: string;
|
|
5244
|
+
S3ObjectVersion?: string | undefined;
|
|
5244
5245
|
/**
|
|
5245
5246
|
* <p>The base64-encoded contents of the layer archive. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for
|
|
5246
5247
|
* you.</p>
|
|
5247
5248
|
* @public
|
|
5248
5249
|
*/
|
|
5249
|
-
ZipFile?: Uint8Array;
|
|
5250
|
+
ZipFile?: Uint8Array | undefined;
|
|
5250
5251
|
}
|
|
5251
5252
|
/**
|
|
5252
5253
|
* @public
|
|
@@ -5261,7 +5262,7 @@ export interface PublishLayerVersionRequest {
|
|
|
5261
5262
|
* <p>The description of the version.</p>
|
|
5262
5263
|
* @public
|
|
5263
5264
|
*/
|
|
5264
|
-
Description?: string;
|
|
5265
|
+
Description?: string | undefined;
|
|
5265
5266
|
/**
|
|
5266
5267
|
* <p>The function layer archive.</p>
|
|
5267
5268
|
* @public
|
|
@@ -5273,7 +5274,7 @@ export interface PublishLayerVersionRequest {
|
|
|
5273
5274
|
* <p>The following list includes deprecated runtimes. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-support-policy">Runtime deprecation policy</a>.</p>
|
|
5274
5275
|
* @public
|
|
5275
5276
|
*/
|
|
5276
|
-
CompatibleRuntimes?: Runtime[];
|
|
5277
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
5277
5278
|
/**
|
|
5278
5279
|
* <p>The layer's software license. It can be any of the following:</p>
|
|
5279
5280
|
* <ul>
|
|
@@ -5291,13 +5292,13 @@ export interface PublishLayerVersionRequest {
|
|
|
5291
5292
|
* </ul>
|
|
5292
5293
|
* @public
|
|
5293
5294
|
*/
|
|
5294
|
-
LicenseInfo?: string;
|
|
5295
|
+
LicenseInfo?: string | undefined;
|
|
5295
5296
|
/**
|
|
5296
5297
|
* <p>A list of compatible
|
|
5297
5298
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
5298
5299
|
* @public
|
|
5299
5300
|
*/
|
|
5300
|
-
CompatibleArchitectures?: Architecture[];
|
|
5301
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
5301
5302
|
}
|
|
5302
5303
|
/**
|
|
5303
5304
|
* @public
|
|
@@ -5307,32 +5308,32 @@ export interface PublishLayerVersionResponse {
|
|
|
5307
5308
|
* <p>Details about the layer version.</p>
|
|
5308
5309
|
* @public
|
|
5309
5310
|
*/
|
|
5310
|
-
Content?: LayerVersionContentOutput;
|
|
5311
|
+
Content?: LayerVersionContentOutput | undefined;
|
|
5311
5312
|
/**
|
|
5312
5313
|
* <p>The ARN of the layer.</p>
|
|
5313
5314
|
* @public
|
|
5314
5315
|
*/
|
|
5315
|
-
LayerArn?: string;
|
|
5316
|
+
LayerArn?: string | undefined;
|
|
5316
5317
|
/**
|
|
5317
5318
|
* <p>The ARN of the layer version.</p>
|
|
5318
5319
|
* @public
|
|
5319
5320
|
*/
|
|
5320
|
-
LayerVersionArn?: string;
|
|
5321
|
+
LayerVersionArn?: string | undefined;
|
|
5321
5322
|
/**
|
|
5322
5323
|
* <p>The description of the version.</p>
|
|
5323
5324
|
* @public
|
|
5324
5325
|
*/
|
|
5325
|
-
Description?: string;
|
|
5326
|
+
Description?: string | undefined;
|
|
5326
5327
|
/**
|
|
5327
5328
|
* <p>The date that the layer version was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
5328
5329
|
* @public
|
|
5329
5330
|
*/
|
|
5330
|
-
CreatedDate?: string;
|
|
5331
|
+
CreatedDate?: string | undefined;
|
|
5331
5332
|
/**
|
|
5332
5333
|
* <p>The version number.</p>
|
|
5333
5334
|
* @public
|
|
5334
5335
|
*/
|
|
5335
|
-
Version?: number;
|
|
5336
|
+
Version?: number | undefined;
|
|
5336
5337
|
/**
|
|
5337
5338
|
* <p>The layer's compatible runtimes.</p>
|
|
5338
5339
|
* <p>The following list includes deprecated runtimes. For more information, see
|
|
@@ -5341,18 +5342,18 @@ export interface PublishLayerVersionResponse {
|
|
|
5341
5342
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
5342
5343
|
* @public
|
|
5343
5344
|
*/
|
|
5344
|
-
CompatibleRuntimes?: Runtime[];
|
|
5345
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
5345
5346
|
/**
|
|
5346
5347
|
* <p>The layer's software license.</p>
|
|
5347
5348
|
* @public
|
|
5348
5349
|
*/
|
|
5349
|
-
LicenseInfo?: string;
|
|
5350
|
+
LicenseInfo?: string | undefined;
|
|
5350
5351
|
/**
|
|
5351
5352
|
* <p>A list of compatible
|
|
5352
5353
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
5353
5354
|
* @public
|
|
5354
5355
|
*/
|
|
5355
|
-
CompatibleArchitectures?: Architecture[];
|
|
5356
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
5356
5357
|
}
|
|
5357
5358
|
/**
|
|
5358
5359
|
* @public
|
|
@@ -5388,18 +5389,18 @@ export interface PublishVersionRequest {
|
|
|
5388
5389
|
* version that you uploaded from the output of <a>UpdateFunctionCode</a>.</p>
|
|
5389
5390
|
* @public
|
|
5390
5391
|
*/
|
|
5391
|
-
CodeSha256?: string;
|
|
5392
|
+
CodeSha256?: string | undefined;
|
|
5392
5393
|
/**
|
|
5393
5394
|
* <p>A description for the version to override the description in the function configuration.</p>
|
|
5394
5395
|
* @public
|
|
5395
5396
|
*/
|
|
5396
|
-
Description?: string;
|
|
5397
|
+
Description?: string | undefined;
|
|
5397
5398
|
/**
|
|
5398
5399
|
* <p>Only update the function if the revision ID matches the ID that's specified. Use this option to avoid
|
|
5399
5400
|
* publishing a version if the function configuration has changed since you last updated it.</p>
|
|
5400
5401
|
* @public
|
|
5401
5402
|
*/
|
|
5402
|
-
RevisionId?: string;
|
|
5403
|
+
RevisionId?: string | undefined;
|
|
5403
5404
|
}
|
|
5404
5405
|
/**
|
|
5405
5406
|
* @public
|
|
@@ -5535,17 +5536,17 @@ export interface PutFunctionEventInvokeConfigRequest {
|
|
|
5535
5536
|
* <p>A version number or alias name.</p>
|
|
5536
5537
|
* @public
|
|
5537
5538
|
*/
|
|
5538
|
-
Qualifier?: string;
|
|
5539
|
+
Qualifier?: string | undefined;
|
|
5539
5540
|
/**
|
|
5540
5541
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
5541
5542
|
* @public
|
|
5542
5543
|
*/
|
|
5543
|
-
MaximumRetryAttempts?: number;
|
|
5544
|
+
MaximumRetryAttempts?: number | undefined;
|
|
5544
5545
|
/**
|
|
5545
5546
|
* <p>The maximum age of a request that Lambda sends to a function for processing.</p>
|
|
5546
5547
|
* @public
|
|
5547
5548
|
*/
|
|
5548
|
-
MaximumEventAgeInSeconds?: number;
|
|
5549
|
+
MaximumEventAgeInSeconds?: number | undefined;
|
|
5549
5550
|
/**
|
|
5550
5551
|
* <p>A destination for events after they have been sent to a function for processing.</p>
|
|
5551
5552
|
* <p class="title">
|
|
@@ -5571,7 +5572,7 @@ export interface PutFunctionEventInvokeConfigRequest {
|
|
|
5571
5572
|
* </ul>
|
|
5572
5573
|
* @public
|
|
5573
5574
|
*/
|
|
5574
|
-
DestinationConfig?: DestinationConfig;
|
|
5575
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
5575
5576
|
}
|
|
5576
5577
|
/**
|
|
5577
5578
|
* @public
|
|
@@ -5631,7 +5632,7 @@ export interface PutFunctionRecursionConfigResponse {
|
|
|
5631
5632
|
* </p>
|
|
5632
5633
|
* @public
|
|
5633
5634
|
*/
|
|
5634
|
-
RecursiveLoop?: RecursiveLoop;
|
|
5635
|
+
RecursiveLoop?: RecursiveLoop | undefined;
|
|
5635
5636
|
}
|
|
5636
5637
|
/**
|
|
5637
5638
|
* @public
|
|
@@ -5680,32 +5681,32 @@ export interface PutProvisionedConcurrencyConfigResponse {
|
|
|
5680
5681
|
* <p>The amount of provisioned concurrency requested.</p>
|
|
5681
5682
|
* @public
|
|
5682
5683
|
*/
|
|
5683
|
-
RequestedProvisionedConcurrentExecutions?: number;
|
|
5684
|
+
RequestedProvisionedConcurrentExecutions?: number | undefined;
|
|
5684
5685
|
/**
|
|
5685
5686
|
* <p>The amount of provisioned concurrency available.</p>
|
|
5686
5687
|
* @public
|
|
5687
5688
|
*/
|
|
5688
|
-
AvailableProvisionedConcurrentExecutions?: number;
|
|
5689
|
+
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
5689
5690
|
/**
|
|
5690
5691
|
* <p>The amount of provisioned concurrency allocated. When a weighted alias is used during linear and canary deployments, this value fluctuates depending on the amount of concurrency that is provisioned for the function versions.</p>
|
|
5691
5692
|
* @public
|
|
5692
5693
|
*/
|
|
5693
|
-
AllocatedProvisionedConcurrentExecutions?: number;
|
|
5694
|
+
AllocatedProvisionedConcurrentExecutions?: number | undefined;
|
|
5694
5695
|
/**
|
|
5695
5696
|
* <p>The status of the allocation process.</p>
|
|
5696
5697
|
* @public
|
|
5697
5698
|
*/
|
|
5698
|
-
Status?: ProvisionedConcurrencyStatusEnum;
|
|
5699
|
+
Status?: ProvisionedConcurrencyStatusEnum | undefined;
|
|
5699
5700
|
/**
|
|
5700
5701
|
* <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
|
|
5701
5702
|
* @public
|
|
5702
5703
|
*/
|
|
5703
|
-
StatusReason?: string;
|
|
5704
|
+
StatusReason?: string | undefined;
|
|
5704
5705
|
/**
|
|
5705
5706
|
* <p>The date and time that a user last updated the configuration, in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601 format</a>.</p>
|
|
5706
5707
|
* @public
|
|
5707
5708
|
*/
|
|
5708
|
-
LastModified?: string;
|
|
5709
|
+
LastModified?: string | undefined;
|
|
5709
5710
|
}
|
|
5710
5711
|
/**
|
|
5711
5712
|
* @public
|
|
@@ -5740,7 +5741,7 @@ export interface PutRuntimeManagementConfigRequest {
|
|
|
5740
5741
|
* <code>$LATEST</code> version is returned.</p>
|
|
5741
5742
|
* @public
|
|
5742
5743
|
*/
|
|
5743
|
-
Qualifier?: string;
|
|
5744
|
+
Qualifier?: string | undefined;
|
|
5744
5745
|
/**
|
|
5745
5746
|
* <p>Specify the runtime update mode.</p>
|
|
5746
5747
|
* <ul>
|
|
@@ -5772,7 +5773,7 @@ export interface PutRuntimeManagementConfigRequest {
|
|
|
5772
5773
|
* </note>
|
|
5773
5774
|
* @public
|
|
5774
5775
|
*/
|
|
5775
|
-
RuntimeVersionArn?: string;
|
|
5776
|
+
RuntimeVersionArn?: string | undefined;
|
|
5776
5777
|
}
|
|
5777
5778
|
/**
|
|
5778
5779
|
* @public
|
|
@@ -5793,7 +5794,7 @@ export interface PutRuntimeManagementConfigResponse {
|
|
|
5793
5794
|
* is returned.</p>
|
|
5794
5795
|
* @public
|
|
5795
5796
|
*/
|
|
5796
|
-
RuntimeVersionArn?: string;
|
|
5797
|
+
RuntimeVersionArn?: string | undefined;
|
|
5797
5798
|
}
|
|
5798
5799
|
/**
|
|
5799
5800
|
* @public
|
|
@@ -5819,7 +5820,7 @@ export interface RemoveLayerVersionPermissionRequest {
|
|
|
5819
5820
|
* policy that has changed since you last read it.</p>
|
|
5820
5821
|
* @public
|
|
5821
5822
|
*/
|
|
5822
|
-
RevisionId?: string;
|
|
5823
|
+
RevisionId?: string | undefined;
|
|
5823
5824
|
}
|
|
5824
5825
|
/**
|
|
5825
5826
|
* @public
|
|
@@ -5858,13 +5859,13 @@ export interface RemovePermissionRequest {
|
|
|
5858
5859
|
* <p>Specify a version or alias to remove permissions from a published version of the function.</p>
|
|
5859
5860
|
* @public
|
|
5860
5861
|
*/
|
|
5861
|
-
Qualifier?: string;
|
|
5862
|
+
Qualifier?: string | undefined;
|
|
5862
5863
|
/**
|
|
5863
5864
|
* <p>Update the policy only if the revision ID matches the ID that's specified. Use this option to avoid modifying a
|
|
5864
5865
|
* policy that has changed since you last read it.</p>
|
|
5865
5866
|
* @public
|
|
5866
5867
|
*/
|
|
5867
|
-
RevisionId?: string;
|
|
5868
|
+
RevisionId?: string | undefined;
|
|
5868
5869
|
}
|
|
5869
5870
|
/**
|
|
5870
5871
|
* @public
|
|
@@ -5933,24 +5934,24 @@ export interface UpdateAliasRequest {
|
|
|
5933
5934
|
* <p>The function version that the alias invokes.</p>
|
|
5934
5935
|
* @public
|
|
5935
5936
|
*/
|
|
5936
|
-
FunctionVersion?: string;
|
|
5937
|
+
FunctionVersion?: string | undefined;
|
|
5937
5938
|
/**
|
|
5938
5939
|
* <p>A description of the alias.</p>
|
|
5939
5940
|
* @public
|
|
5940
5941
|
*/
|
|
5941
|
-
Description?: string;
|
|
5942
|
+
Description?: string | undefined;
|
|
5942
5943
|
/**
|
|
5943
5944
|
* <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
|
|
5944
5945
|
* configuration</a> of the alias.</p>
|
|
5945
5946
|
* @public
|
|
5946
5947
|
*/
|
|
5947
|
-
RoutingConfig?: AliasRoutingConfiguration;
|
|
5948
|
+
RoutingConfig?: AliasRoutingConfiguration | undefined;
|
|
5948
5949
|
/**
|
|
5949
5950
|
* <p>Only update the alias if the revision ID matches the ID that's specified. Use this option to avoid modifying
|
|
5950
5951
|
* an alias that has changed since you last read it.</p>
|
|
5951
5952
|
* @public
|
|
5952
5953
|
*/
|
|
5953
|
-
RevisionId?: string;
|
|
5954
|
+
RevisionId?: string | undefined;
|
|
5954
5955
|
}
|
|
5955
5956
|
/**
|
|
5956
5957
|
* @public
|
|
@@ -5965,17 +5966,17 @@ export interface UpdateCodeSigningConfigRequest {
|
|
|
5965
5966
|
* <p>Descriptive name for this code signing configuration.</p>
|
|
5966
5967
|
* @public
|
|
5967
5968
|
*/
|
|
5968
|
-
Description?: string;
|
|
5969
|
+
Description?: string | undefined;
|
|
5969
5970
|
/**
|
|
5970
5971
|
* <p>Signing profiles for this code signing configuration.</p>
|
|
5971
5972
|
* @public
|
|
5972
5973
|
*/
|
|
5973
|
-
AllowedPublishers?: AllowedPublishers;
|
|
5974
|
+
AllowedPublishers?: AllowedPublishers | undefined;
|
|
5974
5975
|
/**
|
|
5975
5976
|
* <p>The code signing policy.</p>
|
|
5976
5977
|
* @public
|
|
5977
5978
|
*/
|
|
5978
|
-
CodeSigningPolicies?: CodeSigningPolicies;
|
|
5979
|
+
CodeSigningPolicies?: CodeSigningPolicies | undefined;
|
|
5979
5980
|
}
|
|
5980
5981
|
/**
|
|
5981
5982
|
* @public
|
|
@@ -6023,13 +6024,13 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6023
6024
|
* characters in length.</p>
|
|
6024
6025
|
* @public
|
|
6025
6026
|
*/
|
|
6026
|
-
FunctionName?: string;
|
|
6027
|
+
FunctionName?: string | undefined;
|
|
6027
6028
|
/**
|
|
6028
6029
|
* <p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p>
|
|
6029
6030
|
* <p>Default: True</p>
|
|
6030
6031
|
* @public
|
|
6031
6032
|
*/
|
|
6032
|
-
Enabled?: boolean;
|
|
6033
|
+
Enabled?: boolean | undefined;
|
|
6033
6034
|
/**
|
|
6034
6035
|
* <p>The maximum number of records in each batch that Lambda pulls from your stream or queue and sends to your function. Lambda passes all of the records in the batch to the function in a single call, up to the payload limit for synchronous invocation
|
|
6035
6036
|
* (6 MB).</p>
|
|
@@ -6065,13 +6066,13 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6065
6066
|
* </ul>
|
|
6066
6067
|
* @public
|
|
6067
6068
|
*/
|
|
6068
|
-
BatchSize?: number;
|
|
6069
|
+
BatchSize?: number | undefined;
|
|
6069
6070
|
/**
|
|
6070
6071
|
* <p>An object that defines the filter criteria that
|
|
6071
6072
|
* determine whether Lambda should process an event. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-eventfiltering.html">Lambda event filtering</a>.</p>
|
|
6072
6073
|
* @public
|
|
6073
6074
|
*/
|
|
6074
|
-
FilterCriteria?: FilterCriteria;
|
|
6075
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
6075
6076
|
/**
|
|
6076
6077
|
* <p>The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
|
|
6077
6078
|
* You can configure <code>MaximumBatchingWindowInSeconds</code> to any value from 0 seconds to 300 seconds in increments of seconds.</p>
|
|
@@ -6081,57 +6082,57 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6081
6082
|
* <p>Related setting: For Kinesis, DynamoDB, and Amazon SQS event sources, when you set <code>BatchSize</code> to a value greater than 10, you must set <code>MaximumBatchingWindowInSeconds</code> to at least 1.</p>
|
|
6082
6083
|
* @public
|
|
6083
6084
|
*/
|
|
6084
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
6085
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
6085
6086
|
/**
|
|
6086
6087
|
* <p>(Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Kafka only) A configuration object that specifies the destination of an event after Lambda processes it.</p>
|
|
6087
6088
|
* @public
|
|
6088
6089
|
*/
|
|
6089
|
-
DestinationConfig?: DestinationConfig;
|
|
6090
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
6090
6091
|
/**
|
|
6091
6092
|
* <p>(Kinesis and DynamoDB Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>
|
|
6092
6093
|
* @public
|
|
6093
6094
|
*/
|
|
6094
|
-
MaximumRecordAgeInSeconds?: number;
|
|
6095
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
6095
6096
|
/**
|
|
6096
6097
|
* <p>(Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry.</p>
|
|
6097
6098
|
* @public
|
|
6098
6099
|
*/
|
|
6099
|
-
BisectBatchOnFunctionError?: boolean;
|
|
6100
|
+
BisectBatchOnFunctionError?: boolean | undefined;
|
|
6100
6101
|
/**
|
|
6101
6102
|
* <p>(Kinesis and DynamoDB Streams only) Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.</p>
|
|
6102
6103
|
* @public
|
|
6103
6104
|
*/
|
|
6104
|
-
MaximumRetryAttempts?: number;
|
|
6105
|
+
MaximumRetryAttempts?: number | undefined;
|
|
6105
6106
|
/**
|
|
6106
6107
|
* <p>(Kinesis and DynamoDB Streams only) The number of batches to process from each shard concurrently.</p>
|
|
6107
6108
|
* @public
|
|
6108
6109
|
*/
|
|
6109
|
-
ParallelizationFactor?: number;
|
|
6110
|
+
ParallelizationFactor?: number | undefined;
|
|
6110
6111
|
/**
|
|
6111
6112
|
* <p>An array of authentication protocols or VPC components required to secure your event source.</p>
|
|
6112
6113
|
* @public
|
|
6113
6114
|
*/
|
|
6114
|
-
SourceAccessConfigurations?: SourceAccessConfiguration[];
|
|
6115
|
+
SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
|
|
6115
6116
|
/**
|
|
6116
6117
|
* <p>(Kinesis and DynamoDB Streams only) The duration in seconds of a processing window for DynamoDB and Kinesis Streams event sources. A value of 0 seconds indicates no tumbling window.</p>
|
|
6117
6118
|
* @public
|
|
6118
6119
|
*/
|
|
6119
|
-
TumblingWindowInSeconds?: number;
|
|
6120
|
+
TumblingWindowInSeconds?: number | undefined;
|
|
6120
6121
|
/**
|
|
6121
6122
|
* <p>(Kinesis, DynamoDB Streams, and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
|
|
6122
6123
|
* @public
|
|
6123
6124
|
*/
|
|
6124
|
-
FunctionResponseTypes?: FunctionResponseType[];
|
|
6125
|
+
FunctionResponseTypes?: FunctionResponseType[] | undefined;
|
|
6125
6126
|
/**
|
|
6126
6127
|
* <p>(Amazon SQS only) The scaling configuration for the event source. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html#events-sqs-max-concurrency">Configuring maximum concurrency for Amazon SQS event sources</a>.</p>
|
|
6127
6128
|
* @public
|
|
6128
6129
|
*/
|
|
6129
|
-
ScalingConfig?: ScalingConfig;
|
|
6130
|
+
ScalingConfig?: ScalingConfig | undefined;
|
|
6130
6131
|
/**
|
|
6131
6132
|
* <p>Specific configuration settings for a DocumentDB event source.</p>
|
|
6132
6133
|
* @public
|
|
6133
6134
|
*/
|
|
6134
|
-
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
|
6135
|
+
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
|
|
6135
6136
|
/**
|
|
6136
6137
|
* <p>
|
|
6137
6138
|
* The ARN of the Key Management Service (KMS) customer managed key that Lambda
|
|
@@ -6141,7 +6142,7 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6141
6142
|
* </p>
|
|
6142
6143
|
* @public
|
|
6143
6144
|
*/
|
|
6144
|
-
KMSKeyArn?: string;
|
|
6145
|
+
KMSKeyArn?: string | undefined;
|
|
6145
6146
|
}
|
|
6146
6147
|
/**
|
|
6147
6148
|
* @public
|
|
@@ -6176,59 +6177,59 @@ export interface UpdateFunctionCodeRequest {
|
|
|
6176
6177
|
* handle the encoding for you. Use only with a function defined with a .zip file archive deployment package.</p>
|
|
6177
6178
|
* @public
|
|
6178
6179
|
*/
|
|
6179
|
-
ZipFile?: Uint8Array;
|
|
6180
|
+
ZipFile?: Uint8Array | undefined;
|
|
6180
6181
|
/**
|
|
6181
6182
|
* <p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different
|
|
6182
6183
|
* Amazon Web Services account. Use only with a function defined with a .zip file archive deployment package.</p>
|
|
6183
6184
|
* @public
|
|
6184
6185
|
*/
|
|
6185
|
-
S3Bucket?: string;
|
|
6186
|
+
S3Bucket?: string | undefined;
|
|
6186
6187
|
/**
|
|
6187
6188
|
* <p>The Amazon S3 key of the deployment package. Use only with a function defined with a .zip file archive deployment package.</p>
|
|
6188
6189
|
* @public
|
|
6189
6190
|
*/
|
|
6190
|
-
S3Key?: string;
|
|
6191
|
+
S3Key?: string | undefined;
|
|
6191
6192
|
/**
|
|
6192
6193
|
* <p>For versioned objects, the version of the deployment package object to use.</p>
|
|
6193
6194
|
* @public
|
|
6194
6195
|
*/
|
|
6195
|
-
S3ObjectVersion?: string;
|
|
6196
|
+
S3ObjectVersion?: string | undefined;
|
|
6196
6197
|
/**
|
|
6197
6198
|
* <p>URI of a container image in the Amazon ECR registry. Do not use for a function defined with a .zip
|
|
6198
6199
|
* file archive.</p>
|
|
6199
6200
|
* @public
|
|
6200
6201
|
*/
|
|
6201
|
-
ImageUri?: string;
|
|
6202
|
+
ImageUri?: string | undefined;
|
|
6202
6203
|
/**
|
|
6203
6204
|
* <p>Set to true to publish a new version of the function after updating the code. This has the same effect as
|
|
6204
6205
|
* calling <a>PublishVersion</a> separately.</p>
|
|
6205
6206
|
* @public
|
|
6206
6207
|
*/
|
|
6207
|
-
Publish?: boolean;
|
|
6208
|
+
Publish?: boolean | undefined;
|
|
6208
6209
|
/**
|
|
6209
6210
|
* <p>Set to true to validate the request parameters and access permissions without modifying the function
|
|
6210
6211
|
* code.</p>
|
|
6211
6212
|
* @public
|
|
6212
6213
|
*/
|
|
6213
|
-
DryRun?: boolean;
|
|
6214
|
+
DryRun?: boolean | undefined;
|
|
6214
6215
|
/**
|
|
6215
6216
|
* <p>Update the function only if the revision ID matches the ID that's specified. Use this option to avoid modifying a
|
|
6216
6217
|
* function that has changed since you last read it.</p>
|
|
6217
6218
|
* @public
|
|
6218
6219
|
*/
|
|
6219
|
-
RevisionId?: string;
|
|
6220
|
+
RevisionId?: string | undefined;
|
|
6220
6221
|
/**
|
|
6221
6222
|
* <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64).
|
|
6222
6223
|
* The default value is <code>x86_64</code>.</p>
|
|
6223
6224
|
* @public
|
|
6224
6225
|
*/
|
|
6225
|
-
Architectures?: Architecture[];
|
|
6226
|
+
Architectures?: Architecture[] | undefined;
|
|
6226
6227
|
/**
|
|
6227
6228
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's
|
|
6228
6229
|
* .zip deployment package. If you don't provide a customer managed key, Lambda uses an Amazon Web Services managed key.</p>
|
|
6229
6230
|
* @public
|
|
6230
6231
|
*/
|
|
6231
|
-
SourceKMSKeyArn?: string;
|
|
6232
|
+
SourceKMSKeyArn?: string | undefined;
|
|
6232
6233
|
}
|
|
6233
6234
|
/**
|
|
6234
6235
|
* @public
|
|
@@ -6262,7 +6263,7 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6262
6263
|
* <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
|
|
6263
6264
|
* @public
|
|
6264
6265
|
*/
|
|
6265
|
-
Role?: string;
|
|
6266
|
+
Role?: string | undefined;
|
|
6266
6267
|
/**
|
|
6267
6268
|
* <p>The name of the method within your code that Lambda calls to run your function.
|
|
6268
6269
|
* Handler is required if the deployment package is a .zip file archive. The format includes the
|
|
@@ -6270,36 +6271,36 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6270
6271
|
* see <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-progmodel.html">Lambda programming model</a>.</p>
|
|
6271
6272
|
* @public
|
|
6272
6273
|
*/
|
|
6273
|
-
Handler?: string;
|
|
6274
|
+
Handler?: string | undefined;
|
|
6274
6275
|
/**
|
|
6275
6276
|
* <p>A description of the function.</p>
|
|
6276
6277
|
* @public
|
|
6277
6278
|
*/
|
|
6278
|
-
Description?: string;
|
|
6279
|
+
Description?: string | undefined;
|
|
6279
6280
|
/**
|
|
6280
6281
|
* <p>The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The
|
|
6281
6282
|
* maximum allowed value is 900 seconds. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html">Lambda execution environment</a>.</p>
|
|
6282
6283
|
* @public
|
|
6283
6284
|
*/
|
|
6284
|
-
Timeout?: number;
|
|
6285
|
+
Timeout?: number | undefined;
|
|
6285
6286
|
/**
|
|
6286
6287
|
* <p>The amount of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-memory-console">memory available to the function</a> at runtime.
|
|
6287
6288
|
* Increasing the function memory also increases its CPU allocation. The default value is 128 MB. The value can be any multiple of 1 MB.</p>
|
|
6288
6289
|
* @public
|
|
6289
6290
|
*/
|
|
6290
|
-
MemorySize?: number;
|
|
6291
|
+
MemorySize?: number | undefined;
|
|
6291
6292
|
/**
|
|
6292
6293
|
* <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC.
|
|
6293
6294
|
* When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more
|
|
6294
6295
|
* information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html">Configuring a Lambda function to access resources in a VPC</a>.</p>
|
|
6295
6296
|
* @public
|
|
6296
6297
|
*/
|
|
6297
|
-
VpcConfig?: VpcConfig;
|
|
6298
|
+
VpcConfig?: VpcConfig | undefined;
|
|
6298
6299
|
/**
|
|
6299
6300
|
* <p>Environment variables that are accessible from function code during execution.</p>
|
|
6300
6301
|
* @public
|
|
6301
6302
|
*/
|
|
6302
|
-
Environment?: Environment;
|
|
6303
|
+
Environment?: Environment | undefined;
|
|
6303
6304
|
/**
|
|
6304
6305
|
* <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">
|
|
6305
6306
|
* runtime</a>. Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in
|
|
@@ -6311,13 +6312,13 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6311
6312
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
6312
6313
|
* @public
|
|
6313
6314
|
*/
|
|
6314
|
-
Runtime?: Runtime;
|
|
6315
|
+
Runtime?: Runtime | undefined;
|
|
6315
6316
|
/**
|
|
6316
6317
|
* <p>A dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events
|
|
6317
6318
|
* when they fail processing. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#invocation-dlq">Dead-letter queues</a>.</p>
|
|
6318
6319
|
* @public
|
|
6319
6320
|
*/
|
|
6320
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
6321
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
6321
6322
|
/**
|
|
6322
6323
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
|
|
6323
6324
|
* <ul>
|
|
@@ -6338,53 +6339,53 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6338
6339
|
* <p>If you don't provide a customer managed key, Lambda uses an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-owned-cmk">Amazon Web Services owned key</a> or an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk">Amazon Web Services managed key</a>.</p>
|
|
6339
6340
|
* @public
|
|
6340
6341
|
*/
|
|
6341
|
-
KMSKeyArn?: string;
|
|
6342
|
+
KMSKeyArn?: string | undefined;
|
|
6342
6343
|
/**
|
|
6343
6344
|
* <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with
|
|
6344
6345
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
|
|
6345
6346
|
* @public
|
|
6346
6347
|
*/
|
|
6347
|
-
TracingConfig?: TracingConfig;
|
|
6348
|
+
TracingConfig?: TracingConfig | undefined;
|
|
6348
6349
|
/**
|
|
6349
6350
|
* <p>Update the function only if the revision ID matches the ID that's specified. Use this option to avoid modifying a
|
|
6350
6351
|
* function that has changed since you last read it.</p>
|
|
6351
6352
|
* @public
|
|
6352
6353
|
*/
|
|
6353
|
-
RevisionId?: string;
|
|
6354
|
+
RevisionId?: string | undefined;
|
|
6354
6355
|
/**
|
|
6355
6356
|
* <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a>
|
|
6356
6357
|
* to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
|
|
6357
6358
|
* @public
|
|
6358
6359
|
*/
|
|
6359
|
-
Layers?: string[];
|
|
6360
|
+
Layers?: string[] | undefined;
|
|
6360
6361
|
/**
|
|
6361
6362
|
* <p>Connection settings for an Amazon EFS file system.</p>
|
|
6362
6363
|
* @public
|
|
6363
6364
|
*/
|
|
6364
|
-
FileSystemConfigs?: FileSystemConfig[];
|
|
6365
|
+
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
6365
6366
|
/**
|
|
6366
6367
|
* <p>
|
|
6367
6368
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">Container image configuration
|
|
6368
6369
|
* values</a> that override the values in the container image Docker file.</p>
|
|
6369
6370
|
* @public
|
|
6370
6371
|
*/
|
|
6371
|
-
ImageConfig?: ImageConfig;
|
|
6372
|
+
ImageConfig?: ImageConfig | undefined;
|
|
6372
6373
|
/**
|
|
6373
6374
|
* <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole
|
|
6374
6375
|
* number between 512 and 10,240 MB. For more information, see <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-function-common.html#configuration-ephemeral-storage">Configuring ephemeral storage (console)</a>.</p>
|
|
6375
6376
|
* @public
|
|
6376
6377
|
*/
|
|
6377
|
-
EphemeralStorage?: EphemeralStorage;
|
|
6378
|
+
EphemeralStorage?: EphemeralStorage | undefined;
|
|
6378
6379
|
/**
|
|
6379
6380
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
|
|
6380
6381
|
* @public
|
|
6381
6382
|
*/
|
|
6382
|
-
SnapStart?: SnapStart;
|
|
6383
|
+
SnapStart?: SnapStart | undefined;
|
|
6383
6384
|
/**
|
|
6384
6385
|
* <p>The function's Amazon CloudWatch Logs configuration settings.</p>
|
|
6385
6386
|
* @public
|
|
6386
6387
|
*/
|
|
6387
|
-
LoggingConfig?: LoggingConfig;
|
|
6388
|
+
LoggingConfig?: LoggingConfig | undefined;
|
|
6388
6389
|
}
|
|
6389
6390
|
/**
|
|
6390
6391
|
* @public
|
|
@@ -6418,17 +6419,17 @@ export interface UpdateFunctionEventInvokeConfigRequest {
|
|
|
6418
6419
|
* <p>A version number or alias name.</p>
|
|
6419
6420
|
* @public
|
|
6420
6421
|
*/
|
|
6421
|
-
Qualifier?: string;
|
|
6422
|
+
Qualifier?: string | undefined;
|
|
6422
6423
|
/**
|
|
6423
6424
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
6424
6425
|
* @public
|
|
6425
6426
|
*/
|
|
6426
|
-
MaximumRetryAttempts?: number;
|
|
6427
|
+
MaximumRetryAttempts?: number | undefined;
|
|
6427
6428
|
/**
|
|
6428
6429
|
* <p>The maximum age of a request that Lambda sends to a function for processing.</p>
|
|
6429
6430
|
* @public
|
|
6430
6431
|
*/
|
|
6431
|
-
MaximumEventAgeInSeconds?: number;
|
|
6432
|
+
MaximumEventAgeInSeconds?: number | undefined;
|
|
6432
6433
|
/**
|
|
6433
6434
|
* <p>A destination for events after they have been sent to a function for processing.</p>
|
|
6434
6435
|
* <p class="title">
|
|
@@ -6454,7 +6455,7 @@ export interface UpdateFunctionEventInvokeConfigRequest {
|
|
|
6454
6455
|
* </ul>
|
|
6455
6456
|
* @public
|
|
6456
6457
|
*/
|
|
6457
|
-
DestinationConfig?: DestinationConfig;
|
|
6458
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
6458
6459
|
}
|
|
6459
6460
|
/**
|
|
6460
6461
|
* @public
|
|
@@ -6488,20 +6489,20 @@ export interface UpdateFunctionUrlConfigRequest {
|
|
|
6488
6489
|
* <p>The alias name.</p>
|
|
6489
6490
|
* @public
|
|
6490
6491
|
*/
|
|
6491
|
-
Qualifier?: string;
|
|
6492
|
+
Qualifier?: string | undefined;
|
|
6492
6493
|
/**
|
|
6493
6494
|
* <p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated
|
|
6494
6495
|
* users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
|
|
6495
6496
|
* see <a href="https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html">Security and auth model for Lambda function URLs</a>.</p>
|
|
6496
6497
|
* @public
|
|
6497
6498
|
*/
|
|
6498
|
-
AuthType?: FunctionUrlAuthType;
|
|
6499
|
+
AuthType?: FunctionUrlAuthType | undefined;
|
|
6499
6500
|
/**
|
|
6500
6501
|
* <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
|
|
6501
6502
|
* for your function URL.</p>
|
|
6502
6503
|
* @public
|
|
6503
6504
|
*/
|
|
6504
|
-
Cors?: Cors;
|
|
6505
|
+
Cors?: Cors | undefined;
|
|
6505
6506
|
/**
|
|
6506
6507
|
* <p>Use one of the following options:</p>
|
|
6507
6508
|
* <ul>
|
|
@@ -6518,7 +6519,7 @@ export interface UpdateFunctionUrlConfigRequest {
|
|
|
6518
6519
|
* </ul>
|
|
6519
6520
|
* @public
|
|
6520
6521
|
*/
|
|
6521
|
-
InvokeMode?: InvokeMode;
|
|
6522
|
+
InvokeMode?: InvokeMode | undefined;
|
|
6522
6523
|
}
|
|
6523
6524
|
/**
|
|
6524
6525
|
* @public
|
|
@@ -6546,7 +6547,7 @@ export interface UpdateFunctionUrlConfigResponse {
|
|
|
6546
6547
|
* for your function URL.</p>
|
|
6547
6548
|
* @public
|
|
6548
6549
|
*/
|
|
6549
|
-
Cors?: Cors;
|
|
6550
|
+
Cors?: Cors | undefined;
|
|
6550
6551
|
/**
|
|
6551
6552
|
* <p>When the function URL was created, in <a href="https://www.w3.org/TR/NOTE-datetime">ISO-8601 format</a> (YYYY-MM-DDThh:mm:ss.sTZD).</p>
|
|
6552
6553
|
* @public
|
|
@@ -6573,7 +6574,7 @@ export interface UpdateFunctionUrlConfigResponse {
|
|
|
6573
6574
|
* </ul>
|
|
6574
6575
|
* @public
|
|
6575
6576
|
*/
|
|
6576
|
-
InvokeMode?: InvokeMode;
|
|
6577
|
+
InvokeMode?: InvokeMode | undefined;
|
|
6577
6578
|
}
|
|
6578
6579
|
/**
|
|
6579
6580
|
* @internal
|