@aws-sdk/client-apprunner 3.296.0 → 3.297.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/AppRunner.d.ts +36 -0
- package/dist-types/AppRunnerClient.d.ts +24 -4
- package/dist-types/commands/AssociateCustomDomainCommand.d.ts +16 -0
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
- package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/CreateVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServiceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +16 -0
- package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVpcConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/PauseServiceCommand.d.ts +16 -0
- package/dist-types/commands/ResumeServiceCommand.d.ts +16 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/models/AppRunnerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +303 -0
- package/dist-types/pagination/DescribeCustomDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAutoScalingConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListObservabilityConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVpcConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVpcIngressConnectionsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface AssociateCustomDomainRequest {
|
|
4
7
|
/**
|
|
5
8
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to associate a custom domain name with.</p>
|
|
@@ -19,12 +22,16 @@ export interface AssociateCustomDomainRequest {
|
|
|
19
22
|
*/
|
|
20
23
|
EnableWWWSubdomain?: boolean;
|
|
21
24
|
}
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
22
28
|
export declare enum CertificateValidationRecordStatus {
|
|
23
29
|
FAILED = "FAILED",
|
|
24
30
|
PENDING_VALIDATION = "PENDING_VALIDATION",
|
|
25
31
|
SUCCESS = "SUCCESS"
|
|
26
32
|
}
|
|
27
33
|
/**
|
|
34
|
+
* @public
|
|
28
35
|
* <p>Describes a certificate CNAME record to add to your DNS. For more information, see <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_AssociateCustomDomain.html">AssociateCustomDomain</a>.</p>
|
|
29
36
|
*/
|
|
30
37
|
export interface CertificateValidationRecord {
|
|
@@ -46,6 +53,9 @@ export interface CertificateValidationRecord {
|
|
|
46
53
|
*/
|
|
47
54
|
Status?: CertificateValidationRecordStatus | string;
|
|
48
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
export declare enum CustomDomainAssociationStatus {
|
|
50
60
|
ACTIVE = "ACTIVE",
|
|
51
61
|
BINDING_CERTIFICATE = "BINDING_CERTIFICATE",
|
|
@@ -56,6 +66,7 @@ export declare enum CustomDomainAssociationStatus {
|
|
|
56
66
|
PENDING_CERTIFICATE_DNS_VALIDATION = "PENDING_CERTIFICATE_DNS_VALIDATION"
|
|
57
67
|
}
|
|
58
68
|
/**
|
|
69
|
+
* @public
|
|
59
70
|
* <p>Describes a custom domain that's associated with an App Runner service.</p>
|
|
60
71
|
*/
|
|
61
72
|
export interface CustomDomain {
|
|
@@ -80,6 +91,7 @@ export interface CustomDomain {
|
|
|
80
91
|
Status: CustomDomainAssociationStatus | string | undefined;
|
|
81
92
|
}
|
|
82
93
|
/**
|
|
94
|
+
* @public
|
|
83
95
|
* <p>DNS Target record for a custom domain of this Amazon VPC.</p>
|
|
84
96
|
*/
|
|
85
97
|
export interface VpcDNSTarget {
|
|
@@ -96,6 +108,9 @@ export interface VpcDNSTarget {
|
|
|
96
108
|
*/
|
|
97
109
|
DomainName?: string;
|
|
98
110
|
}
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
99
114
|
export interface AssociateCustomDomainResponse {
|
|
100
115
|
/**
|
|
101
116
|
* <p>The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name.</p>
|
|
@@ -116,6 +131,7 @@ export interface AssociateCustomDomainResponse {
|
|
|
116
131
|
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
117
132
|
}
|
|
118
133
|
/**
|
|
134
|
+
* @public
|
|
119
135
|
* <p>An unexpected service exception occurred.</p>
|
|
120
136
|
*/
|
|
121
137
|
export declare class InternalServiceErrorException extends __BaseException {
|
|
@@ -128,6 +144,7 @@ export declare class InternalServiceErrorException extends __BaseException {
|
|
|
128
144
|
constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
|
|
129
145
|
}
|
|
130
146
|
/**
|
|
147
|
+
* @public
|
|
131
148
|
* <p>One or more input parameters aren't valid. Refer to the API action's document page, correct the input parameters, and try the action again.</p>
|
|
132
149
|
*/
|
|
133
150
|
export declare class InvalidRequestException extends __BaseException {
|
|
@@ -140,6 +157,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
140
157
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
141
158
|
}
|
|
142
159
|
/**
|
|
160
|
+
* @public
|
|
143
161
|
* <p>You can't perform this action when the resource is in its current state.</p>
|
|
144
162
|
*/
|
|
145
163
|
export declare class InvalidStateException extends __BaseException {
|
|
@@ -152,6 +170,7 @@ export declare class InvalidStateException extends __BaseException {
|
|
|
152
170
|
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
153
171
|
}
|
|
154
172
|
/**
|
|
173
|
+
* @public
|
|
155
174
|
* <p>Describes a tag that is applied to an App Runner resource. A tag is a metadata item consisting of a key-value pair.</p>
|
|
156
175
|
*/
|
|
157
176
|
export interface Tag {
|
|
@@ -164,6 +183,9 @@ export interface Tag {
|
|
|
164
183
|
*/
|
|
165
184
|
Value?: string;
|
|
166
185
|
}
|
|
186
|
+
/**
|
|
187
|
+
* @public
|
|
188
|
+
*/
|
|
167
189
|
export interface CreateAutoScalingConfigurationRequest {
|
|
168
190
|
/**
|
|
169
191
|
* <p>A name for the auto scaling configuration. When you use it for the first time in an Amazon Web Services Region, App Runner creates revision number <code>1</code> of this
|
|
@@ -203,11 +225,15 @@ export interface CreateAutoScalingConfigurationRequest {
|
|
|
203
225
|
*/
|
|
204
226
|
Tags?: Tag[];
|
|
205
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
206
231
|
export declare enum AutoScalingConfigurationStatus {
|
|
207
232
|
ACTIVE = "ACTIVE",
|
|
208
233
|
INACTIVE = "INACTIVE"
|
|
209
234
|
}
|
|
210
235
|
/**
|
|
236
|
+
* @public
|
|
211
237
|
* <p>Describes an App Runner automatic scaling configuration resource.</p>
|
|
212
238
|
* <p>A higher <code>MinSize</code> increases the spread of your App Runner service over more Availability Zones in the Amazon Web Services Region. The tradeoff is a higher
|
|
213
239
|
* minimal cost.</p>
|
|
@@ -264,6 +290,9 @@ export interface AutoScalingConfiguration {
|
|
|
264
290
|
*/
|
|
265
291
|
DeletedAt?: Date;
|
|
266
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
267
296
|
export interface CreateAutoScalingConfigurationResponse {
|
|
268
297
|
/**
|
|
269
298
|
* <p>A description of the App Runner auto scaling configuration that's created by this request.</p>
|
|
@@ -271,6 +300,7 @@ export interface CreateAutoScalingConfigurationResponse {
|
|
|
271
300
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
272
301
|
}
|
|
273
302
|
/**
|
|
303
|
+
* @public
|
|
274
304
|
* <p>App Runner can't create this resource. You've reached your account quota for this resource type.</p>
|
|
275
305
|
* <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
|
|
276
306
|
* <i>Amazon Web Services General Reference</i>.</p>
|
|
@@ -284,9 +314,15 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
284
314
|
*/
|
|
285
315
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
286
316
|
}
|
|
317
|
+
/**
|
|
318
|
+
* @public
|
|
319
|
+
*/
|
|
287
320
|
export declare enum ProviderType {
|
|
288
321
|
GITHUB = "GITHUB"
|
|
289
322
|
}
|
|
323
|
+
/**
|
|
324
|
+
* @public
|
|
325
|
+
*/
|
|
290
326
|
export interface CreateConnectionRequest {
|
|
291
327
|
/**
|
|
292
328
|
* <p>A name for the new connection. It must be unique across all App Runner connections for the Amazon Web Services account in the Amazon Web Services Region.</p>
|
|
@@ -301,6 +337,9 @@ export interface CreateConnectionRequest {
|
|
|
301
337
|
*/
|
|
302
338
|
Tags?: Tag[];
|
|
303
339
|
}
|
|
340
|
+
/**
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
304
343
|
export declare enum ConnectionStatus {
|
|
305
344
|
AVAILABLE = "AVAILABLE",
|
|
306
345
|
DELETED = "DELETED",
|
|
@@ -308,6 +347,7 @@ export declare enum ConnectionStatus {
|
|
|
308
347
|
PENDING_HANDSHAKE = "PENDING_HANDSHAKE"
|
|
309
348
|
}
|
|
310
349
|
/**
|
|
350
|
+
* @public
|
|
311
351
|
* <p>Describes an App Runner connection resource.</p>
|
|
312
352
|
*/
|
|
313
353
|
export interface Connection {
|
|
@@ -332,16 +372,23 @@ export interface Connection {
|
|
|
332
372
|
*/
|
|
333
373
|
CreatedAt?: Date;
|
|
334
374
|
}
|
|
375
|
+
/**
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
335
378
|
export interface CreateConnectionResponse {
|
|
336
379
|
/**
|
|
337
380
|
* <p>A description of the App Runner connection that's created by this request.</p>
|
|
338
381
|
*/
|
|
339
382
|
Connection: Connection | undefined;
|
|
340
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
341
387
|
export declare enum TracingVendor {
|
|
342
388
|
AWSXRAY = "AWSXRAY"
|
|
343
389
|
}
|
|
344
390
|
/**
|
|
391
|
+
* @public
|
|
345
392
|
* <p>Describes the configuration of the tracing feature within an App Runner observability configuration.</p>
|
|
346
393
|
*/
|
|
347
394
|
export interface TraceConfiguration {
|
|
@@ -350,6 +397,9 @@ export interface TraceConfiguration {
|
|
|
350
397
|
*/
|
|
351
398
|
Vendor: TracingVendor | string | undefined;
|
|
352
399
|
}
|
|
400
|
+
/**
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
353
403
|
export interface CreateObservabilityConfigurationRequest {
|
|
354
404
|
/**
|
|
355
405
|
* <p>A name for the observability configuration. When you use it for the first time in an Amazon Web Services Region, App Runner creates revision number
|
|
@@ -371,11 +421,15 @@ export interface CreateObservabilityConfigurationRequest {
|
|
|
371
421
|
*/
|
|
372
422
|
Tags?: Tag[];
|
|
373
423
|
}
|
|
424
|
+
/**
|
|
425
|
+
* @public
|
|
426
|
+
*/
|
|
374
427
|
export declare enum ObservabilityConfigurationStatus {
|
|
375
428
|
ACTIVE = "ACTIVE",
|
|
376
429
|
INACTIVE = "INACTIVE"
|
|
377
430
|
}
|
|
378
431
|
/**
|
|
432
|
+
* @public
|
|
379
433
|
* <p>Describes an App Runner observability configuration resource. Multiple revisions of a configuration have the same
|
|
380
434
|
* <code>ObservabilityConfigurationName</code> and different <code>ObservabilityConfigurationRevision</code> values.</p>
|
|
381
435
|
* <p>The resource is designed to configure multiple features (currently one feature, tracing). This type contains optional members that describe the
|
|
@@ -419,6 +473,9 @@ export interface ObservabilityConfiguration {
|
|
|
419
473
|
*/
|
|
420
474
|
DeletedAt?: Date;
|
|
421
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* @public
|
|
478
|
+
*/
|
|
422
479
|
export interface CreateObservabilityConfigurationResponse {
|
|
423
480
|
/**
|
|
424
481
|
* <p>A description of the App Runner observability configuration that's created by this request.</p>
|
|
@@ -426,6 +483,7 @@ export interface CreateObservabilityConfigurationResponse {
|
|
|
426
483
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
427
484
|
}
|
|
428
485
|
/**
|
|
486
|
+
* @public
|
|
429
487
|
* <p>Describes a custom encryption key that App Runner uses to encrypt copies of the source repository and service logs.</p>
|
|
430
488
|
*/
|
|
431
489
|
export interface EncryptionConfiguration {
|
|
@@ -434,11 +492,15 @@ export interface EncryptionConfiguration {
|
|
|
434
492
|
*/
|
|
435
493
|
KmsKey: string | undefined;
|
|
436
494
|
}
|
|
495
|
+
/**
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
437
498
|
export declare enum HealthCheckProtocol {
|
|
438
499
|
HTTP = "HTTP",
|
|
439
500
|
TCP = "TCP"
|
|
440
501
|
}
|
|
441
502
|
/**
|
|
503
|
+
* @public
|
|
442
504
|
* <p>Describes the settings for the health check that App Runner performs to monitor the health of a service.</p>
|
|
443
505
|
*/
|
|
444
506
|
export interface HealthCheckConfiguration {
|
|
@@ -483,6 +545,7 @@ export interface HealthCheckConfiguration {
|
|
|
483
545
|
UnhealthyThreshold?: number;
|
|
484
546
|
}
|
|
485
547
|
/**
|
|
548
|
+
* @public
|
|
486
549
|
* <p>Describes the runtime configuration of an App Runner service instance (scaling unit).</p>
|
|
487
550
|
*/
|
|
488
551
|
export interface InstanceConfiguration {
|
|
@@ -504,11 +567,15 @@ export interface InstanceConfiguration {
|
|
|
504
567
|
*/
|
|
505
568
|
InstanceRoleArn?: string;
|
|
506
569
|
}
|
|
570
|
+
/**
|
|
571
|
+
* @public
|
|
572
|
+
*/
|
|
507
573
|
export declare enum EgressType {
|
|
508
574
|
DEFAULT = "DEFAULT",
|
|
509
575
|
VPC = "VPC"
|
|
510
576
|
}
|
|
511
577
|
/**
|
|
578
|
+
* @public
|
|
512
579
|
* <p>Describes configuration settings related to outbound network traffic of an App Runner service.</p>
|
|
513
580
|
*/
|
|
514
581
|
export interface EgressConfiguration {
|
|
@@ -525,6 +592,7 @@ export interface EgressConfiguration {
|
|
|
525
592
|
VpcConnectorArn?: string;
|
|
526
593
|
}
|
|
527
594
|
/**
|
|
595
|
+
* @public
|
|
528
596
|
* <p>Network configuration settings for inbound network traffic.</p>
|
|
529
597
|
*/
|
|
530
598
|
export interface IngressConfiguration {
|
|
@@ -535,6 +603,7 @@ export interface IngressConfiguration {
|
|
|
535
603
|
IsPubliclyAccessible?: boolean;
|
|
536
604
|
}
|
|
537
605
|
/**
|
|
606
|
+
* @public
|
|
538
607
|
* <p>Describes configuration settings related to network traffic of an App Runner service. Consists of embedded objects for each configurable network
|
|
539
608
|
* feature.</p>
|
|
540
609
|
*/
|
|
@@ -549,6 +618,7 @@ export interface NetworkConfiguration {
|
|
|
549
618
|
IngressConfiguration?: IngressConfiguration;
|
|
550
619
|
}
|
|
551
620
|
/**
|
|
621
|
+
* @public
|
|
552
622
|
* <p>Describes the observability configuration of an App Runner service. These are additional observability features, like tracing, that you choose to
|
|
553
623
|
* enable. They're configured in a separate resource that you associate with your service.</p>
|
|
554
624
|
*/
|
|
@@ -571,6 +641,7 @@ export interface ServiceObservabilityConfiguration {
|
|
|
571
641
|
ObservabilityConfigurationArn?: string;
|
|
572
642
|
}
|
|
573
643
|
/**
|
|
644
|
+
* @public
|
|
574
645
|
* <p>Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.</p>
|
|
575
646
|
*/
|
|
576
647
|
export interface AuthenticationConfiguration {
|
|
@@ -585,6 +656,9 @@ export interface AuthenticationConfiguration {
|
|
|
585
656
|
*/
|
|
586
657
|
AccessRoleArn?: string;
|
|
587
658
|
}
|
|
659
|
+
/**
|
|
660
|
+
* @public
|
|
661
|
+
*/
|
|
588
662
|
export declare enum Runtime {
|
|
589
663
|
CORRETTO_11 = "CORRETTO_11",
|
|
590
664
|
CORRETTO_8 = "CORRETTO_8",
|
|
@@ -598,6 +672,7 @@ export declare enum Runtime {
|
|
|
598
672
|
RUBY_31 = "RUBY_31"
|
|
599
673
|
}
|
|
600
674
|
/**
|
|
675
|
+
* @public
|
|
601
676
|
* <p>Describes the basic configuration needed for building and running an App Runner service. This type doesn't support the full set of possible
|
|
602
677
|
* configuration options. Fur full configuration capabilities, use a <code>apprunner.yaml</code> file in the source code repository.</p>
|
|
603
678
|
*/
|
|
@@ -647,11 +722,15 @@ export interface CodeConfigurationValues {
|
|
|
647
722
|
*/
|
|
648
723
|
RuntimeEnvironmentSecrets?: Record<string, string>;
|
|
649
724
|
}
|
|
725
|
+
/**
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
650
728
|
export declare enum ConfigurationSource {
|
|
651
729
|
API = "API",
|
|
652
730
|
REPOSITORY = "REPOSITORY"
|
|
653
731
|
}
|
|
654
732
|
/**
|
|
733
|
+
* @public
|
|
655
734
|
* <p>Describes the configuration that App Runner uses to build and run an App Runner service from a source code repository.</p>
|
|
656
735
|
*/
|
|
657
736
|
export interface CodeConfiguration {
|
|
@@ -677,10 +756,14 @@ export interface CodeConfiguration {
|
|
|
677
756
|
*/
|
|
678
757
|
CodeConfigurationValues?: CodeConfigurationValues;
|
|
679
758
|
}
|
|
759
|
+
/**
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
680
762
|
export declare enum SourceCodeVersionType {
|
|
681
763
|
BRANCH = "BRANCH"
|
|
682
764
|
}
|
|
683
765
|
/**
|
|
766
|
+
* @public
|
|
684
767
|
* <p>Identifies a version of code that App Runner refers to within a source code repository.</p>
|
|
685
768
|
*/
|
|
686
769
|
export interface SourceCodeVersion {
|
|
@@ -696,6 +779,7 @@ export interface SourceCodeVersion {
|
|
|
696
779
|
Value: string | undefined;
|
|
697
780
|
}
|
|
698
781
|
/**
|
|
782
|
+
* @public
|
|
699
783
|
* <p>Describes a source code repository.</p>
|
|
700
784
|
*/
|
|
701
785
|
export interface CodeRepository {
|
|
@@ -717,6 +801,7 @@ export interface CodeRepository {
|
|
|
717
801
|
CodeConfiguration?: CodeConfiguration;
|
|
718
802
|
}
|
|
719
803
|
/**
|
|
804
|
+
* @public
|
|
720
805
|
* <p>Describes the configuration that App Runner uses to run an App Runner service using an image pulled from a source image repository.</p>
|
|
721
806
|
*/
|
|
722
807
|
export interface ImageConfiguration {
|
|
@@ -756,11 +841,15 @@ export interface ImageConfiguration {
|
|
|
756
841
|
*/
|
|
757
842
|
RuntimeEnvironmentSecrets?: Record<string, string>;
|
|
758
843
|
}
|
|
844
|
+
/**
|
|
845
|
+
* @public
|
|
846
|
+
*/
|
|
759
847
|
export declare enum ImageRepositoryType {
|
|
760
848
|
ECR = "ECR",
|
|
761
849
|
ECR_PUBLIC = "ECR_PUBLIC"
|
|
762
850
|
}
|
|
763
851
|
/**
|
|
852
|
+
* @public
|
|
764
853
|
* <p>Describes a source image repository.</p>
|
|
765
854
|
*/
|
|
766
855
|
export interface ImageRepository {
|
|
@@ -779,6 +868,7 @@ export interface ImageRepository {
|
|
|
779
868
|
ImageRepositoryType: ImageRepositoryType | string | undefined;
|
|
780
869
|
}
|
|
781
870
|
/**
|
|
871
|
+
* @public
|
|
782
872
|
* <p>Describes the source deployed to an App Runner service. It can be a code or an image repository.</p>
|
|
783
873
|
*/
|
|
784
874
|
export interface SourceConfiguration {
|
|
@@ -805,6 +895,9 @@ export interface SourceConfiguration {
|
|
|
805
895
|
*/
|
|
806
896
|
AuthenticationConfiguration?: AuthenticationConfiguration;
|
|
807
897
|
}
|
|
898
|
+
/**
|
|
899
|
+
* @public
|
|
900
|
+
*/
|
|
808
901
|
export interface CreateServiceRequest {
|
|
809
902
|
/**
|
|
810
903
|
* <p>A name for the App Runner service. It must be unique across all the running App Runner services in your Amazon Web Services account in the Amazon Web Services Region.</p>
|
|
@@ -852,6 +945,7 @@ export interface CreateServiceRequest {
|
|
|
852
945
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
853
946
|
}
|
|
854
947
|
/**
|
|
948
|
+
* @public
|
|
855
949
|
* <p>Provides summary information about an App Runner automatic scaling configuration resource.</p>
|
|
856
950
|
* <p>This type contains limited information about an auto scaling configuration. It includes only identification information, without configuration
|
|
857
951
|
* details. It's returned by the <a>ListAutoScalingConfigurations</a> action. Complete configuration information is returned by the <a>CreateAutoScalingConfiguration</a>, <a>DescribeAutoScalingConfiguration</a>, and <a>DeleteAutoScalingConfiguration</a>
|
|
@@ -872,6 +966,9 @@ export interface AutoScalingConfigurationSummary {
|
|
|
872
966
|
*/
|
|
873
967
|
AutoScalingConfigurationRevision?: number;
|
|
874
968
|
}
|
|
969
|
+
/**
|
|
970
|
+
* @public
|
|
971
|
+
*/
|
|
875
972
|
export declare enum ServiceStatus {
|
|
876
973
|
CREATE_FAILED = "CREATE_FAILED",
|
|
877
974
|
DELETED = "DELETED",
|
|
@@ -881,6 +978,7 @@ export declare enum ServiceStatus {
|
|
|
881
978
|
RUNNING = "RUNNING"
|
|
882
979
|
}
|
|
883
980
|
/**
|
|
981
|
+
* @public
|
|
884
982
|
* <p>Describes an App Runner service. It can describe a service in any state, including deleted services.</p>
|
|
885
983
|
* <p>This type contains the full information about a service, including configuration details. It's returned by the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_CreateService.html">CreateService</a>, <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_DescribeService.html">DescribeService</a>, and <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_DeleteService.html">DeleteService</a> actions. A subset of this
|
|
886
984
|
* information is returned by the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListServices.html">ListServices</a> action using the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ServiceSummary.html">ServiceSummary</a> type.</p>
|
|
@@ -961,6 +1059,9 @@ export interface Service {
|
|
|
961
1059
|
*/
|
|
962
1060
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
963
1061
|
}
|
|
1062
|
+
/**
|
|
1063
|
+
* @public
|
|
1064
|
+
*/
|
|
964
1065
|
export interface CreateServiceResponse {
|
|
965
1066
|
/**
|
|
966
1067
|
* <p>A description of the App Runner service that's created by this request.</p>
|
|
@@ -971,6 +1072,9 @@ export interface CreateServiceResponse {
|
|
|
971
1072
|
*/
|
|
972
1073
|
OperationId: string | undefined;
|
|
973
1074
|
}
|
|
1075
|
+
/**
|
|
1076
|
+
* @public
|
|
1077
|
+
*/
|
|
974
1078
|
export interface CreateVpcConnectorRequest {
|
|
975
1079
|
/**
|
|
976
1080
|
* <p>A name for the VPC connector.</p>
|
|
@@ -996,11 +1100,15 @@ export interface CreateVpcConnectorRequest {
|
|
|
996
1100
|
*/
|
|
997
1101
|
Tags?: Tag[];
|
|
998
1102
|
}
|
|
1103
|
+
/**
|
|
1104
|
+
* @public
|
|
1105
|
+
*/
|
|
999
1106
|
export declare enum VpcConnectorStatus {
|
|
1000
1107
|
ACTIVE = "ACTIVE",
|
|
1001
1108
|
INACTIVE = "INACTIVE"
|
|
1002
1109
|
}
|
|
1003
1110
|
/**
|
|
1111
|
+
* @public
|
|
1004
1112
|
* <p>Describes an App Runner VPC connector resource. A VPC connector describes the Amazon Virtual Private Cloud (Amazon VPC) that an App Runner service is
|
|
1005
1113
|
* associated with, and the subnets and security group that are used.</p>
|
|
1006
1114
|
* <p>Multiple revisions of a connector might have the same <code>Name</code> and different <code>Revision</code> values.</p>
|
|
@@ -1048,6 +1156,9 @@ export interface VpcConnector {
|
|
|
1048
1156
|
*/
|
|
1049
1157
|
DeletedAt?: Date;
|
|
1050
1158
|
}
|
|
1159
|
+
/**
|
|
1160
|
+
* @public
|
|
1161
|
+
*/
|
|
1051
1162
|
export interface CreateVpcConnectorResponse {
|
|
1052
1163
|
/**
|
|
1053
1164
|
* <p>A description of the App Runner VPC connector that's created by this request.</p>
|
|
@@ -1055,6 +1166,7 @@ export interface CreateVpcConnectorResponse {
|
|
|
1055
1166
|
VpcConnector: VpcConnector | undefined;
|
|
1056
1167
|
}
|
|
1057
1168
|
/**
|
|
1169
|
+
* @public
|
|
1058
1170
|
* <p>The configuration of your VPC and the associated VPC endpoint. The VPC endpoint is an Amazon Web Services PrivateLink resource that allows access to your App Runner
|
|
1059
1171
|
* services from within an Amazon VPC.</p>
|
|
1060
1172
|
*/
|
|
@@ -1069,6 +1181,9 @@ export interface IngressVpcConfiguration {
|
|
|
1069
1181
|
*/
|
|
1070
1182
|
VpcEndpointId?: string;
|
|
1071
1183
|
}
|
|
1184
|
+
/**
|
|
1185
|
+
* @public
|
|
1186
|
+
*/
|
|
1072
1187
|
export interface CreateVpcIngressConnectionRequest {
|
|
1073
1188
|
/**
|
|
1074
1189
|
* <p>The Amazon Resource Name (ARN) for this App Runner service that is used to create the VPC Ingress Connection resource.</p>
|
|
@@ -1089,6 +1204,9 @@ export interface CreateVpcIngressConnectionRequest {
|
|
|
1089
1204
|
*/
|
|
1090
1205
|
Tags?: Tag[];
|
|
1091
1206
|
}
|
|
1207
|
+
/**
|
|
1208
|
+
* @public
|
|
1209
|
+
*/
|
|
1092
1210
|
export declare enum VpcIngressConnectionStatus {
|
|
1093
1211
|
AVAILABLE = "AVAILABLE",
|
|
1094
1212
|
DELETED = "DELETED",
|
|
@@ -1100,6 +1218,7 @@ export declare enum VpcIngressConnectionStatus {
|
|
|
1100
1218
|
PENDING_UPDATE = "PENDING_UPDATE"
|
|
1101
1219
|
}
|
|
1102
1220
|
/**
|
|
1221
|
+
* @public
|
|
1103
1222
|
* <p>The App Runner resource that specifies an App Runner endpoint for incoming traffic. It establishes a connection between a VPC interface endpoint and a App Runner
|
|
1104
1223
|
* service, to make your App Runner service accessible from only within an Amazon VPC.</p>
|
|
1105
1224
|
*/
|
|
@@ -1169,12 +1288,18 @@ export interface VpcIngressConnection {
|
|
|
1169
1288
|
*/
|
|
1170
1289
|
DeletedAt?: Date;
|
|
1171
1290
|
}
|
|
1291
|
+
/**
|
|
1292
|
+
* @public
|
|
1293
|
+
*/
|
|
1172
1294
|
export interface CreateVpcIngressConnectionResponse {
|
|
1173
1295
|
/**
|
|
1174
1296
|
* <p>A description of the App Runner VPC Ingress Connection resource that's created by this request. </p>
|
|
1175
1297
|
*/
|
|
1176
1298
|
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
1177
1299
|
}
|
|
1300
|
+
/**
|
|
1301
|
+
* @public
|
|
1302
|
+
*/
|
|
1178
1303
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
1179
1304
|
/**
|
|
1180
1305
|
* <p>The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to delete.</p>
|
|
@@ -1185,6 +1310,9 @@ export interface DeleteAutoScalingConfigurationRequest {
|
|
|
1185
1310
|
*/
|
|
1186
1311
|
AutoScalingConfigurationArn: string | undefined;
|
|
1187
1312
|
}
|
|
1313
|
+
/**
|
|
1314
|
+
* @public
|
|
1315
|
+
*/
|
|
1188
1316
|
export interface DeleteAutoScalingConfigurationResponse {
|
|
1189
1317
|
/**
|
|
1190
1318
|
* <p>A description of the App Runner auto scaling configuration that this request just deleted.</p>
|
|
@@ -1192,6 +1320,7 @@ export interface DeleteAutoScalingConfigurationResponse {
|
|
|
1192
1320
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
1193
1321
|
}
|
|
1194
1322
|
/**
|
|
1323
|
+
* @public
|
|
1195
1324
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
1196
1325
|
*/
|
|
1197
1326
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -1203,18 +1332,27 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
1203
1332
|
*/
|
|
1204
1333
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1205
1334
|
}
|
|
1335
|
+
/**
|
|
1336
|
+
* @public
|
|
1337
|
+
*/
|
|
1206
1338
|
export interface DeleteConnectionRequest {
|
|
1207
1339
|
/**
|
|
1208
1340
|
* <p>The Amazon Resource Name (ARN) of the App Runner connection that you want to delete.</p>
|
|
1209
1341
|
*/
|
|
1210
1342
|
ConnectionArn: string | undefined;
|
|
1211
1343
|
}
|
|
1344
|
+
/**
|
|
1345
|
+
* @public
|
|
1346
|
+
*/
|
|
1212
1347
|
export interface DeleteConnectionResponse {
|
|
1213
1348
|
/**
|
|
1214
1349
|
* <p>A description of the App Runner connection that this request just deleted.</p>
|
|
1215
1350
|
*/
|
|
1216
1351
|
Connection?: Connection;
|
|
1217
1352
|
}
|
|
1353
|
+
/**
|
|
1354
|
+
* @public
|
|
1355
|
+
*/
|
|
1218
1356
|
export interface DeleteObservabilityConfigurationRequest {
|
|
1219
1357
|
/**
|
|
1220
1358
|
* <p>The Amazon Resource Name (ARN) of the App Runner observability configuration that you want to delete.</p>
|
|
@@ -1225,18 +1363,27 @@ export interface DeleteObservabilityConfigurationRequest {
|
|
|
1225
1363
|
*/
|
|
1226
1364
|
ObservabilityConfigurationArn: string | undefined;
|
|
1227
1365
|
}
|
|
1366
|
+
/**
|
|
1367
|
+
* @public
|
|
1368
|
+
*/
|
|
1228
1369
|
export interface DeleteObservabilityConfigurationResponse {
|
|
1229
1370
|
/**
|
|
1230
1371
|
* <p>A description of the App Runner observability configuration that this request just deleted.</p>
|
|
1231
1372
|
*/
|
|
1232
1373
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
1233
1374
|
}
|
|
1375
|
+
/**
|
|
1376
|
+
* @public
|
|
1377
|
+
*/
|
|
1234
1378
|
export interface DeleteServiceRequest {
|
|
1235
1379
|
/**
|
|
1236
1380
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to delete.</p>
|
|
1237
1381
|
*/
|
|
1238
1382
|
ServiceArn: string | undefined;
|
|
1239
1383
|
}
|
|
1384
|
+
/**
|
|
1385
|
+
* @public
|
|
1386
|
+
*/
|
|
1240
1387
|
export interface DeleteServiceResponse {
|
|
1241
1388
|
/**
|
|
1242
1389
|
* <p>A description of the App Runner service that this request just deleted.</p>
|
|
@@ -1248,6 +1395,9 @@ export interface DeleteServiceResponse {
|
|
|
1248
1395
|
*/
|
|
1249
1396
|
OperationId: string | undefined;
|
|
1250
1397
|
}
|
|
1398
|
+
/**
|
|
1399
|
+
* @public
|
|
1400
|
+
*/
|
|
1251
1401
|
export interface DeleteVpcConnectorRequest {
|
|
1252
1402
|
/**
|
|
1253
1403
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to delete.</p>
|
|
@@ -1255,24 +1405,36 @@ export interface DeleteVpcConnectorRequest {
|
|
|
1255
1405
|
*/
|
|
1256
1406
|
VpcConnectorArn: string | undefined;
|
|
1257
1407
|
}
|
|
1408
|
+
/**
|
|
1409
|
+
* @public
|
|
1410
|
+
*/
|
|
1258
1411
|
export interface DeleteVpcConnectorResponse {
|
|
1259
1412
|
/**
|
|
1260
1413
|
* <p>A description of the App Runner VPC connector that this request just deleted.</p>
|
|
1261
1414
|
*/
|
|
1262
1415
|
VpcConnector: VpcConnector | undefined;
|
|
1263
1416
|
}
|
|
1417
|
+
/**
|
|
1418
|
+
* @public
|
|
1419
|
+
*/
|
|
1264
1420
|
export interface DeleteVpcIngressConnectionRequest {
|
|
1265
1421
|
/**
|
|
1266
1422
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC Ingress Connection that you want to delete.</p>
|
|
1267
1423
|
*/
|
|
1268
1424
|
VpcIngressConnectionArn: string | undefined;
|
|
1269
1425
|
}
|
|
1426
|
+
/**
|
|
1427
|
+
* @public
|
|
1428
|
+
*/
|
|
1270
1429
|
export interface DeleteVpcIngressConnectionResponse {
|
|
1271
1430
|
/**
|
|
1272
1431
|
* <p>A description of the App Runner VPC Ingress Connection that this request just deleted.</p>
|
|
1273
1432
|
*/
|
|
1274
1433
|
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
1275
1434
|
}
|
|
1435
|
+
/**
|
|
1436
|
+
* @public
|
|
1437
|
+
*/
|
|
1276
1438
|
export interface DescribeAutoScalingConfigurationRequest {
|
|
1277
1439
|
/**
|
|
1278
1440
|
* <p>The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want a description for.</p>
|
|
@@ -1284,12 +1446,18 @@ export interface DescribeAutoScalingConfigurationRequest {
|
|
|
1284
1446
|
*/
|
|
1285
1447
|
AutoScalingConfigurationArn: string | undefined;
|
|
1286
1448
|
}
|
|
1449
|
+
/**
|
|
1450
|
+
* @public
|
|
1451
|
+
*/
|
|
1287
1452
|
export interface DescribeAutoScalingConfigurationResponse {
|
|
1288
1453
|
/**
|
|
1289
1454
|
* <p>A full description of the App Runner auto scaling configuration that you specified in this request.</p>
|
|
1290
1455
|
*/
|
|
1291
1456
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
1292
1457
|
}
|
|
1458
|
+
/**
|
|
1459
|
+
* @public
|
|
1460
|
+
*/
|
|
1293
1461
|
export interface DescribeCustomDomainsRequest {
|
|
1294
1462
|
/**
|
|
1295
1463
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want associated custom domain names to be described for.</p>
|
|
@@ -1307,6 +1475,9 @@ export interface DescribeCustomDomainsRequest {
|
|
|
1307
1475
|
*/
|
|
1308
1476
|
MaxResults?: number;
|
|
1309
1477
|
}
|
|
1478
|
+
/**
|
|
1479
|
+
* @public
|
|
1480
|
+
*/
|
|
1310
1481
|
export interface DescribeCustomDomainsResponse {
|
|
1311
1482
|
/**
|
|
1312
1483
|
* <p>The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target name.</p>
|
|
@@ -1331,6 +1502,9 @@ export interface DescribeCustomDomainsResponse {
|
|
|
1331
1502
|
*/
|
|
1332
1503
|
NextToken?: string;
|
|
1333
1504
|
}
|
|
1505
|
+
/**
|
|
1506
|
+
* @public
|
|
1507
|
+
*/
|
|
1334
1508
|
export interface DescribeObservabilityConfigurationRequest {
|
|
1335
1509
|
/**
|
|
1336
1510
|
* <p>The Amazon Resource Name (ARN) of the App Runner observability configuration that you want a description for.</p>
|
|
@@ -1342,24 +1516,36 @@ export interface DescribeObservabilityConfigurationRequest {
|
|
|
1342
1516
|
*/
|
|
1343
1517
|
ObservabilityConfigurationArn: string | undefined;
|
|
1344
1518
|
}
|
|
1519
|
+
/**
|
|
1520
|
+
* @public
|
|
1521
|
+
*/
|
|
1345
1522
|
export interface DescribeObservabilityConfigurationResponse {
|
|
1346
1523
|
/**
|
|
1347
1524
|
* <p>A full description of the App Runner observability configuration that you specified in this request.</p>
|
|
1348
1525
|
*/
|
|
1349
1526
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
1350
1527
|
}
|
|
1528
|
+
/**
|
|
1529
|
+
* @public
|
|
1530
|
+
*/
|
|
1351
1531
|
export interface DescribeServiceRequest {
|
|
1352
1532
|
/**
|
|
1353
1533
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want a description for.</p>
|
|
1354
1534
|
*/
|
|
1355
1535
|
ServiceArn: string | undefined;
|
|
1356
1536
|
}
|
|
1537
|
+
/**
|
|
1538
|
+
* @public
|
|
1539
|
+
*/
|
|
1357
1540
|
export interface DescribeServiceResponse {
|
|
1358
1541
|
/**
|
|
1359
1542
|
* <p>A full description of the App Runner service that you specified in this request.</p>
|
|
1360
1543
|
*/
|
|
1361
1544
|
Service: Service | undefined;
|
|
1362
1545
|
}
|
|
1546
|
+
/**
|
|
1547
|
+
* @public
|
|
1548
|
+
*/
|
|
1363
1549
|
export interface DescribeVpcConnectorRequest {
|
|
1364
1550
|
/**
|
|
1365
1551
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want a description for.</p>
|
|
@@ -1367,24 +1553,36 @@ export interface DescribeVpcConnectorRequest {
|
|
|
1367
1553
|
*/
|
|
1368
1554
|
VpcConnectorArn: string | undefined;
|
|
1369
1555
|
}
|
|
1556
|
+
/**
|
|
1557
|
+
* @public
|
|
1558
|
+
*/
|
|
1370
1559
|
export interface DescribeVpcConnectorResponse {
|
|
1371
1560
|
/**
|
|
1372
1561
|
* <p>A description of the App Runner VPC connector that you specified in this request.</p>
|
|
1373
1562
|
*/
|
|
1374
1563
|
VpcConnector: VpcConnector | undefined;
|
|
1375
1564
|
}
|
|
1565
|
+
/**
|
|
1566
|
+
* @public
|
|
1567
|
+
*/
|
|
1376
1568
|
export interface DescribeVpcIngressConnectionRequest {
|
|
1377
1569
|
/**
|
|
1378
1570
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC Ingress Connection that you want a description for.</p>
|
|
1379
1571
|
*/
|
|
1380
1572
|
VpcIngressConnectionArn: string | undefined;
|
|
1381
1573
|
}
|
|
1574
|
+
/**
|
|
1575
|
+
* @public
|
|
1576
|
+
*/
|
|
1382
1577
|
export interface DescribeVpcIngressConnectionResponse {
|
|
1383
1578
|
/**
|
|
1384
1579
|
* <p>A description of the App Runner VPC Ingress Connection that you specified in this request.</p>
|
|
1385
1580
|
*/
|
|
1386
1581
|
VpcIngressConnection: VpcIngressConnection | undefined;
|
|
1387
1582
|
}
|
|
1583
|
+
/**
|
|
1584
|
+
* @public
|
|
1585
|
+
*/
|
|
1388
1586
|
export interface DisassociateCustomDomainRequest {
|
|
1389
1587
|
/**
|
|
1390
1588
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to disassociate a custom domain name from.</p>
|
|
@@ -1395,6 +1593,9 @@ export interface DisassociateCustomDomainRequest {
|
|
|
1395
1593
|
*/
|
|
1396
1594
|
DomainName: string | undefined;
|
|
1397
1595
|
}
|
|
1596
|
+
/**
|
|
1597
|
+
* @public
|
|
1598
|
+
*/
|
|
1398
1599
|
export interface DisassociateCustomDomainResponse {
|
|
1399
1600
|
/**
|
|
1400
1601
|
* <p>The App Runner subdomain of the App Runner service. The disassociated custom domain name was mapped to this target name.</p>
|
|
@@ -1414,6 +1615,9 @@ export interface DisassociateCustomDomainResponse {
|
|
|
1414
1615
|
*/
|
|
1415
1616
|
VpcDNSTargets: VpcDNSTarget[] | undefined;
|
|
1416
1617
|
}
|
|
1618
|
+
/**
|
|
1619
|
+
* @public
|
|
1620
|
+
*/
|
|
1417
1621
|
export interface ListAutoScalingConfigurationsRequest {
|
|
1418
1622
|
/**
|
|
1419
1623
|
* <p>The name of the App Runner auto scaling configuration that you want to list. If specified, App Runner lists revisions that share this name. If not specified, App Runner
|
|
@@ -1439,6 +1643,9 @@ export interface ListAutoScalingConfigurationsRequest {
|
|
|
1439
1643
|
*/
|
|
1440
1644
|
NextToken?: string;
|
|
1441
1645
|
}
|
|
1646
|
+
/**
|
|
1647
|
+
* @public
|
|
1648
|
+
*/
|
|
1442
1649
|
export interface ListAutoScalingConfigurationsResponse {
|
|
1443
1650
|
/**
|
|
1444
1651
|
* <p>A list of summary information records for auto scaling configurations. In a paginated request, the request returns up to <code>MaxResults</code>
|
|
@@ -1450,6 +1657,9 @@ export interface ListAutoScalingConfigurationsResponse {
|
|
|
1450
1657
|
*/
|
|
1451
1658
|
NextToken?: string;
|
|
1452
1659
|
}
|
|
1660
|
+
/**
|
|
1661
|
+
* @public
|
|
1662
|
+
*/
|
|
1453
1663
|
export interface ListConnectionsRequest {
|
|
1454
1664
|
/**
|
|
1455
1665
|
* <p>If specified, only this connection is returned. If not specified, the result isn't filtered by name.</p>
|
|
@@ -1468,6 +1678,7 @@ export interface ListConnectionsRequest {
|
|
|
1468
1678
|
NextToken?: string;
|
|
1469
1679
|
}
|
|
1470
1680
|
/**
|
|
1681
|
+
* @public
|
|
1471
1682
|
* <p>Provides summary information about an App Runner connection resource.</p>
|
|
1472
1683
|
*/
|
|
1473
1684
|
export interface ConnectionSummary {
|
|
@@ -1492,6 +1703,9 @@ export interface ConnectionSummary {
|
|
|
1492
1703
|
*/
|
|
1493
1704
|
CreatedAt?: Date;
|
|
1494
1705
|
}
|
|
1706
|
+
/**
|
|
1707
|
+
* @public
|
|
1708
|
+
*/
|
|
1495
1709
|
export interface ListConnectionsResponse {
|
|
1496
1710
|
/**
|
|
1497
1711
|
* <p>A list of summary information records for connections. In a paginated request, the request returns up to <code>MaxResults</code> records for each
|
|
@@ -1503,6 +1717,9 @@ export interface ListConnectionsResponse {
|
|
|
1503
1717
|
*/
|
|
1504
1718
|
NextToken?: string;
|
|
1505
1719
|
}
|
|
1720
|
+
/**
|
|
1721
|
+
* @public
|
|
1722
|
+
*/
|
|
1506
1723
|
export interface ListObservabilityConfigurationsRequest {
|
|
1507
1724
|
/**
|
|
1508
1725
|
* <p>The name of the App Runner observability configuration that you want to list. If specified, App Runner lists revisions that share this name. If not specified,
|
|
@@ -1529,6 +1746,7 @@ export interface ListObservabilityConfigurationsRequest {
|
|
|
1529
1746
|
NextToken?: string;
|
|
1530
1747
|
}
|
|
1531
1748
|
/**
|
|
1749
|
+
* @public
|
|
1532
1750
|
* <p>Provides summary information about an App Runner observability configuration resource.</p>
|
|
1533
1751
|
* <p>This type contains limited information about an observability configuration. It includes only identification information, without configuration
|
|
1534
1752
|
* details. It's returned by the <a>ListObservabilityConfigurations</a> action. Complete configuration information is returned by the <a>CreateObservabilityConfiguration</a>, <a>DescribeObservabilityConfiguration</a>, and <a>DeleteObservabilityConfiguration</a>
|
|
@@ -1549,6 +1767,9 @@ export interface ObservabilityConfigurationSummary {
|
|
|
1549
1767
|
*/
|
|
1550
1768
|
ObservabilityConfigurationRevision?: number;
|
|
1551
1769
|
}
|
|
1770
|
+
/**
|
|
1771
|
+
* @public
|
|
1772
|
+
*/
|
|
1552
1773
|
export interface ListObservabilityConfigurationsResponse {
|
|
1553
1774
|
/**
|
|
1554
1775
|
* <p>A list of summary information records for observability configurations. In a paginated request, the request returns up to <code>MaxResults</code>
|
|
@@ -1560,6 +1781,9 @@ export interface ListObservabilityConfigurationsResponse {
|
|
|
1560
1781
|
*/
|
|
1561
1782
|
NextToken?: string;
|
|
1562
1783
|
}
|
|
1784
|
+
/**
|
|
1785
|
+
* @public
|
|
1786
|
+
*/
|
|
1563
1787
|
export interface ListOperationsRequest {
|
|
1564
1788
|
/**
|
|
1565
1789
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want a list of operations for.</p>
|
|
@@ -1577,6 +1801,9 @@ export interface ListOperationsRequest {
|
|
|
1577
1801
|
*/
|
|
1578
1802
|
MaxResults?: number;
|
|
1579
1803
|
}
|
|
1804
|
+
/**
|
|
1805
|
+
* @public
|
|
1806
|
+
*/
|
|
1580
1807
|
export declare enum OperationStatus {
|
|
1581
1808
|
FAILED = "FAILED",
|
|
1582
1809
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -1586,6 +1813,9 @@ export declare enum OperationStatus {
|
|
|
1586
1813
|
ROLLBACK_SUCCEEDED = "ROLLBACK_SUCCEEDED",
|
|
1587
1814
|
SUCCEEDED = "SUCCEEDED"
|
|
1588
1815
|
}
|
|
1816
|
+
/**
|
|
1817
|
+
* @public
|
|
1818
|
+
*/
|
|
1589
1819
|
export declare enum OperationType {
|
|
1590
1820
|
CREATE_SERVICE = "CREATE_SERVICE",
|
|
1591
1821
|
DELETE_SERVICE = "DELETE_SERVICE",
|
|
@@ -1595,6 +1825,7 @@ export declare enum OperationType {
|
|
|
1595
1825
|
UPDATE_SERVICE = "UPDATE_SERVICE"
|
|
1596
1826
|
}
|
|
1597
1827
|
/**
|
|
1828
|
+
* @public
|
|
1598
1829
|
* <p>Provides summary information for an operation that occurred on an App Runner service.</p>
|
|
1599
1830
|
*/
|
|
1600
1831
|
export interface OperationSummary {
|
|
@@ -1627,6 +1858,9 @@ export interface OperationSummary {
|
|
|
1627
1858
|
*/
|
|
1628
1859
|
UpdatedAt?: Date;
|
|
1629
1860
|
}
|
|
1861
|
+
/**
|
|
1862
|
+
* @public
|
|
1863
|
+
*/
|
|
1630
1864
|
export interface ListOperationsResponse {
|
|
1631
1865
|
/**
|
|
1632
1866
|
* <p>A list of operation summary information records. In a paginated request, the request returns up to <code>MaxResults</code> records for each
|
|
@@ -1638,6 +1872,9 @@ export interface ListOperationsResponse {
|
|
|
1638
1872
|
*/
|
|
1639
1873
|
NextToken?: string;
|
|
1640
1874
|
}
|
|
1875
|
+
/**
|
|
1876
|
+
* @public
|
|
1877
|
+
*/
|
|
1641
1878
|
export interface ListServicesRequest {
|
|
1642
1879
|
/**
|
|
1643
1880
|
* <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
|
|
@@ -1652,6 +1889,7 @@ export interface ListServicesRequest {
|
|
|
1652
1889
|
MaxResults?: number;
|
|
1653
1890
|
}
|
|
1654
1891
|
/**
|
|
1892
|
+
* @public
|
|
1655
1893
|
* <p>Provides summary information for an App Runner service.</p>
|
|
1656
1894
|
* <p>This type contains limited information about a service. It doesn't include configuration details. It's returned by the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListServices.html">ListServices</a> action. Complete service information is returned by the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_CreateService.html">CreateService</a>, <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_DescribeService.html">DescribeService</a>, and <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_DeleteService.html">DeleteService</a> actions using the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_Service.html">Service</a> type.</p>
|
|
1657
1895
|
*/
|
|
@@ -1698,6 +1936,9 @@ export interface ServiceSummary {
|
|
|
1698
1936
|
*/
|
|
1699
1937
|
Status?: ServiceStatus | string;
|
|
1700
1938
|
}
|
|
1939
|
+
/**
|
|
1940
|
+
* @public
|
|
1941
|
+
*/
|
|
1701
1942
|
export interface ListServicesResponse {
|
|
1702
1943
|
/**
|
|
1703
1944
|
* <p>A list of service summary information records. In a paginated request, the request returns up to <code>MaxResults</code> records for each call.</p>
|
|
@@ -1708,6 +1949,9 @@ export interface ListServicesResponse {
|
|
|
1708
1949
|
*/
|
|
1709
1950
|
NextToken?: string;
|
|
1710
1951
|
}
|
|
1952
|
+
/**
|
|
1953
|
+
* @public
|
|
1954
|
+
*/
|
|
1711
1955
|
export interface ListTagsForResourceRequest {
|
|
1712
1956
|
/**
|
|
1713
1957
|
* <p>The Amazon Resource Name (ARN) of the resource that a tag list is requested for.</p>
|
|
@@ -1715,12 +1959,18 @@ export interface ListTagsForResourceRequest {
|
|
|
1715
1959
|
*/
|
|
1716
1960
|
ResourceArn: string | undefined;
|
|
1717
1961
|
}
|
|
1962
|
+
/**
|
|
1963
|
+
* @public
|
|
1964
|
+
*/
|
|
1718
1965
|
export interface ListTagsForResourceResponse {
|
|
1719
1966
|
/**
|
|
1720
1967
|
* <p>A list of the tag key-value pairs that are associated with the resource.</p>
|
|
1721
1968
|
*/
|
|
1722
1969
|
Tags?: Tag[];
|
|
1723
1970
|
}
|
|
1971
|
+
/**
|
|
1972
|
+
* @public
|
|
1973
|
+
*/
|
|
1724
1974
|
export interface ListVpcConnectorsRequest {
|
|
1725
1975
|
/**
|
|
1726
1976
|
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
@@ -1734,6 +1984,9 @@ export interface ListVpcConnectorsRequest {
|
|
|
1734
1984
|
*/
|
|
1735
1985
|
NextToken?: string;
|
|
1736
1986
|
}
|
|
1987
|
+
/**
|
|
1988
|
+
* @public
|
|
1989
|
+
*/
|
|
1737
1990
|
export interface ListVpcConnectorsResponse {
|
|
1738
1991
|
/**
|
|
1739
1992
|
* <p>A list of information records for VPC connectors. In a paginated request, the request returns up to <code>MaxResults</code> records for each
|
|
@@ -1746,6 +1999,7 @@ export interface ListVpcConnectorsResponse {
|
|
|
1746
1999
|
NextToken?: string;
|
|
1747
2000
|
}
|
|
1748
2001
|
/**
|
|
2002
|
+
* @public
|
|
1749
2003
|
* <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>
|
|
1750
2004
|
*/
|
|
1751
2005
|
export interface ListVpcIngressConnectionsFilter {
|
|
@@ -1760,6 +2014,9 @@ export interface ListVpcIngressConnectionsFilter {
|
|
|
1760
2014
|
*/
|
|
1761
2015
|
VpcEndpointId?: string;
|
|
1762
2016
|
}
|
|
2017
|
+
/**
|
|
2018
|
+
* @public
|
|
2019
|
+
*/
|
|
1763
2020
|
export interface ListVpcIngressConnectionsRequest {
|
|
1764
2021
|
/**
|
|
1765
2022
|
* <p>The VPC Ingress Connections to be listed based on either the Service Arn or Vpc Endpoint Id, or both.</p>
|
|
@@ -1778,6 +2035,7 @@ export interface ListVpcIngressConnectionsRequest {
|
|
|
1778
2035
|
NextToken?: string;
|
|
1779
2036
|
}
|
|
1780
2037
|
/**
|
|
2038
|
+
* @public
|
|
1781
2039
|
* <p>Provides summary information about an VPC Ingress Connection, which includes its VPC Ingress Connection ARN and its associated Service ARN.</p>
|
|
1782
2040
|
*/
|
|
1783
2041
|
export interface VpcIngressConnectionSummary {
|
|
@@ -1792,6 +2050,9 @@ export interface VpcIngressConnectionSummary {
|
|
|
1792
2050
|
*/
|
|
1793
2051
|
ServiceArn?: string;
|
|
1794
2052
|
}
|
|
2053
|
+
/**
|
|
2054
|
+
* @public
|
|
2055
|
+
*/
|
|
1795
2056
|
export interface ListVpcIngressConnectionsResponse {
|
|
1796
2057
|
/**
|
|
1797
2058
|
* <p>A list of summary information records for VPC Ingress Connections. In a paginated request, the request returns up to <code>MaxResults</code> records for each call.</p>
|
|
@@ -1802,12 +2063,18 @@ export interface ListVpcIngressConnectionsResponse {
|
|
|
1802
2063
|
*/
|
|
1803
2064
|
NextToken?: string;
|
|
1804
2065
|
}
|
|
2066
|
+
/**
|
|
2067
|
+
* @public
|
|
2068
|
+
*/
|
|
1805
2069
|
export interface PauseServiceRequest {
|
|
1806
2070
|
/**
|
|
1807
2071
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to pause.</p>
|
|
1808
2072
|
*/
|
|
1809
2073
|
ServiceArn: string | undefined;
|
|
1810
2074
|
}
|
|
2075
|
+
/**
|
|
2076
|
+
* @public
|
|
2077
|
+
*/
|
|
1811
2078
|
export interface PauseServiceResponse {
|
|
1812
2079
|
/**
|
|
1813
2080
|
* <p>A description of the App Runner service that this request just paused.</p>
|
|
@@ -1819,12 +2086,18 @@ export interface PauseServiceResponse {
|
|
|
1819
2086
|
*/
|
|
1820
2087
|
OperationId?: string;
|
|
1821
2088
|
}
|
|
2089
|
+
/**
|
|
2090
|
+
* @public
|
|
2091
|
+
*/
|
|
1822
2092
|
export interface ResumeServiceRequest {
|
|
1823
2093
|
/**
|
|
1824
2094
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to resume.</p>
|
|
1825
2095
|
*/
|
|
1826
2096
|
ServiceArn: string | undefined;
|
|
1827
2097
|
}
|
|
2098
|
+
/**
|
|
2099
|
+
* @public
|
|
2100
|
+
*/
|
|
1828
2101
|
export interface ResumeServiceResponse {
|
|
1829
2102
|
/**
|
|
1830
2103
|
* <p>A description of the App Runner service that this request just resumed.</p>
|
|
@@ -1836,12 +2109,18 @@ export interface ResumeServiceResponse {
|
|
|
1836
2109
|
*/
|
|
1837
2110
|
OperationId?: string;
|
|
1838
2111
|
}
|
|
2112
|
+
/**
|
|
2113
|
+
* @public
|
|
2114
|
+
*/
|
|
1839
2115
|
export interface StartDeploymentRequest {
|
|
1840
2116
|
/**
|
|
1841
2117
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to manually deploy to.</p>
|
|
1842
2118
|
*/
|
|
1843
2119
|
ServiceArn: string | undefined;
|
|
1844
2120
|
}
|
|
2121
|
+
/**
|
|
2122
|
+
* @public
|
|
2123
|
+
*/
|
|
1845
2124
|
export interface StartDeploymentResponse {
|
|
1846
2125
|
/**
|
|
1847
2126
|
* <p>The unique ID of the asynchronous operation that this request started. You can use it combined with the <a>ListOperations</a> call to track
|
|
@@ -1849,6 +2128,9 @@ export interface StartDeploymentResponse {
|
|
|
1849
2128
|
*/
|
|
1850
2129
|
OperationId: string | undefined;
|
|
1851
2130
|
}
|
|
2131
|
+
/**
|
|
2132
|
+
* @public
|
|
2133
|
+
*/
|
|
1852
2134
|
export interface TagResourceRequest {
|
|
1853
2135
|
/**
|
|
1854
2136
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to update tags for.</p>
|
|
@@ -1861,8 +2143,14 @@ export interface TagResourceRequest {
|
|
|
1861
2143
|
*/
|
|
1862
2144
|
Tags: Tag[] | undefined;
|
|
1863
2145
|
}
|
|
2146
|
+
/**
|
|
2147
|
+
* @public
|
|
2148
|
+
*/
|
|
1864
2149
|
export interface TagResourceResponse {
|
|
1865
2150
|
}
|
|
2151
|
+
/**
|
|
2152
|
+
* @public
|
|
2153
|
+
*/
|
|
1866
2154
|
export interface UntagResourceRequest {
|
|
1867
2155
|
/**
|
|
1868
2156
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.</p>
|
|
@@ -1874,8 +2162,14 @@ export interface UntagResourceRequest {
|
|
|
1874
2162
|
*/
|
|
1875
2163
|
TagKeys: string[] | undefined;
|
|
1876
2164
|
}
|
|
2165
|
+
/**
|
|
2166
|
+
* @public
|
|
2167
|
+
*/
|
|
1877
2168
|
export interface UntagResourceResponse {
|
|
1878
2169
|
}
|
|
2170
|
+
/**
|
|
2171
|
+
* @public
|
|
2172
|
+
*/
|
|
1879
2173
|
export interface UpdateServiceRequest {
|
|
1880
2174
|
/**
|
|
1881
2175
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to update.</p>
|
|
@@ -1910,6 +2204,9 @@ export interface UpdateServiceRequest {
|
|
|
1910
2204
|
*/
|
|
1911
2205
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
1912
2206
|
}
|
|
2207
|
+
/**
|
|
2208
|
+
* @public
|
|
2209
|
+
*/
|
|
1913
2210
|
export interface UpdateServiceResponse {
|
|
1914
2211
|
/**
|
|
1915
2212
|
* <p>A description of the App Runner service updated by this request. All configuration values in the returned <code>Service</code> structure reflect
|
|
@@ -1922,6 +2219,9 @@ export interface UpdateServiceResponse {
|
|
|
1922
2219
|
*/
|
|
1923
2220
|
OperationId: string | undefined;
|
|
1924
2221
|
}
|
|
2222
|
+
/**
|
|
2223
|
+
* @public
|
|
2224
|
+
*/
|
|
1925
2225
|
export interface UpdateVpcIngressConnectionRequest {
|
|
1926
2226
|
/**
|
|
1927
2227
|
* <p>The Amazon Resource Name (Arn) for the App Runner VPC Ingress Connection resource that you want to update.</p>
|
|
@@ -1933,6 +2233,9 @@ export interface UpdateVpcIngressConnectionRequest {
|
|
|
1933
2233
|
*/
|
|
1934
2234
|
IngressVpcConfiguration: IngressVpcConfiguration | undefined;
|
|
1935
2235
|
}
|
|
2236
|
+
/**
|
|
2237
|
+
* @public
|
|
2238
|
+
*/
|
|
1936
2239
|
export interface UpdateVpcIngressConnectionResponse {
|
|
1937
2240
|
/**
|
|
1938
2241
|
* <p>A description of the App Runner VPC Ingress Connection resource that's updated by this request.</p>
|