@aws-sdk/client-apprunner 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +195 -195
- package/dist-types/ts3.4/models/models_0.d.ts +195 -195
- package/package.json +7 -7
|
@@ -23,7 +23,7 @@ export interface AssociateCustomDomainRequest {
|
|
|
23
23
|
* </p>
|
|
24
24
|
* @public
|
|
25
25
|
*/
|
|
26
|
-
EnableWWWSubdomain?: boolean;
|
|
26
|
+
EnableWWWSubdomain?: boolean | undefined;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* @public
|
|
@@ -47,23 +47,23 @@ export interface CertificateValidationRecord {
|
|
|
47
47
|
* <p>The certificate CNAME record name.</p>
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
|
-
Name?: string;
|
|
50
|
+
Name?: string | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* <p>The record type, always <code>CNAME</code>.</p>
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
Type?: string;
|
|
55
|
+
Type?: string | undefined;
|
|
56
56
|
/**
|
|
57
57
|
* <p>The certificate CNAME record value.</p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
Value?: string;
|
|
60
|
+
Value?: string | undefined;
|
|
61
61
|
/**
|
|
62
62
|
* <p>The current state of the certificate CNAME record validation. It should change to <code>SUCCESS</code> after App Runner completes validation with your
|
|
63
63
|
* DNS.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
Status?: CertificateValidationRecordStatus;
|
|
66
|
+
Status?: CertificateValidationRecordStatus | undefined;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* @public
|
|
@@ -104,7 +104,7 @@ export interface CustomDomain {
|
|
|
104
104
|
* <p>A list of certificate CNAME records that's used for this domain name.</p>
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
CertificateValidationRecords?: CertificateValidationRecord[];
|
|
107
|
+
CertificateValidationRecords?: CertificateValidationRecord[] | undefined;
|
|
108
108
|
/**
|
|
109
109
|
* <p>The current state of the domain name association.</p>
|
|
110
110
|
* @public
|
|
@@ -120,17 +120,17 @@ export interface VpcDNSTarget {
|
|
|
120
120
|
* <p>The Amazon Resource Name (ARN) of the VPC Ingress Connection that is associated with your service.</p>
|
|
121
121
|
* @public
|
|
122
122
|
*/
|
|
123
|
-
VpcIngressConnectionArn?: string;
|
|
123
|
+
VpcIngressConnectionArn?: string | undefined;
|
|
124
124
|
/**
|
|
125
125
|
* <p>The ID of the Amazon VPC that is associated with the custom domain name of the target DNS.</p>
|
|
126
126
|
* @public
|
|
127
127
|
*/
|
|
128
|
-
VpcId?: string;
|
|
128
|
+
VpcId?: string | undefined;
|
|
129
129
|
/**
|
|
130
130
|
* <p>The domain name of your target DNS that is associated with the Amazon VPC.</p>
|
|
131
131
|
* @public
|
|
132
132
|
*/
|
|
133
|
-
DomainName?: string;
|
|
133
|
+
DomainName?: string | undefined;
|
|
134
134
|
}
|
|
135
135
|
/**
|
|
136
136
|
* @public
|
|
@@ -165,7 +165,7 @@ export interface AssociateCustomDomainResponse {
|
|
|
165
165
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
166
166
|
readonly name: "InternalServiceErrorException";
|
|
167
167
|
readonly $fault: "server";
|
|
168
|
-
Message?: string;
|
|
168
|
+
Message?: string | undefined;
|
|
169
169
|
/**
|
|
170
170
|
* @internal
|
|
171
171
|
*/
|
|
@@ -178,7 +178,7 @@ export declare class InternalServiceErrorException extends __BaseException {
|
|
|
178
178
|
export declare class InvalidRequestException extends __BaseException {
|
|
179
179
|
readonly name: "InvalidRequestException";
|
|
180
180
|
readonly $fault: "client";
|
|
181
|
-
Message?: string;
|
|
181
|
+
Message?: string | undefined;
|
|
182
182
|
/**
|
|
183
183
|
* @internal
|
|
184
184
|
*/
|
|
@@ -191,7 +191,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
191
191
|
export declare class InvalidStateException extends __BaseException {
|
|
192
192
|
readonly name: "InvalidStateException";
|
|
193
193
|
readonly $fault: "client";
|
|
194
|
-
Message?: string;
|
|
194
|
+
Message?: string | undefined;
|
|
195
195
|
/**
|
|
196
196
|
* @internal
|
|
197
197
|
*/
|
|
@@ -206,12 +206,12 @@ export interface Tag {
|
|
|
206
206
|
* <p>The key of the tag.</p>
|
|
207
207
|
* @public
|
|
208
208
|
*/
|
|
209
|
-
Key?: string;
|
|
209
|
+
Key?: string | undefined;
|
|
210
210
|
/**
|
|
211
211
|
* <p>The value of the tag.</p>
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
214
|
-
Value?: string;
|
|
214
|
+
Value?: string | undefined;
|
|
215
215
|
}
|
|
216
216
|
/**
|
|
217
217
|
* @public
|
|
@@ -252,7 +252,7 @@ export interface CreateAutoScalingConfigurationRequest {
|
|
|
252
252
|
* </p>
|
|
253
253
|
* @public
|
|
254
254
|
*/
|
|
255
|
-
MaxConcurrency?: number;
|
|
255
|
+
MaxConcurrency?: number | undefined;
|
|
256
256
|
/**
|
|
257
257
|
* <p>The minimum number of instances that App Runner provisions for your service. The service always has at least <code>MinSize</code> provisioned instances.
|
|
258
258
|
* Some of them actively serve traffic. The rest of them (provisioned and inactive instances) are a cost-effective compute capacity reserve and are ready to
|
|
@@ -262,19 +262,19 @@ export interface CreateAutoScalingConfigurationRequest {
|
|
|
262
262
|
* </p>
|
|
263
263
|
* @public
|
|
264
264
|
*/
|
|
265
|
-
MinSize?: number;
|
|
265
|
+
MinSize?: number | undefined;
|
|
266
266
|
/**
|
|
267
267
|
* <p>The maximum number of instances that your service scales up to. At most <code>MaxSize</code> instances actively serve traffic for your service.</p>
|
|
268
268
|
* <p>Default: <code>25</code>
|
|
269
269
|
* </p>
|
|
270
270
|
* @public
|
|
271
271
|
*/
|
|
272
|
-
MaxSize?: number;
|
|
272
|
+
MaxSize?: number | undefined;
|
|
273
273
|
/**
|
|
274
274
|
* <p>A list of metadata items that you can associate with your auto scaling configuration resource. A tag is a key-value pair.</p>
|
|
275
275
|
* @public
|
|
276
276
|
*/
|
|
277
|
-
Tags?: Tag[];
|
|
277
|
+
Tags?: Tag[] | undefined;
|
|
278
278
|
}
|
|
279
279
|
/**
|
|
280
280
|
* @public
|
|
@@ -302,36 +302,36 @@ export interface AutoScalingConfiguration {
|
|
|
302
302
|
* <p>The Amazon Resource Name (ARN) of this auto scaling configuration.</p>
|
|
303
303
|
* @public
|
|
304
304
|
*/
|
|
305
|
-
AutoScalingConfigurationArn?: string;
|
|
305
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
306
306
|
/**
|
|
307
307
|
* <p>The customer-provided auto scaling configuration name. It can be used in multiple revisions of a configuration.</p>
|
|
308
308
|
* @public
|
|
309
309
|
*/
|
|
310
|
-
AutoScalingConfigurationName?: string;
|
|
310
|
+
AutoScalingConfigurationName?: string | undefined;
|
|
311
311
|
/**
|
|
312
312
|
* <p>The revision of this auto scaling configuration. It's unique among all the active configurations (<code>"Status": "ACTIVE"</code>) that share the same
|
|
313
313
|
* <code>AutoScalingConfigurationName</code>.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
AutoScalingConfigurationRevision?: number;
|
|
316
|
+
AutoScalingConfigurationRevision?: number | undefined;
|
|
317
317
|
/**
|
|
318
318
|
* <p>It's set to <code>true</code> for the configuration with the highest <code>Revision</code> among all configurations that share the same
|
|
319
319
|
* <code>AutoScalingConfigurationName</code>. It's set to <code>false</code> otherwise.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
Latest?: boolean;
|
|
322
|
+
Latest?: boolean | undefined;
|
|
323
323
|
/**
|
|
324
324
|
* <p>The current state of the auto scaling configuration. If the status of a configuration revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
325
325
|
* used. Inactive configuration revisions are permanently removed some time after they are deleted.</p>
|
|
326
326
|
* @public
|
|
327
327
|
*/
|
|
328
|
-
Status?: AutoScalingConfigurationStatus;
|
|
328
|
+
Status?: AutoScalingConfigurationStatus | undefined;
|
|
329
329
|
/**
|
|
330
330
|
* <p>The maximum number of concurrent requests that an instance processes. If the number of concurrent requests exceeds this limit, App Runner scales the service
|
|
331
331
|
* up.</p>
|
|
332
332
|
* @public
|
|
333
333
|
*/
|
|
334
|
-
MaxConcurrency?: number;
|
|
334
|
+
MaxConcurrency?: number | undefined;
|
|
335
335
|
/**
|
|
336
336
|
* <p>The minimum number of instances that App Runner provisions for a service. The service always has at least <code>MinSize</code> provisioned instances. Some
|
|
337
337
|
* of them actively serve traffic. The rest of them (provisioned and inactive instances) are a cost-effective compute capacity reserve and are ready to be
|
|
@@ -339,28 +339,28 @@ export interface AutoScalingConfiguration {
|
|
|
339
339
|
* <p>App Runner temporarily doubles the number of provisioned instances during deployments, to maintain the same capacity for both old and new code.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
MinSize?: number;
|
|
342
|
+
MinSize?: number | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* <p>The maximum number of instances that a service scales up to. At most <code>MaxSize</code> instances actively serve traffic for your service.</p>
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
MaxSize?: number;
|
|
347
|
+
MaxSize?: number | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* <p>The time when the auto scaling configuration was created. It's in Unix time stamp format.</p>
|
|
350
350
|
* @public
|
|
351
351
|
*/
|
|
352
|
-
CreatedAt?: Date;
|
|
352
|
+
CreatedAt?: Date | undefined;
|
|
353
353
|
/**
|
|
354
354
|
* <p>The time when the auto scaling configuration was deleted. It's in Unix time stamp format.</p>
|
|
355
355
|
* @public
|
|
356
356
|
*/
|
|
357
|
-
DeletedAt?: Date;
|
|
357
|
+
DeletedAt?: Date | undefined;
|
|
358
358
|
/**
|
|
359
359
|
* <p>Indicates if this auto scaling configuration has an App Runner service associated with it. A value of <code>true</code> indicates one or more services are
|
|
360
360
|
* associated. A value of <code>false</code> indicates no services are associated.</p>
|
|
361
361
|
* @public
|
|
362
362
|
*/
|
|
363
|
-
HasAssociatedService?: boolean;
|
|
363
|
+
HasAssociatedService?: boolean | undefined;
|
|
364
364
|
/**
|
|
365
365
|
* <p>Indicates if this auto scaling configuration should be used as the default for a new App Runner service that does not have an
|
|
366
366
|
* auto scaling configuration ARN specified during creation. Each account can have only one
|
|
@@ -368,7 +368,7 @@ export interface AutoScalingConfiguration {
|
|
|
368
368
|
* the same <code>AutoScalingConfigurationName</code>.</p>
|
|
369
369
|
* @public
|
|
370
370
|
*/
|
|
371
|
-
IsDefault?: boolean;
|
|
371
|
+
IsDefault?: boolean | undefined;
|
|
372
372
|
}
|
|
373
373
|
/**
|
|
374
374
|
* @public
|
|
@@ -389,7 +389,7 @@ export interface CreateAutoScalingConfigurationResponse {
|
|
|
389
389
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
390
390
|
readonly name: "ServiceQuotaExceededException";
|
|
391
391
|
readonly $fault: "client";
|
|
392
|
-
Message?: string;
|
|
392
|
+
Message?: string | undefined;
|
|
393
393
|
/**
|
|
394
394
|
* @internal
|
|
395
395
|
*/
|
|
@@ -425,7 +425,7 @@ export interface CreateConnectionRequest {
|
|
|
425
425
|
* <p>A list of metadata items that you can associate with your connection resource. A tag is a key-value pair.</p>
|
|
426
426
|
* @public
|
|
427
427
|
*/
|
|
428
|
-
Tags?: Tag[];
|
|
428
|
+
Tags?: Tag[] | undefined;
|
|
429
429
|
}
|
|
430
430
|
/**
|
|
431
431
|
* @public
|
|
@@ -450,27 +450,27 @@ export interface Connection {
|
|
|
450
450
|
* <p>The customer-provided connection name.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
ConnectionName?: string;
|
|
453
|
+
ConnectionName?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The Amazon Resource Name (ARN) of this connection.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
ConnectionArn?: string;
|
|
458
|
+
ConnectionArn?: string | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* <p>The source repository provider.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
ProviderType?: ProviderType;
|
|
463
|
+
ProviderType?: ProviderType | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The current state of the App Runner connection. When the state is <code>AVAILABLE</code>, you can use the connection to create an App Runner service.</p>
|
|
466
466
|
* @public
|
|
467
467
|
*/
|
|
468
|
-
Status?: ConnectionStatus;
|
|
468
|
+
Status?: ConnectionStatus | undefined;
|
|
469
469
|
/**
|
|
470
470
|
* <p>The App Runner connection creation time, expressed as a Unix time stamp.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
CreatedAt?: Date;
|
|
473
|
+
CreatedAt?: Date | undefined;
|
|
474
474
|
}
|
|
475
475
|
/**
|
|
476
476
|
* @public
|
|
@@ -524,12 +524,12 @@ export interface CreateObservabilityConfigurationRequest {
|
|
|
524
524
|
* <p>The configuration of the tracing feature within this observability configuration. If you don't specify it, App Runner doesn't enable tracing.</p>
|
|
525
525
|
* @public
|
|
526
526
|
*/
|
|
527
|
-
TraceConfiguration?: TraceConfiguration;
|
|
527
|
+
TraceConfiguration?: TraceConfiguration | undefined;
|
|
528
528
|
/**
|
|
529
529
|
* <p>A list of metadata items that you can associate with your observability configuration resource. A tag is a key-value pair.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
Tags?: Tag[];
|
|
532
|
+
Tags?: Tag[] | undefined;
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* @public
|
|
@@ -556,45 +556,45 @@ export interface ObservabilityConfiguration {
|
|
|
556
556
|
* <p>The Amazon Resource Name (ARN) of this observability configuration.</p>
|
|
557
557
|
* @public
|
|
558
558
|
*/
|
|
559
|
-
ObservabilityConfigurationArn?: string;
|
|
559
|
+
ObservabilityConfigurationArn?: string | undefined;
|
|
560
560
|
/**
|
|
561
561
|
* <p>The customer-provided observability configuration name. It can be used in multiple revisions of a configuration.</p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
ObservabilityConfigurationName?: string;
|
|
564
|
+
ObservabilityConfigurationName?: string | undefined;
|
|
565
565
|
/**
|
|
566
566
|
* <p>The configuration of the tracing feature within this observability configuration. If not specified, tracing isn't enabled.</p>
|
|
567
567
|
* @public
|
|
568
568
|
*/
|
|
569
|
-
TraceConfiguration?: TraceConfiguration;
|
|
569
|
+
TraceConfiguration?: TraceConfiguration | undefined;
|
|
570
570
|
/**
|
|
571
571
|
* <p>The revision of this observability configuration. It's unique among all the active configurations (<code>"Status": "ACTIVE"</code>) that share the
|
|
572
572
|
* same <code>ObservabilityConfigurationName</code>.</p>
|
|
573
573
|
* @public
|
|
574
574
|
*/
|
|
575
|
-
ObservabilityConfigurationRevision?: number;
|
|
575
|
+
ObservabilityConfigurationRevision?: number | undefined;
|
|
576
576
|
/**
|
|
577
577
|
* <p>It's set to <code>true</code> for the configuration with the highest <code>Revision</code> among all configurations that share the same
|
|
578
578
|
* <code>ObservabilityConfigurationName</code>. It's set to <code>false</code> otherwise.</p>
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
Latest?: boolean;
|
|
581
|
+
Latest?: boolean | undefined;
|
|
582
582
|
/**
|
|
583
583
|
* <p>The current state of the observability configuration. If the status of a configuration revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
584
584
|
* used. Inactive configuration revisions are permanently removed some time after they are deleted.</p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
Status?: ObservabilityConfigurationStatus;
|
|
587
|
+
Status?: ObservabilityConfigurationStatus | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>The time when the observability configuration was created. It's in Unix time stamp format.</p>
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
CreatedAt?: Date;
|
|
592
|
+
CreatedAt?: Date | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>The time when the observability configuration was deleted. It's in Unix time stamp format.</p>
|
|
595
595
|
* @public
|
|
596
596
|
*/
|
|
597
|
-
DeletedAt?: Date;
|
|
597
|
+
DeletedAt?: Date | undefined;
|
|
598
598
|
}
|
|
599
599
|
/**
|
|
600
600
|
* @public
|
|
@@ -641,7 +641,7 @@ export interface HealthCheckConfiguration {
|
|
|
641
641
|
* </p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
Protocol?: HealthCheckProtocol;
|
|
644
|
+
Protocol?: HealthCheckProtocol | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>The URL that health check requests are sent to.</p>
|
|
647
647
|
* <p>
|
|
@@ -650,35 +650,35 @@ export interface HealthCheckConfiguration {
|
|
|
650
650
|
* </p>
|
|
651
651
|
* @public
|
|
652
652
|
*/
|
|
653
|
-
Path?: string;
|
|
653
|
+
Path?: string | undefined;
|
|
654
654
|
/**
|
|
655
655
|
* <p>The time interval, in seconds, between health checks.</p>
|
|
656
656
|
* <p>Default: <code>5</code>
|
|
657
657
|
* </p>
|
|
658
658
|
* @public
|
|
659
659
|
*/
|
|
660
|
-
Interval?: number;
|
|
660
|
+
Interval?: number | undefined;
|
|
661
661
|
/**
|
|
662
662
|
* <p>The time, in seconds, to wait for a health check response before deciding it failed.</p>
|
|
663
663
|
* <p>Default: <code>2</code>
|
|
664
664
|
* </p>
|
|
665
665
|
* @public
|
|
666
666
|
*/
|
|
667
|
-
Timeout?: number;
|
|
667
|
+
Timeout?: number | undefined;
|
|
668
668
|
/**
|
|
669
669
|
* <p>The number of consecutive checks that must succeed before App Runner decides that the service is healthy.</p>
|
|
670
670
|
* <p>Default: <code>1</code>
|
|
671
671
|
* </p>
|
|
672
672
|
* @public
|
|
673
673
|
*/
|
|
674
|
-
HealthyThreshold?: number;
|
|
674
|
+
HealthyThreshold?: number | undefined;
|
|
675
675
|
/**
|
|
676
676
|
* <p>The number of consecutive checks that must fail before App Runner decides that the service is unhealthy.</p>
|
|
677
677
|
* <p>Default: <code>5</code>
|
|
678
678
|
* </p>
|
|
679
679
|
* @public
|
|
680
680
|
*/
|
|
681
|
-
UnhealthyThreshold?: number;
|
|
681
|
+
UnhealthyThreshold?: number | undefined;
|
|
682
682
|
}
|
|
683
683
|
/**
|
|
684
684
|
* <p>Describes the runtime configuration of an App Runner service instance (scaling unit).</p>
|
|
@@ -691,20 +691,20 @@ export interface InstanceConfiguration {
|
|
|
691
691
|
* </p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
Cpu?: string;
|
|
694
|
+
Cpu?: string | undefined;
|
|
695
695
|
/**
|
|
696
696
|
* <p>The amount of memory, in MB or GB, reserved for each instance of your App Runner service.</p>
|
|
697
697
|
* <p>Default: <code>2 GB</code>
|
|
698
698
|
* </p>
|
|
699
699
|
* @public
|
|
700
700
|
*/
|
|
701
|
-
Memory?: string;
|
|
701
|
+
Memory?: string | undefined;
|
|
702
702
|
/**
|
|
703
703
|
* <p>The Amazon Resource Name (ARN) of an IAM role that provides permissions to your App Runner service. These are permissions that your code needs when it calls
|
|
704
704
|
* any Amazon Web Services APIs.</p>
|
|
705
705
|
* @public
|
|
706
706
|
*/
|
|
707
|
-
InstanceRoleArn?: string;
|
|
707
|
+
InstanceRoleArn?: string | undefined;
|
|
708
708
|
}
|
|
709
709
|
/**
|
|
710
710
|
* @public
|
|
@@ -729,13 +729,13 @@ export interface EgressConfiguration {
|
|
|
729
729
|
* <p>Set to <code>VPC</code> to associate your service to a custom VPC specified by <code>VpcConnectorArn</code>.</p>
|
|
730
730
|
* @public
|
|
731
731
|
*/
|
|
732
|
-
EgressType?: EgressType;
|
|
732
|
+
EgressType?: EgressType | undefined;
|
|
733
733
|
/**
|
|
734
734
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when <code>EgressType =
|
|
735
735
|
* VPC</code>.</p>
|
|
736
736
|
* @public
|
|
737
737
|
*/
|
|
738
|
-
VpcConnectorArn?: string;
|
|
738
|
+
VpcConnectorArn?: string | undefined;
|
|
739
739
|
}
|
|
740
740
|
/**
|
|
741
741
|
* <p>Network configuration settings for inbound network traffic.</p>
|
|
@@ -747,7 +747,7 @@ export interface IngressConfiguration {
|
|
|
747
747
|
* privately accessible, from only within an Amazon VPC set it to <code>False</code>. </p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
IsPubliclyAccessible?: boolean;
|
|
750
|
+
IsPubliclyAccessible?: boolean | undefined;
|
|
751
751
|
}
|
|
752
752
|
/**
|
|
753
753
|
* @public
|
|
@@ -771,12 +771,12 @@ export interface NetworkConfiguration {
|
|
|
771
771
|
* <p>Network configuration settings for outbound message traffic.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
EgressConfiguration?: EgressConfiguration;
|
|
774
|
+
EgressConfiguration?: EgressConfiguration | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>Network configuration settings for inbound message traffic.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
IngressConfiguration?: IngressConfiguration;
|
|
779
|
+
IngressConfiguration?: IngressConfiguration | undefined;
|
|
780
780
|
/**
|
|
781
781
|
* <p>App Runner provides you with the option to choose between <i>Internet Protocol version 4 (IPv4)</i> and <i>dual stack</i> (IPv4 and IPv6)
|
|
782
782
|
* for your incoming public network configuration. This is an optional parameter.
|
|
@@ -789,7 +789,7 @@ export interface NetworkConfiguration {
|
|
|
789
789
|
* </note>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
IpAddressType?: IpAddressType;
|
|
792
|
+
IpAddressType?: IpAddressType | undefined;
|
|
793
793
|
}
|
|
794
794
|
/**
|
|
795
795
|
* <p>Describes the observability configuration of an App Runner service. These are additional observability features, like tracing, that you choose to
|
|
@@ -814,7 +814,7 @@ export interface ServiceObservabilityConfiguration {
|
|
|
814
814
|
* </p>
|
|
815
815
|
* @public
|
|
816
816
|
*/
|
|
817
|
-
ObservabilityConfigurationArn?: string;
|
|
817
|
+
ObservabilityConfigurationArn?: string | undefined;
|
|
818
818
|
}
|
|
819
819
|
/**
|
|
820
820
|
* <p>Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.</p>
|
|
@@ -826,13 +826,13 @@ export interface AuthenticationConfiguration {
|
|
|
826
826
|
* repositories.</p>
|
|
827
827
|
* @public
|
|
828
828
|
*/
|
|
829
|
-
ConnectionArn?: string;
|
|
829
|
+
ConnectionArn?: string | undefined;
|
|
830
830
|
/**
|
|
831
831
|
* <p>The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository. It's required for ECR image repositories
|
|
832
832
|
* (but not for ECR Public repositories).</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
AccessRoleArn?: string;
|
|
835
|
+
AccessRoleArn?: string | undefined;
|
|
836
836
|
}
|
|
837
837
|
/**
|
|
838
838
|
* @public
|
|
@@ -874,25 +874,25 @@ export interface CodeConfigurationValues {
|
|
|
874
874
|
* application.</p>
|
|
875
875
|
* @public
|
|
876
876
|
*/
|
|
877
|
-
BuildCommand?: string;
|
|
877
|
+
BuildCommand?: string | undefined;
|
|
878
878
|
/**
|
|
879
879
|
* <p>The command App Runner runs to start your
|
|
880
880
|
* application.</p>
|
|
881
881
|
* @public
|
|
882
882
|
*/
|
|
883
|
-
StartCommand?: string;
|
|
883
|
+
StartCommand?: string | undefined;
|
|
884
884
|
/**
|
|
885
885
|
* <p>The port that your application listens to in the container.</p>
|
|
886
886
|
* <p>Default: <code>8080</code>
|
|
887
887
|
* </p>
|
|
888
888
|
* @public
|
|
889
889
|
*/
|
|
890
|
-
Port?: string;
|
|
890
|
+
Port?: string | undefined;
|
|
891
891
|
/**
|
|
892
892
|
* <p>The environment variables that are available to your running App Runner service. An array of key-value pairs.</p>
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
RuntimeEnvironmentVariables?: Record<string, string
|
|
895
|
+
RuntimeEnvironmentVariables?: Record<string, string> | undefined;
|
|
896
896
|
/**
|
|
897
897
|
* <p>An array of key-value pairs representing the secrets and parameters that get referenced to your service as an environment variable. The supported
|
|
898
898
|
* values are either the full Amazon Resource Name (ARN) of the Secrets Manager secret or the full ARN of the parameter in the Amazon Web Services Systems Manager
|
|
@@ -910,7 +910,7 @@ export interface CodeConfigurationValues {
|
|
|
910
910
|
* </note>
|
|
911
911
|
* @public
|
|
912
912
|
*/
|
|
913
|
-
RuntimeEnvironmentSecrets?: Record<string, string
|
|
913
|
+
RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
|
|
914
914
|
}
|
|
915
915
|
/**
|
|
916
916
|
* @public
|
|
@@ -951,7 +951,7 @@ export interface CodeConfiguration {
|
|
|
951
951
|
* <code>apprunner.yaml</code> file in the source code repository (or ignoring the file if it exists).</p>
|
|
952
952
|
* @public
|
|
953
953
|
*/
|
|
954
|
-
CodeConfigurationValues?: CodeConfigurationValues;
|
|
954
|
+
CodeConfigurationValues?: CodeConfigurationValues | undefined;
|
|
955
955
|
}
|
|
956
956
|
/**
|
|
957
957
|
* @public
|
|
@@ -1005,13 +1005,13 @@ export interface CodeRepository {
|
|
|
1005
1005
|
* </note>
|
|
1006
1006
|
* @public
|
|
1007
1007
|
*/
|
|
1008
|
-
CodeConfiguration?: CodeConfiguration;
|
|
1008
|
+
CodeConfiguration?: CodeConfiguration | undefined;
|
|
1009
1009
|
/**
|
|
1010
1010
|
* <p>The path of the directory that stores source code and configuration files. The build and start commands also execute from here. The path is absolute
|
|
1011
1011
|
* from root and, if not specified, defaults to the repository root.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
SourceDirectory?: string;
|
|
1014
|
+
SourceDirectory?: string | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
/**
|
|
1017
1017
|
* <p>Describes the configuration that App Runner uses to run an App Runner service using an image pulled from a source image repository.</p>
|
|
@@ -1022,20 +1022,20 @@ export interface ImageConfiguration {
|
|
|
1022
1022
|
* <p>Environment variables that are available to your running App Runner service. An array of key-value pairs.</p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
RuntimeEnvironmentVariables?: Record<string, string
|
|
1025
|
+
RuntimeEnvironmentVariables?: Record<string, string> | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>An optional command that App Runner runs to start the application in the source image. If specified, this command overrides the Docker image’s default start
|
|
1028
1028
|
* command.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
StartCommand?: string;
|
|
1031
|
+
StartCommand?: string | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* <p>The port that your application listens to in the container.</p>
|
|
1034
1034
|
* <p>Default: <code>8080</code>
|
|
1035
1035
|
* </p>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
Port?: string;
|
|
1038
|
+
Port?: string | undefined;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* <p>An array of key-value pairs representing the secrets and parameters that get referenced to your service as an environment variable. The supported
|
|
1041
1041
|
* values are either the full Amazon Resource Name (ARN) of the Secrets Manager secret or the full ARN of the parameter in the Amazon Web Services Systems Manager
|
|
@@ -1053,7 +1053,7 @@ export interface ImageConfiguration {
|
|
|
1053
1053
|
* </note>
|
|
1054
1054
|
* @public
|
|
1055
1055
|
*/
|
|
1056
|
-
RuntimeEnvironmentSecrets?: Record<string, string
|
|
1056
|
+
RuntimeEnvironmentSecrets?: Record<string, string> | undefined;
|
|
1057
1057
|
}
|
|
1058
1058
|
/**
|
|
1059
1059
|
* @public
|
|
@@ -1082,7 +1082,7 @@ export interface ImageRepository {
|
|
|
1082
1082
|
* <p>Configuration for running the identified image.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
ImageConfiguration?: ImageConfiguration;
|
|
1085
|
+
ImageConfiguration?: ImageConfiguration | undefined;
|
|
1086
1086
|
/**
|
|
1087
1087
|
* <p>The type of the image repository. This reflects the repository provider and whether the repository is private or public.</p>
|
|
1088
1088
|
* @public
|
|
@@ -1100,14 +1100,14 @@ export interface SourceConfiguration {
|
|
|
1100
1100
|
* <p>You must provide either this member or <code>ImageRepository</code> (but not both).</p>
|
|
1101
1101
|
* @public
|
|
1102
1102
|
*/
|
|
1103
|
-
CodeRepository?: CodeRepository;
|
|
1103
|
+
CodeRepository?: CodeRepository | undefined;
|
|
1104
1104
|
/**
|
|
1105
1105
|
* <p>The description of a source image
|
|
1106
1106
|
* repository.</p>
|
|
1107
1107
|
* <p>You must provide either this member or <code>CodeRepository</code> (but not both).</p>
|
|
1108
1108
|
* @public
|
|
1109
1109
|
*/
|
|
1110
|
-
ImageRepository?: ImageRepository;
|
|
1110
|
+
ImageRepository?: ImageRepository | undefined;
|
|
1111
1111
|
/**
|
|
1112
1112
|
* <p>If <code>true</code>, continuous integration from the source repository is enabled for the App Runner service. Each repository change (including any source
|
|
1113
1113
|
* code commit or new image version) starts a deployment.</p>
|
|
@@ -1115,12 +1115,12 @@ export interface SourceConfiguration {
|
|
|
1115
1115
|
* repository or a source image using a same-account ECR repository).</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
AutoDeploymentsEnabled?: boolean;
|
|
1118
|
+
AutoDeploymentsEnabled?: boolean | undefined;
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>Describes the resources that are needed to authenticate access to some source repositories.</p>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
AuthenticationConfiguration?: AuthenticationConfiguration;
|
|
1123
|
+
AuthenticationConfiguration?: AuthenticationConfiguration | undefined;
|
|
1124
1124
|
}
|
|
1125
1125
|
/**
|
|
1126
1126
|
* @public
|
|
@@ -1140,23 +1140,23 @@ export interface CreateServiceRequest {
|
|
|
1140
1140
|
* <p>The runtime configuration of instances (scaling units) of your service.</p>
|
|
1141
1141
|
* @public
|
|
1142
1142
|
*/
|
|
1143
|
-
InstanceConfiguration?: InstanceConfiguration;
|
|
1143
|
+
InstanceConfiguration?: InstanceConfiguration | undefined;
|
|
1144
1144
|
/**
|
|
1145
1145
|
* <p>An optional list of metadata items that you can associate with the App Runner service resource. A tag is a key-value pair.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
Tags?: Tag[];
|
|
1148
|
+
Tags?: Tag[] | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* <p>An optional custom encryption key that App Runner uses to encrypt the copy of your source repository that it maintains and your service logs. By default,
|
|
1151
1151
|
* App Runner uses an Amazon Web Services managed key.</p>
|
|
1152
1152
|
* @public
|
|
1153
1153
|
*/
|
|
1154
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1154
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1155
1155
|
/**
|
|
1156
1156
|
* <p>The settings for the health check that App Runner performs to monitor the health of the App Runner service.</p>
|
|
1157
1157
|
* @public
|
|
1158
1158
|
*/
|
|
1159
|
-
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
1159
|
+
HealthCheckConfiguration?: HealthCheckConfiguration | undefined;
|
|
1160
1160
|
/**
|
|
1161
1161
|
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with your service. If not provided, App Runner
|
|
1162
1162
|
* associates the latest revision of a default auto scaling configuration.</p>
|
|
@@ -1168,17 +1168,17 @@ export interface CreateServiceRequest {
|
|
|
1168
1168
|
* </p>
|
|
1169
1169
|
* @public
|
|
1170
1170
|
*/
|
|
1171
|
-
AutoScalingConfigurationArn?: string;
|
|
1171
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
1172
1172
|
/**
|
|
1173
1173
|
* <p>Configuration settings related to network traffic of the web application that the App Runner service runs.</p>
|
|
1174
1174
|
* @public
|
|
1175
1175
|
*/
|
|
1176
|
-
NetworkConfiguration?: NetworkConfiguration;
|
|
1176
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
1177
1177
|
/**
|
|
1178
1178
|
* <p>The observability configuration of your service.</p>
|
|
1179
1179
|
* @public
|
|
1180
1180
|
*/
|
|
1181
|
-
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
1181
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration | undefined;
|
|
1182
1182
|
}
|
|
1183
1183
|
/**
|
|
1184
1184
|
* <p>Provides summary information about an App Runner automatic scaling configuration resource.</p>
|
|
@@ -1192,35 +1192,35 @@ export interface AutoScalingConfigurationSummary {
|
|
|
1192
1192
|
* <p>The Amazon Resource Name (ARN) of this auto scaling configuration.</p>
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
AutoScalingConfigurationArn?: string;
|
|
1195
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
1196
1196
|
/**
|
|
1197
1197
|
* <p>The customer-provided auto scaling configuration name. It can be used in multiple revisions of a configuration.</p>
|
|
1198
1198
|
* @public
|
|
1199
1199
|
*/
|
|
1200
|
-
AutoScalingConfigurationName?: string;
|
|
1200
|
+
AutoScalingConfigurationName?: string | undefined;
|
|
1201
1201
|
/**
|
|
1202
1202
|
* <p>The revision of this auto scaling configuration. It's unique among all the active configurations (<code>"Status": "ACTIVE"</code>) with the same
|
|
1203
1203
|
* <code>AutoScalingConfigurationName</code>.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
AutoScalingConfigurationRevision?: number;
|
|
1206
|
+
AutoScalingConfigurationRevision?: number | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>The current state of the auto scaling configuration. If the status of a configuration revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
1209
1209
|
* used. Inactive configuration revisions are permanently removed some time after they are deleted.</p>
|
|
1210
1210
|
* @public
|
|
1211
1211
|
*/
|
|
1212
|
-
Status?: AutoScalingConfigurationStatus;
|
|
1212
|
+
Status?: AutoScalingConfigurationStatus | undefined;
|
|
1213
1213
|
/**
|
|
1214
1214
|
* <p>The time when the auto scaling configuration was created. It's in Unix time stamp format.</p>
|
|
1215
1215
|
* @public
|
|
1216
1216
|
*/
|
|
1217
|
-
CreatedAt?: Date;
|
|
1217
|
+
CreatedAt?: Date | undefined;
|
|
1218
1218
|
/**
|
|
1219
1219
|
* <p>Indicates if this auto scaling configuration has an App Runner service associated with it. A value of <code>true</code> indicates one or more services are
|
|
1220
1220
|
* associated. A value of <code>false</code> indicates no services are associated.</p>
|
|
1221
1221
|
* @public
|
|
1222
1222
|
*/
|
|
1223
|
-
HasAssociatedService?: boolean;
|
|
1223
|
+
HasAssociatedService?: boolean | undefined;
|
|
1224
1224
|
/**
|
|
1225
1225
|
* <p>Indicates if this auto scaling configuration should be used as the default for a new App Runner service that does not have an
|
|
1226
1226
|
* auto scaling configuration ARN specified during creation. Each account can have only one
|
|
@@ -1228,7 +1228,7 @@ export interface AutoScalingConfigurationSummary {
|
|
|
1228
1228
|
* the same <code>AutoScalingConfigurationName</code>.</p>
|
|
1229
1229
|
* @public
|
|
1230
1230
|
*/
|
|
1231
|
-
IsDefault?: boolean;
|
|
1231
|
+
IsDefault?: boolean | undefined;
|
|
1232
1232
|
}
|
|
1233
1233
|
/**
|
|
1234
1234
|
* @public
|
|
@@ -1272,7 +1272,7 @@ export interface Service {
|
|
|
1272
1272
|
* <p>A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.</p>
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
ServiceUrl?: string;
|
|
1275
|
+
ServiceUrl?: string | undefined;
|
|
1276
1276
|
/**
|
|
1277
1277
|
* <p>The time when the App Runner service was created. It's in the Unix time stamp format.</p>
|
|
1278
1278
|
* @public
|
|
@@ -1287,7 +1287,7 @@ export interface Service {
|
|
|
1287
1287
|
* <p>The time when the App Runner service was deleted. It's in the Unix time stamp format.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
DeletedAt?: Date;
|
|
1290
|
+
DeletedAt?: Date | undefined;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* <p>The current state of the App Runner service. These particular values mean the following.</p>
|
|
1293
1293
|
* <ul>
|
|
@@ -1321,12 +1321,12 @@ export interface Service {
|
|
|
1321
1321
|
* either a customer-provided encryption key or an Amazon Web Services managed key.</p>
|
|
1322
1322
|
* @public
|
|
1323
1323
|
*/
|
|
1324
|
-
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1324
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
1325
1325
|
/**
|
|
1326
1326
|
* <p>The settings for the health check that App Runner performs to monitor the health of this service.</p>
|
|
1327
1327
|
* @public
|
|
1328
1328
|
*/
|
|
1329
|
-
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
1329
|
+
HealthCheckConfiguration?: HealthCheckConfiguration | undefined;
|
|
1330
1330
|
/**
|
|
1331
1331
|
* <p>Summary information for the App Runner automatic scaling configuration resource that's associated with this service.</p>
|
|
1332
1332
|
* @public
|
|
@@ -1341,7 +1341,7 @@ export interface Service {
|
|
|
1341
1341
|
* <p>The observability configuration of this service.</p>
|
|
1342
1342
|
* @public
|
|
1343
1343
|
*/
|
|
1344
|
-
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
1344
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration | undefined;
|
|
1345
1345
|
}
|
|
1346
1346
|
/**
|
|
1347
1347
|
* @public
|
|
@@ -1383,12 +1383,12 @@ export interface CreateVpcConnectorRequest {
|
|
|
1383
1383
|
* default security group of the Amazon VPC. The default security group allows all outbound traffic.</p>
|
|
1384
1384
|
* @public
|
|
1385
1385
|
*/
|
|
1386
|
-
SecurityGroups?: string[];
|
|
1386
|
+
SecurityGroups?: string[] | undefined;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* <p>A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair.</p>
|
|
1389
1389
|
* @public
|
|
1390
1390
|
*/
|
|
1391
|
-
Tags?: Tag[];
|
|
1391
|
+
Tags?: Tag[] | undefined;
|
|
1392
1392
|
}
|
|
1393
1393
|
/**
|
|
1394
1394
|
* @public
|
|
@@ -1416,12 +1416,12 @@ export interface VpcConnector {
|
|
|
1416
1416
|
* <p>The customer-provided VPC connector name.</p>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
VpcConnectorName?: string;
|
|
1419
|
+
VpcConnectorName?: string | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* <p>The Amazon Resource Name (ARN) of this VPC connector.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
VpcConnectorArn?: string;
|
|
1424
|
+
VpcConnectorArn?: string | undefined;
|
|
1425
1425
|
/**
|
|
1426
1426
|
* <p>The revision of this VPC connector. It's unique among all the active connectors (<code>"Status": "ACTIVE"</code>) that share the same
|
|
1427
1427
|
* <code>Name</code>.</p>
|
|
@@ -1430,34 +1430,34 @@ export interface VpcConnector {
|
|
|
1430
1430
|
* </note>
|
|
1431
1431
|
* @public
|
|
1432
1432
|
*/
|
|
1433
|
-
VpcConnectorRevision?: number;
|
|
1433
|
+
VpcConnectorRevision?: number | undefined;
|
|
1434
1434
|
/**
|
|
1435
1435
|
* <p>A list of IDs of subnets that App Runner uses for your service. All IDs are of subnets of a single Amazon VPC.</p>
|
|
1436
1436
|
* @public
|
|
1437
1437
|
*/
|
|
1438
|
-
Subnets?: string[];
|
|
1438
|
+
Subnets?: string[] | undefined;
|
|
1439
1439
|
/**
|
|
1440
1440
|
* <p>A list of IDs of security groups that App Runner uses for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default
|
|
1441
1441
|
* security group of the Amazon VPC. The default security group allows all outbound traffic.</p>
|
|
1442
1442
|
* @public
|
|
1443
1443
|
*/
|
|
1444
|
-
SecurityGroups?: string[];
|
|
1444
|
+
SecurityGroups?: string[] | undefined;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* <p>The current state of the VPC connector. If the status of a connector revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
1447
1447
|
* used. Inactive connector revisions are permanently removed some time after they are deleted.</p>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
Status?: VpcConnectorStatus;
|
|
1450
|
+
Status?: VpcConnectorStatus | undefined;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* <p>The time when the VPC connector was created. It's in Unix time stamp format.</p>
|
|
1453
1453
|
* @public
|
|
1454
1454
|
*/
|
|
1455
|
-
CreatedAt?: Date;
|
|
1455
|
+
CreatedAt?: Date | undefined;
|
|
1456
1456
|
/**
|
|
1457
1457
|
* <p>The time when the VPC connector was deleted. It's in Unix time stamp format.</p>
|
|
1458
1458
|
* @public
|
|
1459
1459
|
*/
|
|
1460
|
-
DeletedAt?: Date;
|
|
1460
|
+
DeletedAt?: Date | undefined;
|
|
1461
1461
|
}
|
|
1462
1462
|
/**
|
|
1463
1463
|
* @public
|
|
@@ -1479,13 +1479,13 @@ export interface IngressVpcConfiguration {
|
|
|
1479
1479
|
* <p>The ID of the VPC that is used for the VPC endpoint.</p>
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
|
-
VpcId?: string;
|
|
1482
|
+
VpcId?: string | undefined;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>The ID of the VPC endpoint that your App Runner service connects to.
|
|
1485
1485
|
* </p>
|
|
1486
1486
|
* @public
|
|
1487
1487
|
*/
|
|
1488
|
-
VpcEndpointId?: string;
|
|
1488
|
+
VpcEndpointId?: string | undefined;
|
|
1489
1489
|
}
|
|
1490
1490
|
/**
|
|
1491
1491
|
* @public
|
|
@@ -1512,7 +1512,7 @@ export interface CreateVpcIngressConnectionRequest {
|
|
|
1512
1512
|
* <p>An optional list of metadata items that you can associate with the VPC Ingress Connection resource. A tag is a key-value pair.</p>
|
|
1513
1513
|
* @public
|
|
1514
1514
|
*/
|
|
1515
|
-
Tags?: Tag[];
|
|
1515
|
+
Tags?: Tag[] | undefined;
|
|
1516
1516
|
}
|
|
1517
1517
|
/**
|
|
1518
1518
|
* @public
|
|
@@ -1543,40 +1543,40 @@ export interface VpcIngressConnection {
|
|
|
1543
1543
|
* </p>
|
|
1544
1544
|
* @public
|
|
1545
1545
|
*/
|
|
1546
|
-
VpcIngressConnectionArn?: string;
|
|
1546
|
+
VpcIngressConnectionArn?: string | undefined;
|
|
1547
1547
|
/**
|
|
1548
1548
|
* <p>The customer-provided VPC Ingress Connection name.</p>
|
|
1549
1549
|
* @public
|
|
1550
1550
|
*/
|
|
1551
|
-
VpcIngressConnectionName?: string;
|
|
1551
|
+
VpcIngressConnectionName?: string | undefined;
|
|
1552
1552
|
/**
|
|
1553
1553
|
* <p>The Amazon Resource Name (ARN) of the service associated with the VPC Ingress Connection.
|
|
1554
1554
|
* </p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
ServiceArn?: string;
|
|
1557
|
+
ServiceArn?: string | undefined;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>The current status of the VPC Ingress Connection.
|
|
1560
1560
|
* The VPC Ingress Connection displays one of the following statuses: <code>AVAILABLE</code>, <code>PENDING_CREATION</code>, <code>PENDING_UPDATE</code>, <code>PENDING_DELETION</code>,<code>FAILED_CREATION</code>, <code>FAILED_UPDATE</code>, <code>FAILED_DELETION</code>, and <code>DELETED</code>..
|
|
1561
1561
|
* </p>
|
|
1562
1562
|
* @public
|
|
1563
1563
|
*/
|
|
1564
|
-
Status?: VpcIngressConnectionStatus;
|
|
1564
|
+
Status?: VpcIngressConnectionStatus | undefined;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* <p>The Account Id you use to create the VPC Ingress Connection resource.</p>
|
|
1567
1567
|
* @public
|
|
1568
1568
|
*/
|
|
1569
|
-
AccountId?: string;
|
|
1569
|
+
AccountId?: string | undefined;
|
|
1570
1570
|
/**
|
|
1571
1571
|
* <p>The domain name associated with the VPC Ingress Connection resource.</p>
|
|
1572
1572
|
* @public
|
|
1573
1573
|
*/
|
|
1574
|
-
DomainName?: string;
|
|
1574
|
+
DomainName?: string | undefined;
|
|
1575
1575
|
/**
|
|
1576
1576
|
* <p>Specifications for the customer’s VPC and related PrivateLink VPC endpoint that are used to associate with the VPC Ingress Connection resource.</p>
|
|
1577
1577
|
* @public
|
|
1578
1578
|
*/
|
|
1579
|
-
IngressVpcConfiguration?: IngressVpcConfiguration;
|
|
1579
|
+
IngressVpcConfiguration?: IngressVpcConfiguration | undefined;
|
|
1580
1580
|
/**
|
|
1581
1581
|
* <p>The time when the VPC Ingress Connection was created. It's in the Unix time stamp format.</p>
|
|
1582
1582
|
* <ul>
|
|
@@ -1593,7 +1593,7 @@ export interface VpcIngressConnection {
|
|
|
1593
1593
|
* </ul>
|
|
1594
1594
|
* @public
|
|
1595
1595
|
*/
|
|
1596
|
-
CreatedAt?: Date;
|
|
1596
|
+
CreatedAt?: Date | undefined;
|
|
1597
1597
|
/**
|
|
1598
1598
|
* <p>The time when the App Runner service was deleted. It's in the Unix time stamp format.</p>
|
|
1599
1599
|
* <ul>
|
|
@@ -1610,7 +1610,7 @@ export interface VpcIngressConnection {
|
|
|
1610
1610
|
* </ul>
|
|
1611
1611
|
* @public
|
|
1612
1612
|
*/
|
|
1613
|
-
DeletedAt?: Date;
|
|
1613
|
+
DeletedAt?: Date | undefined;
|
|
1614
1614
|
}
|
|
1615
1615
|
/**
|
|
1616
1616
|
* @public
|
|
@@ -1641,7 +1641,7 @@ export interface DeleteAutoScalingConfigurationRequest {
|
|
|
1641
1641
|
* with: <code>.../name</code>.</p>
|
|
1642
1642
|
* @public
|
|
1643
1643
|
*/
|
|
1644
|
-
DeleteAllRevisions?: boolean;
|
|
1644
|
+
DeleteAllRevisions?: boolean | undefined;
|
|
1645
1645
|
}
|
|
1646
1646
|
/**
|
|
1647
1647
|
* @public
|
|
@@ -1660,7 +1660,7 @@ export interface DeleteAutoScalingConfigurationResponse {
|
|
|
1660
1660
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1661
1661
|
readonly name: "ResourceNotFoundException";
|
|
1662
1662
|
readonly $fault: "client";
|
|
1663
|
-
Message?: string;
|
|
1663
|
+
Message?: string | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* @internal
|
|
1666
1666
|
*/
|
|
@@ -1684,7 +1684,7 @@ export interface DeleteConnectionResponse {
|
|
|
1684
1684
|
* <p>A description of the App Runner connection that this request just deleted.</p>
|
|
1685
1685
|
* @public
|
|
1686
1686
|
*/
|
|
1687
|
-
Connection?: Connection;
|
|
1687
|
+
Connection?: Connection | undefined;
|
|
1688
1688
|
}
|
|
1689
1689
|
/**
|
|
1690
1690
|
* @public
|
|
@@ -1817,13 +1817,13 @@ export interface DescribeCustomDomainsRequest {
|
|
|
1817
1817
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
1818
1818
|
* @public
|
|
1819
1819
|
*/
|
|
1820
|
-
NextToken?: string;
|
|
1820
|
+
NextToken?: string | undefined;
|
|
1821
1821
|
/**
|
|
1822
1822
|
* <p>The maximum number of results that each response (result page) can include. It's used for a paginated request.</p>
|
|
1823
1823
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
1824
1824
|
* @public
|
|
1825
1825
|
*/
|
|
1826
|
-
MaxResults?: number;
|
|
1826
|
+
MaxResults?: number | undefined;
|
|
1827
1827
|
}
|
|
1828
1828
|
/**
|
|
1829
1829
|
* @public
|
|
@@ -1855,7 +1855,7 @@ export interface DescribeCustomDomainsResponse {
|
|
|
1855
1855
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
NextToken?: string;
|
|
1858
|
+
NextToken?: string | undefined;
|
|
1859
1859
|
}
|
|
1860
1860
|
/**
|
|
1861
1861
|
* @public
|
|
@@ -1993,7 +1993,7 @@ export interface ListAutoScalingConfigurationsRequest {
|
|
|
1993
1993
|
* returns revisions of all active configurations.</p>
|
|
1994
1994
|
* @public
|
|
1995
1995
|
*/
|
|
1996
|
-
AutoScalingConfigurationName?: string;
|
|
1996
|
+
AutoScalingConfigurationName?: string | undefined;
|
|
1997
1997
|
/**
|
|
1998
1998
|
* <p>Set to <code>true</code> to list only the latest revision for each requested configuration name.</p>
|
|
1999
1999
|
* <p>Set to <code>false</code> to list all revisions for each requested configuration name.</p>
|
|
@@ -2001,20 +2001,20 @@ export interface ListAutoScalingConfigurationsRequest {
|
|
|
2001
2001
|
* </p>
|
|
2002
2002
|
* @public
|
|
2003
2003
|
*/
|
|
2004
|
-
LatestOnly?: boolean;
|
|
2004
|
+
LatestOnly?: boolean | undefined;
|
|
2005
2005
|
/**
|
|
2006
2006
|
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
2007
2007
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
MaxResults?: number;
|
|
2010
|
+
MaxResults?: number | undefined;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* <p>A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
2013
2013
|
* identical to the ones that are specified in the initial request.</p>
|
|
2014
2014
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2015
2015
|
* @public
|
|
2016
2016
|
*/
|
|
2017
|
-
NextToken?: string;
|
|
2017
|
+
NextToken?: string | undefined;
|
|
2018
2018
|
}
|
|
2019
2019
|
/**
|
|
2020
2020
|
* @public
|
|
@@ -2030,7 +2030,7 @@ export interface ListAutoScalingConfigurationsResponse {
|
|
|
2030
2030
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
NextToken?: string;
|
|
2033
|
+
NextToken?: string | undefined;
|
|
2034
2034
|
}
|
|
2035
2035
|
/**
|
|
2036
2036
|
* @public
|
|
@@ -2040,20 +2040,20 @@ export interface ListConnectionsRequest {
|
|
|
2040
2040
|
* <p>If specified, only this connection is returned. If not specified, the result isn't filtered by name.</p>
|
|
2041
2041
|
* @public
|
|
2042
2042
|
*/
|
|
2043
|
-
ConnectionName?: string;
|
|
2043
|
+
ConnectionName?: string | undefined;
|
|
2044
2044
|
/**
|
|
2045
2045
|
* <p>The maximum number of results to include in each response (result page). Used for a paginated request.</p>
|
|
2046
2046
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2047
2047
|
* @public
|
|
2048
2048
|
*/
|
|
2049
|
-
MaxResults?: number;
|
|
2049
|
+
MaxResults?: number | undefined;
|
|
2050
2050
|
/**
|
|
2051
2051
|
* <p>A token from a previous result page. Used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
2052
2052
|
* identical to the ones specified in the initial request.</p>
|
|
2053
2053
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2054
2054
|
* @public
|
|
2055
2055
|
*/
|
|
2056
|
-
NextToken?: string;
|
|
2056
|
+
NextToken?: string | undefined;
|
|
2057
2057
|
}
|
|
2058
2058
|
/**
|
|
2059
2059
|
* <p>Provides summary information about an App Runner connection resource.</p>
|
|
@@ -2064,27 +2064,27 @@ export interface ConnectionSummary {
|
|
|
2064
2064
|
* <p>The customer-provided connection name.</p>
|
|
2065
2065
|
* @public
|
|
2066
2066
|
*/
|
|
2067
|
-
ConnectionName?: string;
|
|
2067
|
+
ConnectionName?: string | undefined;
|
|
2068
2068
|
/**
|
|
2069
2069
|
* <p>The Amazon Resource Name (ARN) of this connection.</p>
|
|
2070
2070
|
* @public
|
|
2071
2071
|
*/
|
|
2072
|
-
ConnectionArn?: string;
|
|
2072
|
+
ConnectionArn?: string | undefined;
|
|
2073
2073
|
/**
|
|
2074
2074
|
* <p>The source repository provider.</p>
|
|
2075
2075
|
* @public
|
|
2076
2076
|
*/
|
|
2077
|
-
ProviderType?: ProviderType;
|
|
2077
|
+
ProviderType?: ProviderType | undefined;
|
|
2078
2078
|
/**
|
|
2079
2079
|
* <p>The current state of the App Runner connection. When the state is <code>AVAILABLE</code>, you can use the connection to create an App Runner service.</p>
|
|
2080
2080
|
* @public
|
|
2081
2081
|
*/
|
|
2082
|
-
Status?: ConnectionStatus;
|
|
2082
|
+
Status?: ConnectionStatus | undefined;
|
|
2083
2083
|
/**
|
|
2084
2084
|
* <p>The App Runner connection creation time, expressed as a Unix time stamp.</p>
|
|
2085
2085
|
* @public
|
|
2086
2086
|
*/
|
|
2087
|
-
CreatedAt?: Date;
|
|
2087
|
+
CreatedAt?: Date | undefined;
|
|
2088
2088
|
}
|
|
2089
2089
|
/**
|
|
2090
2090
|
* @public
|
|
@@ -2100,7 +2100,7 @@ export interface ListConnectionsResponse {
|
|
|
2100
2100
|
* <p>The token that you can pass in a subsequent request to get the next result page. Returned in a paginated request.</p>
|
|
2101
2101
|
* @public
|
|
2102
2102
|
*/
|
|
2103
|
-
NextToken?: string;
|
|
2103
|
+
NextToken?: string | undefined;
|
|
2104
2104
|
}
|
|
2105
2105
|
/**
|
|
2106
2106
|
* @public
|
|
@@ -2111,7 +2111,7 @@ export interface ListObservabilityConfigurationsRequest {
|
|
|
2111
2111
|
* App Runner returns revisions of all active configurations.</p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
ObservabilityConfigurationName?: string;
|
|
2114
|
+
ObservabilityConfigurationName?: string | undefined;
|
|
2115
2115
|
/**
|
|
2116
2116
|
* <p>Set to <code>true</code> to list only the latest revision for each requested configuration name.</p>
|
|
2117
2117
|
* <p>Set to <code>false</code> to list all revisions for each requested configuration name.</p>
|
|
@@ -2119,20 +2119,20 @@ export interface ListObservabilityConfigurationsRequest {
|
|
|
2119
2119
|
* </p>
|
|
2120
2120
|
* @public
|
|
2121
2121
|
*/
|
|
2122
|
-
LatestOnly?: boolean;
|
|
2122
|
+
LatestOnly?: boolean | undefined;
|
|
2123
2123
|
/**
|
|
2124
2124
|
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
2125
2125
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2126
2126
|
* @public
|
|
2127
2127
|
*/
|
|
2128
|
-
MaxResults?: number;
|
|
2128
|
+
MaxResults?: number | undefined;
|
|
2129
2129
|
/**
|
|
2130
2130
|
* <p>A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
2131
2131
|
* identical to the ones that are specified in the initial request.</p>
|
|
2132
2132
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2133
2133
|
* @public
|
|
2134
2134
|
*/
|
|
2135
|
-
NextToken?: string;
|
|
2135
|
+
NextToken?: string | undefined;
|
|
2136
2136
|
}
|
|
2137
2137
|
/**
|
|
2138
2138
|
* <p>Provides summary information about an App Runner observability configuration resource.</p>
|
|
@@ -2146,18 +2146,18 @@ export interface ObservabilityConfigurationSummary {
|
|
|
2146
2146
|
* <p>The Amazon Resource Name (ARN) of this observability configuration.</p>
|
|
2147
2147
|
* @public
|
|
2148
2148
|
*/
|
|
2149
|
-
ObservabilityConfigurationArn?: string;
|
|
2149
|
+
ObservabilityConfigurationArn?: string | undefined;
|
|
2150
2150
|
/**
|
|
2151
2151
|
* <p>The customer-provided observability configuration name. It can be used in multiple revisions of a configuration.</p>
|
|
2152
2152
|
* @public
|
|
2153
2153
|
*/
|
|
2154
|
-
ObservabilityConfigurationName?: string;
|
|
2154
|
+
ObservabilityConfigurationName?: string | undefined;
|
|
2155
2155
|
/**
|
|
2156
2156
|
* <p>The revision of this observability configuration. It's unique among all the active configurations (<code>"Status": "ACTIVE"</code>) that share the
|
|
2157
2157
|
* same <code>ObservabilityConfigurationName</code>.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
ObservabilityConfigurationRevision?: number;
|
|
2160
|
+
ObservabilityConfigurationRevision?: number | undefined;
|
|
2161
2161
|
}
|
|
2162
2162
|
/**
|
|
2163
2163
|
* @public
|
|
@@ -2173,7 +2173,7 @@ export interface ListObservabilityConfigurationsResponse {
|
|
|
2173
2173
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
2174
2174
|
* @public
|
|
2175
2175
|
*/
|
|
2176
|
-
NextToken?: string;
|
|
2176
|
+
NextToken?: string | undefined;
|
|
2177
2177
|
}
|
|
2178
2178
|
/**
|
|
2179
2179
|
* @public
|
|
@@ -2190,13 +2190,13 @@ export interface ListOperationsRequest {
|
|
|
2190
2190
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
NextToken?: string;
|
|
2193
|
+
NextToken?: string | undefined;
|
|
2194
2194
|
/**
|
|
2195
2195
|
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
2196
2196
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2197
2197
|
* @public
|
|
2198
2198
|
*/
|
|
2199
|
-
MaxResults?: number;
|
|
2199
|
+
MaxResults?: number | undefined;
|
|
2200
2200
|
}
|
|
2201
2201
|
/**
|
|
2202
2202
|
* @public
|
|
@@ -2240,37 +2240,37 @@ export interface OperationSummary {
|
|
|
2240
2240
|
* <p>A unique ID of this operation. It's unique in the scope of the App Runner service.</p>
|
|
2241
2241
|
* @public
|
|
2242
2242
|
*/
|
|
2243
|
-
Id?: string;
|
|
2243
|
+
Id?: string | undefined;
|
|
2244
2244
|
/**
|
|
2245
2245
|
* <p>The type of operation. It indicates a specific action that occured.</p>
|
|
2246
2246
|
* @public
|
|
2247
2247
|
*/
|
|
2248
|
-
Type?: OperationType;
|
|
2248
|
+
Type?: OperationType | undefined;
|
|
2249
2249
|
/**
|
|
2250
2250
|
* <p>The current state of the operation.</p>
|
|
2251
2251
|
* @public
|
|
2252
2252
|
*/
|
|
2253
|
-
Status?: OperationStatus;
|
|
2253
|
+
Status?: OperationStatus | undefined;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* <p>The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).</p>
|
|
2256
2256
|
* @public
|
|
2257
2257
|
*/
|
|
2258
|
-
TargetArn?: string;
|
|
2258
|
+
TargetArn?: string | undefined;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* <p>The time when the operation started. It's in the Unix time stamp format.</p>
|
|
2261
2261
|
* @public
|
|
2262
2262
|
*/
|
|
2263
|
-
StartedAt?: Date;
|
|
2263
|
+
StartedAt?: Date | undefined;
|
|
2264
2264
|
/**
|
|
2265
2265
|
* <p>The time when the operation ended. It's in the Unix time stamp format.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
EndedAt?: Date;
|
|
2268
|
+
EndedAt?: Date | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>The time when the operation was last updated. It's in the Unix time stamp format.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
UpdatedAt?: Date;
|
|
2273
|
+
UpdatedAt?: Date | undefined;
|
|
2274
2274
|
}
|
|
2275
2275
|
/**
|
|
2276
2276
|
* @public
|
|
@@ -2281,12 +2281,12 @@ export interface ListOperationsResponse {
|
|
|
2281
2281
|
* call.</p>
|
|
2282
2282
|
* @public
|
|
2283
2283
|
*/
|
|
2284
|
-
OperationSummaryList?: OperationSummary[];
|
|
2284
|
+
OperationSummaryList?: OperationSummary[] | undefined;
|
|
2285
2285
|
/**
|
|
2286
2286
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
2287
2287
|
* @public
|
|
2288
2288
|
*/
|
|
2289
|
-
NextToken?: string;
|
|
2289
|
+
NextToken?: string | undefined;
|
|
2290
2290
|
}
|
|
2291
2291
|
/**
|
|
2292
2292
|
* @public
|
|
@@ -2298,13 +2298,13 @@ export interface ListServicesRequest {
|
|
|
2298
2298
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2299
2299
|
* @public
|
|
2300
2300
|
*/
|
|
2301
|
-
NextToken?: string;
|
|
2301
|
+
NextToken?: string | undefined;
|
|
2302
2302
|
/**
|
|
2303
2303
|
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
2304
2304
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2305
2305
|
* @public
|
|
2306
2306
|
*/
|
|
2307
|
-
MaxResults?: number;
|
|
2307
|
+
MaxResults?: number | undefined;
|
|
2308
2308
|
}
|
|
2309
2309
|
/**
|
|
2310
2310
|
* <p>Provides summary information for an App Runner service.</p>
|
|
@@ -2316,32 +2316,32 @@ export interface ServiceSummary {
|
|
|
2316
2316
|
* <p>The customer-provided service name.</p>
|
|
2317
2317
|
* @public
|
|
2318
2318
|
*/
|
|
2319
|
-
ServiceName?: string;
|
|
2319
|
+
ServiceName?: string | undefined;
|
|
2320
2320
|
/**
|
|
2321
2321
|
* <p>An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.</p>
|
|
2322
2322
|
* @public
|
|
2323
2323
|
*/
|
|
2324
|
-
ServiceId?: string;
|
|
2324
|
+
ServiceId?: string | undefined;
|
|
2325
2325
|
/**
|
|
2326
2326
|
* <p>The Amazon Resource Name (ARN) of this service.</p>
|
|
2327
2327
|
* @public
|
|
2328
2328
|
*/
|
|
2329
|
-
ServiceArn?: string;
|
|
2329
|
+
ServiceArn?: string | undefined;
|
|
2330
2330
|
/**
|
|
2331
2331
|
* <p>A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.</p>
|
|
2332
2332
|
* @public
|
|
2333
2333
|
*/
|
|
2334
|
-
ServiceUrl?: string;
|
|
2334
|
+
ServiceUrl?: string | undefined;
|
|
2335
2335
|
/**
|
|
2336
2336
|
* <p>The time when the App Runner service was created. It's in the Unix time stamp format.</p>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
CreatedAt?: Date;
|
|
2339
|
+
CreatedAt?: Date | undefined;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p>The time when the App Runner service was last updated. It's in theUnix time stamp format.</p>
|
|
2342
2342
|
* @public
|
|
2343
2343
|
*/
|
|
2344
|
-
UpdatedAt?: Date;
|
|
2344
|
+
UpdatedAt?: Date | undefined;
|
|
2345
2345
|
/**
|
|
2346
2346
|
* <p>The current state of the App Runner service. These particular values mean the following.</p>
|
|
2347
2347
|
* <ul>
|
|
@@ -2359,7 +2359,7 @@ export interface ServiceSummary {
|
|
|
2359
2359
|
* </ul>
|
|
2360
2360
|
* @public
|
|
2361
2361
|
*/
|
|
2362
|
-
Status?: ServiceStatus;
|
|
2362
|
+
Status?: ServiceStatus | undefined;
|
|
2363
2363
|
}
|
|
2364
2364
|
/**
|
|
2365
2365
|
* @public
|
|
@@ -2374,7 +2374,7 @@ export interface ListServicesResponse {
|
|
|
2374
2374
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
2375
2375
|
* @public
|
|
2376
2376
|
*/
|
|
2377
|
-
NextToken?: string;
|
|
2377
|
+
NextToken?: string | undefined;
|
|
2378
2378
|
}
|
|
2379
2379
|
/**
|
|
2380
2380
|
* @public
|
|
@@ -2394,14 +2394,14 @@ export interface ListServicesForAutoScalingConfigurationRequest {
|
|
|
2394
2394
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2395
2395
|
* @public
|
|
2396
2396
|
*/
|
|
2397
|
-
MaxResults?: number;
|
|
2397
|
+
MaxResults?: number | undefined;
|
|
2398
2398
|
/**
|
|
2399
2399
|
* <p>A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
2400
2400
|
* identical to the ones specified in the initial request.</p>
|
|
2401
2401
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2402
2402
|
* @public
|
|
2403
2403
|
*/
|
|
2404
|
-
NextToken?: string;
|
|
2404
|
+
NextToken?: string | undefined;
|
|
2405
2405
|
}
|
|
2406
2406
|
/**
|
|
2407
2407
|
* @public
|
|
@@ -2416,7 +2416,7 @@ export interface ListServicesForAutoScalingConfigurationResponse {
|
|
|
2416
2416
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
2417
2417
|
* @public
|
|
2418
2418
|
*/
|
|
2419
|
-
NextToken?: string;
|
|
2419
|
+
NextToken?: string | undefined;
|
|
2420
2420
|
}
|
|
2421
2421
|
/**
|
|
2422
2422
|
* @public
|
|
@@ -2437,7 +2437,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2437
2437
|
* <p>A list of the tag key-value pairs that are associated with the resource.</p>
|
|
2438
2438
|
* @public
|
|
2439
2439
|
*/
|
|
2440
|
-
Tags?: Tag[];
|
|
2440
|
+
Tags?: Tag[] | undefined;
|
|
2441
2441
|
}
|
|
2442
2442
|
/**
|
|
2443
2443
|
* @public
|
|
@@ -2448,14 +2448,14 @@ export interface ListVpcConnectorsRequest {
|
|
|
2448
2448
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2449
2449
|
* @public
|
|
2450
2450
|
*/
|
|
2451
|
-
MaxResults?: number;
|
|
2451
|
+
MaxResults?: number | undefined;
|
|
2452
2452
|
/**
|
|
2453
2453
|
* <p>A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
2454
2454
|
* identical to the ones that are specified in the initial request.</p>
|
|
2455
2455
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2456
2456
|
* @public
|
|
2457
2457
|
*/
|
|
2458
|
-
NextToken?: string;
|
|
2458
|
+
NextToken?: string | undefined;
|
|
2459
2459
|
}
|
|
2460
2460
|
/**
|
|
2461
2461
|
* @public
|
|
@@ -2471,7 +2471,7 @@ export interface ListVpcConnectorsResponse {
|
|
|
2471
2471
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
NextToken?: string;
|
|
2474
|
+
NextToken?: string | undefined;
|
|
2475
2475
|
}
|
|
2476
2476
|
/**
|
|
2477
2477
|
* <p>Returns a list of VPC Ingress Connections based on the filter provided. It can return either <code>ServiceArn</code> or <code>VpcEndpointId</code>, or both.</p>
|
|
@@ -2483,13 +2483,13 @@ export interface ListVpcIngressConnectionsFilter {
|
|
|
2483
2483
|
* </p>
|
|
2484
2484
|
* @public
|
|
2485
2485
|
*/
|
|
2486
|
-
ServiceArn?: string;
|
|
2486
|
+
ServiceArn?: string | undefined;
|
|
2487
2487
|
/**
|
|
2488
2488
|
* <p>The ID of a VPC Endpoint to filter by.
|
|
2489
2489
|
* </p>
|
|
2490
2490
|
* @public
|
|
2491
2491
|
*/
|
|
2492
|
-
VpcEndpointId?: string;
|
|
2492
|
+
VpcEndpointId?: string | undefined;
|
|
2493
2493
|
}
|
|
2494
2494
|
/**
|
|
2495
2495
|
* @public
|
|
@@ -2499,20 +2499,20 @@ export interface ListVpcIngressConnectionsRequest {
|
|
|
2499
2499
|
* <p>The VPC Ingress Connections to be listed based on either the Service Arn or Vpc Endpoint Id, or both.</p>
|
|
2500
2500
|
* @public
|
|
2501
2501
|
*/
|
|
2502
|
-
Filter?: ListVpcIngressConnectionsFilter;
|
|
2502
|
+
Filter?: ListVpcIngressConnectionsFilter | undefined;
|
|
2503
2503
|
/**
|
|
2504
2504
|
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
2505
2505
|
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
2506
2506
|
* @public
|
|
2507
2507
|
*/
|
|
2508
|
-
MaxResults?: number;
|
|
2508
|
+
MaxResults?: number | undefined;
|
|
2509
2509
|
/**
|
|
2510
2510
|
* <p>A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
2511
2511
|
* identical to the ones that are specified in the initial request.</p>
|
|
2512
2512
|
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
2513
2513
|
* @public
|
|
2514
2514
|
*/
|
|
2515
|
-
NextToken?: string;
|
|
2515
|
+
NextToken?: string | undefined;
|
|
2516
2516
|
}
|
|
2517
2517
|
/**
|
|
2518
2518
|
* <p>Provides summary information about an VPC Ingress Connection, which includes its VPC Ingress Connection ARN and its associated Service ARN.</p>
|
|
@@ -2524,13 +2524,13 @@ export interface VpcIngressConnectionSummary {
|
|
|
2524
2524
|
* </p>
|
|
2525
2525
|
* @public
|
|
2526
2526
|
*/
|
|
2527
|
-
VpcIngressConnectionArn?: string;
|
|
2527
|
+
VpcIngressConnectionArn?: string | undefined;
|
|
2528
2528
|
/**
|
|
2529
2529
|
* <p>The Amazon Resource Name (ARN) of the service associated with the VPC Ingress Connection.
|
|
2530
2530
|
* </p>
|
|
2531
2531
|
* @public
|
|
2532
2532
|
*/
|
|
2533
|
-
ServiceArn?: string;
|
|
2533
|
+
ServiceArn?: string | undefined;
|
|
2534
2534
|
}
|
|
2535
2535
|
/**
|
|
2536
2536
|
* @public
|
|
@@ -2545,7 +2545,7 @@ export interface ListVpcIngressConnectionsResponse {
|
|
|
2545
2545
|
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
NextToken?: string;
|
|
2548
|
+
NextToken?: string | undefined;
|
|
2549
2549
|
}
|
|
2550
2550
|
/**
|
|
2551
2551
|
* @public
|
|
@@ -2571,7 +2571,7 @@ export interface PauseServiceResponse {
|
|
|
2571
2571
|
* the operation's progress.</p>
|
|
2572
2572
|
* @public
|
|
2573
2573
|
*/
|
|
2574
|
-
OperationId?: string;
|
|
2574
|
+
OperationId?: string | undefined;
|
|
2575
2575
|
}
|
|
2576
2576
|
/**
|
|
2577
2577
|
* @public
|
|
@@ -2597,7 +2597,7 @@ export interface ResumeServiceResponse {
|
|
|
2597
2597
|
* the operation's progress.</p>
|
|
2598
2598
|
* @public
|
|
2599
2599
|
*/
|
|
2600
|
-
OperationId?: string;
|
|
2600
|
+
OperationId?: string | undefined;
|
|
2601
2601
|
}
|
|
2602
2602
|
/**
|
|
2603
2603
|
* @public
|
|
@@ -2705,32 +2705,32 @@ export interface UpdateServiceRequest {
|
|
|
2705
2705
|
* values to members of the structure that you include.</p>
|
|
2706
2706
|
* @public
|
|
2707
2707
|
*/
|
|
2708
|
-
SourceConfiguration?: SourceConfiguration;
|
|
2708
|
+
SourceConfiguration?: SourceConfiguration | undefined;
|
|
2709
2709
|
/**
|
|
2710
2710
|
* <p>The runtime configuration to apply to instances (scaling units) of your service.</p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
InstanceConfiguration?: InstanceConfiguration;
|
|
2713
|
+
InstanceConfiguration?: InstanceConfiguration | undefined;
|
|
2714
2714
|
/**
|
|
2715
2715
|
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with the App Runner service.</p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
AutoScalingConfigurationArn?: string;
|
|
2718
|
+
AutoScalingConfigurationArn?: string | undefined;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* <p>The settings for the health check that App Runner performs to monitor the health of the App Runner service.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
2723
|
+
HealthCheckConfiguration?: HealthCheckConfiguration | undefined;
|
|
2724
2724
|
/**
|
|
2725
2725
|
* <p>Configuration settings related to network traffic of the web application that the App Runner service runs.</p>
|
|
2726
2726
|
* @public
|
|
2727
2727
|
*/
|
|
2728
|
-
NetworkConfiguration?: NetworkConfiguration;
|
|
2728
|
+
NetworkConfiguration?: NetworkConfiguration | undefined;
|
|
2729
2729
|
/**
|
|
2730
2730
|
* <p>The observability configuration of your service.</p>
|
|
2731
2731
|
* @public
|
|
2732
2732
|
*/
|
|
2733
|
-
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
2733
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration | undefined;
|
|
2734
2734
|
}
|
|
2735
2735
|
/**
|
|
2736
2736
|
* @public
|