@aws-sdk/client-lambda 3.689.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.
|
@@ -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
|
|
@@ -1597,7 +1597,7 @@ export interface SnapStart {
|
|
|
1597
1597
|
* <p>Set to <code>PublishedVersions</code> to create a snapshot of the initialized execution environment when you publish a function version.</p>
|
|
1598
1598
|
* @public
|
|
1599
1599
|
*/
|
|
1600
|
-
ApplyOn?: SnapStartApplyOn;
|
|
1600
|
+
ApplyOn?: SnapStartApplyOn | undefined;
|
|
1601
1601
|
}
|
|
1602
1602
|
/**
|
|
1603
1603
|
* @public
|
|
@@ -1621,7 +1621,7 @@ export interface TracingConfig {
|
|
|
1621
1621
|
* <p>The tracing mode.</p>
|
|
1622
1622
|
* @public
|
|
1623
1623
|
*/
|
|
1624
|
-
Mode?: TracingMode;
|
|
1624
|
+
Mode?: TracingMode | undefined;
|
|
1625
1625
|
}
|
|
1626
1626
|
/**
|
|
1627
1627
|
* <p>The VPC security groups and subnets that are attached to a Lambda function. For more information,
|
|
@@ -1634,17 +1634,17 @@ export interface VpcConfig {
|
|
|
1634
1634
|
* <p>A list of VPC subnet IDs.</p>
|
|
1635
1635
|
* @public
|
|
1636
1636
|
*/
|
|
1637
|
-
SubnetIds?: string[];
|
|
1637
|
+
SubnetIds?: string[] | undefined;
|
|
1638
1638
|
/**
|
|
1639
1639
|
* <p>A list of VPC security group IDs.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
SecurityGroupIds?: string[];
|
|
1642
|
+
SecurityGroupIds?: string[] | undefined;
|
|
1643
1643
|
/**
|
|
1644
1644
|
* <p>Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
Ipv6AllowedForDualStack?: boolean;
|
|
1647
|
+
Ipv6AllowedForDualStack?: boolean | undefined;
|
|
1648
1648
|
}
|
|
1649
1649
|
/**
|
|
1650
1650
|
* @public
|
|
@@ -1685,7 +1685,7 @@ export interface CreateFunctionRequest {
|
|
|
1685
1685
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
1686
1686
|
* @public
|
|
1687
1687
|
*/
|
|
1688
|
-
Runtime?: Runtime;
|
|
1688
|
+
Runtime?: Runtime | undefined;
|
|
1689
1689
|
/**
|
|
1690
1690
|
* <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
|
|
1691
1691
|
* @public
|
|
@@ -1698,7 +1698,7 @@ export interface CreateFunctionRequest {
|
|
|
1698
1698
|
* see <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-progmodel.html">Lambda programming model</a>.</p>
|
|
1699
1699
|
* @public
|
|
1700
1700
|
*/
|
|
1701
|
-
Handler?: string;
|
|
1701
|
+
Handler?: string | undefined;
|
|
1702
1702
|
/**
|
|
1703
1703
|
* <p>The code for the function.</p>
|
|
1704
1704
|
* @public
|
|
@@ -1708,47 +1708,47 @@ export interface CreateFunctionRequest {
|
|
|
1708
1708
|
* <p>A description of the function.</p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
Description?: string;
|
|
1711
|
+
Description?: string | undefined;
|
|
1712
1712
|
/**
|
|
1713
1713
|
* <p>The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The
|
|
1714
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>
|
|
1715
1715
|
* @public
|
|
1716
1716
|
*/
|
|
1717
|
-
Timeout?: number;
|
|
1717
|
+
Timeout?: number | undefined;
|
|
1718
1718
|
/**
|
|
1719
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.
|
|
1720
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>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
MemorySize?: number;
|
|
1723
|
+
MemorySize?: number | undefined;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* <p>Set to true to publish the first version of the function during creation.</p>
|
|
1726
1726
|
* @public
|
|
1727
1727
|
*/
|
|
1728
|
-
Publish?: boolean;
|
|
1728
|
+
Publish?: boolean | undefined;
|
|
1729
1729
|
/**
|
|
1730
1730
|
* <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC.
|
|
1731
1731
|
* When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more
|
|
1732
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>
|
|
1733
1733
|
* @public
|
|
1734
1734
|
*/
|
|
1735
|
-
VpcConfig?: VpcConfig;
|
|
1735
|
+
VpcConfig?: VpcConfig | undefined;
|
|
1736
1736
|
/**
|
|
1737
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>
|
|
1738
1738
|
* @public
|
|
1739
1739
|
*/
|
|
1740
|
-
PackageType?: PackageType;
|
|
1740
|
+
PackageType?: PackageType | undefined;
|
|
1741
1741
|
/**
|
|
1742
1742
|
* <p>A dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events
|
|
1743
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>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
1746
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
1747
1747
|
/**
|
|
1748
1748
|
* <p>Environment variables that are accessible from function code during execution.</p>
|
|
1749
1749
|
* @public
|
|
1750
1750
|
*/
|
|
1751
|
-
Environment?: Environment;
|
|
1751
|
+
Environment?: Environment | undefined;
|
|
1752
1752
|
/**
|
|
1753
1753
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
|
|
1754
1754
|
* <ul>
|
|
@@ -1769,64 +1769,64 @@ export interface CreateFunctionRequest {
|
|
|
1769
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>
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
KMSKeyArn?: string;
|
|
1772
|
+
KMSKeyArn?: string | undefined;
|
|
1773
1773
|
/**
|
|
1774
1774
|
* <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with
|
|
1775
1775
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
|
|
1776
1776
|
* @public
|
|
1777
1777
|
*/
|
|
1778
|
-
TracingConfig?: TracingConfig;
|
|
1778
|
+
TracingConfig?: TracingConfig | undefined;
|
|
1779
1779
|
/**
|
|
1780
1780
|
* <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a> to apply to the
|
|
1781
1781
|
* function.</p>
|
|
1782
1782
|
* @public
|
|
1783
1783
|
*/
|
|
1784
|
-
Tags?: Record<string, string
|
|
1784
|
+
Tags?: Record<string, string> | undefined;
|
|
1785
1785
|
/**
|
|
1786
1786
|
* <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a>
|
|
1787
1787
|
* to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
|
|
1788
1788
|
* @public
|
|
1789
1789
|
*/
|
|
1790
|
-
Layers?: string[];
|
|
1790
|
+
Layers?: string[] | undefined;
|
|
1791
1791
|
/**
|
|
1792
1792
|
* <p>Connection settings for an Amazon EFS file system.</p>
|
|
1793
1793
|
* @public
|
|
1794
1794
|
*/
|
|
1795
|
-
FileSystemConfigs?: FileSystemConfig[];
|
|
1795
|
+
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
1796
1796
|
/**
|
|
1797
1797
|
* <p>Container image <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">configuration
|
|
1798
1798
|
* values</a> that override the values in the container image Dockerfile.</p>
|
|
1799
1799
|
* @public
|
|
1800
1800
|
*/
|
|
1801
|
-
ImageConfig?: ImageConfig;
|
|
1801
|
+
ImageConfig?: ImageConfig | undefined;
|
|
1802
1802
|
/**
|
|
1803
1803
|
* <p>To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration
|
|
1804
1804
|
* includes a set of signing profiles, which define the trusted publishers for this function.</p>
|
|
1805
1805
|
* @public
|
|
1806
1806
|
*/
|
|
1807
|
-
CodeSigningConfigArn?: string;
|
|
1807
|
+
CodeSigningConfigArn?: string | undefined;
|
|
1808
1808
|
/**
|
|
1809
1809
|
* <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64).
|
|
1810
1810
|
* The default value is <code>x86_64</code>.</p>
|
|
1811
1811
|
* @public
|
|
1812
1812
|
*/
|
|
1813
|
-
Architectures?: Architecture[];
|
|
1813
|
+
Architectures?: Architecture[] | undefined;
|
|
1814
1814
|
/**
|
|
1815
1815
|
* <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole
|
|
1816
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>
|
|
1817
1817
|
* @public
|
|
1818
1818
|
*/
|
|
1819
|
-
EphemeralStorage?: EphemeralStorage;
|
|
1819
|
+
EphemeralStorage?: EphemeralStorage | undefined;
|
|
1820
1820
|
/**
|
|
1821
1821
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
|
|
1822
1822
|
* @public
|
|
1823
1823
|
*/
|
|
1824
|
-
SnapStart?: SnapStart;
|
|
1824
|
+
SnapStart?: SnapStart | undefined;
|
|
1825
1825
|
/**
|
|
1826
1826
|
* <p>The function's Amazon CloudWatch Logs configuration settings.</p>
|
|
1827
1827
|
* @public
|
|
1828
1828
|
*/
|
|
1829
|
-
LoggingConfig?: LoggingConfig;
|
|
1829
|
+
LoggingConfig?: LoggingConfig | undefined;
|
|
1830
1830
|
}
|
|
1831
1831
|
/**
|
|
1832
1832
|
* <p>Error messages for environment variables that couldn't be applied.</p>
|
|
@@ -1837,12 +1837,12 @@ export interface EnvironmentError {
|
|
|
1837
1837
|
* <p>The error code.</p>
|
|
1838
1838
|
* @public
|
|
1839
1839
|
*/
|
|
1840
|
-
ErrorCode?: string;
|
|
1840
|
+
ErrorCode?: string | undefined;
|
|
1841
1841
|
/**
|
|
1842
1842
|
* <p>The error message.</p>
|
|
1843
1843
|
* @public
|
|
1844
1844
|
*/
|
|
1845
|
-
Message?: string;
|
|
1845
|
+
Message?: string | undefined;
|
|
1846
1846
|
}
|
|
1847
1847
|
/**
|
|
1848
1848
|
* <p>The results of an operation to update or read environment variables. If the operation succeeds, the response
|
|
@@ -1854,12 +1854,12 @@ export interface EnvironmentResponse {
|
|
|
1854
1854
|
* <p>Environment variable key-value pairs. Omitted from CloudTrail logs.</p>
|
|
1855
1855
|
* @public
|
|
1856
1856
|
*/
|
|
1857
|
-
Variables?: Record<string, string
|
|
1857
|
+
Variables?: Record<string, string> | undefined;
|
|
1858
1858
|
/**
|
|
1859
1859
|
* <p>Error messages for environment variables that couldn't be applied.</p>
|
|
1860
1860
|
* @public
|
|
1861
1861
|
*/
|
|
1862
|
-
Error?: EnvironmentError;
|
|
1862
|
+
Error?: EnvironmentError | undefined;
|
|
1863
1863
|
}
|
|
1864
1864
|
/**
|
|
1865
1865
|
* <p>Error response to <code>GetFunctionConfiguration</code>.</p>
|
|
@@ -1870,12 +1870,12 @@ export interface ImageConfigError {
|
|
|
1870
1870
|
* <p>Error code.</p>
|
|
1871
1871
|
* @public
|
|
1872
1872
|
*/
|
|
1873
|
-
ErrorCode?: string;
|
|
1873
|
+
ErrorCode?: string | undefined;
|
|
1874
1874
|
/**
|
|
1875
1875
|
* <p>Error message.</p>
|
|
1876
1876
|
* @public
|
|
1877
1877
|
*/
|
|
1878
|
-
Message?: string;
|
|
1878
|
+
Message?: string | undefined;
|
|
1879
1879
|
}
|
|
1880
1880
|
/**
|
|
1881
1881
|
* <p>Response to a <code>GetFunctionConfiguration</code> request.</p>
|
|
@@ -1886,12 +1886,12 @@ export interface ImageConfigResponse {
|
|
|
1886
1886
|
* <p>Configuration values that override the container image Dockerfile.</p>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
ImageConfig?: ImageConfig;
|
|
1889
|
+
ImageConfig?: ImageConfig | undefined;
|
|
1890
1890
|
/**
|
|
1891
1891
|
* <p>Error response to <code>GetFunctionConfiguration</code>.</p>
|
|
1892
1892
|
* @public
|
|
1893
1893
|
*/
|
|
1894
|
-
Error?: ImageConfigError;
|
|
1894
|
+
Error?: ImageConfigError | undefined;
|
|
1895
1895
|
}
|
|
1896
1896
|
/**
|
|
1897
1897
|
* @public
|
|
@@ -1947,22 +1947,22 @@ export interface Layer {
|
|
|
1947
1947
|
* <p>The Amazon Resource Name (ARN) of the function layer.</p>
|
|
1948
1948
|
* @public
|
|
1949
1949
|
*/
|
|
1950
|
-
Arn?: string;
|
|
1950
|
+
Arn?: string | undefined;
|
|
1951
1951
|
/**
|
|
1952
1952
|
* <p>The size of the layer archive in bytes.</p>
|
|
1953
1953
|
* @public
|
|
1954
1954
|
*/
|
|
1955
|
-
CodeSize?: number;
|
|
1955
|
+
CodeSize?: number | undefined;
|
|
1956
1956
|
/**
|
|
1957
1957
|
* <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
|
|
1958
1958
|
* @public
|
|
1959
1959
|
*/
|
|
1960
|
-
SigningProfileVersionArn?: string;
|
|
1960
|
+
SigningProfileVersionArn?: string | undefined;
|
|
1961
1961
|
/**
|
|
1962
1962
|
* <p>The Amazon Resource Name (ARN) of a signing job.</p>
|
|
1963
1963
|
* @public
|
|
1964
1964
|
*/
|
|
1965
|
-
SigningJobArn?: string;
|
|
1965
|
+
SigningJobArn?: string | undefined;
|
|
1966
1966
|
}
|
|
1967
1967
|
/**
|
|
1968
1968
|
* <p>Any error returned when the runtime version information for the function could not be retrieved.</p>
|
|
@@ -1973,12 +1973,12 @@ export interface RuntimeVersionError {
|
|
|
1973
1973
|
* <p>The error code.</p>
|
|
1974
1974
|
* @public
|
|
1975
1975
|
*/
|
|
1976
|
-
ErrorCode?: string;
|
|
1976
|
+
ErrorCode?: string | undefined;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* <p>The error message.</p>
|
|
1979
1979
|
* @public
|
|
1980
1980
|
*/
|
|
1981
|
-
Message?: string;
|
|
1981
|
+
Message?: string | undefined;
|
|
1982
1982
|
}
|
|
1983
1983
|
/**
|
|
1984
1984
|
* <p>The ARN of the runtime and any errors that occured.</p>
|
|
@@ -1989,12 +1989,12 @@ export interface RuntimeVersionConfig {
|
|
|
1989
1989
|
* <p>The ARN of the runtime version you want the function to use.</p>
|
|
1990
1990
|
* @public
|
|
1991
1991
|
*/
|
|
1992
|
-
RuntimeVersionArn?: string;
|
|
1992
|
+
RuntimeVersionArn?: string | undefined;
|
|
1993
1993
|
/**
|
|
1994
1994
|
* <p>Error response when Lambda is unable to retrieve the runtime version for a function.</p>
|
|
1995
1995
|
* @public
|
|
1996
1996
|
*/
|
|
1997
|
-
Error?: RuntimeVersionError;
|
|
1997
|
+
Error?: RuntimeVersionError | undefined;
|
|
1998
1998
|
}
|
|
1999
1999
|
/**
|
|
2000
2000
|
* @public
|
|
@@ -2017,12 +2017,12 @@ export interface SnapStartResponse {
|
|
|
2017
2017
|
* <p>When set to <code>PublishedVersions</code>, Lambda creates a snapshot of the execution environment when you publish a function version.</p>
|
|
2018
2018
|
* @public
|
|
2019
2019
|
*/
|
|
2020
|
-
ApplyOn?: SnapStartApplyOn;
|
|
2020
|
+
ApplyOn?: SnapStartApplyOn | undefined;
|
|
2021
2021
|
/**
|
|
2022
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>
|
|
2023
2023
|
* @public
|
|
2024
2024
|
*/
|
|
2025
|
-
OptimizationStatus?: SnapStartOptimizationStatus;
|
|
2025
|
+
OptimizationStatus?: SnapStartOptimizationStatus | undefined;
|
|
2026
2026
|
}
|
|
2027
2027
|
/**
|
|
2028
2028
|
* @public
|
|
@@ -2081,7 +2081,7 @@ export interface TracingConfigResponse {
|
|
|
2081
2081
|
* <p>The tracing mode.</p>
|
|
2082
2082
|
* @public
|
|
2083
2083
|
*/
|
|
2084
|
-
Mode?: TracingMode;
|
|
2084
|
+
Mode?: TracingMode | undefined;
|
|
2085
2085
|
}
|
|
2086
2086
|
/**
|
|
2087
2087
|
* <p>The VPC security groups and subnets that are attached to a Lambda function.</p>
|
|
@@ -2092,22 +2092,22 @@ export interface VpcConfigResponse {
|
|
|
2092
2092
|
* <p>A list of VPC subnet IDs.</p>
|
|
2093
2093
|
* @public
|
|
2094
2094
|
*/
|
|
2095
|
-
SubnetIds?: string[];
|
|
2095
|
+
SubnetIds?: string[] | undefined;
|
|
2096
2096
|
/**
|
|
2097
2097
|
* <p>A list of VPC security group IDs.</p>
|
|
2098
2098
|
* @public
|
|
2099
2099
|
*/
|
|
2100
|
-
SecurityGroupIds?: string[];
|
|
2100
|
+
SecurityGroupIds?: string[] | undefined;
|
|
2101
2101
|
/**
|
|
2102
2102
|
* <p>The ID of the VPC.</p>
|
|
2103
2103
|
* @public
|
|
2104
2104
|
*/
|
|
2105
|
-
VpcId?: string;
|
|
2105
|
+
VpcId?: string | undefined;
|
|
2106
2106
|
/**
|
|
2107
2107
|
* <p>Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets.</p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
Ipv6AllowedForDualStack?: boolean;
|
|
2110
|
+
Ipv6AllowedForDualStack?: boolean | undefined;
|
|
2111
2111
|
}
|
|
2112
2112
|
/**
|
|
2113
2113
|
* <p>Details about a function's configuration.</p>
|
|
@@ -2118,12 +2118,12 @@ export interface FunctionConfiguration {
|
|
|
2118
2118
|
* <p>The name of the function.</p>
|
|
2119
2119
|
* @public
|
|
2120
2120
|
*/
|
|
2121
|
-
FunctionName?: string;
|
|
2121
|
+
FunctionName?: string | undefined;
|
|
2122
2122
|
/**
|
|
2123
2123
|
* <p>The function's Amazon Resource Name (ARN).</p>
|
|
2124
2124
|
* @public
|
|
2125
2125
|
*/
|
|
2126
|
-
FunctionArn?: string;
|
|
2126
|
+
FunctionArn?: string | undefined;
|
|
2127
2127
|
/**
|
|
2128
2128
|
* <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">
|
|
2129
2129
|
* runtime</a>. Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in
|
|
@@ -2135,67 +2135,67 @@ export interface FunctionConfiguration {
|
|
|
2135
2135
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
2136
2136
|
* @public
|
|
2137
2137
|
*/
|
|
2138
|
-
Runtime?: Runtime;
|
|
2138
|
+
Runtime?: Runtime | undefined;
|
|
2139
2139
|
/**
|
|
2140
2140
|
* <p>The function's execution role.</p>
|
|
2141
2141
|
* @public
|
|
2142
2142
|
*/
|
|
2143
|
-
Role?: string;
|
|
2143
|
+
Role?: string | undefined;
|
|
2144
2144
|
/**
|
|
2145
2145
|
* <p>The function that Lambda calls to begin running your function.</p>
|
|
2146
2146
|
* @public
|
|
2147
2147
|
*/
|
|
2148
|
-
Handler?: string;
|
|
2148
|
+
Handler?: string | undefined;
|
|
2149
2149
|
/**
|
|
2150
2150
|
* <p>The size of the function's deployment package, in bytes.</p>
|
|
2151
2151
|
* @public
|
|
2152
2152
|
*/
|
|
2153
|
-
CodeSize?: number;
|
|
2153
|
+
CodeSize?: number | undefined;
|
|
2154
2154
|
/**
|
|
2155
2155
|
* <p>The function's description.</p>
|
|
2156
2156
|
* @public
|
|
2157
2157
|
*/
|
|
2158
|
-
Description?: string;
|
|
2158
|
+
Description?: string | undefined;
|
|
2159
2159
|
/**
|
|
2160
2160
|
* <p>The amount of time in seconds that Lambda allows a function to run before stopping it.</p>
|
|
2161
2161
|
* @public
|
|
2162
2162
|
*/
|
|
2163
|
-
Timeout?: number;
|
|
2163
|
+
Timeout?: number | undefined;
|
|
2164
2164
|
/**
|
|
2165
2165
|
* <p>The amount of memory available to the function at runtime.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
MemorySize?: number;
|
|
2168
|
+
MemorySize?: number | undefined;
|
|
2169
2169
|
/**
|
|
2170
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>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
LastModified?: string;
|
|
2173
|
+
LastModified?: string | undefined;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* <p>The SHA256 hash of the function's deployment package.</p>
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
CodeSha256?: string;
|
|
2178
|
+
CodeSha256?: string | undefined;
|
|
2179
2179
|
/**
|
|
2180
2180
|
* <p>The version of the Lambda function.</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
Version?: string;
|
|
2183
|
+
Version?: string | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* <p>The function's networking configuration.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
VpcConfig?: VpcConfigResponse;
|
|
2188
|
+
VpcConfig?: VpcConfigResponse | undefined;
|
|
2189
2189
|
/**
|
|
2190
2190
|
* <p>The function's dead letter queue.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
2193
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
2194
2194
|
/**
|
|
2195
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>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
Environment?: EnvironmentResponse;
|
|
2198
|
+
Environment?: EnvironmentResponse | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
|
|
2201
2201
|
* <ul>
|
|
@@ -2216,113 +2216,113 @@ export interface FunctionConfiguration {
|
|
|
2216
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>
|
|
2217
2217
|
* @public
|
|
2218
2218
|
*/
|
|
2219
|
-
KMSKeyArn?: string;
|
|
2219
|
+
KMSKeyArn?: string | undefined;
|
|
2220
2220
|
/**
|
|
2221
2221
|
* <p>The function's X-Ray tracing configuration.</p>
|
|
2222
2222
|
* @public
|
|
2223
2223
|
*/
|
|
2224
|
-
TracingConfig?: TracingConfigResponse;
|
|
2224
|
+
TracingConfig?: TracingConfigResponse | undefined;
|
|
2225
2225
|
/**
|
|
2226
2226
|
* <p>For Lambda@Edge functions, the ARN of the main function.</p>
|
|
2227
2227
|
* @public
|
|
2228
2228
|
*/
|
|
2229
|
-
MasterArn?: string;
|
|
2229
|
+
MasterArn?: string | undefined;
|
|
2230
2230
|
/**
|
|
2231
2231
|
* <p>The latest updated revision of the function or alias.</p>
|
|
2232
2232
|
* @public
|
|
2233
2233
|
*/
|
|
2234
|
-
RevisionId?: string;
|
|
2234
|
+
RevisionId?: string | undefined;
|
|
2235
2235
|
/**
|
|
2236
2236
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">layers</a>.</p>
|
|
2237
2237
|
* @public
|
|
2238
2238
|
*/
|
|
2239
|
-
Layers?: Layer[];
|
|
2239
|
+
Layers?: Layer[] | undefined;
|
|
2240
2240
|
/**
|
|
2241
2241
|
* <p>The current state of the function. When the state is <code>Inactive</code>, you can reactivate the function by
|
|
2242
2242
|
* invoking it.</p>
|
|
2243
2243
|
* @public
|
|
2244
2244
|
*/
|
|
2245
|
-
State?: State;
|
|
2245
|
+
State?: State | undefined;
|
|
2246
2246
|
/**
|
|
2247
2247
|
* <p>The reason for the function's current state.</p>
|
|
2248
2248
|
* @public
|
|
2249
2249
|
*/
|
|
2250
|
-
StateReason?: string;
|
|
2250
|
+
StateReason?: string | undefined;
|
|
2251
2251
|
/**
|
|
2252
2252
|
* <p>The reason code for the function's current state. When the code is <code>Creating</code>, you can't invoke or
|
|
2253
2253
|
* modify the function.</p>
|
|
2254
2254
|
* @public
|
|
2255
2255
|
*/
|
|
2256
|
-
StateReasonCode?: StateReasonCode;
|
|
2256
|
+
StateReasonCode?: StateReasonCode | undefined;
|
|
2257
2257
|
/**
|
|
2258
2258
|
* <p>The status of the last update that was performed on the function. This is first set to <code>Successful</code>
|
|
2259
2259
|
* after function creation completes.</p>
|
|
2260
2260
|
* @public
|
|
2261
2261
|
*/
|
|
2262
|
-
LastUpdateStatus?: LastUpdateStatus;
|
|
2262
|
+
LastUpdateStatus?: LastUpdateStatus | undefined;
|
|
2263
2263
|
/**
|
|
2264
2264
|
* <p>The reason for the last update that was performed on the function.</p>
|
|
2265
2265
|
* @public
|
|
2266
2266
|
*/
|
|
2267
|
-
LastUpdateStatusReason?: string;
|
|
2267
|
+
LastUpdateStatusReason?: string | undefined;
|
|
2268
2268
|
/**
|
|
2269
2269
|
* <p>The reason code for the last update that was performed on the function.</p>
|
|
2270
2270
|
* @public
|
|
2271
2271
|
*/
|
|
2272
|
-
LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode;
|
|
2272
|
+
LastUpdateStatusReasonCode?: LastUpdateStatusReasonCode | undefined;
|
|
2273
2273
|
/**
|
|
2274
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>
|
|
2275
2275
|
* @public
|
|
2276
2276
|
*/
|
|
2277
|
-
FileSystemConfigs?: FileSystemConfig[];
|
|
2277
|
+
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
2278
2278
|
/**
|
|
2279
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>
|
|
2280
2280
|
* @public
|
|
2281
2281
|
*/
|
|
2282
|
-
PackageType?: PackageType;
|
|
2282
|
+
PackageType?: PackageType | undefined;
|
|
2283
2283
|
/**
|
|
2284
2284
|
* <p>The function's image configuration values.</p>
|
|
2285
2285
|
* @public
|
|
2286
2286
|
*/
|
|
2287
|
-
ImageConfigResponse?: ImageConfigResponse;
|
|
2287
|
+
ImageConfigResponse?: ImageConfigResponse | undefined;
|
|
2288
2288
|
/**
|
|
2289
2289
|
* <p>The ARN of the signing profile version.</p>
|
|
2290
2290
|
* @public
|
|
2291
2291
|
*/
|
|
2292
|
-
SigningProfileVersionArn?: string;
|
|
2292
|
+
SigningProfileVersionArn?: string | undefined;
|
|
2293
2293
|
/**
|
|
2294
2294
|
* <p>The ARN of the signing job.</p>
|
|
2295
2295
|
* @public
|
|
2296
2296
|
*/
|
|
2297
|
-
SigningJobArn?: string;
|
|
2297
|
+
SigningJobArn?: string | undefined;
|
|
2298
2298
|
/**
|
|
2299
2299
|
* <p>The instruction set architecture that the function supports. Architecture is a string array with one of the
|
|
2300
2300
|
* valid values. The default architecture value is <code>x86_64</code>.</p>
|
|
2301
2301
|
* @public
|
|
2302
2302
|
*/
|
|
2303
|
-
Architectures?: Architecture[];
|
|
2303
|
+
Architectures?: Architecture[] | undefined;
|
|
2304
2304
|
/**
|
|
2305
2305
|
* <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole
|
|
2306
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>
|
|
2307
2307
|
* @public
|
|
2308
2308
|
*/
|
|
2309
|
-
EphemeralStorage?: EphemeralStorage;
|
|
2309
|
+
EphemeralStorage?: EphemeralStorage | undefined;
|
|
2310
2310
|
/**
|
|
2311
2311
|
* <p>Set <code>ApplyOn</code> to <code>PublishedVersions</code> to create a snapshot of the initialized execution
|
|
2312
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>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
SnapStart?: SnapStartResponse;
|
|
2315
|
+
SnapStart?: SnapStartResponse | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>The ARN of the runtime and any errors that occured.</p>
|
|
2318
2318
|
* @public
|
|
2319
2319
|
*/
|
|
2320
|
-
RuntimeVersionConfig?: RuntimeVersionConfig;
|
|
2320
|
+
RuntimeVersionConfig?: RuntimeVersionConfig | undefined;
|
|
2321
2321
|
/**
|
|
2322
2322
|
* <p>The function's Amazon CloudWatch Logs configuration settings.</p>
|
|
2323
2323
|
* @public
|
|
2324
2324
|
*/
|
|
2325
|
-
LoggingConfig?: LoggingConfig;
|
|
2325
|
+
LoggingConfig?: LoggingConfig | undefined;
|
|
2326
2326
|
}
|
|
2327
2327
|
/**
|
|
2328
2328
|
* <p>The code signature failed the integrity check. If the integrity check fails, then Lambda blocks
|
|
@@ -2332,8 +2332,8 @@ export interface FunctionConfiguration {
|
|
|
2332
2332
|
export declare class InvalidCodeSignatureException extends __BaseException {
|
|
2333
2333
|
readonly name: "InvalidCodeSignatureException";
|
|
2334
2334
|
readonly $fault: "client";
|
|
2335
|
-
Type?: string;
|
|
2336
|
-
Message?: string;
|
|
2335
|
+
Type?: string | undefined;
|
|
2336
|
+
Message?: string | undefined;
|
|
2337
2337
|
/**
|
|
2338
2338
|
* @internal
|
|
2339
2339
|
*/
|
|
@@ -2352,38 +2352,38 @@ export interface Cors {
|
|
|
2352
2352
|
* <code>false</code>.</p>
|
|
2353
2353
|
* @public
|
|
2354
2354
|
*/
|
|
2355
|
-
AllowCredentials?: boolean;
|
|
2355
|
+
AllowCredentials?: boolean | undefined;
|
|
2356
2356
|
/**
|
|
2357
2357
|
* <p>The HTTP headers that origins can include in requests to your function URL. For example: <code>Date</code>, <code>Keep-Alive</code>,
|
|
2358
2358
|
* <code>X-Custom-Header</code>.</p>
|
|
2359
2359
|
* @public
|
|
2360
2360
|
*/
|
|
2361
|
-
AllowHeaders?: string[];
|
|
2361
|
+
AllowHeaders?: string[] | undefined;
|
|
2362
2362
|
/**
|
|
2363
2363
|
* <p>The HTTP methods that are allowed when calling your function URL. For example: <code>GET</code>, <code>POST</code>, <code>DELETE</code>,
|
|
2364
2364
|
* or the wildcard character (<code>*</code>).</p>
|
|
2365
2365
|
* @public
|
|
2366
2366
|
*/
|
|
2367
|
-
AllowMethods?: string[];
|
|
2367
|
+
AllowMethods?: string[] | undefined;
|
|
2368
2368
|
/**
|
|
2369
2369
|
* <p>The origins that can access your function URL. You can list any number of specific origins, separated by a comma. For example:
|
|
2370
2370
|
* <code>https://www.example.com</code>, <code>http://localhost:60905</code>.</p>
|
|
2371
2371
|
* <p>Alternatively, you can grant access to all origins using the wildcard character (<code>*</code>).</p>
|
|
2372
2372
|
* @public
|
|
2373
2373
|
*/
|
|
2374
|
-
AllowOrigins?: string[];
|
|
2374
|
+
AllowOrigins?: string[] | undefined;
|
|
2375
2375
|
/**
|
|
2376
2376
|
* <p>The HTTP headers in your function response that you want to expose to origins that call your function URL. For example:
|
|
2377
2377
|
* <code>Date</code>, <code>Keep-Alive</code>, <code>X-Custom-Header</code>.</p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
ExposeHeaders?: string[];
|
|
2380
|
+
ExposeHeaders?: string[] | undefined;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>The maximum amount of time, in seconds, that web browsers can cache results of a preflight request. By
|
|
2383
2383
|
* default, this is set to <code>0</code>, which means that the browser doesn't cache results.</p>
|
|
2384
2384
|
* @public
|
|
2385
2385
|
*/
|
|
2386
|
-
MaxAge?: number;
|
|
2386
|
+
MaxAge?: number | undefined;
|
|
2387
2387
|
}
|
|
2388
2388
|
/**
|
|
2389
2389
|
* @public
|
|
@@ -2429,7 +2429,7 @@ export interface CreateFunctionUrlConfigRequest {
|
|
|
2429
2429
|
* <p>The alias name.</p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
Qualifier?: string;
|
|
2432
|
+
Qualifier?: string | undefined;
|
|
2433
2433
|
/**
|
|
2434
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
|
|
2435
2435
|
* users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
|
|
@@ -2442,7 +2442,7 @@ export interface CreateFunctionUrlConfigRequest {
|
|
|
2442
2442
|
* for your function URL.</p>
|
|
2443
2443
|
* @public
|
|
2444
2444
|
*/
|
|
2445
|
-
Cors?: Cors;
|
|
2445
|
+
Cors?: Cors | undefined;
|
|
2446
2446
|
/**
|
|
2447
2447
|
* <p>Use one of the following options:</p>
|
|
2448
2448
|
* <ul>
|
|
@@ -2459,7 +2459,7 @@ export interface CreateFunctionUrlConfigRequest {
|
|
|
2459
2459
|
* </ul>
|
|
2460
2460
|
* @public
|
|
2461
2461
|
*/
|
|
2462
|
-
InvokeMode?: InvokeMode;
|
|
2462
|
+
InvokeMode?: InvokeMode | undefined;
|
|
2463
2463
|
}
|
|
2464
2464
|
/**
|
|
2465
2465
|
* @public
|
|
@@ -2487,7 +2487,7 @@ export interface CreateFunctionUrlConfigResponse {
|
|
|
2487
2487
|
* for your function URL.</p>
|
|
2488
2488
|
* @public
|
|
2489
2489
|
*/
|
|
2490
|
-
Cors?: Cors;
|
|
2490
|
+
Cors?: Cors | undefined;
|
|
2491
2491
|
/**
|
|
2492
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>
|
|
2493
2493
|
* @public
|
|
@@ -2509,7 +2509,7 @@ export interface CreateFunctionUrlConfigResponse {
|
|
|
2509
2509
|
* </ul>
|
|
2510
2510
|
* @public
|
|
2511
2511
|
*/
|
|
2512
|
-
InvokeMode?: InvokeMode;
|
|
2512
|
+
InvokeMode?: InvokeMode | undefined;
|
|
2513
2513
|
}
|
|
2514
2514
|
/**
|
|
2515
2515
|
* @public
|
|
@@ -2578,8 +2578,8 @@ export interface DeleteEventSourceMappingRequest {
|
|
|
2578
2578
|
export declare class ResourceInUseException extends __BaseException {
|
|
2579
2579
|
readonly name: "ResourceInUseException";
|
|
2580
2580
|
readonly $fault: "client";
|
|
2581
|
-
Type?: string;
|
|
2582
|
-
Message?: string;
|
|
2581
|
+
Type?: string | undefined;
|
|
2582
|
+
Message?: string | undefined;
|
|
2583
2583
|
/**
|
|
2584
2584
|
* @internal
|
|
2585
2585
|
*/
|
|
@@ -2617,7 +2617,7 @@ export interface DeleteFunctionRequest {
|
|
|
2617
2617
|
* <p>Specify a version to delete. You can't delete a version that an alias references.</p>
|
|
2618
2618
|
* @public
|
|
2619
2619
|
*/
|
|
2620
|
-
Qualifier?: string;
|
|
2620
|
+
Qualifier?: string | undefined;
|
|
2621
2621
|
}
|
|
2622
2622
|
/**
|
|
2623
2623
|
* @public
|
|
@@ -2709,7 +2709,7 @@ export interface DeleteFunctionEventInvokeConfigRequest {
|
|
|
2709
2709
|
* <p>A version number or alias name.</p>
|
|
2710
2710
|
* @public
|
|
2711
2711
|
*/
|
|
2712
|
-
Qualifier?: string;
|
|
2712
|
+
Qualifier?: string | undefined;
|
|
2713
2713
|
}
|
|
2714
2714
|
/**
|
|
2715
2715
|
* @public
|
|
@@ -2743,7 +2743,7 @@ export interface DeleteFunctionUrlConfigRequest {
|
|
|
2743
2743
|
* <p>The alias name.</p>
|
|
2744
2744
|
* @public
|
|
2745
2745
|
*/
|
|
2746
|
-
Qualifier?: string;
|
|
2746
|
+
Qualifier?: string | undefined;
|
|
2747
2747
|
}
|
|
2748
2748
|
/**
|
|
2749
2749
|
* @public
|
|
@@ -2807,12 +2807,12 @@ export interface GetAccountSettingsResponse {
|
|
|
2807
2807
|
* <p>Limits that are related to concurrency and code storage.</p>
|
|
2808
2808
|
* @public
|
|
2809
2809
|
*/
|
|
2810
|
-
AccountLimit?: AccountLimit;
|
|
2810
|
+
AccountLimit?: AccountLimit | undefined;
|
|
2811
2811
|
/**
|
|
2812
2812
|
* <p>The number of functions and amount of storage in use.</p>
|
|
2813
2813
|
* @public
|
|
2814
2814
|
*/
|
|
2815
|
-
AccountUsage?: AccountUsage;
|
|
2815
|
+
AccountUsage?: AccountUsage | undefined;
|
|
2816
2816
|
}
|
|
2817
2817
|
/**
|
|
2818
2818
|
* @public
|
|
@@ -2910,7 +2910,7 @@ export interface GetFunctionRequest {
|
|
|
2910
2910
|
* <p>Specify a version or alias to get details about a published version of the function.</p>
|
|
2911
2911
|
* @public
|
|
2912
2912
|
*/
|
|
2913
|
-
Qualifier?: string;
|
|
2913
|
+
Qualifier?: string | undefined;
|
|
2914
2914
|
}
|
|
2915
2915
|
/**
|
|
2916
2916
|
* <p>Details about a function's deployment package.</p>
|
|
@@ -2921,28 +2921,28 @@ export interface FunctionCodeLocation {
|
|
|
2921
2921
|
* <p>The service that's hosting the file.</p>
|
|
2922
2922
|
* @public
|
|
2923
2923
|
*/
|
|
2924
|
-
RepositoryType?: string;
|
|
2924
|
+
RepositoryType?: string | undefined;
|
|
2925
2925
|
/**
|
|
2926
2926
|
* <p>A presigned URL that you can use to download the deployment package.</p>
|
|
2927
2927
|
* @public
|
|
2928
2928
|
*/
|
|
2929
|
-
Location?: string;
|
|
2929
|
+
Location?: string | undefined;
|
|
2930
2930
|
/**
|
|
2931
2931
|
* <p>URI of a container image in the Amazon ECR registry.</p>
|
|
2932
2932
|
* @public
|
|
2933
2933
|
*/
|
|
2934
|
-
ImageUri?: string;
|
|
2934
|
+
ImageUri?: string | undefined;
|
|
2935
2935
|
/**
|
|
2936
2936
|
* <p>The resolved URI for the image.</p>
|
|
2937
2937
|
* @public
|
|
2938
2938
|
*/
|
|
2939
|
-
ResolvedImageUri?: string;
|
|
2939
|
+
ResolvedImageUri?: string | undefined;
|
|
2940
2940
|
/**
|
|
2941
2941
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's
|
|
2942
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>
|
|
2943
2943
|
* @public
|
|
2944
2944
|
*/
|
|
2945
|
-
SourceKMSKeyArn?: string;
|
|
2945
|
+
SourceKMSKeyArn?: string | undefined;
|
|
2946
2946
|
}
|
|
2947
2947
|
/**
|
|
2948
2948
|
* @public
|
|
@@ -2953,7 +2953,7 @@ export interface Concurrency {
|
|
|
2953
2953
|
* concurrency</a>.</p>
|
|
2954
2954
|
* @public
|
|
2955
2955
|
*/
|
|
2956
|
-
ReservedConcurrentExecutions?: number;
|
|
2956
|
+
ReservedConcurrentExecutions?: number | undefined;
|
|
2957
2957
|
}
|
|
2958
2958
|
/**
|
|
2959
2959
|
* <p>An object that contains details about an error related to retrieving tags.</p>
|
|
@@ -2979,29 +2979,29 @@ export interface GetFunctionResponse {
|
|
|
2979
2979
|
* <p>The configuration of the function or version.</p>
|
|
2980
2980
|
* @public
|
|
2981
2981
|
*/
|
|
2982
|
-
Configuration?: FunctionConfiguration;
|
|
2982
|
+
Configuration?: FunctionConfiguration | undefined;
|
|
2983
2983
|
/**
|
|
2984
2984
|
* <p>The deployment package of the function or version.</p>
|
|
2985
2985
|
* @public
|
|
2986
2986
|
*/
|
|
2987
|
-
Code?: FunctionCodeLocation;
|
|
2987
|
+
Code?: FunctionCodeLocation | undefined;
|
|
2988
2988
|
/**
|
|
2989
2989
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/tagging.html">tags</a>. Lambda
|
|
2990
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>
|
|
2991
2991
|
* @public
|
|
2992
2992
|
*/
|
|
2993
|
-
Tags?: Record<string, string
|
|
2993
|
+
Tags?: Record<string, string> | undefined;
|
|
2994
2994
|
/**
|
|
2995
2995
|
* <p>An object that contains details about an error related to retrieving tags.</p>
|
|
2996
2996
|
* @public
|
|
2997
2997
|
*/
|
|
2998
|
-
TagsError?: TagsError;
|
|
2998
|
+
TagsError?: TagsError | undefined;
|
|
2999
2999
|
/**
|
|
3000
3000
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html">reserved
|
|
3001
3001
|
* concurrency</a>.</p>
|
|
3002
3002
|
* @public
|
|
3003
3003
|
*/
|
|
3004
|
-
Concurrency?: Concurrency;
|
|
3004
|
+
Concurrency?: Concurrency | undefined;
|
|
3005
3005
|
}
|
|
3006
3006
|
/**
|
|
3007
3007
|
* @public
|
|
@@ -3103,7 +3103,7 @@ export interface GetFunctionConcurrencyResponse {
|
|
|
3103
3103
|
* <p>The number of simultaneous executions that are reserved for the function.</p>
|
|
3104
3104
|
* @public
|
|
3105
3105
|
*/
|
|
3106
|
-
ReservedConcurrentExecutions?: number;
|
|
3106
|
+
ReservedConcurrentExecutions?: number | undefined;
|
|
3107
3107
|
}
|
|
3108
3108
|
/**
|
|
3109
3109
|
* @public
|
|
@@ -3137,7 +3137,7 @@ export interface GetFunctionConfigurationRequest {
|
|
|
3137
3137
|
* <p>Specify a version or alias to get details about a published version of the function.</p>
|
|
3138
3138
|
* @public
|
|
3139
3139
|
*/
|
|
3140
|
-
Qualifier?: string;
|
|
3140
|
+
Qualifier?: string | undefined;
|
|
3141
3141
|
}
|
|
3142
3142
|
/**
|
|
3143
3143
|
* @public
|
|
@@ -3147,22 +3147,22 @@ export interface FunctionEventInvokeConfig {
|
|
|
3147
3147
|
* <p>The date and time that the configuration was last updated.</p>
|
|
3148
3148
|
* @public
|
|
3149
3149
|
*/
|
|
3150
|
-
LastModified?: Date;
|
|
3150
|
+
LastModified?: Date | undefined;
|
|
3151
3151
|
/**
|
|
3152
3152
|
* <p>The Amazon Resource Name (ARN) of the function.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
3155
|
-
FunctionArn?: string;
|
|
3155
|
+
FunctionArn?: string | undefined;
|
|
3156
3156
|
/**
|
|
3157
3157
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
3158
3158
|
* @public
|
|
3159
3159
|
*/
|
|
3160
|
-
MaximumRetryAttempts?: number;
|
|
3160
|
+
MaximumRetryAttempts?: number | undefined;
|
|
3161
3161
|
/**
|
|
3162
3162
|
* <p>The maximum age of a request that Lambda sends to a function for processing.</p>
|
|
3163
3163
|
* @public
|
|
3164
3164
|
*/
|
|
3165
|
-
MaximumEventAgeInSeconds?: number;
|
|
3165
|
+
MaximumEventAgeInSeconds?: number | undefined;
|
|
3166
3166
|
/**
|
|
3167
3167
|
* <p>A destination for events after they have been sent to a function for processing.</p>
|
|
3168
3168
|
* <p class="title">
|
|
@@ -3188,7 +3188,7 @@ export interface FunctionEventInvokeConfig {
|
|
|
3188
3188
|
* </ul>
|
|
3189
3189
|
* @public
|
|
3190
3190
|
*/
|
|
3191
|
-
DestinationConfig?: DestinationConfig;
|
|
3191
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
3192
3192
|
}
|
|
3193
3193
|
/**
|
|
3194
3194
|
* @public
|
|
@@ -3222,7 +3222,7 @@ export interface GetFunctionEventInvokeConfigRequest {
|
|
|
3222
3222
|
* <p>A version number or alias name.</p>
|
|
3223
3223
|
* @public
|
|
3224
3224
|
*/
|
|
3225
|
-
Qualifier?: string;
|
|
3225
|
+
Qualifier?: string | undefined;
|
|
3226
3226
|
}
|
|
3227
3227
|
/**
|
|
3228
3228
|
* @public
|
|
@@ -3259,7 +3259,7 @@ export interface GetFunctionRecursionConfigResponse {
|
|
|
3259
3259
|
* configuration using the <a>PutFunctionRecursionConfig</a> action.</p>
|
|
3260
3260
|
* @public
|
|
3261
3261
|
*/
|
|
3262
|
-
RecursiveLoop?: RecursiveLoop;
|
|
3262
|
+
RecursiveLoop?: RecursiveLoop | undefined;
|
|
3263
3263
|
}
|
|
3264
3264
|
/**
|
|
3265
3265
|
* @public
|
|
@@ -3293,7 +3293,7 @@ export interface GetFunctionUrlConfigRequest {
|
|
|
3293
3293
|
* <p>The alias name.</p>
|
|
3294
3294
|
* @public
|
|
3295
3295
|
*/
|
|
3296
|
-
Qualifier?: string;
|
|
3296
|
+
Qualifier?: string | undefined;
|
|
3297
3297
|
}
|
|
3298
3298
|
/**
|
|
3299
3299
|
* @public
|
|
@@ -3321,7 +3321,7 @@ export interface GetFunctionUrlConfigResponse {
|
|
|
3321
3321
|
* for your function URL.</p>
|
|
3322
3322
|
* @public
|
|
3323
3323
|
*/
|
|
3324
|
-
Cors?: Cors;
|
|
3324
|
+
Cors?: Cors | undefined;
|
|
3325
3325
|
/**
|
|
3326
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>
|
|
3327
3327
|
* @public
|
|
@@ -3348,7 +3348,7 @@ export interface GetFunctionUrlConfigResponse {
|
|
|
3348
3348
|
* </ul>
|
|
3349
3349
|
* @public
|
|
3350
3350
|
*/
|
|
3351
|
-
InvokeMode?: InvokeMode;
|
|
3351
|
+
InvokeMode?: InvokeMode | undefined;
|
|
3352
3352
|
}
|
|
3353
3353
|
/**
|
|
3354
3354
|
* @public
|
|
@@ -3375,27 +3375,27 @@ export interface LayerVersionContentOutput {
|
|
|
3375
3375
|
* <p>A link to the layer archive in Amazon S3 that is valid for 10 minutes.</p>
|
|
3376
3376
|
* @public
|
|
3377
3377
|
*/
|
|
3378
|
-
Location?: string;
|
|
3378
|
+
Location?: string | undefined;
|
|
3379
3379
|
/**
|
|
3380
3380
|
* <p>The SHA-256 hash of the layer archive.</p>
|
|
3381
3381
|
* @public
|
|
3382
3382
|
*/
|
|
3383
|
-
CodeSha256?: string;
|
|
3383
|
+
CodeSha256?: string | undefined;
|
|
3384
3384
|
/**
|
|
3385
3385
|
* <p>The size of the layer archive in bytes.</p>
|
|
3386
3386
|
* @public
|
|
3387
3387
|
*/
|
|
3388
|
-
CodeSize?: number;
|
|
3388
|
+
CodeSize?: number | undefined;
|
|
3389
3389
|
/**
|
|
3390
3390
|
* <p>The Amazon Resource Name (ARN) for a signing profile version.</p>
|
|
3391
3391
|
* @public
|
|
3392
3392
|
*/
|
|
3393
|
-
SigningProfileVersionArn?: string;
|
|
3393
|
+
SigningProfileVersionArn?: string | undefined;
|
|
3394
3394
|
/**
|
|
3395
3395
|
* <p>The Amazon Resource Name (ARN) of a signing job.</p>
|
|
3396
3396
|
* @public
|
|
3397
3397
|
*/
|
|
3398
|
-
SigningJobArn?: string;
|
|
3398
|
+
SigningJobArn?: string | undefined;
|
|
3399
3399
|
}
|
|
3400
3400
|
/**
|
|
3401
3401
|
* @public
|
|
@@ -3405,32 +3405,32 @@ export interface GetLayerVersionResponse {
|
|
|
3405
3405
|
* <p>Details about the layer version.</p>
|
|
3406
3406
|
* @public
|
|
3407
3407
|
*/
|
|
3408
|
-
Content?: LayerVersionContentOutput;
|
|
3408
|
+
Content?: LayerVersionContentOutput | undefined;
|
|
3409
3409
|
/**
|
|
3410
3410
|
* <p>The ARN of the layer.</p>
|
|
3411
3411
|
* @public
|
|
3412
3412
|
*/
|
|
3413
|
-
LayerArn?: string;
|
|
3413
|
+
LayerArn?: string | undefined;
|
|
3414
3414
|
/**
|
|
3415
3415
|
* <p>The ARN of the layer version.</p>
|
|
3416
3416
|
* @public
|
|
3417
3417
|
*/
|
|
3418
|
-
LayerVersionArn?: string;
|
|
3418
|
+
LayerVersionArn?: string | undefined;
|
|
3419
3419
|
/**
|
|
3420
3420
|
* <p>The description of the version.</p>
|
|
3421
3421
|
* @public
|
|
3422
3422
|
*/
|
|
3423
|
-
Description?: string;
|
|
3423
|
+
Description?: string | undefined;
|
|
3424
3424
|
/**
|
|
3425
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>
|
|
3426
3426
|
* @public
|
|
3427
3427
|
*/
|
|
3428
|
-
CreatedDate?: string;
|
|
3428
|
+
CreatedDate?: string | undefined;
|
|
3429
3429
|
/**
|
|
3430
3430
|
* <p>The version number.</p>
|
|
3431
3431
|
* @public
|
|
3432
3432
|
*/
|
|
3433
|
-
Version?: number;
|
|
3433
|
+
Version?: number | undefined;
|
|
3434
3434
|
/**
|
|
3435
3435
|
* <p>The layer's compatible runtimes.</p>
|
|
3436
3436
|
* <p>The following list includes deprecated runtimes. For more information, see
|
|
@@ -3439,18 +3439,18 @@ export interface GetLayerVersionResponse {
|
|
|
3439
3439
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
3440
3440
|
* @public
|
|
3441
3441
|
*/
|
|
3442
|
-
CompatibleRuntimes?: Runtime[];
|
|
3442
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
3443
3443
|
/**
|
|
3444
3444
|
* <p>The layer's software license.</p>
|
|
3445
3445
|
* @public
|
|
3446
3446
|
*/
|
|
3447
|
-
LicenseInfo?: string;
|
|
3447
|
+
LicenseInfo?: string | undefined;
|
|
3448
3448
|
/**
|
|
3449
3449
|
* <p>A list of compatible
|
|
3450
3450
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
3451
3451
|
* @public
|
|
3452
3452
|
*/
|
|
3453
|
-
CompatibleArchitectures?: Architecture[];
|
|
3453
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
3454
3454
|
}
|
|
3455
3455
|
/**
|
|
3456
3456
|
* @public
|
|
@@ -3485,12 +3485,12 @@ export interface GetLayerVersionPolicyResponse {
|
|
|
3485
3485
|
* <p>The policy document.</p>
|
|
3486
3486
|
* @public
|
|
3487
3487
|
*/
|
|
3488
|
-
Policy?: string;
|
|
3488
|
+
Policy?: string | undefined;
|
|
3489
3489
|
/**
|
|
3490
3490
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|
3491
3491
|
* @public
|
|
3492
3492
|
*/
|
|
3493
|
-
RevisionId?: string;
|
|
3493
|
+
RevisionId?: string | undefined;
|
|
3494
3494
|
}
|
|
3495
3495
|
/**
|
|
3496
3496
|
* @public
|
|
@@ -3524,7 +3524,7 @@ export interface GetPolicyRequest {
|
|
|
3524
3524
|
* <p>Specify a version or alias to get the policy for that resource.</p>
|
|
3525
3525
|
* @public
|
|
3526
3526
|
*/
|
|
3527
|
-
Qualifier?: string;
|
|
3527
|
+
Qualifier?: string | undefined;
|
|
3528
3528
|
}
|
|
3529
3529
|
/**
|
|
3530
3530
|
* @public
|
|
@@ -3534,12 +3534,12 @@ export interface GetPolicyResponse {
|
|
|
3534
3534
|
* <p>The resource-based policy.</p>
|
|
3535
3535
|
* @public
|
|
3536
3536
|
*/
|
|
3537
|
-
Policy?: string;
|
|
3537
|
+
Policy?: string | undefined;
|
|
3538
3538
|
/**
|
|
3539
3539
|
* <p>A unique identifier for the current revision of the policy.</p>
|
|
3540
3540
|
* @public
|
|
3541
3541
|
*/
|
|
3542
|
-
RevisionId?: string;
|
|
3542
|
+
RevisionId?: string | undefined;
|
|
3543
3543
|
}
|
|
3544
3544
|
/**
|
|
3545
3545
|
* @public
|
|
@@ -3596,32 +3596,32 @@ export interface GetProvisionedConcurrencyConfigResponse {
|
|
|
3596
3596
|
* <p>The amount of provisioned concurrency requested.</p>
|
|
3597
3597
|
* @public
|
|
3598
3598
|
*/
|
|
3599
|
-
RequestedProvisionedConcurrentExecutions?: number;
|
|
3599
|
+
RequestedProvisionedConcurrentExecutions?: number | undefined;
|
|
3600
3600
|
/**
|
|
3601
3601
|
* <p>The amount of provisioned concurrency available.</p>
|
|
3602
3602
|
* @public
|
|
3603
3603
|
*/
|
|
3604
|
-
AvailableProvisionedConcurrentExecutions?: number;
|
|
3604
|
+
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
3605
3605
|
/**
|
|
3606
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>
|
|
3607
3607
|
* @public
|
|
3608
3608
|
*/
|
|
3609
|
-
AllocatedProvisionedConcurrentExecutions?: number;
|
|
3609
|
+
AllocatedProvisionedConcurrentExecutions?: number | undefined;
|
|
3610
3610
|
/**
|
|
3611
3611
|
* <p>The status of the allocation process.</p>
|
|
3612
3612
|
* @public
|
|
3613
3613
|
*/
|
|
3614
|
-
Status?: ProvisionedConcurrencyStatusEnum;
|
|
3614
|
+
Status?: ProvisionedConcurrencyStatusEnum | undefined;
|
|
3615
3615
|
/**
|
|
3616
3616
|
* <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
|
|
3617
3617
|
* @public
|
|
3618
3618
|
*/
|
|
3619
|
-
StatusReason?: string;
|
|
3619
|
+
StatusReason?: string | undefined;
|
|
3620
3620
|
/**
|
|
3621
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>
|
|
3622
3622
|
* @public
|
|
3623
3623
|
*/
|
|
3624
|
-
LastModified?: string;
|
|
3624
|
+
LastModified?: string | undefined;
|
|
3625
3625
|
}
|
|
3626
3626
|
/**
|
|
3627
3627
|
* <p>The specified configuration does not exist.</p>
|
|
@@ -3630,7 +3630,7 @@ export interface GetProvisionedConcurrencyConfigResponse {
|
|
|
3630
3630
|
export declare class ProvisionedConcurrencyConfigNotFoundException extends __BaseException {
|
|
3631
3631
|
readonly name: "ProvisionedConcurrencyConfigNotFoundException";
|
|
3632
3632
|
readonly $fault: "client";
|
|
3633
|
-
Type?: string;
|
|
3633
|
+
Type?: string | undefined;
|
|
3634
3634
|
/**
|
|
3635
3635
|
* @internal
|
|
3636
3636
|
*/
|
|
@@ -3669,7 +3669,7 @@ export interface GetRuntimeManagementConfigRequest {
|
|
|
3669
3669
|
* <code>$LATEST</code> version is returned.</p>
|
|
3670
3670
|
* @public
|
|
3671
3671
|
*/
|
|
3672
|
-
Qualifier?: string;
|
|
3672
|
+
Qualifier?: string | undefined;
|
|
3673
3673
|
}
|
|
3674
3674
|
/**
|
|
3675
3675
|
* @public
|
|
@@ -3692,18 +3692,18 @@ export interface GetRuntimeManagementConfigResponse {
|
|
|
3692
3692
|
* <p>The current runtime update mode of the function.</p>
|
|
3693
3693
|
* @public
|
|
3694
3694
|
*/
|
|
3695
|
-
UpdateRuntimeOn?: UpdateRuntimeOn;
|
|
3695
|
+
UpdateRuntimeOn?: UpdateRuntimeOn | undefined;
|
|
3696
3696
|
/**
|
|
3697
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>
|
|
3698
3698
|
* is returned.</p>
|
|
3699
3699
|
* @public
|
|
3700
3700
|
*/
|
|
3701
|
-
RuntimeVersionArn?: string;
|
|
3701
|
+
RuntimeVersionArn?: string | undefined;
|
|
3702
3702
|
/**
|
|
3703
3703
|
* <p>The Amazon Resource Name (ARN) of your function.</p>
|
|
3704
3704
|
* @public
|
|
3705
3705
|
*/
|
|
3706
|
-
FunctionArn?: string;
|
|
3706
|
+
FunctionArn?: string | undefined;
|
|
3707
3707
|
}
|
|
3708
3708
|
/**
|
|
3709
3709
|
* <p>Need additional permissions to configure VPC settings.</p>
|
|
@@ -3712,8 +3712,8 @@ export interface GetRuntimeManagementConfigResponse {
|
|
|
3712
3712
|
export declare class EC2AccessDeniedException extends __BaseException {
|
|
3713
3713
|
readonly name: "EC2AccessDeniedException";
|
|
3714
3714
|
readonly $fault: "server";
|
|
3715
|
-
Type?: string;
|
|
3716
|
-
Message?: string;
|
|
3715
|
+
Type?: string | undefined;
|
|
3716
|
+
Message?: string | undefined;
|
|
3717
3717
|
/**
|
|
3718
3718
|
* @internal
|
|
3719
3719
|
*/
|
|
@@ -3727,8 +3727,8 @@ export declare class EC2AccessDeniedException extends __BaseException {
|
|
|
3727
3727
|
export declare class EC2ThrottledException extends __BaseException {
|
|
3728
3728
|
readonly name: "EC2ThrottledException";
|
|
3729
3729
|
readonly $fault: "server";
|
|
3730
|
-
Type?: string;
|
|
3731
|
-
Message?: string;
|
|
3730
|
+
Type?: string | undefined;
|
|
3731
|
+
Message?: string | undefined;
|
|
3732
3732
|
/**
|
|
3733
3733
|
* @internal
|
|
3734
3734
|
*/
|
|
@@ -3742,9 +3742,9 @@ export declare class EC2ThrottledException extends __BaseException {
|
|
|
3742
3742
|
export declare class EC2UnexpectedException extends __BaseException {
|
|
3743
3743
|
readonly name: "EC2UnexpectedException";
|
|
3744
3744
|
readonly $fault: "server";
|
|
3745
|
-
Type?: string;
|
|
3746
|
-
Message?: string;
|
|
3747
|
-
EC2ErrorCode?: string;
|
|
3745
|
+
Type?: string | undefined;
|
|
3746
|
+
Message?: string | undefined;
|
|
3747
|
+
EC2ErrorCode?: string | undefined;
|
|
3748
3748
|
/**
|
|
3749
3749
|
* @internal
|
|
3750
3750
|
*/
|
|
@@ -3757,8 +3757,8 @@ export declare class EC2UnexpectedException extends __BaseException {
|
|
|
3757
3757
|
export declare class EFSIOException extends __BaseException {
|
|
3758
3758
|
readonly name: "EFSIOException";
|
|
3759
3759
|
readonly $fault: "client";
|
|
3760
|
-
Type?: string;
|
|
3761
|
-
Message?: string;
|
|
3760
|
+
Type?: string | undefined;
|
|
3761
|
+
Message?: string | undefined;
|
|
3762
3762
|
/**
|
|
3763
3763
|
* @internal
|
|
3764
3764
|
*/
|
|
@@ -3771,8 +3771,8 @@ export declare class EFSIOException extends __BaseException {
|
|
|
3771
3771
|
export declare class EFSMountConnectivityException extends __BaseException {
|
|
3772
3772
|
readonly name: "EFSMountConnectivityException";
|
|
3773
3773
|
readonly $fault: "client";
|
|
3774
|
-
Type?: string;
|
|
3775
|
-
Message?: string;
|
|
3774
|
+
Type?: string | undefined;
|
|
3775
|
+
Message?: string | undefined;
|
|
3776
3776
|
/**
|
|
3777
3777
|
* @internal
|
|
3778
3778
|
*/
|
|
@@ -3786,8 +3786,8 @@ export declare class EFSMountConnectivityException extends __BaseException {
|
|
|
3786
3786
|
export declare class EFSMountFailureException extends __BaseException {
|
|
3787
3787
|
readonly name: "EFSMountFailureException";
|
|
3788
3788
|
readonly $fault: "client";
|
|
3789
|
-
Type?: string;
|
|
3790
|
-
Message?: string;
|
|
3789
|
+
Type?: string | undefined;
|
|
3790
|
+
Message?: string | undefined;
|
|
3791
3791
|
/**
|
|
3792
3792
|
* @internal
|
|
3793
3793
|
*/
|
|
@@ -3801,8 +3801,8 @@ export declare class EFSMountFailureException extends __BaseException {
|
|
|
3801
3801
|
export declare class EFSMountTimeoutException extends __BaseException {
|
|
3802
3802
|
readonly name: "EFSMountTimeoutException";
|
|
3803
3803
|
readonly $fault: "client";
|
|
3804
|
-
Type?: string;
|
|
3805
|
-
Message?: string;
|
|
3804
|
+
Type?: string | undefined;
|
|
3805
|
+
Message?: string | undefined;
|
|
3806
3806
|
/**
|
|
3807
3807
|
* @internal
|
|
3808
3808
|
*/
|
|
@@ -3817,8 +3817,8 @@ export declare class EFSMountTimeoutException extends __BaseException {
|
|
|
3817
3817
|
export declare class ENILimitReachedException extends __BaseException {
|
|
3818
3818
|
readonly name: "ENILimitReachedException";
|
|
3819
3819
|
readonly $fault: "server";
|
|
3820
|
-
Type?: string;
|
|
3821
|
-
Message?: string;
|
|
3820
|
+
Type?: string | undefined;
|
|
3821
|
+
Message?: string | undefined;
|
|
3822
3822
|
/**
|
|
3823
3823
|
* @internal
|
|
3824
3824
|
*/
|
|
@@ -3835,7 +3835,7 @@ export declare class InvalidRequestContentException extends __BaseException {
|
|
|
3835
3835
|
* <p>The exception type.</p>
|
|
3836
3836
|
* @public
|
|
3837
3837
|
*/
|
|
3838
|
-
Type?: string;
|
|
3838
|
+
Type?: string | undefined;
|
|
3839
3839
|
/**
|
|
3840
3840
|
* @internal
|
|
3841
3841
|
*/
|
|
@@ -3848,8 +3848,8 @@ export declare class InvalidRequestContentException extends __BaseException {
|
|
|
3848
3848
|
export declare class InvalidRuntimeException extends __BaseException {
|
|
3849
3849
|
readonly name: "InvalidRuntimeException";
|
|
3850
3850
|
readonly $fault: "server";
|
|
3851
|
-
Type?: string;
|
|
3852
|
-
Message?: string;
|
|
3851
|
+
Type?: string | undefined;
|
|
3852
|
+
Message?: string | undefined;
|
|
3853
3853
|
/**
|
|
3854
3854
|
* @internal
|
|
3855
3855
|
*/
|
|
@@ -3862,8 +3862,8 @@ export declare class InvalidRuntimeException extends __BaseException {
|
|
|
3862
3862
|
export declare class InvalidSecurityGroupIDException extends __BaseException {
|
|
3863
3863
|
readonly name: "InvalidSecurityGroupIDException";
|
|
3864
3864
|
readonly $fault: "server";
|
|
3865
|
-
Type?: string;
|
|
3866
|
-
Message?: string;
|
|
3865
|
+
Type?: string | undefined;
|
|
3866
|
+
Message?: string | undefined;
|
|
3867
3867
|
/**
|
|
3868
3868
|
* @internal
|
|
3869
3869
|
*/
|
|
@@ -3876,8 +3876,8 @@ export declare class InvalidSecurityGroupIDException extends __BaseException {
|
|
|
3876
3876
|
export declare class InvalidSubnetIDException extends __BaseException {
|
|
3877
3877
|
readonly name: "InvalidSubnetIDException";
|
|
3878
3878
|
readonly $fault: "server";
|
|
3879
|
-
Type?: string;
|
|
3880
|
-
Message?: string;
|
|
3879
|
+
Type?: string | undefined;
|
|
3880
|
+
Message?: string | undefined;
|
|
3881
3881
|
/**
|
|
3882
3882
|
* @internal
|
|
3883
3883
|
*/
|
|
@@ -3890,8 +3890,8 @@ export declare class InvalidSubnetIDException extends __BaseException {
|
|
|
3890
3890
|
export declare class InvalidZipFileException extends __BaseException {
|
|
3891
3891
|
readonly name: "InvalidZipFileException";
|
|
3892
3892
|
readonly $fault: "server";
|
|
3893
|
-
Type?: string;
|
|
3894
|
-
Message?: string;
|
|
3893
|
+
Type?: string | undefined;
|
|
3894
|
+
Message?: string | undefined;
|
|
3895
3895
|
/**
|
|
3896
3896
|
* @internal
|
|
3897
3897
|
*/
|
|
@@ -3972,31 +3972,31 @@ export interface InvocationRequest {
|
|
|
3972
3972
|
* </ul>
|
|
3973
3973
|
* @public
|
|
3974
3974
|
*/
|
|
3975
|
-
InvocationType?: InvocationType;
|
|
3975
|
+
InvocationType?: InvocationType | undefined;
|
|
3976
3976
|
/**
|
|
3977
3977
|
* <p>Set to <code>Tail</code> to include the execution log in the response. Applies to synchronously invoked functions only.</p>
|
|
3978
3978
|
* @public
|
|
3979
3979
|
*/
|
|
3980
|
-
LogType?: LogType;
|
|
3980
|
+
LogType?: LogType | undefined;
|
|
3981
3981
|
/**
|
|
3982
3982
|
* <p>Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context
|
|
3983
3983
|
* object. Lambda passes the <code>ClientContext</code> object to your function for
|
|
3984
3984
|
* synchronous invocations only.</p>
|
|
3985
3985
|
* @public
|
|
3986
3986
|
*/
|
|
3987
|
-
ClientContext?: string;
|
|
3987
|
+
ClientContext?: string | undefined;
|
|
3988
3988
|
/**
|
|
3989
3989
|
* <p>The JSON that you want to provide to your Lambda function as input.</p>
|
|
3990
3990
|
* <p>You can enter the JSON directly. For example, <code>--payload '\{ "key": "value" \}'</code>. You can also
|
|
3991
3991
|
* specify a file path. For example, <code>--payload file://payload.json</code>.</p>
|
|
3992
3992
|
* @public
|
|
3993
3993
|
*/
|
|
3994
|
-
Payload?: Uint8Array;
|
|
3994
|
+
Payload?: Uint8Array | undefined;
|
|
3995
3995
|
/**
|
|
3996
3996
|
* <p>Specify a version or alias to invoke a published version of the function.</p>
|
|
3997
3997
|
* @public
|
|
3998
3998
|
*/
|
|
3999
|
-
Qualifier?: string;
|
|
3999
|
+
Qualifier?: string | undefined;
|
|
4000
4000
|
}
|
|
4001
4001
|
/**
|
|
4002
4002
|
* @public
|
|
@@ -4008,29 +4008,29 @@ export interface InvocationResponse {
|
|
|
4008
4008
|
* the <code>DryRun</code> invocation type, the status code is 204.</p>
|
|
4009
4009
|
* @public
|
|
4010
4010
|
*/
|
|
4011
|
-
StatusCode?: number;
|
|
4011
|
+
StatusCode?: number | undefined;
|
|
4012
4012
|
/**
|
|
4013
4013
|
* <p>If present, indicates that an error occurred during function execution. Details about the error are included
|
|
4014
4014
|
* in the response payload.</p>
|
|
4015
4015
|
* @public
|
|
4016
4016
|
*/
|
|
4017
|
-
FunctionError?: string;
|
|
4017
|
+
FunctionError?: string | undefined;
|
|
4018
4018
|
/**
|
|
4019
4019
|
* <p>The last 4 KB of the execution log, which is base64-encoded.</p>
|
|
4020
4020
|
* @public
|
|
4021
4021
|
*/
|
|
4022
|
-
LogResult?: string;
|
|
4022
|
+
LogResult?: string | undefined;
|
|
4023
4023
|
/**
|
|
4024
4024
|
* <p>The response from the function, or an error object.</p>
|
|
4025
4025
|
* @public
|
|
4026
4026
|
*/
|
|
4027
|
-
Payload?: Uint8Array;
|
|
4027
|
+
Payload?: Uint8Array | undefined;
|
|
4028
4028
|
/**
|
|
4029
4029
|
* <p>The version of the function that executed. When you invoke a function with an alias, this indicates which
|
|
4030
4030
|
* version the alias resolved to.</p>
|
|
4031
4031
|
* @public
|
|
4032
4032
|
*/
|
|
4033
|
-
ExecutedVersion?: string;
|
|
4033
|
+
ExecutedVersion?: string | undefined;
|
|
4034
4034
|
}
|
|
4035
4035
|
/**
|
|
4036
4036
|
* <p>Lambda couldn't decrypt the environment variables because KMS access was denied.
|
|
@@ -4040,8 +4040,8 @@ export interface InvocationResponse {
|
|
|
4040
4040
|
export declare class KMSAccessDeniedException extends __BaseException {
|
|
4041
4041
|
readonly name: "KMSAccessDeniedException";
|
|
4042
4042
|
readonly $fault: "server";
|
|
4043
|
-
Type?: string;
|
|
4044
|
-
Message?: string;
|
|
4043
|
+
Type?: string | undefined;
|
|
4044
|
+
Message?: string | undefined;
|
|
4045
4045
|
/**
|
|
4046
4046
|
* @internal
|
|
4047
4047
|
*/
|
|
@@ -4055,8 +4055,8 @@ export declare class KMSAccessDeniedException extends __BaseException {
|
|
|
4055
4055
|
export declare class KMSDisabledException extends __BaseException {
|
|
4056
4056
|
readonly name: "KMSDisabledException";
|
|
4057
4057
|
readonly $fault: "server";
|
|
4058
|
-
Type?: string;
|
|
4059
|
-
Message?: string;
|
|
4058
|
+
Type?: string | undefined;
|
|
4059
|
+
Message?: string | undefined;
|
|
4060
4060
|
/**
|
|
4061
4061
|
* @internal
|
|
4062
4062
|
*/
|
|
@@ -4069,8 +4069,8 @@ export declare class KMSDisabledException extends __BaseException {
|
|
|
4069
4069
|
export declare class KMSInvalidStateException extends __BaseException {
|
|
4070
4070
|
readonly name: "KMSInvalidStateException";
|
|
4071
4071
|
readonly $fault: "server";
|
|
4072
|
-
Type?: string;
|
|
4073
|
-
Message?: string;
|
|
4072
|
+
Type?: string | undefined;
|
|
4073
|
+
Message?: string | undefined;
|
|
4074
4074
|
/**
|
|
4075
4075
|
* @internal
|
|
4076
4076
|
*/
|
|
@@ -4084,8 +4084,8 @@ export declare class KMSInvalidStateException extends __BaseException {
|
|
|
4084
4084
|
export declare class KMSNotFoundException extends __BaseException {
|
|
4085
4085
|
readonly name: "KMSNotFoundException";
|
|
4086
4086
|
readonly $fault: "server";
|
|
4087
|
-
Type?: string;
|
|
4088
|
-
Message?: string;
|
|
4087
|
+
Type?: string | undefined;
|
|
4088
|
+
Message?: string | undefined;
|
|
4089
4089
|
/**
|
|
4090
4090
|
* @internal
|
|
4091
4091
|
*/
|
|
@@ -4102,12 +4102,12 @@ export declare class RecursiveInvocationException extends __BaseException {
|
|
|
4102
4102
|
* <p>The exception type.</p>
|
|
4103
4103
|
* @public
|
|
4104
4104
|
*/
|
|
4105
|
-
Type?: string;
|
|
4105
|
+
Type?: string | undefined;
|
|
4106
4106
|
/**
|
|
4107
4107
|
* <p>The exception message.</p>
|
|
4108
4108
|
* @public
|
|
4109
4109
|
*/
|
|
4110
|
-
Message?: string;
|
|
4110
|
+
Message?: string | undefined;
|
|
4111
4111
|
/**
|
|
4112
4112
|
* @internal
|
|
4113
4113
|
*/
|
|
@@ -4121,7 +4121,7 @@ export declare class RecursiveInvocationException extends __BaseException {
|
|
|
4121
4121
|
export declare class RequestTooLargeException extends __BaseException {
|
|
4122
4122
|
readonly name: "RequestTooLargeException";
|
|
4123
4123
|
readonly $fault: "client";
|
|
4124
|
-
Type?: string;
|
|
4124
|
+
Type?: string | undefined;
|
|
4125
4125
|
/**
|
|
4126
4126
|
* @internal
|
|
4127
4127
|
*/
|
|
@@ -4139,7 +4139,7 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
4139
4139
|
* <p>The exception type.</p>
|
|
4140
4140
|
* @public
|
|
4141
4141
|
*/
|
|
4142
|
-
Type?: string;
|
|
4142
|
+
Type?: string | undefined;
|
|
4143
4143
|
/**
|
|
4144
4144
|
* @internal
|
|
4145
4145
|
*/
|
|
@@ -4153,8 +4153,8 @@ export declare class ResourceNotReadyException extends __BaseException {
|
|
|
4153
4153
|
export declare class SnapStartException extends __BaseException {
|
|
4154
4154
|
readonly name: "SnapStartException";
|
|
4155
4155
|
readonly $fault: "client";
|
|
4156
|
-
Type?: string;
|
|
4157
|
-
Message?: string;
|
|
4156
|
+
Type?: string | undefined;
|
|
4157
|
+
Message?: string | undefined;
|
|
4158
4158
|
/**
|
|
4159
4159
|
* @internal
|
|
4160
4160
|
*/
|
|
@@ -4167,8 +4167,8 @@ export declare class SnapStartException extends __BaseException {
|
|
|
4167
4167
|
export declare class SnapStartNotReadyException extends __BaseException {
|
|
4168
4168
|
readonly name: "SnapStartNotReadyException";
|
|
4169
4169
|
readonly $fault: "client";
|
|
4170
|
-
Type?: string;
|
|
4171
|
-
Message?: string;
|
|
4170
|
+
Type?: string | undefined;
|
|
4171
|
+
Message?: string | undefined;
|
|
4172
4172
|
/**
|
|
4173
4173
|
* @internal
|
|
4174
4174
|
*/
|
|
@@ -4181,8 +4181,8 @@ export declare class SnapStartNotReadyException extends __BaseException {
|
|
|
4181
4181
|
export declare class SnapStartTimeoutException extends __BaseException {
|
|
4182
4182
|
readonly name: "SnapStartTimeoutException";
|
|
4183
4183
|
readonly $fault: "client";
|
|
4184
|
-
Type?: string;
|
|
4185
|
-
Message?: string;
|
|
4184
|
+
Type?: string | undefined;
|
|
4185
|
+
Message?: string | undefined;
|
|
4186
4186
|
/**
|
|
4187
4187
|
* @internal
|
|
4188
4188
|
*/
|
|
@@ -4196,8 +4196,8 @@ export declare class SnapStartTimeoutException extends __BaseException {
|
|
|
4196
4196
|
export declare class SubnetIPAddressLimitReachedException extends __BaseException {
|
|
4197
4197
|
readonly name: "SubnetIPAddressLimitReachedException";
|
|
4198
4198
|
readonly $fault: "server";
|
|
4199
|
-
Type?: string;
|
|
4200
|
-
Message?: string;
|
|
4199
|
+
Type?: string | undefined;
|
|
4200
|
+
Message?: string | undefined;
|
|
4201
4201
|
/**
|
|
4202
4202
|
* @internal
|
|
4203
4203
|
*/
|
|
@@ -4210,7 +4210,7 @@ export declare class SubnetIPAddressLimitReachedException extends __BaseExceptio
|
|
|
4210
4210
|
export declare class UnsupportedMediaTypeException extends __BaseException {
|
|
4211
4211
|
readonly name: "UnsupportedMediaTypeException";
|
|
4212
4212
|
readonly $fault: "client";
|
|
4213
|
-
Type?: string;
|
|
4213
|
+
Type?: string | undefined;
|
|
4214
4214
|
/**
|
|
4215
4215
|
* @internal
|
|
4216
4216
|
*/
|
|
@@ -4261,7 +4261,7 @@ export interface InvokeAsyncResponse {
|
|
|
4261
4261
|
* <p>The status code.</p>
|
|
4262
4262
|
* @public
|
|
4263
4263
|
*/
|
|
4264
|
-
Status?: number;
|
|
4264
|
+
Status?: number | undefined;
|
|
4265
4265
|
}
|
|
4266
4266
|
/**
|
|
4267
4267
|
* @public
|
|
@@ -4320,30 +4320,30 @@ export interface InvokeWithResponseStreamRequest {
|
|
|
4320
4320
|
* </ul>
|
|
4321
4321
|
* @public
|
|
4322
4322
|
*/
|
|
4323
|
-
InvocationType?: ResponseStreamingInvocationType;
|
|
4323
|
+
InvocationType?: ResponseStreamingInvocationType | undefined;
|
|
4324
4324
|
/**
|
|
4325
4325
|
* <p>Set to <code>Tail</code> to include the execution log in the response. Applies to synchronously invoked functions only.</p>
|
|
4326
4326
|
* @public
|
|
4327
4327
|
*/
|
|
4328
|
-
LogType?: LogType;
|
|
4328
|
+
LogType?: LogType | undefined;
|
|
4329
4329
|
/**
|
|
4330
4330
|
* <p>Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context
|
|
4331
4331
|
* object.</p>
|
|
4332
4332
|
* @public
|
|
4333
4333
|
*/
|
|
4334
|
-
ClientContext?: string;
|
|
4334
|
+
ClientContext?: string | undefined;
|
|
4335
4335
|
/**
|
|
4336
4336
|
* <p>The alias name.</p>
|
|
4337
4337
|
* @public
|
|
4338
4338
|
*/
|
|
4339
|
-
Qualifier?: string;
|
|
4339
|
+
Qualifier?: string | undefined;
|
|
4340
4340
|
/**
|
|
4341
4341
|
* <p>The JSON that you want to provide to your Lambda function as input.</p>
|
|
4342
4342
|
* <p>You can enter the JSON directly. For example, <code>--payload '\{ "key": "value" \}'</code>. You can also
|
|
4343
4343
|
* specify a file path. For example, <code>--payload file://payload.json</code>.</p>
|
|
4344
4344
|
* @public
|
|
4345
4345
|
*/
|
|
4346
|
-
Payload?: Uint8Array;
|
|
4346
|
+
Payload?: Uint8Array | undefined;
|
|
4347
4347
|
}
|
|
4348
4348
|
/**
|
|
4349
4349
|
* <p>A response confirming that the event stream is complete.</p>
|
|
@@ -4354,17 +4354,17 @@ export interface InvokeWithResponseStreamCompleteEvent {
|
|
|
4354
4354
|
* <p>An error code.</p>
|
|
4355
4355
|
* @public
|
|
4356
4356
|
*/
|
|
4357
|
-
ErrorCode?: string;
|
|
4357
|
+
ErrorCode?: string | undefined;
|
|
4358
4358
|
/**
|
|
4359
4359
|
* <p>The details of any returned error.</p>
|
|
4360
4360
|
* @public
|
|
4361
4361
|
*/
|
|
4362
|
-
ErrorDetails?: string;
|
|
4362
|
+
ErrorDetails?: string | undefined;
|
|
4363
4363
|
/**
|
|
4364
4364
|
* <p>The last 4 KB of the execution log, which is base64-encoded.</p>
|
|
4365
4365
|
* @public
|
|
4366
4366
|
*/
|
|
4367
|
-
LogResult?: string;
|
|
4367
|
+
LogResult?: string | undefined;
|
|
4368
4368
|
}
|
|
4369
4369
|
/**
|
|
4370
4370
|
* <p>A chunk of the streamed response payload.</p>
|
|
@@ -4375,7 +4375,7 @@ export interface InvokeResponseStreamUpdate {
|
|
|
4375
4375
|
* <p>Data returned by your Lambda function.</p>
|
|
4376
4376
|
* @public
|
|
4377
4377
|
*/
|
|
4378
|
-
Payload?: Uint8Array;
|
|
4378
|
+
Payload?: Uint8Array | undefined;
|
|
4379
4379
|
}
|
|
4380
4380
|
/**
|
|
4381
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>
|
|
@@ -4430,23 +4430,23 @@ export interface InvokeWithResponseStreamResponse {
|
|
|
4430
4430
|
* invocation type, this status code is 204.</p>
|
|
4431
4431
|
* @public
|
|
4432
4432
|
*/
|
|
4433
|
-
StatusCode?: number;
|
|
4433
|
+
StatusCode?: number | undefined;
|
|
4434
4434
|
/**
|
|
4435
4435
|
* <p>The version of the function that executed. When you invoke a function with an alias, this
|
|
4436
4436
|
* indicates which version the alias resolved to.</p>
|
|
4437
4437
|
* @public
|
|
4438
4438
|
*/
|
|
4439
|
-
ExecutedVersion?: string;
|
|
4439
|
+
ExecutedVersion?: string | undefined;
|
|
4440
4440
|
/**
|
|
4441
4441
|
* <p>The stream of response payloads.</p>
|
|
4442
4442
|
* @public
|
|
4443
4443
|
*/
|
|
4444
|
-
EventStream?: AsyncIterable<InvokeWithResponseStreamResponseEvent
|
|
4444
|
+
EventStream?: AsyncIterable<InvokeWithResponseStreamResponseEvent> | undefined;
|
|
4445
4445
|
/**
|
|
4446
4446
|
* <p>The type of data the stream is returning.</p>
|
|
4447
4447
|
* @public
|
|
4448
4448
|
*/
|
|
4449
|
-
ResponseStreamContentType?: string;
|
|
4449
|
+
ResponseStreamContentType?: string | undefined;
|
|
4450
4450
|
}
|
|
4451
4451
|
/**
|
|
4452
4452
|
* @public
|
|
@@ -4480,17 +4480,17 @@ export interface ListAliasesRequest {
|
|
|
4480
4480
|
* <p>Specify a function version to only list aliases that invoke that version.</p>
|
|
4481
4481
|
* @public
|
|
4482
4482
|
*/
|
|
4483
|
-
FunctionVersion?: string;
|
|
4483
|
+
FunctionVersion?: string | undefined;
|
|
4484
4484
|
/**
|
|
4485
4485
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4486
4486
|
* @public
|
|
4487
4487
|
*/
|
|
4488
|
-
Marker?: string;
|
|
4488
|
+
Marker?: string | undefined;
|
|
4489
4489
|
/**
|
|
4490
4490
|
* <p>Limit the number of aliases returned.</p>
|
|
4491
4491
|
* @public
|
|
4492
4492
|
*/
|
|
4493
|
-
MaxItems?: number;
|
|
4493
|
+
MaxItems?: number | undefined;
|
|
4494
4494
|
}
|
|
4495
4495
|
/**
|
|
4496
4496
|
* @public
|
|
@@ -4500,12 +4500,12 @@ export interface ListAliasesResponse {
|
|
|
4500
4500
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4501
4501
|
* @public
|
|
4502
4502
|
*/
|
|
4503
|
-
NextMarker?: string;
|
|
4503
|
+
NextMarker?: string | undefined;
|
|
4504
4504
|
/**
|
|
4505
4505
|
* <p>A list of aliases.</p>
|
|
4506
4506
|
* @public
|
|
4507
4507
|
*/
|
|
4508
|
-
Aliases?: AliasConfiguration[];
|
|
4508
|
+
Aliases?: AliasConfiguration[] | undefined;
|
|
4509
4509
|
}
|
|
4510
4510
|
/**
|
|
4511
4511
|
* @public
|
|
@@ -4515,12 +4515,12 @@ export interface ListCodeSigningConfigsRequest {
|
|
|
4515
4515
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4516
4516
|
* @public
|
|
4517
4517
|
*/
|
|
4518
|
-
Marker?: string;
|
|
4518
|
+
Marker?: string | undefined;
|
|
4519
4519
|
/**
|
|
4520
4520
|
* <p>Maximum number of items to return.</p>
|
|
4521
4521
|
* @public
|
|
4522
4522
|
*/
|
|
4523
|
-
MaxItems?: number;
|
|
4523
|
+
MaxItems?: number | undefined;
|
|
4524
4524
|
}
|
|
4525
4525
|
/**
|
|
4526
4526
|
* @public
|
|
@@ -4530,12 +4530,12 @@ export interface ListCodeSigningConfigsResponse {
|
|
|
4530
4530
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4531
4531
|
* @public
|
|
4532
4532
|
*/
|
|
4533
|
-
NextMarker?: string;
|
|
4533
|
+
NextMarker?: string | undefined;
|
|
4534
4534
|
/**
|
|
4535
4535
|
* <p>The code signing configurations</p>
|
|
4536
4536
|
* @public
|
|
4537
4537
|
*/
|
|
4538
|
-
CodeSigningConfigs?: CodeSigningConfig[];
|
|
4538
|
+
CodeSigningConfigs?: CodeSigningConfig[] | undefined;
|
|
4539
4539
|
}
|
|
4540
4540
|
/**
|
|
4541
4541
|
* @public
|
|
@@ -4571,7 +4571,7 @@ export interface ListEventSourceMappingsRequest {
|
|
|
4571
4571
|
* </ul>
|
|
4572
4572
|
* @public
|
|
4573
4573
|
*/
|
|
4574
|
-
EventSourceArn?: string;
|
|
4574
|
+
EventSourceArn?: string | undefined;
|
|
4575
4575
|
/**
|
|
4576
4576
|
* <p>The name or ARN of the Lambda function.</p>
|
|
4577
4577
|
* <p class="title">
|
|
@@ -4599,18 +4599,18 @@ export interface ListEventSourceMappingsRequest {
|
|
|
4599
4599
|
* characters in length.</p>
|
|
4600
4600
|
* @public
|
|
4601
4601
|
*/
|
|
4602
|
-
FunctionName?: string;
|
|
4602
|
+
FunctionName?: string | undefined;
|
|
4603
4603
|
/**
|
|
4604
4604
|
* <p>A pagination token returned by a previous call.</p>
|
|
4605
4605
|
* @public
|
|
4606
4606
|
*/
|
|
4607
|
-
Marker?: string;
|
|
4607
|
+
Marker?: string | undefined;
|
|
4608
4608
|
/**
|
|
4609
4609
|
* <p>The maximum number of event source mappings to return. Note that ListEventSourceMappings returns a maximum of
|
|
4610
4610
|
* 100 items in each response, even if you set the number higher.</p>
|
|
4611
4611
|
* @public
|
|
4612
4612
|
*/
|
|
4613
|
-
MaxItems?: number;
|
|
4613
|
+
MaxItems?: number | undefined;
|
|
4614
4614
|
}
|
|
4615
4615
|
/**
|
|
4616
4616
|
* @public
|
|
@@ -4620,12 +4620,12 @@ export interface ListEventSourceMappingsResponse {
|
|
|
4620
4620
|
* <p>A pagination token that's returned when the response doesn't contain all event source mappings.</p>
|
|
4621
4621
|
* @public
|
|
4622
4622
|
*/
|
|
4623
|
-
NextMarker?: string;
|
|
4623
|
+
NextMarker?: string | undefined;
|
|
4624
4624
|
/**
|
|
4625
4625
|
* <p>A list of event source mappings.</p>
|
|
4626
4626
|
* @public
|
|
4627
4627
|
*/
|
|
4628
|
-
EventSourceMappings?: EventSourceMappingConfiguration[];
|
|
4628
|
+
EventSourceMappings?: EventSourceMappingConfiguration[] | undefined;
|
|
4629
4629
|
}
|
|
4630
4630
|
/**
|
|
4631
4631
|
* @public
|
|
@@ -4659,12 +4659,12 @@ export interface ListFunctionEventInvokeConfigsRequest {
|
|
|
4659
4659
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4660
4660
|
* @public
|
|
4661
4661
|
*/
|
|
4662
|
-
Marker?: string;
|
|
4662
|
+
Marker?: string | undefined;
|
|
4663
4663
|
/**
|
|
4664
4664
|
* <p>The maximum number of configurations to return.</p>
|
|
4665
4665
|
* @public
|
|
4666
4666
|
*/
|
|
4667
|
-
MaxItems?: number;
|
|
4667
|
+
MaxItems?: number | undefined;
|
|
4668
4668
|
}
|
|
4669
4669
|
/**
|
|
4670
4670
|
* @public
|
|
@@ -4674,12 +4674,12 @@ export interface ListFunctionEventInvokeConfigsResponse {
|
|
|
4674
4674
|
* <p>A list of configurations.</p>
|
|
4675
4675
|
* @public
|
|
4676
4676
|
*/
|
|
4677
|
-
FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[];
|
|
4677
|
+
FunctionEventInvokeConfigs?: FunctionEventInvokeConfig[] | undefined;
|
|
4678
4678
|
/**
|
|
4679
4679
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4680
4680
|
* @public
|
|
4681
4681
|
*/
|
|
4682
|
-
NextMarker?: string;
|
|
4682
|
+
NextMarker?: string | undefined;
|
|
4683
4683
|
}
|
|
4684
4684
|
/**
|
|
4685
4685
|
* @public
|
|
@@ -4703,23 +4703,23 @@ export interface ListFunctionsRequest {
|
|
|
4703
4703
|
* <code>ALL</code>.</p>
|
|
4704
4704
|
* @public
|
|
4705
4705
|
*/
|
|
4706
|
-
MasterRegion?: string;
|
|
4706
|
+
MasterRegion?: string | undefined;
|
|
4707
4707
|
/**
|
|
4708
4708
|
* <p>Set to <code>ALL</code> to include entries for all published versions of each function.</p>
|
|
4709
4709
|
* @public
|
|
4710
4710
|
*/
|
|
4711
|
-
FunctionVersion?: FunctionVersion;
|
|
4711
|
+
FunctionVersion?: FunctionVersion | undefined;
|
|
4712
4712
|
/**
|
|
4713
4713
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4714
4714
|
* @public
|
|
4715
4715
|
*/
|
|
4716
|
-
Marker?: string;
|
|
4716
|
+
Marker?: string | undefined;
|
|
4717
4717
|
/**
|
|
4718
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,
|
|
4719
4719
|
* even if you set the number higher.</p>
|
|
4720
4720
|
* @public
|
|
4721
4721
|
*/
|
|
4722
|
-
MaxItems?: number;
|
|
4722
|
+
MaxItems?: number | undefined;
|
|
4723
4723
|
}
|
|
4724
4724
|
/**
|
|
4725
4725
|
* <p>A list of Lambda functions.</p>
|
|
@@ -4730,12 +4730,12 @@ export interface ListFunctionsResponse {
|
|
|
4730
4730
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4731
4731
|
* @public
|
|
4732
4732
|
*/
|
|
4733
|
-
NextMarker?: string;
|
|
4733
|
+
NextMarker?: string | undefined;
|
|
4734
4734
|
/**
|
|
4735
4735
|
* <p>A list of Lambda functions.</p>
|
|
4736
4736
|
* @public
|
|
4737
4737
|
*/
|
|
4738
|
-
Functions?: FunctionConfiguration[];
|
|
4738
|
+
Functions?: FunctionConfiguration[] | undefined;
|
|
4739
4739
|
}
|
|
4740
4740
|
/**
|
|
4741
4741
|
* @public
|
|
@@ -4750,12 +4750,12 @@ export interface ListFunctionsByCodeSigningConfigRequest {
|
|
|
4750
4750
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4751
4751
|
* @public
|
|
4752
4752
|
*/
|
|
4753
|
-
Marker?: string;
|
|
4753
|
+
Marker?: string | undefined;
|
|
4754
4754
|
/**
|
|
4755
4755
|
* <p>Maximum number of items to return.</p>
|
|
4756
4756
|
* @public
|
|
4757
4757
|
*/
|
|
4758
|
-
MaxItems?: number;
|
|
4758
|
+
MaxItems?: number | undefined;
|
|
4759
4759
|
}
|
|
4760
4760
|
/**
|
|
4761
4761
|
* @public
|
|
@@ -4765,12 +4765,12 @@ export interface ListFunctionsByCodeSigningConfigResponse {
|
|
|
4765
4765
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4766
4766
|
* @public
|
|
4767
4767
|
*/
|
|
4768
|
-
NextMarker?: string;
|
|
4768
|
+
NextMarker?: string | undefined;
|
|
4769
4769
|
/**
|
|
4770
4770
|
* <p>The function ARNs. </p>
|
|
4771
4771
|
* @public
|
|
4772
4772
|
*/
|
|
4773
|
-
FunctionArns?: string[];
|
|
4773
|
+
FunctionArns?: string[] | undefined;
|
|
4774
4774
|
}
|
|
4775
4775
|
/**
|
|
4776
4776
|
* @public
|
|
@@ -4804,13 +4804,13 @@ export interface ListFunctionUrlConfigsRequest {
|
|
|
4804
4804
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
4805
4805
|
* @public
|
|
4806
4806
|
*/
|
|
4807
|
-
Marker?: string;
|
|
4807
|
+
Marker?: string | undefined;
|
|
4808
4808
|
/**
|
|
4809
4809
|
* <p>The maximum number of function URLs to return in the response. Note that <code>ListFunctionUrlConfigs</code>
|
|
4810
4810
|
* returns a maximum of 50 items in each response, even if you set the number higher.</p>
|
|
4811
4811
|
* @public
|
|
4812
4812
|
*/
|
|
4813
|
-
MaxItems?: number;
|
|
4813
|
+
MaxItems?: number | undefined;
|
|
4814
4814
|
}
|
|
4815
4815
|
/**
|
|
4816
4816
|
* <p>Details about a Lambda function URL.</p>
|
|
@@ -4842,7 +4842,7 @@ export interface FunctionUrlConfig {
|
|
|
4842
4842
|
* for your function URL.</p>
|
|
4843
4843
|
* @public
|
|
4844
4844
|
*/
|
|
4845
|
-
Cors?: Cors;
|
|
4845
|
+
Cors?: Cors | undefined;
|
|
4846
4846
|
/**
|
|
4847
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
|
|
4848
4848
|
* users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
|
|
@@ -4868,7 +4868,7 @@ export interface FunctionUrlConfig {
|
|
|
4868
4868
|
* </ul>
|
|
4869
4869
|
* @public
|
|
4870
4870
|
*/
|
|
4871
|
-
InvokeMode?: InvokeMode;
|
|
4871
|
+
InvokeMode?: InvokeMode | undefined;
|
|
4872
4872
|
}
|
|
4873
4873
|
/**
|
|
4874
4874
|
* @public
|
|
@@ -4883,7 +4883,7 @@ export interface ListFunctionUrlConfigsResponse {
|
|
|
4883
4883
|
* <p>The pagination token that's included if more results are available.</p>
|
|
4884
4884
|
* @public
|
|
4885
4885
|
*/
|
|
4886
|
-
NextMarker?: string;
|
|
4886
|
+
NextMarker?: string | undefined;
|
|
4887
4887
|
}
|
|
4888
4888
|
/**
|
|
4889
4889
|
* @public
|
|
@@ -4897,23 +4897,23 @@ export interface ListLayersRequest {
|
|
|
4897
4897
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
4898
4898
|
* @public
|
|
4899
4899
|
*/
|
|
4900
|
-
CompatibleRuntime?: Runtime;
|
|
4900
|
+
CompatibleRuntime?: Runtime | undefined;
|
|
4901
4901
|
/**
|
|
4902
4902
|
* <p>A pagination token returned by a previous call.</p>
|
|
4903
4903
|
* @public
|
|
4904
4904
|
*/
|
|
4905
|
-
Marker?: string;
|
|
4905
|
+
Marker?: string | undefined;
|
|
4906
4906
|
/**
|
|
4907
4907
|
* <p>The maximum number of layers to return.</p>
|
|
4908
4908
|
* @public
|
|
4909
4909
|
*/
|
|
4910
|
-
MaxItems?: number;
|
|
4910
|
+
MaxItems?: number | undefined;
|
|
4911
4911
|
/**
|
|
4912
4912
|
* <p>The compatible
|
|
4913
4913
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
|
|
4914
4914
|
* @public
|
|
4915
4915
|
*/
|
|
4916
|
-
CompatibleArchitecture?: Architecture;
|
|
4916
|
+
CompatibleArchitecture?: Architecture | undefined;
|
|
4917
4917
|
}
|
|
4918
4918
|
/**
|
|
4919
4919
|
* <p>Details about a version of an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
@@ -4925,22 +4925,22 @@ export interface LayerVersionsListItem {
|
|
|
4925
4925
|
* <p>The ARN of the layer version.</p>
|
|
4926
4926
|
* @public
|
|
4927
4927
|
*/
|
|
4928
|
-
LayerVersionArn?: string;
|
|
4928
|
+
LayerVersionArn?: string | undefined;
|
|
4929
4929
|
/**
|
|
4930
4930
|
* <p>The version number.</p>
|
|
4931
4931
|
* @public
|
|
4932
4932
|
*/
|
|
4933
|
-
Version?: number;
|
|
4933
|
+
Version?: number | undefined;
|
|
4934
4934
|
/**
|
|
4935
4935
|
* <p>The description of the version.</p>
|
|
4936
4936
|
* @public
|
|
4937
4937
|
*/
|
|
4938
|
-
Description?: string;
|
|
4938
|
+
Description?: string | undefined;
|
|
4939
4939
|
/**
|
|
4940
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>
|
|
4941
4941
|
* @public
|
|
4942
4942
|
*/
|
|
4943
|
-
CreatedDate?: string;
|
|
4943
|
+
CreatedDate?: string | undefined;
|
|
4944
4944
|
/**
|
|
4945
4945
|
* <p>The layer's compatible runtimes.</p>
|
|
4946
4946
|
* <p>The following list includes deprecated runtimes. For more information, see
|
|
@@ -4949,18 +4949,18 @@ export interface LayerVersionsListItem {
|
|
|
4949
4949
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
4950
4950
|
* @public
|
|
4951
4951
|
*/
|
|
4952
|
-
CompatibleRuntimes?: Runtime[];
|
|
4952
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
4953
4953
|
/**
|
|
4954
4954
|
* <p>The layer's open-source license.</p>
|
|
4955
4955
|
* @public
|
|
4956
4956
|
*/
|
|
4957
|
-
LicenseInfo?: string;
|
|
4957
|
+
LicenseInfo?: string | undefined;
|
|
4958
4958
|
/**
|
|
4959
4959
|
* <p>A list of compatible
|
|
4960
4960
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
4961
4961
|
* @public
|
|
4962
4962
|
*/
|
|
4963
|
-
CompatibleArchitectures?: Architecture[];
|
|
4963
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
4964
4964
|
}
|
|
4965
4965
|
/**
|
|
4966
4966
|
* <p>Details about an <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">Lambda
|
|
@@ -4972,17 +4972,17 @@ export interface LayersListItem {
|
|
|
4972
4972
|
* <p>The name of the layer.</p>
|
|
4973
4973
|
* @public
|
|
4974
4974
|
*/
|
|
4975
|
-
LayerName?: string;
|
|
4975
|
+
LayerName?: string | undefined;
|
|
4976
4976
|
/**
|
|
4977
4977
|
* <p>The Amazon Resource Name (ARN) of the function layer.</p>
|
|
4978
4978
|
* @public
|
|
4979
4979
|
*/
|
|
4980
|
-
LayerArn?: string;
|
|
4980
|
+
LayerArn?: string | undefined;
|
|
4981
4981
|
/**
|
|
4982
4982
|
* <p>The newest version of the layer.</p>
|
|
4983
4983
|
* @public
|
|
4984
4984
|
*/
|
|
4985
|
-
LatestMatchingVersion?: LayerVersionsListItem;
|
|
4985
|
+
LatestMatchingVersion?: LayerVersionsListItem | undefined;
|
|
4986
4986
|
}
|
|
4987
4987
|
/**
|
|
4988
4988
|
* @public
|
|
@@ -4992,12 +4992,12 @@ export interface ListLayersResponse {
|
|
|
4992
4992
|
* <p>A pagination token returned when the response doesn't contain all layers.</p>
|
|
4993
4993
|
* @public
|
|
4994
4994
|
*/
|
|
4995
|
-
NextMarker?: string;
|
|
4995
|
+
NextMarker?: string | undefined;
|
|
4996
4996
|
/**
|
|
4997
4997
|
* <p>A list of function layers.</p>
|
|
4998
4998
|
* @public
|
|
4999
4999
|
*/
|
|
5000
|
-
Layers?: LayersListItem[];
|
|
5000
|
+
Layers?: LayersListItem[] | undefined;
|
|
5001
5001
|
}
|
|
5002
5002
|
/**
|
|
5003
5003
|
* @public
|
|
@@ -5011,7 +5011,7 @@ export interface ListLayerVersionsRequest {
|
|
|
5011
5011
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
5012
5012
|
* @public
|
|
5013
5013
|
*/
|
|
5014
|
-
CompatibleRuntime?: Runtime;
|
|
5014
|
+
CompatibleRuntime?: Runtime | undefined;
|
|
5015
5015
|
/**
|
|
5016
5016
|
* <p>The name or Amazon Resource Name (ARN) of the layer.</p>
|
|
5017
5017
|
* @public
|
|
@@ -5021,18 +5021,18 @@ export interface ListLayerVersionsRequest {
|
|
|
5021
5021
|
* <p>A pagination token returned by a previous call.</p>
|
|
5022
5022
|
* @public
|
|
5023
5023
|
*/
|
|
5024
|
-
Marker?: string;
|
|
5024
|
+
Marker?: string | undefined;
|
|
5025
5025
|
/**
|
|
5026
5026
|
* <p>The maximum number of versions to return.</p>
|
|
5027
5027
|
* @public
|
|
5028
5028
|
*/
|
|
5029
|
-
MaxItems?: number;
|
|
5029
|
+
MaxItems?: number | undefined;
|
|
5030
5030
|
/**
|
|
5031
5031
|
* <p>The compatible
|
|
5032
5032
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architecture</a>.</p>
|
|
5033
5033
|
* @public
|
|
5034
5034
|
*/
|
|
5035
|
-
CompatibleArchitecture?: Architecture;
|
|
5035
|
+
CompatibleArchitecture?: Architecture | undefined;
|
|
5036
5036
|
}
|
|
5037
5037
|
/**
|
|
5038
5038
|
* @public
|
|
@@ -5042,12 +5042,12 @@ export interface ListLayerVersionsResponse {
|
|
|
5042
5042
|
* <p>A pagination token returned when the response doesn't contain all versions.</p>
|
|
5043
5043
|
* @public
|
|
5044
5044
|
*/
|
|
5045
|
-
NextMarker?: string;
|
|
5045
|
+
NextMarker?: string | undefined;
|
|
5046
5046
|
/**
|
|
5047
5047
|
* <p>A list of versions.</p>
|
|
5048
5048
|
* @public
|
|
5049
5049
|
*/
|
|
5050
|
-
LayerVersions?: LayerVersionsListItem[];
|
|
5050
|
+
LayerVersions?: LayerVersionsListItem[] | undefined;
|
|
5051
5051
|
}
|
|
5052
5052
|
/**
|
|
5053
5053
|
* @public
|
|
@@ -5081,12 +5081,12 @@ export interface ListProvisionedConcurrencyConfigsRequest {
|
|
|
5081
5081
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
5082
5082
|
* @public
|
|
5083
5083
|
*/
|
|
5084
|
-
Marker?: string;
|
|
5084
|
+
Marker?: string | undefined;
|
|
5085
5085
|
/**
|
|
5086
5086
|
* <p>Specify a number to limit the number of configurations returned.</p>
|
|
5087
5087
|
* @public
|
|
5088
5088
|
*/
|
|
5089
|
-
MaxItems?: number;
|
|
5089
|
+
MaxItems?: number | undefined;
|
|
5090
5090
|
}
|
|
5091
5091
|
/**
|
|
5092
5092
|
* <p>Details about the provisioned concurrency configuration for a function alias or version.</p>
|
|
@@ -5097,37 +5097,37 @@ export interface ProvisionedConcurrencyConfigListItem {
|
|
|
5097
5097
|
* <p>The Amazon Resource Name (ARN) of the alias or version.</p>
|
|
5098
5098
|
* @public
|
|
5099
5099
|
*/
|
|
5100
|
-
FunctionArn?: string;
|
|
5100
|
+
FunctionArn?: string | undefined;
|
|
5101
5101
|
/**
|
|
5102
5102
|
* <p>The amount of provisioned concurrency requested.</p>
|
|
5103
5103
|
* @public
|
|
5104
5104
|
*/
|
|
5105
|
-
RequestedProvisionedConcurrentExecutions?: number;
|
|
5105
|
+
RequestedProvisionedConcurrentExecutions?: number | undefined;
|
|
5106
5106
|
/**
|
|
5107
5107
|
* <p>The amount of provisioned concurrency available.</p>
|
|
5108
5108
|
* @public
|
|
5109
5109
|
*/
|
|
5110
|
-
AvailableProvisionedConcurrentExecutions?: number;
|
|
5110
|
+
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
5111
5111
|
/**
|
|
5112
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>
|
|
5113
5113
|
* @public
|
|
5114
5114
|
*/
|
|
5115
|
-
AllocatedProvisionedConcurrentExecutions?: number;
|
|
5115
|
+
AllocatedProvisionedConcurrentExecutions?: number | undefined;
|
|
5116
5116
|
/**
|
|
5117
5117
|
* <p>The status of the allocation process.</p>
|
|
5118
5118
|
* @public
|
|
5119
5119
|
*/
|
|
5120
|
-
Status?: ProvisionedConcurrencyStatusEnum;
|
|
5120
|
+
Status?: ProvisionedConcurrencyStatusEnum | undefined;
|
|
5121
5121
|
/**
|
|
5122
5122
|
* <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
|
|
5123
5123
|
* @public
|
|
5124
5124
|
*/
|
|
5125
|
-
StatusReason?: string;
|
|
5125
|
+
StatusReason?: string | undefined;
|
|
5126
5126
|
/**
|
|
5127
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>
|
|
5128
5128
|
* @public
|
|
5129
5129
|
*/
|
|
5130
|
-
LastModified?: string;
|
|
5130
|
+
LastModified?: string | undefined;
|
|
5131
5131
|
}
|
|
5132
5132
|
/**
|
|
5133
5133
|
* @public
|
|
@@ -5137,12 +5137,12 @@ export interface ListProvisionedConcurrencyConfigsResponse {
|
|
|
5137
5137
|
* <p>A list of provisioned concurrency configurations.</p>
|
|
5138
5138
|
* @public
|
|
5139
5139
|
*/
|
|
5140
|
-
ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigListItem[];
|
|
5140
|
+
ProvisionedConcurrencyConfigs?: ProvisionedConcurrencyConfigListItem[] | undefined;
|
|
5141
5141
|
/**
|
|
5142
5142
|
* <p>The pagination token that's included if more results are available.</p>
|
|
5143
5143
|
* @public
|
|
5144
5144
|
*/
|
|
5145
|
-
NextMarker?: string;
|
|
5145
|
+
NextMarker?: string | undefined;
|
|
5146
5146
|
}
|
|
5147
5147
|
/**
|
|
5148
5148
|
* @public
|
|
@@ -5163,7 +5163,7 @@ export interface ListTagsResponse {
|
|
|
5163
5163
|
* <p>The function's tags.</p>
|
|
5164
5164
|
* @public
|
|
5165
5165
|
*/
|
|
5166
|
-
Tags?: Record<string, string
|
|
5166
|
+
Tags?: Record<string, string> | undefined;
|
|
5167
5167
|
}
|
|
5168
5168
|
/**
|
|
5169
5169
|
* @public
|
|
@@ -5197,13 +5197,13 @@ export interface ListVersionsByFunctionRequest {
|
|
|
5197
5197
|
* <p>Specify the pagination token that's returned by a previous request to retrieve the next page of results.</p>
|
|
5198
5198
|
* @public
|
|
5199
5199
|
*/
|
|
5200
|
-
Marker?: string;
|
|
5200
|
+
Marker?: string | undefined;
|
|
5201
5201
|
/**
|
|
5202
5202
|
* <p>The maximum number of versions to return. Note that <code>ListVersionsByFunction</code> returns a maximum of 50 items in each response,
|
|
5203
5203
|
* even if you set the number higher.</p>
|
|
5204
5204
|
* @public
|
|
5205
5205
|
*/
|
|
5206
|
-
MaxItems?: number;
|
|
5206
|
+
MaxItems?: number | undefined;
|
|
5207
5207
|
}
|
|
5208
5208
|
/**
|
|
5209
5209
|
* @public
|
|
@@ -5213,12 +5213,12 @@ export interface ListVersionsByFunctionResponse {
|
|
|
5213
5213
|
* <p>The pagination token that's included if more results are available.</p>
|
|
5214
5214
|
* @public
|
|
5215
5215
|
*/
|
|
5216
|
-
NextMarker?: string;
|
|
5216
|
+
NextMarker?: string | undefined;
|
|
5217
5217
|
/**
|
|
5218
5218
|
* <p>A list of Lambda function versions.</p>
|
|
5219
5219
|
* @public
|
|
5220
5220
|
*/
|
|
5221
|
-
Versions?: FunctionConfiguration[];
|
|
5221
|
+
Versions?: FunctionConfiguration[] | undefined;
|
|
5222
5222
|
}
|
|
5223
5223
|
/**
|
|
5224
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
|
|
@@ -5231,23 +5231,23 @@ export interface LayerVersionContentInput {
|
|
|
5231
5231
|
* <p>The Amazon S3 bucket of the layer archive.</p>
|
|
5232
5232
|
* @public
|
|
5233
5233
|
*/
|
|
5234
|
-
S3Bucket?: string;
|
|
5234
|
+
S3Bucket?: string | undefined;
|
|
5235
5235
|
/**
|
|
5236
5236
|
* <p>The Amazon S3 key of the layer archive.</p>
|
|
5237
5237
|
* @public
|
|
5238
5238
|
*/
|
|
5239
|
-
S3Key?: string;
|
|
5239
|
+
S3Key?: string | undefined;
|
|
5240
5240
|
/**
|
|
5241
5241
|
* <p>For versioned objects, the version of the layer archive object to use.</p>
|
|
5242
5242
|
* @public
|
|
5243
5243
|
*/
|
|
5244
|
-
S3ObjectVersion?: string;
|
|
5244
|
+
S3ObjectVersion?: string | undefined;
|
|
5245
5245
|
/**
|
|
5246
5246
|
* <p>The base64-encoded contents of the layer archive. Amazon Web Services SDK and Amazon Web Services CLI clients handle the encoding for
|
|
5247
5247
|
* you.</p>
|
|
5248
5248
|
* @public
|
|
5249
5249
|
*/
|
|
5250
|
-
ZipFile?: Uint8Array;
|
|
5250
|
+
ZipFile?: Uint8Array | undefined;
|
|
5251
5251
|
}
|
|
5252
5252
|
/**
|
|
5253
5253
|
* @public
|
|
@@ -5262,7 +5262,7 @@ export interface PublishLayerVersionRequest {
|
|
|
5262
5262
|
* <p>The description of the version.</p>
|
|
5263
5263
|
* @public
|
|
5264
5264
|
*/
|
|
5265
|
-
Description?: string;
|
|
5265
|
+
Description?: string | undefined;
|
|
5266
5266
|
/**
|
|
5267
5267
|
* <p>The function layer archive.</p>
|
|
5268
5268
|
* @public
|
|
@@ -5274,7 +5274,7 @@ export interface PublishLayerVersionRequest {
|
|
|
5274
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>
|
|
5275
5275
|
* @public
|
|
5276
5276
|
*/
|
|
5277
|
-
CompatibleRuntimes?: Runtime[];
|
|
5277
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
5278
5278
|
/**
|
|
5279
5279
|
* <p>The layer's software license. It can be any of the following:</p>
|
|
5280
5280
|
* <ul>
|
|
@@ -5292,13 +5292,13 @@ export interface PublishLayerVersionRequest {
|
|
|
5292
5292
|
* </ul>
|
|
5293
5293
|
* @public
|
|
5294
5294
|
*/
|
|
5295
|
-
LicenseInfo?: string;
|
|
5295
|
+
LicenseInfo?: string | undefined;
|
|
5296
5296
|
/**
|
|
5297
5297
|
* <p>A list of compatible
|
|
5298
5298
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
5299
5299
|
* @public
|
|
5300
5300
|
*/
|
|
5301
|
-
CompatibleArchitectures?: Architecture[];
|
|
5301
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
5302
5302
|
}
|
|
5303
5303
|
/**
|
|
5304
5304
|
* @public
|
|
@@ -5308,32 +5308,32 @@ export interface PublishLayerVersionResponse {
|
|
|
5308
5308
|
* <p>Details about the layer version.</p>
|
|
5309
5309
|
* @public
|
|
5310
5310
|
*/
|
|
5311
|
-
Content?: LayerVersionContentOutput;
|
|
5311
|
+
Content?: LayerVersionContentOutput | undefined;
|
|
5312
5312
|
/**
|
|
5313
5313
|
* <p>The ARN of the layer.</p>
|
|
5314
5314
|
* @public
|
|
5315
5315
|
*/
|
|
5316
|
-
LayerArn?: string;
|
|
5316
|
+
LayerArn?: string | undefined;
|
|
5317
5317
|
/**
|
|
5318
5318
|
* <p>The ARN of the layer version.</p>
|
|
5319
5319
|
* @public
|
|
5320
5320
|
*/
|
|
5321
|
-
LayerVersionArn?: string;
|
|
5321
|
+
LayerVersionArn?: string | undefined;
|
|
5322
5322
|
/**
|
|
5323
5323
|
* <p>The description of the version.</p>
|
|
5324
5324
|
* @public
|
|
5325
5325
|
*/
|
|
5326
|
-
Description?: string;
|
|
5326
|
+
Description?: string | undefined;
|
|
5327
5327
|
/**
|
|
5328
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>
|
|
5329
5329
|
* @public
|
|
5330
5330
|
*/
|
|
5331
|
-
CreatedDate?: string;
|
|
5331
|
+
CreatedDate?: string | undefined;
|
|
5332
5332
|
/**
|
|
5333
5333
|
* <p>The version number.</p>
|
|
5334
5334
|
* @public
|
|
5335
5335
|
*/
|
|
5336
|
-
Version?: number;
|
|
5336
|
+
Version?: number | undefined;
|
|
5337
5337
|
/**
|
|
5338
5338
|
* <p>The layer's compatible runtimes.</p>
|
|
5339
5339
|
* <p>The following list includes deprecated runtimes. For more information, see
|
|
@@ -5342,18 +5342,18 @@ export interface PublishLayerVersionResponse {
|
|
|
5342
5342
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
5343
5343
|
* @public
|
|
5344
5344
|
*/
|
|
5345
|
-
CompatibleRuntimes?: Runtime[];
|
|
5345
|
+
CompatibleRuntimes?: Runtime[] | undefined;
|
|
5346
5346
|
/**
|
|
5347
5347
|
* <p>The layer's software license.</p>
|
|
5348
5348
|
* @public
|
|
5349
5349
|
*/
|
|
5350
|
-
LicenseInfo?: string;
|
|
5350
|
+
LicenseInfo?: string | undefined;
|
|
5351
5351
|
/**
|
|
5352
5352
|
* <p>A list of compatible
|
|
5353
5353
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-arch.html">instruction set architectures</a>.</p>
|
|
5354
5354
|
* @public
|
|
5355
5355
|
*/
|
|
5356
|
-
CompatibleArchitectures?: Architecture[];
|
|
5356
|
+
CompatibleArchitectures?: Architecture[] | undefined;
|
|
5357
5357
|
}
|
|
5358
5358
|
/**
|
|
5359
5359
|
* @public
|
|
@@ -5389,18 +5389,18 @@ export interface PublishVersionRequest {
|
|
|
5389
5389
|
* version that you uploaded from the output of <a>UpdateFunctionCode</a>.</p>
|
|
5390
5390
|
* @public
|
|
5391
5391
|
*/
|
|
5392
|
-
CodeSha256?: string;
|
|
5392
|
+
CodeSha256?: string | undefined;
|
|
5393
5393
|
/**
|
|
5394
5394
|
* <p>A description for the version to override the description in the function configuration.</p>
|
|
5395
5395
|
* @public
|
|
5396
5396
|
*/
|
|
5397
|
-
Description?: string;
|
|
5397
|
+
Description?: string | undefined;
|
|
5398
5398
|
/**
|
|
5399
5399
|
* <p>Only update the function if the revision ID matches the ID that's specified. Use this option to avoid
|
|
5400
5400
|
* publishing a version if the function configuration has changed since you last updated it.</p>
|
|
5401
5401
|
* @public
|
|
5402
5402
|
*/
|
|
5403
|
-
RevisionId?: string;
|
|
5403
|
+
RevisionId?: string | undefined;
|
|
5404
5404
|
}
|
|
5405
5405
|
/**
|
|
5406
5406
|
* @public
|
|
@@ -5536,17 +5536,17 @@ export interface PutFunctionEventInvokeConfigRequest {
|
|
|
5536
5536
|
* <p>A version number or alias name.</p>
|
|
5537
5537
|
* @public
|
|
5538
5538
|
*/
|
|
5539
|
-
Qualifier?: string;
|
|
5539
|
+
Qualifier?: string | undefined;
|
|
5540
5540
|
/**
|
|
5541
5541
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
5542
5542
|
* @public
|
|
5543
5543
|
*/
|
|
5544
|
-
MaximumRetryAttempts?: number;
|
|
5544
|
+
MaximumRetryAttempts?: number | undefined;
|
|
5545
5545
|
/**
|
|
5546
5546
|
* <p>The maximum age of a request that Lambda sends to a function for processing.</p>
|
|
5547
5547
|
* @public
|
|
5548
5548
|
*/
|
|
5549
|
-
MaximumEventAgeInSeconds?: number;
|
|
5549
|
+
MaximumEventAgeInSeconds?: number | undefined;
|
|
5550
5550
|
/**
|
|
5551
5551
|
* <p>A destination for events after they have been sent to a function for processing.</p>
|
|
5552
5552
|
* <p class="title">
|
|
@@ -5572,7 +5572,7 @@ export interface PutFunctionEventInvokeConfigRequest {
|
|
|
5572
5572
|
* </ul>
|
|
5573
5573
|
* @public
|
|
5574
5574
|
*/
|
|
5575
|
-
DestinationConfig?: DestinationConfig;
|
|
5575
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
5576
5576
|
}
|
|
5577
5577
|
/**
|
|
5578
5578
|
* @public
|
|
@@ -5632,7 +5632,7 @@ export interface PutFunctionRecursionConfigResponse {
|
|
|
5632
5632
|
* </p>
|
|
5633
5633
|
* @public
|
|
5634
5634
|
*/
|
|
5635
|
-
RecursiveLoop?: RecursiveLoop;
|
|
5635
|
+
RecursiveLoop?: RecursiveLoop | undefined;
|
|
5636
5636
|
}
|
|
5637
5637
|
/**
|
|
5638
5638
|
* @public
|
|
@@ -5681,32 +5681,32 @@ export interface PutProvisionedConcurrencyConfigResponse {
|
|
|
5681
5681
|
* <p>The amount of provisioned concurrency requested.</p>
|
|
5682
5682
|
* @public
|
|
5683
5683
|
*/
|
|
5684
|
-
RequestedProvisionedConcurrentExecutions?: number;
|
|
5684
|
+
RequestedProvisionedConcurrentExecutions?: number | undefined;
|
|
5685
5685
|
/**
|
|
5686
5686
|
* <p>The amount of provisioned concurrency available.</p>
|
|
5687
5687
|
* @public
|
|
5688
5688
|
*/
|
|
5689
|
-
AvailableProvisionedConcurrentExecutions?: number;
|
|
5689
|
+
AvailableProvisionedConcurrentExecutions?: number | undefined;
|
|
5690
5690
|
/**
|
|
5691
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>
|
|
5692
5692
|
* @public
|
|
5693
5693
|
*/
|
|
5694
|
-
AllocatedProvisionedConcurrentExecutions?: number;
|
|
5694
|
+
AllocatedProvisionedConcurrentExecutions?: number | undefined;
|
|
5695
5695
|
/**
|
|
5696
5696
|
* <p>The status of the allocation process.</p>
|
|
5697
5697
|
* @public
|
|
5698
5698
|
*/
|
|
5699
|
-
Status?: ProvisionedConcurrencyStatusEnum;
|
|
5699
|
+
Status?: ProvisionedConcurrencyStatusEnum | undefined;
|
|
5700
5700
|
/**
|
|
5701
5701
|
* <p>For failed allocations, the reason that provisioned concurrency could not be allocated.</p>
|
|
5702
5702
|
* @public
|
|
5703
5703
|
*/
|
|
5704
|
-
StatusReason?: string;
|
|
5704
|
+
StatusReason?: string | undefined;
|
|
5705
5705
|
/**
|
|
5706
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>
|
|
5707
5707
|
* @public
|
|
5708
5708
|
*/
|
|
5709
|
-
LastModified?: string;
|
|
5709
|
+
LastModified?: string | undefined;
|
|
5710
5710
|
}
|
|
5711
5711
|
/**
|
|
5712
5712
|
* @public
|
|
@@ -5741,7 +5741,7 @@ export interface PutRuntimeManagementConfigRequest {
|
|
|
5741
5741
|
* <code>$LATEST</code> version is returned.</p>
|
|
5742
5742
|
* @public
|
|
5743
5743
|
*/
|
|
5744
|
-
Qualifier?: string;
|
|
5744
|
+
Qualifier?: string | undefined;
|
|
5745
5745
|
/**
|
|
5746
5746
|
* <p>Specify the runtime update mode.</p>
|
|
5747
5747
|
* <ul>
|
|
@@ -5773,7 +5773,7 @@ export interface PutRuntimeManagementConfigRequest {
|
|
|
5773
5773
|
* </note>
|
|
5774
5774
|
* @public
|
|
5775
5775
|
*/
|
|
5776
|
-
RuntimeVersionArn?: string;
|
|
5776
|
+
RuntimeVersionArn?: string | undefined;
|
|
5777
5777
|
}
|
|
5778
5778
|
/**
|
|
5779
5779
|
* @public
|
|
@@ -5794,7 +5794,7 @@ export interface PutRuntimeManagementConfigResponse {
|
|
|
5794
5794
|
* is returned.</p>
|
|
5795
5795
|
* @public
|
|
5796
5796
|
*/
|
|
5797
|
-
RuntimeVersionArn?: string;
|
|
5797
|
+
RuntimeVersionArn?: string | undefined;
|
|
5798
5798
|
}
|
|
5799
5799
|
/**
|
|
5800
5800
|
* @public
|
|
@@ -5820,7 +5820,7 @@ export interface RemoveLayerVersionPermissionRequest {
|
|
|
5820
5820
|
* policy that has changed since you last read it.</p>
|
|
5821
5821
|
* @public
|
|
5822
5822
|
*/
|
|
5823
|
-
RevisionId?: string;
|
|
5823
|
+
RevisionId?: string | undefined;
|
|
5824
5824
|
}
|
|
5825
5825
|
/**
|
|
5826
5826
|
* @public
|
|
@@ -5859,13 +5859,13 @@ export interface RemovePermissionRequest {
|
|
|
5859
5859
|
* <p>Specify a version or alias to remove permissions from a published version of the function.</p>
|
|
5860
5860
|
* @public
|
|
5861
5861
|
*/
|
|
5862
|
-
Qualifier?: string;
|
|
5862
|
+
Qualifier?: string | undefined;
|
|
5863
5863
|
/**
|
|
5864
5864
|
* <p>Update the policy only if the revision ID matches the ID that's specified. Use this option to avoid modifying a
|
|
5865
5865
|
* policy that has changed since you last read it.</p>
|
|
5866
5866
|
* @public
|
|
5867
5867
|
*/
|
|
5868
|
-
RevisionId?: string;
|
|
5868
|
+
RevisionId?: string | undefined;
|
|
5869
5869
|
}
|
|
5870
5870
|
/**
|
|
5871
5871
|
* @public
|
|
@@ -5934,24 +5934,24 @@ export interface UpdateAliasRequest {
|
|
|
5934
5934
|
* <p>The function version that the alias invokes.</p>
|
|
5935
5935
|
* @public
|
|
5936
5936
|
*/
|
|
5937
|
-
FunctionVersion?: string;
|
|
5937
|
+
FunctionVersion?: string | undefined;
|
|
5938
5938
|
/**
|
|
5939
5939
|
* <p>A description of the alias.</p>
|
|
5940
5940
|
* @public
|
|
5941
5941
|
*/
|
|
5942
|
-
Description?: string;
|
|
5942
|
+
Description?: string | undefined;
|
|
5943
5943
|
/**
|
|
5944
5944
|
* <p>The <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html#configuring-alias-routing">routing
|
|
5945
5945
|
* configuration</a> of the alias.</p>
|
|
5946
5946
|
* @public
|
|
5947
5947
|
*/
|
|
5948
|
-
RoutingConfig?: AliasRoutingConfiguration;
|
|
5948
|
+
RoutingConfig?: AliasRoutingConfiguration | undefined;
|
|
5949
5949
|
/**
|
|
5950
5950
|
* <p>Only update the alias if the revision ID matches the ID that's specified. Use this option to avoid modifying
|
|
5951
5951
|
* an alias that has changed since you last read it.</p>
|
|
5952
5952
|
* @public
|
|
5953
5953
|
*/
|
|
5954
|
-
RevisionId?: string;
|
|
5954
|
+
RevisionId?: string | undefined;
|
|
5955
5955
|
}
|
|
5956
5956
|
/**
|
|
5957
5957
|
* @public
|
|
@@ -5966,17 +5966,17 @@ export interface UpdateCodeSigningConfigRequest {
|
|
|
5966
5966
|
* <p>Descriptive name for this code signing configuration.</p>
|
|
5967
5967
|
* @public
|
|
5968
5968
|
*/
|
|
5969
|
-
Description?: string;
|
|
5969
|
+
Description?: string | undefined;
|
|
5970
5970
|
/**
|
|
5971
5971
|
* <p>Signing profiles for this code signing configuration.</p>
|
|
5972
5972
|
* @public
|
|
5973
5973
|
*/
|
|
5974
|
-
AllowedPublishers?: AllowedPublishers;
|
|
5974
|
+
AllowedPublishers?: AllowedPublishers | undefined;
|
|
5975
5975
|
/**
|
|
5976
5976
|
* <p>The code signing policy.</p>
|
|
5977
5977
|
* @public
|
|
5978
5978
|
*/
|
|
5979
|
-
CodeSigningPolicies?: CodeSigningPolicies;
|
|
5979
|
+
CodeSigningPolicies?: CodeSigningPolicies | undefined;
|
|
5980
5980
|
}
|
|
5981
5981
|
/**
|
|
5982
5982
|
* @public
|
|
@@ -6024,13 +6024,13 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6024
6024
|
* characters in length.</p>
|
|
6025
6025
|
* @public
|
|
6026
6026
|
*/
|
|
6027
|
-
FunctionName?: string;
|
|
6027
|
+
FunctionName?: string | undefined;
|
|
6028
6028
|
/**
|
|
6029
6029
|
* <p>When true, the event source mapping is active. When false, Lambda pauses polling and invocation.</p>
|
|
6030
6030
|
* <p>Default: True</p>
|
|
6031
6031
|
* @public
|
|
6032
6032
|
*/
|
|
6033
|
-
Enabled?: boolean;
|
|
6033
|
+
Enabled?: boolean | undefined;
|
|
6034
6034
|
/**
|
|
6035
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
|
|
6036
6036
|
* (6 MB).</p>
|
|
@@ -6066,13 +6066,13 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6066
6066
|
* </ul>
|
|
6067
6067
|
* @public
|
|
6068
6068
|
*/
|
|
6069
|
-
BatchSize?: number;
|
|
6069
|
+
BatchSize?: number | undefined;
|
|
6070
6070
|
/**
|
|
6071
6071
|
* <p>An object that defines the filter criteria that
|
|
6072
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>
|
|
6073
6073
|
* @public
|
|
6074
6074
|
*/
|
|
6075
|
-
FilterCriteria?: FilterCriteria;
|
|
6075
|
+
FilterCriteria?: FilterCriteria | undefined;
|
|
6076
6076
|
/**
|
|
6077
6077
|
* <p>The maximum amount of time, in seconds, that Lambda spends gathering records before invoking the function.
|
|
6078
6078
|
* You can configure <code>MaximumBatchingWindowInSeconds</code> to any value from 0 seconds to 300 seconds in increments of seconds.</p>
|
|
@@ -6082,57 +6082,57 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6082
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>
|
|
6083
6083
|
* @public
|
|
6084
6084
|
*/
|
|
6085
|
-
MaximumBatchingWindowInSeconds?: number;
|
|
6085
|
+
MaximumBatchingWindowInSeconds?: number | undefined;
|
|
6086
6086
|
/**
|
|
6087
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>
|
|
6088
6088
|
* @public
|
|
6089
6089
|
*/
|
|
6090
|
-
DestinationConfig?: DestinationConfig;
|
|
6090
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
6091
6091
|
/**
|
|
6092
6092
|
* <p>(Kinesis and DynamoDB Streams only) Discard records older than the specified age. The default value is infinite (-1).</p>
|
|
6093
6093
|
* @public
|
|
6094
6094
|
*/
|
|
6095
|
-
MaximumRecordAgeInSeconds?: number;
|
|
6095
|
+
MaximumRecordAgeInSeconds?: number | undefined;
|
|
6096
6096
|
/**
|
|
6097
6097
|
* <p>(Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry.</p>
|
|
6098
6098
|
* @public
|
|
6099
6099
|
*/
|
|
6100
|
-
BisectBatchOnFunctionError?: boolean;
|
|
6100
|
+
BisectBatchOnFunctionError?: boolean | undefined;
|
|
6101
6101
|
/**
|
|
6102
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>
|
|
6103
6103
|
* @public
|
|
6104
6104
|
*/
|
|
6105
|
-
MaximumRetryAttempts?: number;
|
|
6105
|
+
MaximumRetryAttempts?: number | undefined;
|
|
6106
6106
|
/**
|
|
6107
6107
|
* <p>(Kinesis and DynamoDB Streams only) The number of batches to process from each shard concurrently.</p>
|
|
6108
6108
|
* @public
|
|
6109
6109
|
*/
|
|
6110
|
-
ParallelizationFactor?: number;
|
|
6110
|
+
ParallelizationFactor?: number | undefined;
|
|
6111
6111
|
/**
|
|
6112
6112
|
* <p>An array of authentication protocols or VPC components required to secure your event source.</p>
|
|
6113
6113
|
* @public
|
|
6114
6114
|
*/
|
|
6115
|
-
SourceAccessConfigurations?: SourceAccessConfiguration[];
|
|
6115
|
+
SourceAccessConfigurations?: SourceAccessConfiguration[] | undefined;
|
|
6116
6116
|
/**
|
|
6117
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>
|
|
6118
6118
|
* @public
|
|
6119
6119
|
*/
|
|
6120
|
-
TumblingWindowInSeconds?: number;
|
|
6120
|
+
TumblingWindowInSeconds?: number | undefined;
|
|
6121
6121
|
/**
|
|
6122
6122
|
* <p>(Kinesis, DynamoDB Streams, and Amazon SQS) A list of current response type enums applied to the event source mapping.</p>
|
|
6123
6123
|
* @public
|
|
6124
6124
|
*/
|
|
6125
|
-
FunctionResponseTypes?: FunctionResponseType[];
|
|
6125
|
+
FunctionResponseTypes?: FunctionResponseType[] | undefined;
|
|
6126
6126
|
/**
|
|
6127
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>
|
|
6128
6128
|
* @public
|
|
6129
6129
|
*/
|
|
6130
|
-
ScalingConfig?: ScalingConfig;
|
|
6130
|
+
ScalingConfig?: ScalingConfig | undefined;
|
|
6131
6131
|
/**
|
|
6132
6132
|
* <p>Specific configuration settings for a DocumentDB event source.</p>
|
|
6133
6133
|
* @public
|
|
6134
6134
|
*/
|
|
6135
|
-
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig;
|
|
6135
|
+
DocumentDBEventSourceConfig?: DocumentDBEventSourceConfig | undefined;
|
|
6136
6136
|
/**
|
|
6137
6137
|
* <p>
|
|
6138
6138
|
* The ARN of the Key Management Service (KMS) customer managed key that Lambda
|
|
@@ -6142,7 +6142,7 @@ export interface UpdateEventSourceMappingRequest {
|
|
|
6142
6142
|
* </p>
|
|
6143
6143
|
* @public
|
|
6144
6144
|
*/
|
|
6145
|
-
KMSKeyArn?: string;
|
|
6145
|
+
KMSKeyArn?: string | undefined;
|
|
6146
6146
|
}
|
|
6147
6147
|
/**
|
|
6148
6148
|
* @public
|
|
@@ -6177,59 +6177,59 @@ export interface UpdateFunctionCodeRequest {
|
|
|
6177
6177
|
* handle the encoding for you. Use only with a function defined with a .zip file archive deployment package.</p>
|
|
6178
6178
|
* @public
|
|
6179
6179
|
*/
|
|
6180
|
-
ZipFile?: Uint8Array;
|
|
6180
|
+
ZipFile?: Uint8Array | undefined;
|
|
6181
6181
|
/**
|
|
6182
6182
|
* <p>An Amazon S3 bucket in the same Amazon Web Services Region as your function. The bucket can be in a different
|
|
6183
6183
|
* Amazon Web Services account. Use only with a function defined with a .zip file archive deployment package.</p>
|
|
6184
6184
|
* @public
|
|
6185
6185
|
*/
|
|
6186
|
-
S3Bucket?: string;
|
|
6186
|
+
S3Bucket?: string | undefined;
|
|
6187
6187
|
/**
|
|
6188
6188
|
* <p>The Amazon S3 key of the deployment package. Use only with a function defined with a .zip file archive deployment package.</p>
|
|
6189
6189
|
* @public
|
|
6190
6190
|
*/
|
|
6191
|
-
S3Key?: string;
|
|
6191
|
+
S3Key?: string | undefined;
|
|
6192
6192
|
/**
|
|
6193
6193
|
* <p>For versioned objects, the version of the deployment package object to use.</p>
|
|
6194
6194
|
* @public
|
|
6195
6195
|
*/
|
|
6196
|
-
S3ObjectVersion?: string;
|
|
6196
|
+
S3ObjectVersion?: string | undefined;
|
|
6197
6197
|
/**
|
|
6198
6198
|
* <p>URI of a container image in the Amazon ECR registry. Do not use for a function defined with a .zip
|
|
6199
6199
|
* file archive.</p>
|
|
6200
6200
|
* @public
|
|
6201
6201
|
*/
|
|
6202
|
-
ImageUri?: string;
|
|
6202
|
+
ImageUri?: string | undefined;
|
|
6203
6203
|
/**
|
|
6204
6204
|
* <p>Set to true to publish a new version of the function after updating the code. This has the same effect as
|
|
6205
6205
|
* calling <a>PublishVersion</a> separately.</p>
|
|
6206
6206
|
* @public
|
|
6207
6207
|
*/
|
|
6208
|
-
Publish?: boolean;
|
|
6208
|
+
Publish?: boolean | undefined;
|
|
6209
6209
|
/**
|
|
6210
6210
|
* <p>Set to true to validate the request parameters and access permissions without modifying the function
|
|
6211
6211
|
* code.</p>
|
|
6212
6212
|
* @public
|
|
6213
6213
|
*/
|
|
6214
|
-
DryRun?: boolean;
|
|
6214
|
+
DryRun?: boolean | undefined;
|
|
6215
6215
|
/**
|
|
6216
6216
|
* <p>Update the function only if the revision ID matches the ID that's specified. Use this option to avoid modifying a
|
|
6217
6217
|
* function that has changed since you last read it.</p>
|
|
6218
6218
|
* @public
|
|
6219
6219
|
*/
|
|
6220
|
-
RevisionId?: string;
|
|
6220
|
+
RevisionId?: string | undefined;
|
|
6221
6221
|
/**
|
|
6222
6222
|
* <p>The instruction set architecture that the function supports. Enter a string array with one of the valid values (arm64 or x86_64).
|
|
6223
6223
|
* The default value is <code>x86_64</code>.</p>
|
|
6224
6224
|
* @public
|
|
6225
6225
|
*/
|
|
6226
|
-
Architectures?: Architecture[];
|
|
6226
|
+
Architectures?: Architecture[] | undefined;
|
|
6227
6227
|
/**
|
|
6228
6228
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt your function's
|
|
6229
6229
|
* .zip deployment package. If you don't provide a customer managed key, Lambda uses an Amazon Web Services managed key.</p>
|
|
6230
6230
|
* @public
|
|
6231
6231
|
*/
|
|
6232
|
-
SourceKMSKeyArn?: string;
|
|
6232
|
+
SourceKMSKeyArn?: string | undefined;
|
|
6233
6233
|
}
|
|
6234
6234
|
/**
|
|
6235
6235
|
* @public
|
|
@@ -6263,7 +6263,7 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6263
6263
|
* <p>The Amazon Resource Name (ARN) of the function's execution role.</p>
|
|
6264
6264
|
* @public
|
|
6265
6265
|
*/
|
|
6266
|
-
Role?: string;
|
|
6266
|
+
Role?: string | undefined;
|
|
6267
6267
|
/**
|
|
6268
6268
|
* <p>The name of the method within your code that Lambda calls to run your function.
|
|
6269
6269
|
* Handler is required if the deployment package is a .zip file archive. The format includes the
|
|
@@ -6271,36 +6271,36 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6271
6271
|
* see <a href="https://docs.aws.amazon.com/lambda/latest/dg/foundation-progmodel.html">Lambda programming model</a>.</p>
|
|
6272
6272
|
* @public
|
|
6273
6273
|
*/
|
|
6274
|
-
Handler?: string;
|
|
6274
|
+
Handler?: string | undefined;
|
|
6275
6275
|
/**
|
|
6276
6276
|
* <p>A description of the function.</p>
|
|
6277
6277
|
* @public
|
|
6278
6278
|
*/
|
|
6279
|
-
Description?: string;
|
|
6279
|
+
Description?: string | undefined;
|
|
6280
6280
|
/**
|
|
6281
6281
|
* <p>The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The
|
|
6282
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>
|
|
6283
6283
|
* @public
|
|
6284
6284
|
*/
|
|
6285
|
-
Timeout?: number;
|
|
6285
|
+
Timeout?: number | undefined;
|
|
6286
6286
|
/**
|
|
6287
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.
|
|
6288
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>
|
|
6289
6289
|
* @public
|
|
6290
6290
|
*/
|
|
6291
|
-
MemorySize?: number;
|
|
6291
|
+
MemorySize?: number | undefined;
|
|
6292
6292
|
/**
|
|
6293
6293
|
* <p>For network connectivity to Amazon Web Services resources in a VPC, specify a list of security groups and subnets in the VPC.
|
|
6294
6294
|
* When you connect a function to a VPC, it can access resources and the internet only through that VPC. For more
|
|
6295
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>
|
|
6296
6296
|
* @public
|
|
6297
6297
|
*/
|
|
6298
|
-
VpcConfig?: VpcConfig;
|
|
6298
|
+
VpcConfig?: VpcConfig | undefined;
|
|
6299
6299
|
/**
|
|
6300
6300
|
* <p>Environment variables that are accessible from function code during execution.</p>
|
|
6301
6301
|
* @public
|
|
6302
6302
|
*/
|
|
6303
|
-
Environment?: Environment;
|
|
6303
|
+
Environment?: Environment | undefined;
|
|
6304
6304
|
/**
|
|
6305
6305
|
* <p>The identifier of the function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html">
|
|
6306
6306
|
* runtime</a>. Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in
|
|
@@ -6312,13 +6312,13 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6312
6312
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported">Supported runtimes</a>.</p>
|
|
6313
6313
|
* @public
|
|
6314
6314
|
*/
|
|
6315
|
-
Runtime?: Runtime;
|
|
6315
|
+
Runtime?: Runtime | undefined;
|
|
6316
6316
|
/**
|
|
6317
6317
|
* <p>A dead-letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events
|
|
6318
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>
|
|
6319
6319
|
* @public
|
|
6320
6320
|
*/
|
|
6321
|
-
DeadLetterConfig?: DeadLetterConfig;
|
|
6321
|
+
DeadLetterConfig?: DeadLetterConfig | undefined;
|
|
6322
6322
|
/**
|
|
6323
6323
|
* <p>The ARN of the Key Management Service (KMS) customer managed key that's used to encrypt the following resources:</p>
|
|
6324
6324
|
* <ul>
|
|
@@ -6339,53 +6339,53 @@ export interface UpdateFunctionConfigurationRequest {
|
|
|
6339
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>
|
|
6340
6340
|
* @public
|
|
6341
6341
|
*/
|
|
6342
|
-
KMSKeyArn?: string;
|
|
6342
|
+
KMSKeyArn?: string | undefined;
|
|
6343
6343
|
/**
|
|
6344
6344
|
* <p>Set <code>Mode</code> to <code>Active</code> to sample and trace a subset of incoming requests with
|
|
6345
6345
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html">X-Ray</a>.</p>
|
|
6346
6346
|
* @public
|
|
6347
6347
|
*/
|
|
6348
|
-
TracingConfig?: TracingConfig;
|
|
6348
|
+
TracingConfig?: TracingConfig | undefined;
|
|
6349
6349
|
/**
|
|
6350
6350
|
* <p>Update the function only if the revision ID matches the ID that's specified. Use this option to avoid modifying a
|
|
6351
6351
|
* function that has changed since you last read it.</p>
|
|
6352
6352
|
* @public
|
|
6353
6353
|
*/
|
|
6354
|
-
RevisionId?: string;
|
|
6354
|
+
RevisionId?: string | undefined;
|
|
6355
6355
|
/**
|
|
6356
6356
|
* <p>A list of <a href="https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html">function layers</a>
|
|
6357
6357
|
* to add to the function's execution environment. Specify each layer by its ARN, including the version.</p>
|
|
6358
6358
|
* @public
|
|
6359
6359
|
*/
|
|
6360
|
-
Layers?: string[];
|
|
6360
|
+
Layers?: string[] | undefined;
|
|
6361
6361
|
/**
|
|
6362
6362
|
* <p>Connection settings for an Amazon EFS file system.</p>
|
|
6363
6363
|
* @public
|
|
6364
6364
|
*/
|
|
6365
|
-
FileSystemConfigs?: FileSystemConfig[];
|
|
6365
|
+
FileSystemConfigs?: FileSystemConfig[] | undefined;
|
|
6366
6366
|
/**
|
|
6367
6367
|
* <p>
|
|
6368
6368
|
* <a href="https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms">Container image configuration
|
|
6369
6369
|
* values</a> that override the values in the container image Docker file.</p>
|
|
6370
6370
|
* @public
|
|
6371
6371
|
*/
|
|
6372
|
-
ImageConfig?: ImageConfig;
|
|
6372
|
+
ImageConfig?: ImageConfig | undefined;
|
|
6373
6373
|
/**
|
|
6374
6374
|
* <p>The size of the function's <code>/tmp</code> directory in MB. The default value is 512, but can be any whole
|
|
6375
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>
|
|
6376
6376
|
* @public
|
|
6377
6377
|
*/
|
|
6378
|
-
EphemeralStorage?: EphemeralStorage;
|
|
6378
|
+
EphemeralStorage?: EphemeralStorage | undefined;
|
|
6379
6379
|
/**
|
|
6380
6380
|
* <p>The function's <a href="https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html">SnapStart</a> setting.</p>
|
|
6381
6381
|
* @public
|
|
6382
6382
|
*/
|
|
6383
|
-
SnapStart?: SnapStart;
|
|
6383
|
+
SnapStart?: SnapStart | undefined;
|
|
6384
6384
|
/**
|
|
6385
6385
|
* <p>The function's Amazon CloudWatch Logs configuration settings.</p>
|
|
6386
6386
|
* @public
|
|
6387
6387
|
*/
|
|
6388
|
-
LoggingConfig?: LoggingConfig;
|
|
6388
|
+
LoggingConfig?: LoggingConfig | undefined;
|
|
6389
6389
|
}
|
|
6390
6390
|
/**
|
|
6391
6391
|
* @public
|
|
@@ -6419,17 +6419,17 @@ export interface UpdateFunctionEventInvokeConfigRequest {
|
|
|
6419
6419
|
* <p>A version number or alias name.</p>
|
|
6420
6420
|
* @public
|
|
6421
6421
|
*/
|
|
6422
|
-
Qualifier?: string;
|
|
6422
|
+
Qualifier?: string | undefined;
|
|
6423
6423
|
/**
|
|
6424
6424
|
* <p>The maximum number of times to retry when the function returns an error.</p>
|
|
6425
6425
|
* @public
|
|
6426
6426
|
*/
|
|
6427
|
-
MaximumRetryAttempts?: number;
|
|
6427
|
+
MaximumRetryAttempts?: number | undefined;
|
|
6428
6428
|
/**
|
|
6429
6429
|
* <p>The maximum age of a request that Lambda sends to a function for processing.</p>
|
|
6430
6430
|
* @public
|
|
6431
6431
|
*/
|
|
6432
|
-
MaximumEventAgeInSeconds?: number;
|
|
6432
|
+
MaximumEventAgeInSeconds?: number | undefined;
|
|
6433
6433
|
/**
|
|
6434
6434
|
* <p>A destination for events after they have been sent to a function for processing.</p>
|
|
6435
6435
|
* <p class="title">
|
|
@@ -6455,7 +6455,7 @@ export interface UpdateFunctionEventInvokeConfigRequest {
|
|
|
6455
6455
|
* </ul>
|
|
6456
6456
|
* @public
|
|
6457
6457
|
*/
|
|
6458
|
-
DestinationConfig?: DestinationConfig;
|
|
6458
|
+
DestinationConfig?: DestinationConfig | undefined;
|
|
6459
6459
|
}
|
|
6460
6460
|
/**
|
|
6461
6461
|
* @public
|
|
@@ -6489,20 +6489,20 @@ export interface UpdateFunctionUrlConfigRequest {
|
|
|
6489
6489
|
* <p>The alias name.</p>
|
|
6490
6490
|
* @public
|
|
6491
6491
|
*/
|
|
6492
|
-
Qualifier?: string;
|
|
6492
|
+
Qualifier?: string | undefined;
|
|
6493
6493
|
/**
|
|
6494
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
|
|
6495
6495
|
* users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information,
|
|
6496
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>
|
|
6497
6497
|
* @public
|
|
6498
6498
|
*/
|
|
6499
|
-
AuthType?: FunctionUrlAuthType;
|
|
6499
|
+
AuthType?: FunctionUrlAuthType | undefined;
|
|
6500
6500
|
/**
|
|
6501
6501
|
* <p>The <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS">cross-origin resource sharing (CORS)</a> settings
|
|
6502
6502
|
* for your function URL.</p>
|
|
6503
6503
|
* @public
|
|
6504
6504
|
*/
|
|
6505
|
-
Cors?: Cors;
|
|
6505
|
+
Cors?: Cors | undefined;
|
|
6506
6506
|
/**
|
|
6507
6507
|
* <p>Use one of the following options:</p>
|
|
6508
6508
|
* <ul>
|
|
@@ -6519,7 +6519,7 @@ export interface UpdateFunctionUrlConfigRequest {
|
|
|
6519
6519
|
* </ul>
|
|
6520
6520
|
* @public
|
|
6521
6521
|
*/
|
|
6522
|
-
InvokeMode?: InvokeMode;
|
|
6522
|
+
InvokeMode?: InvokeMode | undefined;
|
|
6523
6523
|
}
|
|
6524
6524
|
/**
|
|
6525
6525
|
* @public
|
|
@@ -6547,7 +6547,7 @@ export interface UpdateFunctionUrlConfigResponse {
|
|
|
6547
6547
|
* for your function URL.</p>
|
|
6548
6548
|
* @public
|
|
6549
6549
|
*/
|
|
6550
|
-
Cors?: Cors;
|
|
6550
|
+
Cors?: Cors | undefined;
|
|
6551
6551
|
/**
|
|
6552
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>
|
|
6553
6553
|
* @public
|
|
@@ -6574,7 +6574,7 @@ export interface UpdateFunctionUrlConfigResponse {
|
|
|
6574
6574
|
* </ul>
|
|
6575
6575
|
* @public
|
|
6576
6576
|
*/
|
|
6577
|
-
InvokeMode?: InvokeMode;
|
|
6577
|
+
InvokeMode?: InvokeMode | undefined;
|
|
6578
6578
|
}
|
|
6579
6579
|
/**
|
|
6580
6580
|
* @internal
|