@aws-sdk/client-apprunner 3.131.0 → 3.137.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/CHANGELOG.md +11 -0
- package/dist-cjs/commands/AssociateCustomDomainCommand.js +2 -2
- package/dist-cjs/commands/CreateAutoScalingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/CreateConnectionCommand.js +2 -2
- package/dist-cjs/commands/CreateObservabilityConfigurationCommand.js +2 -2
- package/dist-cjs/commands/CreateServiceCommand.js +2 -2
- package/dist-cjs/commands/CreateVpcConnectorCommand.js +2 -2
- package/dist-cjs/commands/DeleteAutoScalingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeleteConnectionCommand.js +2 -2
- package/dist-cjs/commands/DeleteObservabilityConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DeleteServiceCommand.js +2 -2
- package/dist-cjs/commands/DeleteVpcConnectorCommand.js +2 -2
- package/dist-cjs/commands/DescribeAutoScalingConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DescribeCustomDomainsCommand.js +2 -2
- package/dist-cjs/commands/DescribeObservabilityConfigurationCommand.js +2 -2
- package/dist-cjs/commands/DescribeServiceCommand.js +2 -2
- package/dist-cjs/commands/DescribeVpcConnectorCommand.js +2 -2
- package/dist-cjs/commands/DisassociateCustomDomainCommand.js +2 -2
- package/dist-cjs/commands/ListAutoScalingConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/ListConnectionsCommand.js +2 -2
- package/dist-cjs/commands/ListObservabilityConfigurationsCommand.js +2 -2
- package/dist-cjs/commands/ListOperationsCommand.js +2 -2
- package/dist-cjs/commands/ListServicesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListVpcConnectorsCommand.js +2 -2
- package/dist-cjs/commands/PauseServiceCommand.js +2 -2
- package/dist-cjs/commands/ResumeServiceCommand.js +2 -2
- package/dist-cjs/commands/StartDeploymentCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateServiceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +382 -560
- package/dist-es/commands/AssociateCustomDomainCommand.js +3 -3
- package/dist-es/commands/CreateAutoScalingConfigurationCommand.js +3 -3
- package/dist-es/commands/CreateConnectionCommand.js +3 -3
- package/dist-es/commands/CreateObservabilityConfigurationCommand.js +3 -3
- package/dist-es/commands/CreateServiceCommand.js +3 -3
- package/dist-es/commands/CreateVpcConnectorCommand.js +3 -3
- package/dist-es/commands/DeleteAutoScalingConfigurationCommand.js +3 -3
- package/dist-es/commands/DeleteConnectionCommand.js +3 -3
- package/dist-es/commands/DeleteObservabilityConfigurationCommand.js +3 -3
- package/dist-es/commands/DeleteServiceCommand.js +3 -3
- package/dist-es/commands/DeleteVpcConnectorCommand.js +3 -3
- package/dist-es/commands/DescribeAutoScalingConfigurationCommand.js +3 -3
- package/dist-es/commands/DescribeCustomDomainsCommand.js +3 -3
- package/dist-es/commands/DescribeObservabilityConfigurationCommand.js +3 -3
- package/dist-es/commands/DescribeServiceCommand.js +3 -3
- package/dist-es/commands/DescribeVpcConnectorCommand.js +3 -3
- package/dist-es/commands/DisassociateCustomDomainCommand.js +3 -3
- package/dist-es/commands/ListAutoScalingConfigurationsCommand.js +3 -3
- package/dist-es/commands/ListConnectionsCommand.js +3 -3
- package/dist-es/commands/ListObservabilityConfigurationsCommand.js +3 -3
- package/dist-es/commands/ListOperationsCommand.js +3 -3
- package/dist-es/commands/ListServicesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListVpcConnectorsCommand.js +3 -3
- package/dist-es/commands/PauseServiceCommand.js +3 -3
- package/dist-es/commands/ResumeServiceCommand.js +3 -3
- package/dist-es/commands/StartDeploymentCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateServiceCommand.js +3 -3
- package/dist-es/models/models_0.js +96 -362
- package/dist-types/models/models_0.d.ts +352 -528
- package/dist-types/ts3.4/models/models_0.d.ts +176 -352
- package/package.json +6 -6
|
@@ -19,12 +19,6 @@ export interface AssociateCustomDomainRequest {
|
|
|
19
19
|
*/
|
|
20
20
|
EnableWWWSubdomain?: boolean;
|
|
21
21
|
}
|
|
22
|
-
export declare namespace AssociateCustomDomainRequest {
|
|
23
|
-
/**
|
|
24
|
-
* @internal
|
|
25
|
-
*/
|
|
26
|
-
const filterSensitiveLog: (obj: AssociateCustomDomainRequest) => any;
|
|
27
|
-
}
|
|
28
22
|
export declare enum CertificateValidationRecordStatus {
|
|
29
23
|
FAILED = "FAILED",
|
|
30
24
|
PENDING_VALIDATION = "PENDING_VALIDATION",
|
|
@@ -52,12 +46,6 @@ export interface CertificateValidationRecord {
|
|
|
52
46
|
*/
|
|
53
47
|
Status?: CertificateValidationRecordStatus | string;
|
|
54
48
|
}
|
|
55
|
-
export declare namespace CertificateValidationRecord {
|
|
56
|
-
/**
|
|
57
|
-
* @internal
|
|
58
|
-
*/
|
|
59
|
-
const filterSensitiveLog: (obj: CertificateValidationRecord) => any;
|
|
60
|
-
}
|
|
61
49
|
export declare enum CustomDomainAssociationStatus {
|
|
62
50
|
ACTIVE = "ACTIVE",
|
|
63
51
|
BINDING_CERTIFICATE = "BINDING_CERTIFICATE",
|
|
@@ -91,12 +79,6 @@ export interface CustomDomain {
|
|
|
91
79
|
*/
|
|
92
80
|
Status: CustomDomainAssociationStatus | string | undefined;
|
|
93
81
|
}
|
|
94
|
-
export declare namespace CustomDomain {
|
|
95
|
-
/**
|
|
96
|
-
* @internal
|
|
97
|
-
*/
|
|
98
|
-
const filterSensitiveLog: (obj: CustomDomain) => any;
|
|
99
|
-
}
|
|
100
82
|
export interface AssociateCustomDomainResponse {
|
|
101
83
|
/**
|
|
102
84
|
* <p>The App Runner subdomain of the App Runner service. The custom domain name is mapped to this target name.</p>
|
|
@@ -111,12 +93,6 @@ export interface AssociateCustomDomainResponse {
|
|
|
111
93
|
*/
|
|
112
94
|
CustomDomain: CustomDomain | undefined;
|
|
113
95
|
}
|
|
114
|
-
export declare namespace AssociateCustomDomainResponse {
|
|
115
|
-
/**
|
|
116
|
-
* @internal
|
|
117
|
-
*/
|
|
118
|
-
const filterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
|
|
119
|
-
}
|
|
120
96
|
/**
|
|
121
97
|
* <p>An unexpected service exception occurred.</p>
|
|
122
98
|
*/
|
|
@@ -166,12 +142,6 @@ export interface Tag {
|
|
|
166
142
|
*/
|
|
167
143
|
Value?: string;
|
|
168
144
|
}
|
|
169
|
-
export declare namespace Tag {
|
|
170
|
-
/**
|
|
171
|
-
* @internal
|
|
172
|
-
*/
|
|
173
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
174
|
-
}
|
|
175
145
|
export interface CreateAutoScalingConfigurationRequest {
|
|
176
146
|
/**
|
|
177
147
|
* <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
|
|
@@ -211,12 +181,6 @@ export interface CreateAutoScalingConfigurationRequest {
|
|
|
211
181
|
*/
|
|
212
182
|
Tags?: Tag[];
|
|
213
183
|
}
|
|
214
|
-
export declare namespace CreateAutoScalingConfigurationRequest {
|
|
215
|
-
/**
|
|
216
|
-
* @internal
|
|
217
|
-
*/
|
|
218
|
-
const filterSensitiveLog: (obj: CreateAutoScalingConfigurationRequest) => any;
|
|
219
|
-
}
|
|
220
184
|
export declare enum AutoScalingConfigurationStatus {
|
|
221
185
|
ACTIVE = "ACTIVE",
|
|
222
186
|
INACTIVE = "INACTIVE"
|
|
@@ -278,24 +242,12 @@ export interface AutoScalingConfiguration {
|
|
|
278
242
|
*/
|
|
279
243
|
DeletedAt?: Date;
|
|
280
244
|
}
|
|
281
|
-
export declare namespace AutoScalingConfiguration {
|
|
282
|
-
/**
|
|
283
|
-
* @internal
|
|
284
|
-
*/
|
|
285
|
-
const filterSensitiveLog: (obj: AutoScalingConfiguration) => any;
|
|
286
|
-
}
|
|
287
245
|
export interface CreateAutoScalingConfigurationResponse {
|
|
288
246
|
/**
|
|
289
247
|
* <p>A description of the App Runner auto scaling configuration that's created by this request.</p>
|
|
290
248
|
*/
|
|
291
249
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
292
250
|
}
|
|
293
|
-
export declare namespace CreateAutoScalingConfigurationResponse {
|
|
294
|
-
/**
|
|
295
|
-
* @internal
|
|
296
|
-
*/
|
|
297
|
-
const filterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
|
|
298
|
-
}
|
|
299
251
|
/**
|
|
300
252
|
* <p>App Runner can't create this resource. You've reached your account quota for this resource type.</p>
|
|
301
253
|
* <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
|
|
@@ -327,12 +279,6 @@ export interface CreateConnectionRequest {
|
|
|
327
279
|
*/
|
|
328
280
|
Tags?: Tag[];
|
|
329
281
|
}
|
|
330
|
-
export declare namespace CreateConnectionRequest {
|
|
331
|
-
/**
|
|
332
|
-
* @internal
|
|
333
|
-
*/
|
|
334
|
-
const filterSensitiveLog: (obj: CreateConnectionRequest) => any;
|
|
335
|
-
}
|
|
336
282
|
export declare enum ConnectionStatus {
|
|
337
283
|
AVAILABLE = "AVAILABLE",
|
|
338
284
|
DELETED = "DELETED",
|
|
@@ -364,24 +310,12 @@ export interface Connection {
|
|
|
364
310
|
*/
|
|
365
311
|
CreatedAt?: Date;
|
|
366
312
|
}
|
|
367
|
-
export declare namespace Connection {
|
|
368
|
-
/**
|
|
369
|
-
* @internal
|
|
370
|
-
*/
|
|
371
|
-
const filterSensitiveLog: (obj: Connection) => any;
|
|
372
|
-
}
|
|
373
313
|
export interface CreateConnectionResponse {
|
|
374
314
|
/**
|
|
375
315
|
* <p>A description of the App Runner connection that's created by this request.</p>
|
|
376
316
|
*/
|
|
377
317
|
Connection: Connection | undefined;
|
|
378
318
|
}
|
|
379
|
-
export declare namespace CreateConnectionResponse {
|
|
380
|
-
/**
|
|
381
|
-
* @internal
|
|
382
|
-
*/
|
|
383
|
-
const filterSensitiveLog: (obj: CreateConnectionResponse) => any;
|
|
384
|
-
}
|
|
385
319
|
export declare enum TracingVendor {
|
|
386
320
|
AWSXRAY = "AWSXRAY"
|
|
387
321
|
}
|
|
@@ -394,12 +328,6 @@ export interface TraceConfiguration {
|
|
|
394
328
|
*/
|
|
395
329
|
Vendor: TracingVendor | string | undefined;
|
|
396
330
|
}
|
|
397
|
-
export declare namespace TraceConfiguration {
|
|
398
|
-
/**
|
|
399
|
-
* @internal
|
|
400
|
-
*/
|
|
401
|
-
const filterSensitiveLog: (obj: TraceConfiguration) => any;
|
|
402
|
-
}
|
|
403
331
|
export interface CreateObservabilityConfigurationRequest {
|
|
404
332
|
/**
|
|
405
333
|
* <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
|
|
@@ -421,12 +349,6 @@ export interface CreateObservabilityConfigurationRequest {
|
|
|
421
349
|
*/
|
|
422
350
|
Tags?: Tag[];
|
|
423
351
|
}
|
|
424
|
-
export declare namespace CreateObservabilityConfigurationRequest {
|
|
425
|
-
/**
|
|
426
|
-
* @internal
|
|
427
|
-
*/
|
|
428
|
-
const filterSensitiveLog: (obj: CreateObservabilityConfigurationRequest) => any;
|
|
429
|
-
}
|
|
430
352
|
export declare enum ObservabilityConfigurationStatus {
|
|
431
353
|
ACTIVE = "ACTIVE",
|
|
432
354
|
INACTIVE = "INACTIVE"
|
|
@@ -475,24 +397,12 @@ export interface ObservabilityConfiguration {
|
|
|
475
397
|
*/
|
|
476
398
|
DeletedAt?: Date;
|
|
477
399
|
}
|
|
478
|
-
export declare namespace ObservabilityConfiguration {
|
|
479
|
-
/**
|
|
480
|
-
* @internal
|
|
481
|
-
*/
|
|
482
|
-
const filterSensitiveLog: (obj: ObservabilityConfiguration) => any;
|
|
483
|
-
}
|
|
484
400
|
export interface CreateObservabilityConfigurationResponse {
|
|
485
401
|
/**
|
|
486
402
|
* <p>A description of the App Runner observability configuration that's created by this request.</p>
|
|
487
403
|
*/
|
|
488
404
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
489
405
|
}
|
|
490
|
-
export declare namespace CreateObservabilityConfigurationResponse {
|
|
491
|
-
/**
|
|
492
|
-
* @internal
|
|
493
|
-
*/
|
|
494
|
-
const filterSensitiveLog: (obj: CreateObservabilityConfigurationResponse) => any;
|
|
495
|
-
}
|
|
496
406
|
/**
|
|
497
407
|
* <p>Describes a custom encryption key that App Runner uses to encrypt copies of the source repository and service logs.</p>
|
|
498
408
|
*/
|
|
@@ -502,12 +412,6 @@ export interface EncryptionConfiguration {
|
|
|
502
412
|
*/
|
|
503
413
|
KmsKey: string | undefined;
|
|
504
414
|
}
|
|
505
|
-
export declare namespace EncryptionConfiguration {
|
|
506
|
-
/**
|
|
507
|
-
* @internal
|
|
508
|
-
*/
|
|
509
|
-
const filterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
510
|
-
}
|
|
511
415
|
export declare enum HealthCheckProtocol {
|
|
512
416
|
HTTP = "HTTP",
|
|
513
417
|
TCP = "TCP"
|
|
@@ -556,12 +460,6 @@ export interface HealthCheckConfiguration {
|
|
|
556
460
|
*/
|
|
557
461
|
UnhealthyThreshold?: number;
|
|
558
462
|
}
|
|
559
|
-
export declare namespace HealthCheckConfiguration {
|
|
560
|
-
/**
|
|
561
|
-
* @internal
|
|
562
|
-
*/
|
|
563
|
-
const filterSensitiveLog: (obj: HealthCheckConfiguration) => any;
|
|
564
|
-
}
|
|
565
463
|
/**
|
|
566
464
|
* <p>Describes the runtime configuration of an App Runner service instance (scaling unit).</p>
|
|
567
465
|
*/
|
|
@@ -584,12 +482,6 @@ export interface InstanceConfiguration {
|
|
|
584
482
|
*/
|
|
585
483
|
InstanceRoleArn?: string;
|
|
586
484
|
}
|
|
587
|
-
export declare namespace InstanceConfiguration {
|
|
588
|
-
/**
|
|
589
|
-
* @internal
|
|
590
|
-
*/
|
|
591
|
-
const filterSensitiveLog: (obj: InstanceConfiguration) => any;
|
|
592
|
-
}
|
|
593
485
|
export declare enum EgressType {
|
|
594
486
|
DEFAULT = "DEFAULT",
|
|
595
487
|
VPC = "VPC"
|
|
@@ -610,12 +502,6 @@ export interface EgressConfiguration {
|
|
|
610
502
|
*/
|
|
611
503
|
VpcConnectorArn?: string;
|
|
612
504
|
}
|
|
613
|
-
export declare namespace EgressConfiguration {
|
|
614
|
-
/**
|
|
615
|
-
* @internal
|
|
616
|
-
*/
|
|
617
|
-
const filterSensitiveLog: (obj: EgressConfiguration) => any;
|
|
618
|
-
}
|
|
619
505
|
/**
|
|
620
506
|
* <p>Describes configuration settings related to network traffic of an App Runner service. Consists of embedded objects for each configurable network
|
|
621
507
|
* feature.</p>
|
|
@@ -626,12 +512,6 @@ export interface NetworkConfiguration {
|
|
|
626
512
|
*/
|
|
627
513
|
EgressConfiguration?: EgressConfiguration;
|
|
628
514
|
}
|
|
629
|
-
export declare namespace NetworkConfiguration {
|
|
630
|
-
/**
|
|
631
|
-
* @internal
|
|
632
|
-
*/
|
|
633
|
-
const filterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
634
|
-
}
|
|
635
515
|
/**
|
|
636
516
|
* <p>Describes the observability configuration of an App Runner service. These are additional observability features, like tracing, that you choose to
|
|
637
517
|
* enable. They're configured in a separate resource that you associate with your service.</p>
|
|
@@ -654,12 +534,6 @@ export interface ServiceObservabilityConfiguration {
|
|
|
654
534
|
*/
|
|
655
535
|
ObservabilityConfigurationArn?: string;
|
|
656
536
|
}
|
|
657
|
-
export declare namespace ServiceObservabilityConfiguration {
|
|
658
|
-
/**
|
|
659
|
-
* @internal
|
|
660
|
-
*/
|
|
661
|
-
const filterSensitiveLog: (obj: ServiceObservabilityConfiguration) => any;
|
|
662
|
-
}
|
|
663
537
|
/**
|
|
664
538
|
* <p>Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.</p>
|
|
665
539
|
*/
|
|
@@ -675,12 +549,6 @@ export interface AuthenticationConfiguration {
|
|
|
675
549
|
*/
|
|
676
550
|
AccessRoleArn?: string;
|
|
677
551
|
}
|
|
678
|
-
export declare namespace AuthenticationConfiguration {
|
|
679
|
-
/**
|
|
680
|
-
* @internal
|
|
681
|
-
*/
|
|
682
|
-
const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
|
|
683
|
-
}
|
|
684
552
|
export declare enum Runtime {
|
|
685
553
|
CORRETTO_11 = "CORRETTO_11",
|
|
686
554
|
CORRETTO_8 = "CORRETTO_8",
|
|
@@ -719,12 +587,6 @@ export interface CodeConfigurationValues {
|
|
|
719
587
|
*/
|
|
720
588
|
RuntimeEnvironmentVariables?: Record<string, string>;
|
|
721
589
|
}
|
|
722
|
-
export declare namespace CodeConfigurationValues {
|
|
723
|
-
/**
|
|
724
|
-
* @internal
|
|
725
|
-
*/
|
|
726
|
-
const filterSensitiveLog: (obj: CodeConfigurationValues) => any;
|
|
727
|
-
}
|
|
728
590
|
export declare enum ConfigurationSource {
|
|
729
591
|
API = "API",
|
|
730
592
|
REPOSITORY = "REPOSITORY"
|
|
@@ -755,12 +617,6 @@ export interface CodeConfiguration {
|
|
|
755
617
|
*/
|
|
756
618
|
CodeConfigurationValues?: CodeConfigurationValues;
|
|
757
619
|
}
|
|
758
|
-
export declare namespace CodeConfiguration {
|
|
759
|
-
/**
|
|
760
|
-
* @internal
|
|
761
|
-
*/
|
|
762
|
-
const filterSensitiveLog: (obj: CodeConfiguration) => any;
|
|
763
|
-
}
|
|
764
620
|
export declare enum SourceCodeVersionType {
|
|
765
621
|
BRANCH = "BRANCH"
|
|
766
622
|
}
|
|
@@ -779,12 +635,6 @@ export interface SourceCodeVersion {
|
|
|
779
635
|
*/
|
|
780
636
|
Value: string | undefined;
|
|
781
637
|
}
|
|
782
|
-
export declare namespace SourceCodeVersion {
|
|
783
|
-
/**
|
|
784
|
-
* @internal
|
|
785
|
-
*/
|
|
786
|
-
const filterSensitiveLog: (obj: SourceCodeVersion) => any;
|
|
787
|
-
}
|
|
788
638
|
/**
|
|
789
639
|
* <p>Describes a source code repository.</p>
|
|
790
640
|
*/
|
|
@@ -806,12 +656,6 @@ export interface CodeRepository {
|
|
|
806
656
|
*/
|
|
807
657
|
CodeConfiguration?: CodeConfiguration;
|
|
808
658
|
}
|
|
809
|
-
export declare namespace CodeRepository {
|
|
810
|
-
/**
|
|
811
|
-
* @internal
|
|
812
|
-
*/
|
|
813
|
-
const filterSensitiveLog: (obj: CodeRepository) => any;
|
|
814
|
-
}
|
|
815
659
|
/**
|
|
816
660
|
* <p>Describes the configuration that App Runner uses to run an App Runner service using an image pulled from a source image repository.</p>
|
|
817
661
|
*/
|
|
@@ -833,12 +677,6 @@ export interface ImageConfiguration {
|
|
|
833
677
|
*/
|
|
834
678
|
Port?: string;
|
|
835
679
|
}
|
|
836
|
-
export declare namespace ImageConfiguration {
|
|
837
|
-
/**
|
|
838
|
-
* @internal
|
|
839
|
-
*/
|
|
840
|
-
const filterSensitiveLog: (obj: ImageConfiguration) => any;
|
|
841
|
-
}
|
|
842
680
|
export declare enum ImageRepositoryType {
|
|
843
681
|
ECR = "ECR",
|
|
844
682
|
ECR_PUBLIC = "ECR_PUBLIC"
|
|
@@ -861,12 +699,6 @@ export interface ImageRepository {
|
|
|
861
699
|
*/
|
|
862
700
|
ImageRepositoryType: ImageRepositoryType | string | undefined;
|
|
863
701
|
}
|
|
864
|
-
export declare namespace ImageRepository {
|
|
865
|
-
/**
|
|
866
|
-
* @internal
|
|
867
|
-
*/
|
|
868
|
-
const filterSensitiveLog: (obj: ImageRepository) => any;
|
|
869
|
-
}
|
|
870
702
|
/**
|
|
871
703
|
* <p>Describes the source deployed to an App Runner service. It can be a code or an image repository.</p>
|
|
872
704
|
*/
|
|
@@ -894,12 +726,6 @@ export interface SourceConfiguration {
|
|
|
894
726
|
*/
|
|
895
727
|
AuthenticationConfiguration?: AuthenticationConfiguration;
|
|
896
728
|
}
|
|
897
|
-
export declare namespace SourceConfiguration {
|
|
898
|
-
/**
|
|
899
|
-
* @internal
|
|
900
|
-
*/
|
|
901
|
-
const filterSensitiveLog: (obj: SourceConfiguration) => any;
|
|
902
|
-
}
|
|
903
729
|
export interface CreateServiceRequest {
|
|
904
730
|
/**
|
|
905
731
|
* <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>
|
|
@@ -946,12 +772,6 @@ export interface CreateServiceRequest {
|
|
|
946
772
|
*/
|
|
947
773
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
948
774
|
}
|
|
949
|
-
export declare namespace CreateServiceRequest {
|
|
950
|
-
/**
|
|
951
|
-
* @internal
|
|
952
|
-
*/
|
|
953
|
-
const filterSensitiveLog: (obj: CreateServiceRequest) => any;
|
|
954
|
-
}
|
|
955
775
|
/**
|
|
956
776
|
* <p>Provides summary information about an App Runner automatic scaling configuration resource.</p>
|
|
957
777
|
* <p>This type contains limited information about an auto scaling configuration. It includes only identification information, without configuration
|
|
@@ -973,12 +793,6 @@ export interface AutoScalingConfigurationSummary {
|
|
|
973
793
|
*/
|
|
974
794
|
AutoScalingConfigurationRevision?: number;
|
|
975
795
|
}
|
|
976
|
-
export declare namespace AutoScalingConfigurationSummary {
|
|
977
|
-
/**
|
|
978
|
-
* @internal
|
|
979
|
-
*/
|
|
980
|
-
const filterSensitiveLog: (obj: AutoScalingConfigurationSummary) => any;
|
|
981
|
-
}
|
|
982
796
|
export declare enum ServiceStatus {
|
|
983
797
|
CREATE_FAILED = "CREATE_FAILED",
|
|
984
798
|
DELETED = "DELETED",
|
|
@@ -1068,12 +882,6 @@ export interface Service {
|
|
|
1068
882
|
*/
|
|
1069
883
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
1070
884
|
}
|
|
1071
|
-
export declare namespace Service {
|
|
1072
|
-
/**
|
|
1073
|
-
* @internal
|
|
1074
|
-
*/
|
|
1075
|
-
const filterSensitiveLog: (obj: Service) => any;
|
|
1076
|
-
}
|
|
1077
885
|
export interface CreateServiceResponse {
|
|
1078
886
|
/**
|
|
1079
887
|
* <p>A description of the App Runner service that's created by this request.</p>
|
|
@@ -1084,12 +892,6 @@ export interface CreateServiceResponse {
|
|
|
1084
892
|
*/
|
|
1085
893
|
OperationId: string | undefined;
|
|
1086
894
|
}
|
|
1087
|
-
export declare namespace CreateServiceResponse {
|
|
1088
|
-
/**
|
|
1089
|
-
* @internal
|
|
1090
|
-
*/
|
|
1091
|
-
const filterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
1092
|
-
}
|
|
1093
895
|
export interface CreateVpcConnectorRequest {
|
|
1094
896
|
/**
|
|
1095
897
|
* <p>A name for the VPC connector.</p>
|
|
@@ -1115,12 +917,6 @@ export interface CreateVpcConnectorRequest {
|
|
|
1115
917
|
*/
|
|
1116
918
|
Tags?: Tag[];
|
|
1117
919
|
}
|
|
1118
|
-
export declare namespace CreateVpcConnectorRequest {
|
|
1119
|
-
/**
|
|
1120
|
-
* @internal
|
|
1121
|
-
*/
|
|
1122
|
-
const filterSensitiveLog: (obj: CreateVpcConnectorRequest) => any;
|
|
1123
|
-
}
|
|
1124
920
|
export declare enum VpcConnectorStatus {
|
|
1125
921
|
ACTIVE = "ACTIVE",
|
|
1126
922
|
INACTIVE = "INACTIVE"
|
|
@@ -1173,24 +969,12 @@ export interface VpcConnector {
|
|
|
1173
969
|
*/
|
|
1174
970
|
DeletedAt?: Date;
|
|
1175
971
|
}
|
|
1176
|
-
export declare namespace VpcConnector {
|
|
1177
|
-
/**
|
|
1178
|
-
* @internal
|
|
1179
|
-
*/
|
|
1180
|
-
const filterSensitiveLog: (obj: VpcConnector) => any;
|
|
1181
|
-
}
|
|
1182
972
|
export interface CreateVpcConnectorResponse {
|
|
1183
973
|
/**
|
|
1184
974
|
* <p>A description of the App Runner VPC connector that's created by this request.</p>
|
|
1185
975
|
*/
|
|
1186
976
|
VpcConnector: VpcConnector | undefined;
|
|
1187
977
|
}
|
|
1188
|
-
export declare namespace CreateVpcConnectorResponse {
|
|
1189
|
-
/**
|
|
1190
|
-
* @internal
|
|
1191
|
-
*/
|
|
1192
|
-
const filterSensitiveLog: (obj: CreateVpcConnectorResponse) => any;
|
|
1193
|
-
}
|
|
1194
978
|
export interface DeleteAutoScalingConfigurationRequest {
|
|
1195
979
|
/**
|
|
1196
980
|
* <p>The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want to delete.</p>
|
|
@@ -1201,24 +985,12 @@ export interface DeleteAutoScalingConfigurationRequest {
|
|
|
1201
985
|
*/
|
|
1202
986
|
AutoScalingConfigurationArn: string | undefined;
|
|
1203
987
|
}
|
|
1204
|
-
export declare namespace DeleteAutoScalingConfigurationRequest {
|
|
1205
|
-
/**
|
|
1206
|
-
* @internal
|
|
1207
|
-
*/
|
|
1208
|
-
const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationRequest) => any;
|
|
1209
|
-
}
|
|
1210
988
|
export interface DeleteAutoScalingConfigurationResponse {
|
|
1211
989
|
/**
|
|
1212
990
|
* <p>A description of the App Runner auto scaling configuration that this request just deleted.</p>
|
|
1213
991
|
*/
|
|
1214
992
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
1215
993
|
}
|
|
1216
|
-
export declare namespace DeleteAutoScalingConfigurationResponse {
|
|
1217
|
-
/**
|
|
1218
|
-
* @internal
|
|
1219
|
-
*/
|
|
1220
|
-
const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
|
|
1221
|
-
}
|
|
1222
994
|
/**
|
|
1223
995
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
1224
996
|
*/
|
|
@@ -1237,24 +1009,12 @@ export interface DeleteConnectionRequest {
|
|
|
1237
1009
|
*/
|
|
1238
1010
|
ConnectionArn: string | undefined;
|
|
1239
1011
|
}
|
|
1240
|
-
export declare namespace DeleteConnectionRequest {
|
|
1241
|
-
/**
|
|
1242
|
-
* @internal
|
|
1243
|
-
*/
|
|
1244
|
-
const filterSensitiveLog: (obj: DeleteConnectionRequest) => any;
|
|
1245
|
-
}
|
|
1246
1012
|
export interface DeleteConnectionResponse {
|
|
1247
1013
|
/**
|
|
1248
1014
|
* <p>A description of the App Runner connection that this request just deleted.</p>
|
|
1249
1015
|
*/
|
|
1250
1016
|
Connection?: Connection;
|
|
1251
1017
|
}
|
|
1252
|
-
export declare namespace DeleteConnectionResponse {
|
|
1253
|
-
/**
|
|
1254
|
-
* @internal
|
|
1255
|
-
*/
|
|
1256
|
-
const filterSensitiveLog: (obj: DeleteConnectionResponse) => any;
|
|
1257
|
-
}
|
|
1258
1018
|
export interface DeleteObservabilityConfigurationRequest {
|
|
1259
1019
|
/**
|
|
1260
1020
|
* <p>The Amazon Resource Name (ARN) of the App Runner observability configuration that you want to delete.</p>
|
|
@@ -1265,36 +1025,18 @@ export interface DeleteObservabilityConfigurationRequest {
|
|
|
1265
1025
|
*/
|
|
1266
1026
|
ObservabilityConfigurationArn: string | undefined;
|
|
1267
1027
|
}
|
|
1268
|
-
export declare namespace DeleteObservabilityConfigurationRequest {
|
|
1269
|
-
/**
|
|
1270
|
-
* @internal
|
|
1271
|
-
*/
|
|
1272
|
-
const filterSensitiveLog: (obj: DeleteObservabilityConfigurationRequest) => any;
|
|
1273
|
-
}
|
|
1274
1028
|
export interface DeleteObservabilityConfigurationResponse {
|
|
1275
1029
|
/**
|
|
1276
1030
|
* <p>A description of the App Runner observability configuration that this request just deleted.</p>
|
|
1277
1031
|
*/
|
|
1278
1032
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
1279
1033
|
}
|
|
1280
|
-
export declare namespace DeleteObservabilityConfigurationResponse {
|
|
1281
|
-
/**
|
|
1282
|
-
* @internal
|
|
1283
|
-
*/
|
|
1284
|
-
const filterSensitiveLog: (obj: DeleteObservabilityConfigurationResponse) => any;
|
|
1285
|
-
}
|
|
1286
1034
|
export interface DeleteServiceRequest {
|
|
1287
1035
|
/**
|
|
1288
1036
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to delete.</p>
|
|
1289
1037
|
*/
|
|
1290
1038
|
ServiceArn: string | undefined;
|
|
1291
1039
|
}
|
|
1292
|
-
export declare namespace DeleteServiceRequest {
|
|
1293
|
-
/**
|
|
1294
|
-
* @internal
|
|
1295
|
-
*/
|
|
1296
|
-
const filterSensitiveLog: (obj: DeleteServiceRequest) => any;
|
|
1297
|
-
}
|
|
1298
1040
|
export interface DeleteServiceResponse {
|
|
1299
1041
|
/**
|
|
1300
1042
|
* <p>A description of the App Runner service that this request just deleted.</p>
|
|
@@ -1306,12 +1048,6 @@ export interface DeleteServiceResponse {
|
|
|
1306
1048
|
*/
|
|
1307
1049
|
OperationId: string | undefined;
|
|
1308
1050
|
}
|
|
1309
|
-
export declare namespace DeleteServiceResponse {
|
|
1310
|
-
/**
|
|
1311
|
-
* @internal
|
|
1312
|
-
*/
|
|
1313
|
-
const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
1314
|
-
}
|
|
1315
1051
|
export interface DeleteVpcConnectorRequest {
|
|
1316
1052
|
/**
|
|
1317
1053
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to delete.</p>
|
|
@@ -1319,24 +1055,12 @@ export interface DeleteVpcConnectorRequest {
|
|
|
1319
1055
|
*/
|
|
1320
1056
|
VpcConnectorArn: string | undefined;
|
|
1321
1057
|
}
|
|
1322
|
-
export declare namespace DeleteVpcConnectorRequest {
|
|
1323
|
-
/**
|
|
1324
|
-
* @internal
|
|
1325
|
-
*/
|
|
1326
|
-
const filterSensitiveLog: (obj: DeleteVpcConnectorRequest) => any;
|
|
1327
|
-
}
|
|
1328
1058
|
export interface DeleteVpcConnectorResponse {
|
|
1329
1059
|
/**
|
|
1330
1060
|
* <p>A description of the App Runner VPC connector that this request just deleted.</p>
|
|
1331
1061
|
*/
|
|
1332
1062
|
VpcConnector: VpcConnector | undefined;
|
|
1333
1063
|
}
|
|
1334
|
-
export declare namespace DeleteVpcConnectorResponse {
|
|
1335
|
-
/**
|
|
1336
|
-
* @internal
|
|
1337
|
-
*/
|
|
1338
|
-
const filterSensitiveLog: (obj: DeleteVpcConnectorResponse) => any;
|
|
1339
|
-
}
|
|
1340
1064
|
export interface DescribeAutoScalingConfigurationRequest {
|
|
1341
1065
|
/**
|
|
1342
1066
|
* <p>The Amazon Resource Name (ARN) of the App Runner auto scaling configuration that you want a description for.</p>
|
|
@@ -1348,24 +1072,12 @@ export interface DescribeAutoScalingConfigurationRequest {
|
|
|
1348
1072
|
*/
|
|
1349
1073
|
AutoScalingConfigurationArn: string | undefined;
|
|
1350
1074
|
}
|
|
1351
|
-
export declare namespace DescribeAutoScalingConfigurationRequest {
|
|
1352
|
-
/**
|
|
1353
|
-
* @internal
|
|
1354
|
-
*/
|
|
1355
|
-
const filterSensitiveLog: (obj: DescribeAutoScalingConfigurationRequest) => any;
|
|
1356
|
-
}
|
|
1357
1075
|
export interface DescribeAutoScalingConfigurationResponse {
|
|
1358
1076
|
/**
|
|
1359
1077
|
* <p>A full description of the App Runner auto scaling configuration that you specified in this request.</p>
|
|
1360
1078
|
*/
|
|
1361
1079
|
AutoScalingConfiguration: AutoScalingConfiguration | undefined;
|
|
1362
1080
|
}
|
|
1363
|
-
export declare namespace DescribeAutoScalingConfigurationResponse {
|
|
1364
|
-
/**
|
|
1365
|
-
* @internal
|
|
1366
|
-
*/
|
|
1367
|
-
const filterSensitiveLog: (obj: DescribeAutoScalingConfigurationResponse) => any;
|
|
1368
|
-
}
|
|
1369
1081
|
export interface DescribeCustomDomainsRequest {
|
|
1370
1082
|
/**
|
|
1371
1083
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want associated custom domain names to be described for.</p>
|
|
@@ -1383,12 +1095,6 @@ export interface DescribeCustomDomainsRequest {
|
|
|
1383
1095
|
*/
|
|
1384
1096
|
MaxResults?: number;
|
|
1385
1097
|
}
|
|
1386
|
-
export declare namespace DescribeCustomDomainsRequest {
|
|
1387
|
-
/**
|
|
1388
|
-
* @internal
|
|
1389
|
-
*/
|
|
1390
|
-
const filterSensitiveLog: (obj: DescribeCustomDomainsRequest) => any;
|
|
1391
|
-
}
|
|
1392
1098
|
export interface DescribeCustomDomainsResponse {
|
|
1393
1099
|
/**
|
|
1394
1100
|
* <p>The App Runner subdomain of the App Runner service. The associated custom domain names are mapped to this target name.</p>
|
|
@@ -1408,12 +1114,6 @@ export interface DescribeCustomDomainsResponse {
|
|
|
1408
1114
|
*/
|
|
1409
1115
|
NextToken?: string;
|
|
1410
1116
|
}
|
|
1411
|
-
export declare namespace DescribeCustomDomainsResponse {
|
|
1412
|
-
/**
|
|
1413
|
-
* @internal
|
|
1414
|
-
*/
|
|
1415
|
-
const filterSensitiveLog: (obj: DescribeCustomDomainsResponse) => any;
|
|
1416
|
-
}
|
|
1417
1117
|
export interface DescribeObservabilityConfigurationRequest {
|
|
1418
1118
|
/**
|
|
1419
1119
|
* <p>The Amazon Resource Name (ARN) of the App Runner observability configuration that you want a description for.</p>
|
|
@@ -1425,48 +1125,24 @@ export interface DescribeObservabilityConfigurationRequest {
|
|
|
1425
1125
|
*/
|
|
1426
1126
|
ObservabilityConfigurationArn: string | undefined;
|
|
1427
1127
|
}
|
|
1428
|
-
export declare namespace DescribeObservabilityConfigurationRequest {
|
|
1429
|
-
/**
|
|
1430
|
-
* @internal
|
|
1431
|
-
*/
|
|
1432
|
-
const filterSensitiveLog: (obj: DescribeObservabilityConfigurationRequest) => any;
|
|
1433
|
-
}
|
|
1434
1128
|
export interface DescribeObservabilityConfigurationResponse {
|
|
1435
1129
|
/**
|
|
1436
1130
|
* <p>A full description of the App Runner observability configuration that you specified in this request.</p>
|
|
1437
1131
|
*/
|
|
1438
1132
|
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
1439
1133
|
}
|
|
1440
|
-
export declare namespace DescribeObservabilityConfigurationResponse {
|
|
1441
|
-
/**
|
|
1442
|
-
* @internal
|
|
1443
|
-
*/
|
|
1444
|
-
const filterSensitiveLog: (obj: DescribeObservabilityConfigurationResponse) => any;
|
|
1445
|
-
}
|
|
1446
1134
|
export interface DescribeServiceRequest {
|
|
1447
1135
|
/**
|
|
1448
1136
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want a description for.</p>
|
|
1449
1137
|
*/
|
|
1450
1138
|
ServiceArn: string | undefined;
|
|
1451
1139
|
}
|
|
1452
|
-
export declare namespace DescribeServiceRequest {
|
|
1453
|
-
/**
|
|
1454
|
-
* @internal
|
|
1455
|
-
*/
|
|
1456
|
-
const filterSensitiveLog: (obj: DescribeServiceRequest) => any;
|
|
1457
|
-
}
|
|
1458
1140
|
export interface DescribeServiceResponse {
|
|
1459
1141
|
/**
|
|
1460
1142
|
* <p>A full description of the App Runner service that you specified in this request.</p>
|
|
1461
1143
|
*/
|
|
1462
1144
|
Service: Service | undefined;
|
|
1463
1145
|
}
|
|
1464
|
-
export declare namespace DescribeServiceResponse {
|
|
1465
|
-
/**
|
|
1466
|
-
* @internal
|
|
1467
|
-
*/
|
|
1468
|
-
const filterSensitiveLog: (obj: DescribeServiceResponse) => any;
|
|
1469
|
-
}
|
|
1470
1146
|
export interface DescribeVpcConnectorRequest {
|
|
1471
1147
|
/**
|
|
1472
1148
|
* <p>The Amazon Resource Name (ARN) of the App Runner VPC connector that you want a description for.</p>
|
|
@@ -1474,24 +1150,12 @@ export interface DescribeVpcConnectorRequest {
|
|
|
1474
1150
|
*/
|
|
1475
1151
|
VpcConnectorArn: string | undefined;
|
|
1476
1152
|
}
|
|
1477
|
-
export declare namespace DescribeVpcConnectorRequest {
|
|
1478
|
-
/**
|
|
1479
|
-
* @internal
|
|
1480
|
-
*/
|
|
1481
|
-
const filterSensitiveLog: (obj: DescribeVpcConnectorRequest) => any;
|
|
1482
|
-
}
|
|
1483
1153
|
export interface DescribeVpcConnectorResponse {
|
|
1484
1154
|
/**
|
|
1485
1155
|
* <p>A description of the App Runner VPC connector that you specified in this request.</p>
|
|
1486
1156
|
*/
|
|
1487
1157
|
VpcConnector: VpcConnector | undefined;
|
|
1488
1158
|
}
|
|
1489
|
-
export declare namespace DescribeVpcConnectorResponse {
|
|
1490
|
-
/**
|
|
1491
|
-
* @internal
|
|
1492
|
-
*/
|
|
1493
|
-
const filterSensitiveLog: (obj: DescribeVpcConnectorResponse) => any;
|
|
1494
|
-
}
|
|
1495
1159
|
export interface DisassociateCustomDomainRequest {
|
|
1496
1160
|
/**
|
|
1497
1161
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to disassociate a custom domain name from.</p>
|
|
@@ -1502,12 +1166,6 @@ export interface DisassociateCustomDomainRequest {
|
|
|
1502
1166
|
*/
|
|
1503
1167
|
DomainName: string | undefined;
|
|
1504
1168
|
}
|
|
1505
|
-
export declare namespace DisassociateCustomDomainRequest {
|
|
1506
|
-
/**
|
|
1507
|
-
* @internal
|
|
1508
|
-
*/
|
|
1509
|
-
const filterSensitiveLog: (obj: DisassociateCustomDomainRequest) => any;
|
|
1510
|
-
}
|
|
1511
1169
|
export interface DisassociateCustomDomainResponse {
|
|
1512
1170
|
/**
|
|
1513
1171
|
* <p>The App Runner subdomain of the App Runner service. The disassociated custom domain name was mapped to this target name.</p>
|
|
@@ -1522,12 +1180,6 @@ export interface DisassociateCustomDomainResponse {
|
|
|
1522
1180
|
*/
|
|
1523
1181
|
CustomDomain: CustomDomain | undefined;
|
|
1524
1182
|
}
|
|
1525
|
-
export declare namespace DisassociateCustomDomainResponse {
|
|
1526
|
-
/**
|
|
1527
|
-
* @internal
|
|
1528
|
-
*/
|
|
1529
|
-
const filterSensitiveLog: (obj: DisassociateCustomDomainResponse) => any;
|
|
1530
|
-
}
|
|
1531
1183
|
export interface ListAutoScalingConfigurationsRequest {
|
|
1532
1184
|
/**
|
|
1533
1185
|
* <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
|
|
@@ -1553,12 +1205,6 @@ export interface ListAutoScalingConfigurationsRequest {
|
|
|
1553
1205
|
*/
|
|
1554
1206
|
NextToken?: string;
|
|
1555
1207
|
}
|
|
1556
|
-
export declare namespace ListAutoScalingConfigurationsRequest {
|
|
1557
|
-
/**
|
|
1558
|
-
* @internal
|
|
1559
|
-
*/
|
|
1560
|
-
const filterSensitiveLog: (obj: ListAutoScalingConfigurationsRequest) => any;
|
|
1561
|
-
}
|
|
1562
1208
|
export interface ListAutoScalingConfigurationsResponse {
|
|
1563
1209
|
/**
|
|
1564
1210
|
* <p>A list of summary information records for auto scaling configurations. In a paginated request, the request returns up to <code>MaxResults</code>
|
|
@@ -1570,12 +1216,6 @@ export interface ListAutoScalingConfigurationsResponse {
|
|
|
1570
1216
|
*/
|
|
1571
1217
|
NextToken?: string;
|
|
1572
1218
|
}
|
|
1573
|
-
export declare namespace ListAutoScalingConfigurationsResponse {
|
|
1574
|
-
/**
|
|
1575
|
-
* @internal
|
|
1576
|
-
*/
|
|
1577
|
-
const filterSensitiveLog: (obj: ListAutoScalingConfigurationsResponse) => any;
|
|
1578
|
-
}
|
|
1579
1219
|
export interface ListConnectionsRequest {
|
|
1580
1220
|
/**
|
|
1581
1221
|
* <p>If specified, only this connection is returned. If not specified, the result isn't filtered by name.</p>
|
|
@@ -1593,12 +1233,6 @@ export interface ListConnectionsRequest {
|
|
|
1593
1233
|
*/
|
|
1594
1234
|
NextToken?: string;
|
|
1595
1235
|
}
|
|
1596
|
-
export declare namespace ListConnectionsRequest {
|
|
1597
|
-
/**
|
|
1598
|
-
* @internal
|
|
1599
|
-
*/
|
|
1600
|
-
const filterSensitiveLog: (obj: ListConnectionsRequest) => any;
|
|
1601
|
-
}
|
|
1602
1236
|
/**
|
|
1603
1237
|
* <p>Provides summary information about an App Runner connection resource.</p>
|
|
1604
1238
|
*/
|
|
@@ -1624,12 +1258,6 @@ export interface ConnectionSummary {
|
|
|
1624
1258
|
*/
|
|
1625
1259
|
CreatedAt?: Date;
|
|
1626
1260
|
}
|
|
1627
|
-
export declare namespace ConnectionSummary {
|
|
1628
|
-
/**
|
|
1629
|
-
* @internal
|
|
1630
|
-
*/
|
|
1631
|
-
const filterSensitiveLog: (obj: ConnectionSummary) => any;
|
|
1632
|
-
}
|
|
1633
1261
|
export interface ListConnectionsResponse {
|
|
1634
1262
|
/**
|
|
1635
1263
|
* <p>A list of summary information records for connections. In a paginated request, the request returns up to <code>MaxResults</code> records for each
|
|
@@ -1641,12 +1269,6 @@ export interface ListConnectionsResponse {
|
|
|
1641
1269
|
*/
|
|
1642
1270
|
NextToken?: string;
|
|
1643
1271
|
}
|
|
1644
|
-
export declare namespace ListConnectionsResponse {
|
|
1645
|
-
/**
|
|
1646
|
-
* @internal
|
|
1647
|
-
*/
|
|
1648
|
-
const filterSensitiveLog: (obj: ListConnectionsResponse) => any;
|
|
1649
|
-
}
|
|
1650
1272
|
export interface ListObservabilityConfigurationsRequest {
|
|
1651
1273
|
/**
|
|
1652
1274
|
* <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,
|
|
@@ -1672,12 +1294,6 @@ export interface ListObservabilityConfigurationsRequest {
|
|
|
1672
1294
|
*/
|
|
1673
1295
|
NextToken?: string;
|
|
1674
1296
|
}
|
|
1675
|
-
export declare namespace ListObservabilityConfigurationsRequest {
|
|
1676
|
-
/**
|
|
1677
|
-
* @internal
|
|
1678
|
-
*/
|
|
1679
|
-
const filterSensitiveLog: (obj: ListObservabilityConfigurationsRequest) => any;
|
|
1680
|
-
}
|
|
1681
1297
|
/**
|
|
1682
1298
|
* <p>Provides summary information about an App Runner observability configuration resource.</p>
|
|
1683
1299
|
* <p>This type contains limited information about an observability configuration. It includes only identification information, without configuration
|
|
@@ -1699,12 +1315,6 @@ export interface ObservabilityConfigurationSummary {
|
|
|
1699
1315
|
*/
|
|
1700
1316
|
ObservabilityConfigurationRevision?: number;
|
|
1701
1317
|
}
|
|
1702
|
-
export declare namespace ObservabilityConfigurationSummary {
|
|
1703
|
-
/**
|
|
1704
|
-
* @internal
|
|
1705
|
-
*/
|
|
1706
|
-
const filterSensitiveLog: (obj: ObservabilityConfigurationSummary) => any;
|
|
1707
|
-
}
|
|
1708
1318
|
export interface ListObservabilityConfigurationsResponse {
|
|
1709
1319
|
/**
|
|
1710
1320
|
* <p>A list of summary information records for observability configurations. In a paginated request, the request returns up to <code>MaxResults</code>
|
|
@@ -1716,12 +1326,6 @@ export interface ListObservabilityConfigurationsResponse {
|
|
|
1716
1326
|
*/
|
|
1717
1327
|
NextToken?: string;
|
|
1718
1328
|
}
|
|
1719
|
-
export declare namespace ListObservabilityConfigurationsResponse {
|
|
1720
|
-
/**
|
|
1721
|
-
* @internal
|
|
1722
|
-
*/
|
|
1723
|
-
const filterSensitiveLog: (obj: ListObservabilityConfigurationsResponse) => any;
|
|
1724
|
-
}
|
|
1725
1329
|
export interface ListOperationsRequest {
|
|
1726
1330
|
/**
|
|
1727
1331
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want a list of operations for.</p>
|
|
@@ -1739,12 +1343,6 @@ export interface ListOperationsRequest {
|
|
|
1739
1343
|
*/
|
|
1740
1344
|
MaxResults?: number;
|
|
1741
1345
|
}
|
|
1742
|
-
export declare namespace ListOperationsRequest {
|
|
1743
|
-
/**
|
|
1744
|
-
* @internal
|
|
1745
|
-
*/
|
|
1746
|
-
const filterSensitiveLog: (obj: ListOperationsRequest) => any;
|
|
1747
|
-
}
|
|
1748
1346
|
export declare enum OperationStatus {
|
|
1749
1347
|
FAILED = "FAILED",
|
|
1750
1348
|
IN_PROGRESS = "IN_PROGRESS",
|
|
@@ -1794,12 +1392,6 @@ export interface OperationSummary {
|
|
|
1794
1392
|
*/
|
|
1795
1393
|
UpdatedAt?: Date;
|
|
1796
1394
|
}
|
|
1797
|
-
export declare namespace OperationSummary {
|
|
1798
|
-
/**
|
|
1799
|
-
* @internal
|
|
1800
|
-
*/
|
|
1801
|
-
const filterSensitiveLog: (obj: OperationSummary) => any;
|
|
1802
|
-
}
|
|
1803
1395
|
export interface ListOperationsResponse {
|
|
1804
1396
|
/**
|
|
1805
1397
|
* <p>A list of operation summary information records. In a paginated request, the request returns up to <code>MaxResults</code> records for each
|
|
@@ -1811,12 +1403,6 @@ export interface ListOperationsResponse {
|
|
|
1811
1403
|
*/
|
|
1812
1404
|
NextToken?: string;
|
|
1813
1405
|
}
|
|
1814
|
-
export declare namespace ListOperationsResponse {
|
|
1815
|
-
/**
|
|
1816
|
-
* @internal
|
|
1817
|
-
*/
|
|
1818
|
-
const filterSensitiveLog: (obj: ListOperationsResponse) => any;
|
|
1819
|
-
}
|
|
1820
1406
|
export interface ListServicesRequest {
|
|
1821
1407
|
/**
|
|
1822
1408
|
* <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
|
|
@@ -1830,12 +1416,6 @@ export interface ListServicesRequest {
|
|
|
1830
1416
|
*/
|
|
1831
1417
|
MaxResults?: number;
|
|
1832
1418
|
}
|
|
1833
|
-
export declare namespace ListServicesRequest {
|
|
1834
|
-
/**
|
|
1835
|
-
* @internal
|
|
1836
|
-
*/
|
|
1837
|
-
const filterSensitiveLog: (obj: ListServicesRequest) => any;
|
|
1838
|
-
}
|
|
1839
1419
|
/**
|
|
1840
1420
|
* <p>Provides summary information for an App Runner service.</p>
|
|
1841
1421
|
* <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>
|
|
@@ -1883,12 +1463,6 @@ export interface ServiceSummary {
|
|
|
1883
1463
|
*/
|
|
1884
1464
|
Status?: ServiceStatus | string;
|
|
1885
1465
|
}
|
|
1886
|
-
export declare namespace ServiceSummary {
|
|
1887
|
-
/**
|
|
1888
|
-
* @internal
|
|
1889
|
-
*/
|
|
1890
|
-
const filterSensitiveLog: (obj: ServiceSummary) => any;
|
|
1891
|
-
}
|
|
1892
1466
|
export interface ListServicesResponse {
|
|
1893
1467
|
/**
|
|
1894
1468
|
* <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>
|
|
@@ -1899,12 +1473,6 @@ export interface ListServicesResponse {
|
|
|
1899
1473
|
*/
|
|
1900
1474
|
NextToken?: string;
|
|
1901
1475
|
}
|
|
1902
|
-
export declare namespace ListServicesResponse {
|
|
1903
|
-
/**
|
|
1904
|
-
* @internal
|
|
1905
|
-
*/
|
|
1906
|
-
const filterSensitiveLog: (obj: ListServicesResponse) => any;
|
|
1907
|
-
}
|
|
1908
1476
|
export interface ListTagsForResourceRequest {
|
|
1909
1477
|
/**
|
|
1910
1478
|
* <p>The Amazon Resource Name (ARN) of the resource that a tag list is requested for.</p>
|
|
@@ -1912,24 +1480,12 @@ export interface ListTagsForResourceRequest {
|
|
|
1912
1480
|
*/
|
|
1913
1481
|
ResourceArn: string | undefined;
|
|
1914
1482
|
}
|
|
1915
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1916
|
-
/**
|
|
1917
|
-
* @internal
|
|
1918
|
-
*/
|
|
1919
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1920
|
-
}
|
|
1921
1483
|
export interface ListTagsForResourceResponse {
|
|
1922
1484
|
/**
|
|
1923
1485
|
* <p>A list of the tag key-value pairs that are associated with the resource.</p>
|
|
1924
1486
|
*/
|
|
1925
1487
|
Tags?: Tag[];
|
|
1926
1488
|
}
|
|
1927
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1928
|
-
/**
|
|
1929
|
-
* @internal
|
|
1930
|
-
*/
|
|
1931
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1932
|
-
}
|
|
1933
1489
|
export interface ListVpcConnectorsRequest {
|
|
1934
1490
|
/**
|
|
1935
1491
|
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
@@ -1943,12 +1499,6 @@ export interface ListVpcConnectorsRequest {
|
|
|
1943
1499
|
*/
|
|
1944
1500
|
NextToken?: string;
|
|
1945
1501
|
}
|
|
1946
|
-
export declare namespace ListVpcConnectorsRequest {
|
|
1947
|
-
/**
|
|
1948
|
-
* @internal
|
|
1949
|
-
*/
|
|
1950
|
-
const filterSensitiveLog: (obj: ListVpcConnectorsRequest) => any;
|
|
1951
|
-
}
|
|
1952
1502
|
export interface ListVpcConnectorsResponse {
|
|
1953
1503
|
/**
|
|
1954
1504
|
* <p>A list of information records for VPC connectors. In a paginated request, the request returns up to <code>MaxResults</code> records for each
|
|
@@ -1960,24 +1510,12 @@ export interface ListVpcConnectorsResponse {
|
|
|
1960
1510
|
*/
|
|
1961
1511
|
NextToken?: string;
|
|
1962
1512
|
}
|
|
1963
|
-
export declare namespace ListVpcConnectorsResponse {
|
|
1964
|
-
/**
|
|
1965
|
-
* @internal
|
|
1966
|
-
*/
|
|
1967
|
-
const filterSensitiveLog: (obj: ListVpcConnectorsResponse) => any;
|
|
1968
|
-
}
|
|
1969
1513
|
export interface PauseServiceRequest {
|
|
1970
1514
|
/**
|
|
1971
1515
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to pause.</p>
|
|
1972
1516
|
*/
|
|
1973
1517
|
ServiceArn: string | undefined;
|
|
1974
1518
|
}
|
|
1975
|
-
export declare namespace PauseServiceRequest {
|
|
1976
|
-
/**
|
|
1977
|
-
* @internal
|
|
1978
|
-
*/
|
|
1979
|
-
const filterSensitiveLog: (obj: PauseServiceRequest) => any;
|
|
1980
|
-
}
|
|
1981
1519
|
export interface PauseServiceResponse {
|
|
1982
1520
|
/**
|
|
1983
1521
|
* <p>A description of the App Runner service that this request just paused.</p>
|
|
@@ -1989,24 +1527,12 @@ export interface PauseServiceResponse {
|
|
|
1989
1527
|
*/
|
|
1990
1528
|
OperationId?: string;
|
|
1991
1529
|
}
|
|
1992
|
-
export declare namespace PauseServiceResponse {
|
|
1993
|
-
/**
|
|
1994
|
-
* @internal
|
|
1995
|
-
*/
|
|
1996
|
-
const filterSensitiveLog: (obj: PauseServiceResponse) => any;
|
|
1997
|
-
}
|
|
1998
1530
|
export interface ResumeServiceRequest {
|
|
1999
1531
|
/**
|
|
2000
1532
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to resume.</p>
|
|
2001
1533
|
*/
|
|
2002
1534
|
ServiceArn: string | undefined;
|
|
2003
1535
|
}
|
|
2004
|
-
export declare namespace ResumeServiceRequest {
|
|
2005
|
-
/**
|
|
2006
|
-
* @internal
|
|
2007
|
-
*/
|
|
2008
|
-
const filterSensitiveLog: (obj: ResumeServiceRequest) => any;
|
|
2009
|
-
}
|
|
2010
1536
|
export interface ResumeServiceResponse {
|
|
2011
1537
|
/**
|
|
2012
1538
|
* <p>A description of the App Runner service that this request just resumed.</p>
|
|
@@ -2018,24 +1544,12 @@ export interface ResumeServiceResponse {
|
|
|
2018
1544
|
*/
|
|
2019
1545
|
OperationId?: string;
|
|
2020
1546
|
}
|
|
2021
|
-
export declare namespace ResumeServiceResponse {
|
|
2022
|
-
/**
|
|
2023
|
-
* @internal
|
|
2024
|
-
*/
|
|
2025
|
-
const filterSensitiveLog: (obj: ResumeServiceResponse) => any;
|
|
2026
|
-
}
|
|
2027
1547
|
export interface StartDeploymentRequest {
|
|
2028
1548
|
/**
|
|
2029
1549
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to manually deploy to.</p>
|
|
2030
1550
|
*/
|
|
2031
1551
|
ServiceArn: string | undefined;
|
|
2032
1552
|
}
|
|
2033
|
-
export declare namespace StartDeploymentRequest {
|
|
2034
|
-
/**
|
|
2035
|
-
* @internal
|
|
2036
|
-
*/
|
|
2037
|
-
const filterSensitiveLog: (obj: StartDeploymentRequest) => any;
|
|
2038
|
-
}
|
|
2039
1553
|
export interface StartDeploymentResponse {
|
|
2040
1554
|
/**
|
|
2041
1555
|
* <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
|
|
@@ -2043,12 +1557,6 @@ export interface StartDeploymentResponse {
|
|
|
2043
1557
|
*/
|
|
2044
1558
|
OperationId: string | undefined;
|
|
2045
1559
|
}
|
|
2046
|
-
export declare namespace StartDeploymentResponse {
|
|
2047
|
-
/**
|
|
2048
|
-
* @internal
|
|
2049
|
-
*/
|
|
2050
|
-
const filterSensitiveLog: (obj: StartDeploymentResponse) => any;
|
|
2051
|
-
}
|
|
2052
1560
|
export interface TagResourceRequest {
|
|
2053
1561
|
/**
|
|
2054
1562
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to update tags for.</p>
|
|
@@ -2061,20 +1569,8 @@ export interface TagResourceRequest {
|
|
|
2061
1569
|
*/
|
|
2062
1570
|
Tags: Tag[] | undefined;
|
|
2063
1571
|
}
|
|
2064
|
-
export declare namespace TagResourceRequest {
|
|
2065
|
-
/**
|
|
2066
|
-
* @internal
|
|
2067
|
-
*/
|
|
2068
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2069
|
-
}
|
|
2070
1572
|
export interface TagResourceResponse {
|
|
2071
1573
|
}
|
|
2072
|
-
export declare namespace TagResourceResponse {
|
|
2073
|
-
/**
|
|
2074
|
-
* @internal
|
|
2075
|
-
*/
|
|
2076
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2077
|
-
}
|
|
2078
1574
|
export interface UntagResourceRequest {
|
|
2079
1575
|
/**
|
|
2080
1576
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to remove tags from.</p>
|
|
@@ -2086,20 +1582,8 @@ export interface UntagResourceRequest {
|
|
|
2086
1582
|
*/
|
|
2087
1583
|
TagKeys: string[] | undefined;
|
|
2088
1584
|
}
|
|
2089
|
-
export declare namespace UntagResourceRequest {
|
|
2090
|
-
/**
|
|
2091
|
-
* @internal
|
|
2092
|
-
*/
|
|
2093
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2094
|
-
}
|
|
2095
1585
|
export interface UntagResourceResponse {
|
|
2096
1586
|
}
|
|
2097
|
-
export declare namespace UntagResourceResponse {
|
|
2098
|
-
/**
|
|
2099
|
-
* @internal
|
|
2100
|
-
*/
|
|
2101
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2102
|
-
}
|
|
2103
1587
|
export interface UpdateServiceRequest {
|
|
2104
1588
|
/**
|
|
2105
1589
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to update.</p>
|
|
@@ -2134,12 +1618,6 @@ export interface UpdateServiceRequest {
|
|
|
2134
1618
|
*/
|
|
2135
1619
|
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
2136
1620
|
}
|
|
2137
|
-
export declare namespace UpdateServiceRequest {
|
|
2138
|
-
/**
|
|
2139
|
-
* @internal
|
|
2140
|
-
*/
|
|
2141
|
-
const filterSensitiveLog: (obj: UpdateServiceRequest) => any;
|
|
2142
|
-
}
|
|
2143
1621
|
export interface UpdateServiceResponse {
|
|
2144
1622
|
/**
|
|
2145
1623
|
* <p>A description of the App Runner service updated by this request. All configuration values in the returned <code>Service</code> structure reflect
|
|
@@ -2152,9 +1630,355 @@ export interface UpdateServiceResponse {
|
|
|
2152
1630
|
*/
|
|
2153
1631
|
OperationId: string | undefined;
|
|
2154
1632
|
}
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
1633
|
+
/**
|
|
1634
|
+
* @internal
|
|
1635
|
+
*/
|
|
1636
|
+
export declare const AssociateCustomDomainRequestFilterSensitiveLog: (obj: AssociateCustomDomainRequest) => any;
|
|
1637
|
+
/**
|
|
1638
|
+
* @internal
|
|
1639
|
+
*/
|
|
1640
|
+
export declare const CertificateValidationRecordFilterSensitiveLog: (obj: CertificateValidationRecord) => any;
|
|
1641
|
+
/**
|
|
1642
|
+
* @internal
|
|
1643
|
+
*/
|
|
1644
|
+
export declare const CustomDomainFilterSensitiveLog: (obj: CustomDomain) => any;
|
|
1645
|
+
/**
|
|
1646
|
+
* @internal
|
|
1647
|
+
*/
|
|
1648
|
+
export declare const AssociateCustomDomainResponseFilterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
|
|
1649
|
+
/**
|
|
1650
|
+
* @internal
|
|
1651
|
+
*/
|
|
1652
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1653
|
+
/**
|
|
1654
|
+
* @internal
|
|
1655
|
+
*/
|
|
1656
|
+
export declare const CreateAutoScalingConfigurationRequestFilterSensitiveLog: (obj: CreateAutoScalingConfigurationRequest) => any;
|
|
1657
|
+
/**
|
|
1658
|
+
* @internal
|
|
1659
|
+
*/
|
|
1660
|
+
export declare const AutoScalingConfigurationFilterSensitiveLog: (obj: AutoScalingConfiguration) => any;
|
|
1661
|
+
/**
|
|
1662
|
+
* @internal
|
|
1663
|
+
*/
|
|
1664
|
+
export declare const CreateAutoScalingConfigurationResponseFilterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
|
|
1665
|
+
/**
|
|
1666
|
+
* @internal
|
|
1667
|
+
*/
|
|
1668
|
+
export declare const CreateConnectionRequestFilterSensitiveLog: (obj: CreateConnectionRequest) => any;
|
|
1669
|
+
/**
|
|
1670
|
+
* @internal
|
|
1671
|
+
*/
|
|
1672
|
+
export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
|
|
1673
|
+
/**
|
|
1674
|
+
* @internal
|
|
1675
|
+
*/
|
|
1676
|
+
export declare const CreateConnectionResponseFilterSensitiveLog: (obj: CreateConnectionResponse) => any;
|
|
1677
|
+
/**
|
|
1678
|
+
* @internal
|
|
1679
|
+
*/
|
|
1680
|
+
export declare const TraceConfigurationFilterSensitiveLog: (obj: TraceConfiguration) => any;
|
|
1681
|
+
/**
|
|
1682
|
+
* @internal
|
|
1683
|
+
*/
|
|
1684
|
+
export declare const CreateObservabilityConfigurationRequestFilterSensitiveLog: (obj: CreateObservabilityConfigurationRequest) => any;
|
|
1685
|
+
/**
|
|
1686
|
+
* @internal
|
|
1687
|
+
*/
|
|
1688
|
+
export declare const ObservabilityConfigurationFilterSensitiveLog: (obj: ObservabilityConfiguration) => any;
|
|
1689
|
+
/**
|
|
1690
|
+
* @internal
|
|
1691
|
+
*/
|
|
1692
|
+
export declare const CreateObservabilityConfigurationResponseFilterSensitiveLog: (obj: CreateObservabilityConfigurationResponse) => any;
|
|
1693
|
+
/**
|
|
1694
|
+
* @internal
|
|
1695
|
+
*/
|
|
1696
|
+
export declare const EncryptionConfigurationFilterSensitiveLog: (obj: EncryptionConfiguration) => any;
|
|
1697
|
+
/**
|
|
1698
|
+
* @internal
|
|
1699
|
+
*/
|
|
1700
|
+
export declare const HealthCheckConfigurationFilterSensitiveLog: (obj: HealthCheckConfiguration) => any;
|
|
1701
|
+
/**
|
|
1702
|
+
* @internal
|
|
1703
|
+
*/
|
|
1704
|
+
export declare const InstanceConfigurationFilterSensitiveLog: (obj: InstanceConfiguration) => any;
|
|
1705
|
+
/**
|
|
1706
|
+
* @internal
|
|
1707
|
+
*/
|
|
1708
|
+
export declare const EgressConfigurationFilterSensitiveLog: (obj: EgressConfiguration) => any;
|
|
1709
|
+
/**
|
|
1710
|
+
* @internal
|
|
1711
|
+
*/
|
|
1712
|
+
export declare const NetworkConfigurationFilterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
1713
|
+
/**
|
|
1714
|
+
* @internal
|
|
1715
|
+
*/
|
|
1716
|
+
export declare const ServiceObservabilityConfigurationFilterSensitiveLog: (obj: ServiceObservabilityConfiguration) => any;
|
|
1717
|
+
/**
|
|
1718
|
+
* @internal
|
|
1719
|
+
*/
|
|
1720
|
+
export declare const AuthenticationConfigurationFilterSensitiveLog: (obj: AuthenticationConfiguration) => any;
|
|
1721
|
+
/**
|
|
1722
|
+
* @internal
|
|
1723
|
+
*/
|
|
1724
|
+
export declare const CodeConfigurationValuesFilterSensitiveLog: (obj: CodeConfigurationValues) => any;
|
|
1725
|
+
/**
|
|
1726
|
+
* @internal
|
|
1727
|
+
*/
|
|
1728
|
+
export declare const CodeConfigurationFilterSensitiveLog: (obj: CodeConfiguration) => any;
|
|
1729
|
+
/**
|
|
1730
|
+
* @internal
|
|
1731
|
+
*/
|
|
1732
|
+
export declare const SourceCodeVersionFilterSensitiveLog: (obj: SourceCodeVersion) => any;
|
|
1733
|
+
/**
|
|
1734
|
+
* @internal
|
|
1735
|
+
*/
|
|
1736
|
+
export declare const CodeRepositoryFilterSensitiveLog: (obj: CodeRepository) => any;
|
|
1737
|
+
/**
|
|
1738
|
+
* @internal
|
|
1739
|
+
*/
|
|
1740
|
+
export declare const ImageConfigurationFilterSensitiveLog: (obj: ImageConfiguration) => any;
|
|
1741
|
+
/**
|
|
1742
|
+
* @internal
|
|
1743
|
+
*/
|
|
1744
|
+
export declare const ImageRepositoryFilterSensitiveLog: (obj: ImageRepository) => any;
|
|
1745
|
+
/**
|
|
1746
|
+
* @internal
|
|
1747
|
+
*/
|
|
1748
|
+
export declare const SourceConfigurationFilterSensitiveLog: (obj: SourceConfiguration) => any;
|
|
1749
|
+
/**
|
|
1750
|
+
* @internal
|
|
1751
|
+
*/
|
|
1752
|
+
export declare const CreateServiceRequestFilterSensitiveLog: (obj: CreateServiceRequest) => any;
|
|
1753
|
+
/**
|
|
1754
|
+
* @internal
|
|
1755
|
+
*/
|
|
1756
|
+
export declare const AutoScalingConfigurationSummaryFilterSensitiveLog: (obj: AutoScalingConfigurationSummary) => any;
|
|
1757
|
+
/**
|
|
1758
|
+
* @internal
|
|
1759
|
+
*/
|
|
1760
|
+
export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
|
|
1761
|
+
/**
|
|
1762
|
+
* @internal
|
|
1763
|
+
*/
|
|
1764
|
+
export declare const CreateServiceResponseFilterSensitiveLog: (obj: CreateServiceResponse) => any;
|
|
1765
|
+
/**
|
|
1766
|
+
* @internal
|
|
1767
|
+
*/
|
|
1768
|
+
export declare const CreateVpcConnectorRequestFilterSensitiveLog: (obj: CreateVpcConnectorRequest) => any;
|
|
1769
|
+
/**
|
|
1770
|
+
* @internal
|
|
1771
|
+
*/
|
|
1772
|
+
export declare const VpcConnectorFilterSensitiveLog: (obj: VpcConnector) => any;
|
|
1773
|
+
/**
|
|
1774
|
+
* @internal
|
|
1775
|
+
*/
|
|
1776
|
+
export declare const CreateVpcConnectorResponseFilterSensitiveLog: (obj: CreateVpcConnectorResponse) => any;
|
|
1777
|
+
/**
|
|
1778
|
+
* @internal
|
|
1779
|
+
*/
|
|
1780
|
+
export declare const DeleteAutoScalingConfigurationRequestFilterSensitiveLog: (obj: DeleteAutoScalingConfigurationRequest) => any;
|
|
1781
|
+
/**
|
|
1782
|
+
* @internal
|
|
1783
|
+
*/
|
|
1784
|
+
export declare const DeleteAutoScalingConfigurationResponseFilterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
|
|
1785
|
+
/**
|
|
1786
|
+
* @internal
|
|
1787
|
+
*/
|
|
1788
|
+
export declare const DeleteConnectionRequestFilterSensitiveLog: (obj: DeleteConnectionRequest) => any;
|
|
1789
|
+
/**
|
|
1790
|
+
* @internal
|
|
1791
|
+
*/
|
|
1792
|
+
export declare const DeleteConnectionResponseFilterSensitiveLog: (obj: DeleteConnectionResponse) => any;
|
|
1793
|
+
/**
|
|
1794
|
+
* @internal
|
|
1795
|
+
*/
|
|
1796
|
+
export declare const DeleteObservabilityConfigurationRequestFilterSensitiveLog: (obj: DeleteObservabilityConfigurationRequest) => any;
|
|
1797
|
+
/**
|
|
1798
|
+
* @internal
|
|
1799
|
+
*/
|
|
1800
|
+
export declare const DeleteObservabilityConfigurationResponseFilterSensitiveLog: (obj: DeleteObservabilityConfigurationResponse) => any;
|
|
1801
|
+
/**
|
|
1802
|
+
* @internal
|
|
1803
|
+
*/
|
|
1804
|
+
export declare const DeleteServiceRequestFilterSensitiveLog: (obj: DeleteServiceRequest) => any;
|
|
1805
|
+
/**
|
|
1806
|
+
* @internal
|
|
1807
|
+
*/
|
|
1808
|
+
export declare const DeleteServiceResponseFilterSensitiveLog: (obj: DeleteServiceResponse) => any;
|
|
1809
|
+
/**
|
|
1810
|
+
* @internal
|
|
1811
|
+
*/
|
|
1812
|
+
export declare const DeleteVpcConnectorRequestFilterSensitiveLog: (obj: DeleteVpcConnectorRequest) => any;
|
|
1813
|
+
/**
|
|
1814
|
+
* @internal
|
|
1815
|
+
*/
|
|
1816
|
+
export declare const DeleteVpcConnectorResponseFilterSensitiveLog: (obj: DeleteVpcConnectorResponse) => any;
|
|
1817
|
+
/**
|
|
1818
|
+
* @internal
|
|
1819
|
+
*/
|
|
1820
|
+
export declare const DescribeAutoScalingConfigurationRequestFilterSensitiveLog: (obj: DescribeAutoScalingConfigurationRequest) => any;
|
|
1821
|
+
/**
|
|
1822
|
+
* @internal
|
|
1823
|
+
*/
|
|
1824
|
+
export declare const DescribeAutoScalingConfigurationResponseFilterSensitiveLog: (obj: DescribeAutoScalingConfigurationResponse) => any;
|
|
1825
|
+
/**
|
|
1826
|
+
* @internal
|
|
1827
|
+
*/
|
|
1828
|
+
export declare const DescribeCustomDomainsRequestFilterSensitiveLog: (obj: DescribeCustomDomainsRequest) => any;
|
|
1829
|
+
/**
|
|
1830
|
+
* @internal
|
|
1831
|
+
*/
|
|
1832
|
+
export declare const DescribeCustomDomainsResponseFilterSensitiveLog: (obj: DescribeCustomDomainsResponse) => any;
|
|
1833
|
+
/**
|
|
1834
|
+
* @internal
|
|
1835
|
+
*/
|
|
1836
|
+
export declare const DescribeObservabilityConfigurationRequestFilterSensitiveLog: (obj: DescribeObservabilityConfigurationRequest) => any;
|
|
1837
|
+
/**
|
|
1838
|
+
* @internal
|
|
1839
|
+
*/
|
|
1840
|
+
export declare const DescribeObservabilityConfigurationResponseFilterSensitiveLog: (obj: DescribeObservabilityConfigurationResponse) => any;
|
|
1841
|
+
/**
|
|
1842
|
+
* @internal
|
|
1843
|
+
*/
|
|
1844
|
+
export declare const DescribeServiceRequestFilterSensitiveLog: (obj: DescribeServiceRequest) => any;
|
|
1845
|
+
/**
|
|
1846
|
+
* @internal
|
|
1847
|
+
*/
|
|
1848
|
+
export declare const DescribeServiceResponseFilterSensitiveLog: (obj: DescribeServiceResponse) => any;
|
|
1849
|
+
/**
|
|
1850
|
+
* @internal
|
|
1851
|
+
*/
|
|
1852
|
+
export declare const DescribeVpcConnectorRequestFilterSensitiveLog: (obj: DescribeVpcConnectorRequest) => any;
|
|
1853
|
+
/**
|
|
1854
|
+
* @internal
|
|
1855
|
+
*/
|
|
1856
|
+
export declare const DescribeVpcConnectorResponseFilterSensitiveLog: (obj: DescribeVpcConnectorResponse) => any;
|
|
1857
|
+
/**
|
|
1858
|
+
* @internal
|
|
1859
|
+
*/
|
|
1860
|
+
export declare const DisassociateCustomDomainRequestFilterSensitiveLog: (obj: DisassociateCustomDomainRequest) => any;
|
|
1861
|
+
/**
|
|
1862
|
+
* @internal
|
|
1863
|
+
*/
|
|
1864
|
+
export declare const DisassociateCustomDomainResponseFilterSensitiveLog: (obj: DisassociateCustomDomainResponse) => any;
|
|
1865
|
+
/**
|
|
1866
|
+
* @internal
|
|
1867
|
+
*/
|
|
1868
|
+
export declare const ListAutoScalingConfigurationsRequestFilterSensitiveLog: (obj: ListAutoScalingConfigurationsRequest) => any;
|
|
1869
|
+
/**
|
|
1870
|
+
* @internal
|
|
1871
|
+
*/
|
|
1872
|
+
export declare const ListAutoScalingConfigurationsResponseFilterSensitiveLog: (obj: ListAutoScalingConfigurationsResponse) => any;
|
|
1873
|
+
/**
|
|
1874
|
+
* @internal
|
|
1875
|
+
*/
|
|
1876
|
+
export declare const ListConnectionsRequestFilterSensitiveLog: (obj: ListConnectionsRequest) => any;
|
|
1877
|
+
/**
|
|
1878
|
+
* @internal
|
|
1879
|
+
*/
|
|
1880
|
+
export declare const ConnectionSummaryFilterSensitiveLog: (obj: ConnectionSummary) => any;
|
|
1881
|
+
/**
|
|
1882
|
+
* @internal
|
|
1883
|
+
*/
|
|
1884
|
+
export declare const ListConnectionsResponseFilterSensitiveLog: (obj: ListConnectionsResponse) => any;
|
|
1885
|
+
/**
|
|
1886
|
+
* @internal
|
|
1887
|
+
*/
|
|
1888
|
+
export declare const ListObservabilityConfigurationsRequestFilterSensitiveLog: (obj: ListObservabilityConfigurationsRequest) => any;
|
|
1889
|
+
/**
|
|
1890
|
+
* @internal
|
|
1891
|
+
*/
|
|
1892
|
+
export declare const ObservabilityConfigurationSummaryFilterSensitiveLog: (obj: ObservabilityConfigurationSummary) => any;
|
|
1893
|
+
/**
|
|
1894
|
+
* @internal
|
|
1895
|
+
*/
|
|
1896
|
+
export declare const ListObservabilityConfigurationsResponseFilterSensitiveLog: (obj: ListObservabilityConfigurationsResponse) => any;
|
|
1897
|
+
/**
|
|
1898
|
+
* @internal
|
|
1899
|
+
*/
|
|
1900
|
+
export declare const ListOperationsRequestFilterSensitiveLog: (obj: ListOperationsRequest) => any;
|
|
1901
|
+
/**
|
|
1902
|
+
* @internal
|
|
1903
|
+
*/
|
|
1904
|
+
export declare const OperationSummaryFilterSensitiveLog: (obj: OperationSummary) => any;
|
|
1905
|
+
/**
|
|
1906
|
+
* @internal
|
|
1907
|
+
*/
|
|
1908
|
+
export declare const ListOperationsResponseFilterSensitiveLog: (obj: ListOperationsResponse) => any;
|
|
1909
|
+
/**
|
|
1910
|
+
* @internal
|
|
1911
|
+
*/
|
|
1912
|
+
export declare const ListServicesRequestFilterSensitiveLog: (obj: ListServicesRequest) => any;
|
|
1913
|
+
/**
|
|
1914
|
+
* @internal
|
|
1915
|
+
*/
|
|
1916
|
+
export declare const ServiceSummaryFilterSensitiveLog: (obj: ServiceSummary) => any;
|
|
1917
|
+
/**
|
|
1918
|
+
* @internal
|
|
1919
|
+
*/
|
|
1920
|
+
export declare const ListServicesResponseFilterSensitiveLog: (obj: ListServicesResponse) => any;
|
|
1921
|
+
/**
|
|
1922
|
+
* @internal
|
|
1923
|
+
*/
|
|
1924
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1925
|
+
/**
|
|
1926
|
+
* @internal
|
|
1927
|
+
*/
|
|
1928
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1929
|
+
/**
|
|
1930
|
+
* @internal
|
|
1931
|
+
*/
|
|
1932
|
+
export declare const ListVpcConnectorsRequestFilterSensitiveLog: (obj: ListVpcConnectorsRequest) => any;
|
|
1933
|
+
/**
|
|
1934
|
+
* @internal
|
|
1935
|
+
*/
|
|
1936
|
+
export declare const ListVpcConnectorsResponseFilterSensitiveLog: (obj: ListVpcConnectorsResponse) => any;
|
|
1937
|
+
/**
|
|
1938
|
+
* @internal
|
|
1939
|
+
*/
|
|
1940
|
+
export declare const PauseServiceRequestFilterSensitiveLog: (obj: PauseServiceRequest) => any;
|
|
1941
|
+
/**
|
|
1942
|
+
* @internal
|
|
1943
|
+
*/
|
|
1944
|
+
export declare const PauseServiceResponseFilterSensitiveLog: (obj: PauseServiceResponse) => any;
|
|
1945
|
+
/**
|
|
1946
|
+
* @internal
|
|
1947
|
+
*/
|
|
1948
|
+
export declare const ResumeServiceRequestFilterSensitiveLog: (obj: ResumeServiceRequest) => any;
|
|
1949
|
+
/**
|
|
1950
|
+
* @internal
|
|
1951
|
+
*/
|
|
1952
|
+
export declare const ResumeServiceResponseFilterSensitiveLog: (obj: ResumeServiceResponse) => any;
|
|
1953
|
+
/**
|
|
1954
|
+
* @internal
|
|
1955
|
+
*/
|
|
1956
|
+
export declare const StartDeploymentRequestFilterSensitiveLog: (obj: StartDeploymentRequest) => any;
|
|
1957
|
+
/**
|
|
1958
|
+
* @internal
|
|
1959
|
+
*/
|
|
1960
|
+
export declare const StartDeploymentResponseFilterSensitiveLog: (obj: StartDeploymentResponse) => any;
|
|
1961
|
+
/**
|
|
1962
|
+
* @internal
|
|
1963
|
+
*/
|
|
1964
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1965
|
+
/**
|
|
1966
|
+
* @internal
|
|
1967
|
+
*/
|
|
1968
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1969
|
+
/**
|
|
1970
|
+
* @internal
|
|
1971
|
+
*/
|
|
1972
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1973
|
+
/**
|
|
1974
|
+
* @internal
|
|
1975
|
+
*/
|
|
1976
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1977
|
+
/**
|
|
1978
|
+
* @internal
|
|
1979
|
+
*/
|
|
1980
|
+
export declare const UpdateServiceRequestFilterSensitiveLog: (obj: UpdateServiceRequest) => any;
|
|
1981
|
+
/**
|
|
1982
|
+
* @internal
|
|
1983
|
+
*/
|
|
1984
|
+
export declare const UpdateServiceResponseFilterSensitiveLog: (obj: UpdateServiceResponse) => any;
|