@aws-sdk/client-apprunner 3.168.0 → 3.170.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/AppRunner.d.ts +550 -155
  3. package/dist-types/ts3.4/AppRunnerClient.d.ts +309 -103
  4. package/dist-types/ts3.4/commands/AssociateCustomDomainCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateObservabilityConfigurationCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteObservabilityConfigurationCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DescribeObservabilityConfigurationCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/ListObservabilityConfigurationsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/index.d.ts +30 -30
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  36. package/dist-types/ts3.4/index.d.ts +6 -6
  37. package/dist-types/ts3.4/models/AppRunnerServiceException.d.ts +8 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +1084 -992
  40. package/dist-types/ts3.4/pagination/DescribeCustomDomainsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListAutoScalingConfigurationsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListObservabilityConfigurationsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/ListVpcConnectorsPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  49. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +365 -92
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  54. package/package.json +34 -34
@@ -1,992 +1,1084 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
3
- export interface AssociateCustomDomainRequest {
4
-
5
- ServiceArn: string | undefined;
6
-
7
- DomainName: string | undefined;
8
-
9
- EnableWWWSubdomain?: boolean;
10
- }
11
- export declare enum CertificateValidationRecordStatus {
12
- FAILED = "FAILED",
13
- PENDING_VALIDATION = "PENDING_VALIDATION",
14
- SUCCESS = "SUCCESS"
15
- }
16
-
17
- export interface CertificateValidationRecord {
18
-
19
- Name?: string;
20
-
21
- Type?: string;
22
-
23
- Value?: string;
24
-
25
- Status?: CertificateValidationRecordStatus | string;
26
- }
27
- export declare enum CustomDomainAssociationStatus {
28
- ACTIVE = "ACTIVE",
29
- BINDING_CERTIFICATE = "BINDING_CERTIFICATE",
30
- CREATE_FAILED = "CREATE_FAILED",
31
- CREATING = "CREATING",
32
- DELETE_FAILED = "DELETE_FAILED",
33
- DELETING = "DELETING",
34
- PENDING_CERTIFICATE_DNS_VALIDATION = "PENDING_CERTIFICATE_DNS_VALIDATION"
35
- }
36
-
37
- export interface CustomDomain {
38
-
39
- DomainName: string | undefined;
40
-
41
- EnableWWWSubdomain: boolean | undefined;
42
-
43
- CertificateValidationRecords?: CertificateValidationRecord[];
44
-
45
- Status: CustomDomainAssociationStatus | string | undefined;
46
- }
47
- export interface AssociateCustomDomainResponse {
48
-
49
- DNSTarget: string | undefined;
50
-
51
- ServiceArn: string | undefined;
52
-
53
- CustomDomain: CustomDomain | undefined;
54
- }
55
-
56
- export declare class InternalServiceErrorException extends __BaseException {
57
- readonly name: "InternalServiceErrorException";
58
- readonly $fault: "server";
59
- Message?: string;
60
-
61
- constructor(opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>);
62
- }
63
-
64
- export declare class InvalidRequestException extends __BaseException {
65
- readonly name: "InvalidRequestException";
66
- readonly $fault: "client";
67
- Message?: string;
68
-
69
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
70
- }
71
-
72
- export declare class InvalidStateException extends __BaseException {
73
- readonly name: "InvalidStateException";
74
- readonly $fault: "client";
75
- Message?: string;
76
-
77
- constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
78
- }
79
-
80
- export interface Tag {
81
-
82
- Key?: string;
83
-
84
- Value?: string;
85
- }
86
- export interface CreateAutoScalingConfigurationRequest {
87
-
88
- AutoScalingConfigurationName: string | undefined;
89
-
90
- MaxConcurrency?: number;
91
-
92
- MinSize?: number;
93
-
94
- MaxSize?: number;
95
-
96
- Tags?: Tag[];
97
- }
98
- export declare enum AutoScalingConfigurationStatus {
99
- ACTIVE = "ACTIVE",
100
- INACTIVE = "INACTIVE"
101
- }
102
-
103
- export interface AutoScalingConfiguration {
104
-
105
- AutoScalingConfigurationArn?: string;
106
-
107
- AutoScalingConfigurationName?: string;
108
-
109
- AutoScalingConfigurationRevision?: number;
110
-
111
- Latest?: boolean;
112
-
113
- Status?: AutoScalingConfigurationStatus | string;
114
-
115
- MaxConcurrency?: number;
116
-
117
- MinSize?: number;
118
-
119
- MaxSize?: number;
120
-
121
- CreatedAt?: Date;
122
-
123
- DeletedAt?: Date;
124
- }
125
- export interface CreateAutoScalingConfigurationResponse {
126
-
127
- AutoScalingConfiguration: AutoScalingConfiguration | undefined;
128
- }
129
-
130
- export declare class ServiceQuotaExceededException extends __BaseException {
131
- readonly name: "ServiceQuotaExceededException";
132
- readonly $fault: "client";
133
- Message?: string;
134
-
135
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
136
- }
137
- export declare enum ProviderType {
138
- GITHUB = "GITHUB"
139
- }
140
- export interface CreateConnectionRequest {
141
-
142
- ConnectionName: string | undefined;
143
-
144
- ProviderType: ProviderType | string | undefined;
145
-
146
- Tags?: Tag[];
147
- }
148
- export declare enum ConnectionStatus {
149
- AVAILABLE = "AVAILABLE",
150
- DELETED = "DELETED",
151
- ERROR = "ERROR",
152
- PENDING_HANDSHAKE = "PENDING_HANDSHAKE"
153
- }
154
-
155
- export interface Connection {
156
-
157
- ConnectionName?: string;
158
-
159
- ConnectionArn?: string;
160
-
161
- ProviderType?: ProviderType | string;
162
-
163
- Status?: ConnectionStatus | string;
164
-
165
- CreatedAt?: Date;
166
- }
167
- export interface CreateConnectionResponse {
168
-
169
- Connection: Connection | undefined;
170
- }
171
- export declare enum TracingVendor {
172
- AWSXRAY = "AWSXRAY"
173
- }
174
-
175
- export interface TraceConfiguration {
176
-
177
- Vendor: TracingVendor | string | undefined;
178
- }
179
- export interface CreateObservabilityConfigurationRequest {
180
-
181
- ObservabilityConfigurationName: string | undefined;
182
-
183
- TraceConfiguration?: TraceConfiguration;
184
-
185
- Tags?: Tag[];
186
- }
187
- export declare enum ObservabilityConfigurationStatus {
188
- ACTIVE = "ACTIVE",
189
- INACTIVE = "INACTIVE"
190
- }
191
-
192
- export interface ObservabilityConfiguration {
193
-
194
- ObservabilityConfigurationArn?: string;
195
-
196
- ObservabilityConfigurationName?: string;
197
-
198
- TraceConfiguration?: TraceConfiguration;
199
-
200
- ObservabilityConfigurationRevision?: number;
201
-
202
- Latest?: boolean;
203
-
204
- Status?: ObservabilityConfigurationStatus | string;
205
-
206
- CreatedAt?: Date;
207
-
208
- DeletedAt?: Date;
209
- }
210
- export interface CreateObservabilityConfigurationResponse {
211
-
212
- ObservabilityConfiguration: ObservabilityConfiguration | undefined;
213
- }
214
-
215
- export interface EncryptionConfiguration {
216
-
217
- KmsKey: string | undefined;
218
- }
219
- export declare enum HealthCheckProtocol {
220
- HTTP = "HTTP",
221
- TCP = "TCP"
222
- }
223
-
224
- export interface HealthCheckConfiguration {
225
-
226
- Protocol?: HealthCheckProtocol | string;
227
-
228
- Path?: string;
229
-
230
- Interval?: number;
231
-
232
- Timeout?: number;
233
-
234
- HealthyThreshold?: number;
235
-
236
- UnhealthyThreshold?: number;
237
- }
238
-
239
- export interface InstanceConfiguration {
240
-
241
- Cpu?: string;
242
-
243
- Memory?: string;
244
-
245
- InstanceRoleArn?: string;
246
- }
247
- export declare enum EgressType {
248
- DEFAULT = "DEFAULT",
249
- VPC = "VPC"
250
- }
251
-
252
- export interface EgressConfiguration {
253
-
254
- EgressType?: EgressType | string;
255
-
256
- VpcConnectorArn?: string;
257
- }
258
-
259
- export interface NetworkConfiguration {
260
-
261
- EgressConfiguration?: EgressConfiguration;
262
- }
263
-
264
- export interface ServiceObservabilityConfiguration {
265
-
266
- ObservabilityEnabled: boolean | undefined;
267
-
268
- ObservabilityConfigurationArn?: string;
269
- }
270
-
271
- export interface AuthenticationConfiguration {
272
-
273
- ConnectionArn?: string;
274
-
275
- AccessRoleArn?: string;
276
- }
277
- export declare enum Runtime {
278
- CORRETTO_11 = "CORRETTO_11",
279
- CORRETTO_8 = "CORRETTO_8",
280
- NODEJS_12 = "NODEJS_12",
281
- NODEJS_14 = "NODEJS_14",
282
- PYTHON_3 = "PYTHON_3"
283
- }
284
-
285
- export interface CodeConfigurationValues {
286
-
287
- Runtime: Runtime | string | undefined;
288
-
289
- BuildCommand?: string;
290
-
291
- StartCommand?: string;
292
-
293
- Port?: string;
294
-
295
- RuntimeEnvironmentVariables?: Record<string, string>;
296
- }
297
- export declare enum ConfigurationSource {
298
- API = "API",
299
- REPOSITORY = "REPOSITORY"
300
- }
301
-
302
- export interface CodeConfiguration {
303
-
304
- ConfigurationSource: ConfigurationSource | string | undefined;
305
-
306
- CodeConfigurationValues?: CodeConfigurationValues;
307
- }
308
- export declare enum SourceCodeVersionType {
309
- BRANCH = "BRANCH"
310
- }
311
-
312
- export interface SourceCodeVersion {
313
-
314
- Type: SourceCodeVersionType | string | undefined;
315
-
316
- Value: string | undefined;
317
- }
318
-
319
- export interface CodeRepository {
320
-
321
- RepositoryUrl: string | undefined;
322
-
323
- SourceCodeVersion: SourceCodeVersion | undefined;
324
-
325
- CodeConfiguration?: CodeConfiguration;
326
- }
327
-
328
- export interface ImageConfiguration {
329
-
330
- RuntimeEnvironmentVariables?: Record<string, string>;
331
-
332
- StartCommand?: string;
333
-
334
- Port?: string;
335
- }
336
- export declare enum ImageRepositoryType {
337
- ECR = "ECR",
338
- ECR_PUBLIC = "ECR_PUBLIC"
339
- }
340
-
341
- export interface ImageRepository {
342
-
343
- ImageIdentifier: string | undefined;
344
-
345
- ImageConfiguration?: ImageConfiguration;
346
-
347
- ImageRepositoryType: ImageRepositoryType | string | undefined;
348
- }
349
-
350
- export interface SourceConfiguration {
351
-
352
- CodeRepository?: CodeRepository;
353
-
354
- ImageRepository?: ImageRepository;
355
-
356
- AutoDeploymentsEnabled?: boolean;
357
-
358
- AuthenticationConfiguration?: AuthenticationConfiguration;
359
- }
360
- export interface CreateServiceRequest {
361
-
362
- ServiceName: string | undefined;
363
-
364
- SourceConfiguration: SourceConfiguration | undefined;
365
-
366
- InstanceConfiguration?: InstanceConfiguration;
367
-
368
- Tags?: Tag[];
369
-
370
- EncryptionConfiguration?: EncryptionConfiguration;
371
-
372
- HealthCheckConfiguration?: HealthCheckConfiguration;
373
-
374
- AutoScalingConfigurationArn?: string;
375
-
376
- NetworkConfiguration?: NetworkConfiguration;
377
-
378
- ObservabilityConfiguration?: ServiceObservabilityConfiguration;
379
- }
380
-
381
- export interface AutoScalingConfigurationSummary {
382
-
383
- AutoScalingConfigurationArn?: string;
384
-
385
- AutoScalingConfigurationName?: string;
386
-
387
- AutoScalingConfigurationRevision?: number;
388
- }
389
- export declare enum ServiceStatus {
390
- CREATE_FAILED = "CREATE_FAILED",
391
- DELETED = "DELETED",
392
- DELETE_FAILED = "DELETE_FAILED",
393
- OPERATION_IN_PROGRESS = "OPERATION_IN_PROGRESS",
394
- PAUSED = "PAUSED",
395
- RUNNING = "RUNNING"
396
- }
397
-
398
- export interface Service {
399
-
400
- ServiceName: string | undefined;
401
-
402
- ServiceId: string | undefined;
403
-
404
- ServiceArn: string | undefined;
405
-
406
- ServiceUrl: string | undefined;
407
-
408
- CreatedAt: Date | undefined;
409
-
410
- UpdatedAt: Date | undefined;
411
-
412
- DeletedAt?: Date;
413
-
414
- Status: ServiceStatus | string | undefined;
415
-
416
- SourceConfiguration: SourceConfiguration | undefined;
417
-
418
- InstanceConfiguration: InstanceConfiguration | undefined;
419
-
420
- EncryptionConfiguration?: EncryptionConfiguration;
421
-
422
- HealthCheckConfiguration?: HealthCheckConfiguration;
423
-
424
- AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
425
-
426
- NetworkConfiguration: NetworkConfiguration | undefined;
427
-
428
- ObservabilityConfiguration?: ServiceObservabilityConfiguration;
429
- }
430
- export interface CreateServiceResponse {
431
-
432
- Service: Service | undefined;
433
-
434
- OperationId: string | undefined;
435
- }
436
- export interface CreateVpcConnectorRequest {
437
-
438
- VpcConnectorName: string | undefined;
439
-
440
- Subnets: string[] | undefined;
441
-
442
- SecurityGroups?: string[];
443
-
444
- Tags?: Tag[];
445
- }
446
- export declare enum VpcConnectorStatus {
447
- ACTIVE = "ACTIVE",
448
- INACTIVE = "INACTIVE"
449
- }
450
-
451
- export interface VpcConnector {
452
-
453
- VpcConnectorName?: string;
454
-
455
- VpcConnectorArn?: string;
456
-
457
- VpcConnectorRevision?: number;
458
-
459
- Subnets?: string[];
460
-
461
- SecurityGroups?: string[];
462
-
463
- Status?: VpcConnectorStatus | string;
464
-
465
- CreatedAt?: Date;
466
-
467
- DeletedAt?: Date;
468
- }
469
- export interface CreateVpcConnectorResponse {
470
-
471
- VpcConnector: VpcConnector | undefined;
472
- }
473
- export interface DeleteAutoScalingConfigurationRequest {
474
-
475
- AutoScalingConfigurationArn: string | undefined;
476
- }
477
- export interface DeleteAutoScalingConfigurationResponse {
478
-
479
- AutoScalingConfiguration: AutoScalingConfiguration | undefined;
480
- }
481
-
482
- export declare class ResourceNotFoundException extends __BaseException {
483
- readonly name: "ResourceNotFoundException";
484
- readonly $fault: "client";
485
- Message?: string;
486
-
487
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
488
- }
489
- export interface DeleteConnectionRequest {
490
-
491
- ConnectionArn: string | undefined;
492
- }
493
- export interface DeleteConnectionResponse {
494
-
495
- Connection?: Connection;
496
- }
497
- export interface DeleteObservabilityConfigurationRequest {
498
-
499
- ObservabilityConfigurationArn: string | undefined;
500
- }
501
- export interface DeleteObservabilityConfigurationResponse {
502
-
503
- ObservabilityConfiguration: ObservabilityConfiguration | undefined;
504
- }
505
- export interface DeleteServiceRequest {
506
-
507
- ServiceArn: string | undefined;
508
- }
509
- export interface DeleteServiceResponse {
510
-
511
- Service: Service | undefined;
512
-
513
- OperationId: string | undefined;
514
- }
515
- export interface DeleteVpcConnectorRequest {
516
-
517
- VpcConnectorArn: string | undefined;
518
- }
519
- export interface DeleteVpcConnectorResponse {
520
-
521
- VpcConnector: VpcConnector | undefined;
522
- }
523
- export interface DescribeAutoScalingConfigurationRequest {
524
-
525
- AutoScalingConfigurationArn: string | undefined;
526
- }
527
- export interface DescribeAutoScalingConfigurationResponse {
528
-
529
- AutoScalingConfiguration: AutoScalingConfiguration | undefined;
530
- }
531
- export interface DescribeCustomDomainsRequest {
532
-
533
- ServiceArn: string | undefined;
534
-
535
- NextToken?: string;
536
-
537
- MaxResults?: number;
538
- }
539
- export interface DescribeCustomDomainsResponse {
540
-
541
- DNSTarget: string | undefined;
542
-
543
- ServiceArn: string | undefined;
544
-
545
- CustomDomains: CustomDomain[] | undefined;
546
-
547
- NextToken?: string;
548
- }
549
- export interface DescribeObservabilityConfigurationRequest {
550
-
551
- ObservabilityConfigurationArn: string | undefined;
552
- }
553
- export interface DescribeObservabilityConfigurationResponse {
554
-
555
- ObservabilityConfiguration: ObservabilityConfiguration | undefined;
556
- }
557
- export interface DescribeServiceRequest {
558
-
559
- ServiceArn: string | undefined;
560
- }
561
- export interface DescribeServiceResponse {
562
-
563
- Service: Service | undefined;
564
- }
565
- export interface DescribeVpcConnectorRequest {
566
-
567
- VpcConnectorArn: string | undefined;
568
- }
569
- export interface DescribeVpcConnectorResponse {
570
-
571
- VpcConnector: VpcConnector | undefined;
572
- }
573
- export interface DisassociateCustomDomainRequest {
574
-
575
- ServiceArn: string | undefined;
576
-
577
- DomainName: string | undefined;
578
- }
579
- export interface DisassociateCustomDomainResponse {
580
-
581
- DNSTarget: string | undefined;
582
-
583
- ServiceArn: string | undefined;
584
-
585
- CustomDomain: CustomDomain | undefined;
586
- }
587
- export interface ListAutoScalingConfigurationsRequest {
588
-
589
- AutoScalingConfigurationName?: string;
590
-
591
- LatestOnly?: boolean;
592
-
593
- MaxResults?: number;
594
-
595
- NextToken?: string;
596
- }
597
- export interface ListAutoScalingConfigurationsResponse {
598
-
599
- AutoScalingConfigurationSummaryList: AutoScalingConfigurationSummary[] | undefined;
600
-
601
- NextToken?: string;
602
- }
603
- export interface ListConnectionsRequest {
604
-
605
- ConnectionName?: string;
606
-
607
- MaxResults?: number;
608
-
609
- NextToken?: string;
610
- }
611
-
612
- export interface ConnectionSummary {
613
-
614
- ConnectionName?: string;
615
-
616
- ConnectionArn?: string;
617
-
618
- ProviderType?: ProviderType | string;
619
-
620
- Status?: ConnectionStatus | string;
621
-
622
- CreatedAt?: Date;
623
- }
624
- export interface ListConnectionsResponse {
625
-
626
- ConnectionSummaryList: ConnectionSummary[] | undefined;
627
-
628
- NextToken?: string;
629
- }
630
- export interface ListObservabilityConfigurationsRequest {
631
-
632
- ObservabilityConfigurationName?: string;
633
-
634
- LatestOnly?: boolean;
635
-
636
- MaxResults?: number;
637
-
638
- NextToken?: string;
639
- }
640
-
641
- export interface ObservabilityConfigurationSummary {
642
-
643
- ObservabilityConfigurationArn?: string;
644
-
645
- ObservabilityConfigurationName?: string;
646
-
647
- ObservabilityConfigurationRevision?: number;
648
- }
649
- export interface ListObservabilityConfigurationsResponse {
650
-
651
- ObservabilityConfigurationSummaryList: ObservabilityConfigurationSummary[] | undefined;
652
-
653
- NextToken?: string;
654
- }
655
- export interface ListOperationsRequest {
656
-
657
- ServiceArn: string | undefined;
658
-
659
- NextToken?: string;
660
-
661
- MaxResults?: number;
662
- }
663
- export declare enum OperationStatus {
664
- FAILED = "FAILED",
665
- IN_PROGRESS = "IN_PROGRESS",
666
- PENDING = "PENDING",
667
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
668
- ROLLBACK_IN_PROGRESS = "ROLLBACK_IN_PROGRESS",
669
- ROLLBACK_SUCCEEDED = "ROLLBACK_SUCCEEDED",
670
- SUCCEEDED = "SUCCEEDED"
671
- }
672
- export declare enum OperationType {
673
- CREATE_SERVICE = "CREATE_SERVICE",
674
- DELETE_SERVICE = "DELETE_SERVICE",
675
- PAUSE_SERVICE = "PAUSE_SERVICE",
676
- RESUME_SERVICE = "RESUME_SERVICE",
677
- START_DEPLOYMENT = "START_DEPLOYMENT"
678
- }
679
-
680
- export interface OperationSummary {
681
-
682
- Id?: string;
683
-
684
- Type?: OperationType | string;
685
-
686
- Status?: OperationStatus | string;
687
-
688
- TargetArn?: string;
689
-
690
- StartedAt?: Date;
691
-
692
- EndedAt?: Date;
693
-
694
- UpdatedAt?: Date;
695
- }
696
- export interface ListOperationsResponse {
697
-
698
- OperationSummaryList?: OperationSummary[];
699
-
700
- NextToken?: string;
701
- }
702
- export interface ListServicesRequest {
703
-
704
- NextToken?: string;
705
-
706
- MaxResults?: number;
707
- }
708
-
709
- export interface ServiceSummary {
710
-
711
- ServiceName?: string;
712
-
713
- ServiceId?: string;
714
-
715
- ServiceArn?: string;
716
-
717
- ServiceUrl?: string;
718
-
719
- CreatedAt?: Date;
720
-
721
- UpdatedAt?: Date;
722
-
723
- Status?: ServiceStatus | string;
724
- }
725
- export interface ListServicesResponse {
726
-
727
- ServiceSummaryList: ServiceSummary[] | undefined;
728
-
729
- NextToken?: string;
730
- }
731
- export interface ListTagsForResourceRequest {
732
-
733
- ResourceArn: string | undefined;
734
- }
735
- export interface ListTagsForResourceResponse {
736
-
737
- Tags?: Tag[];
738
- }
739
- export interface ListVpcConnectorsRequest {
740
-
741
- MaxResults?: number;
742
-
743
- NextToken?: string;
744
- }
745
- export interface ListVpcConnectorsResponse {
746
-
747
- VpcConnectors: VpcConnector[] | undefined;
748
-
749
- NextToken?: string;
750
- }
751
- export interface PauseServiceRequest {
752
-
753
- ServiceArn: string | undefined;
754
- }
755
- export interface PauseServiceResponse {
756
-
757
- Service: Service | undefined;
758
-
759
- OperationId?: string;
760
- }
761
- export interface ResumeServiceRequest {
762
-
763
- ServiceArn: string | undefined;
764
- }
765
- export interface ResumeServiceResponse {
766
-
767
- Service: Service | undefined;
768
-
769
- OperationId?: string;
770
- }
771
- export interface StartDeploymentRequest {
772
-
773
- ServiceArn: string | undefined;
774
- }
775
- export interface StartDeploymentResponse {
776
-
777
- OperationId: string | undefined;
778
- }
779
- export interface TagResourceRequest {
780
-
781
- ResourceArn: string | undefined;
782
-
783
- Tags: Tag[] | undefined;
784
- }
785
- export interface TagResourceResponse {
786
- }
787
- export interface UntagResourceRequest {
788
-
789
- ResourceArn: string | undefined;
790
-
791
- TagKeys: string[] | undefined;
792
- }
793
- export interface UntagResourceResponse {
794
- }
795
- export interface UpdateServiceRequest {
796
-
797
- ServiceArn: string | undefined;
798
-
799
- SourceConfiguration?: SourceConfiguration;
800
-
801
- InstanceConfiguration?: InstanceConfiguration;
802
-
803
- AutoScalingConfigurationArn?: string;
804
-
805
- HealthCheckConfiguration?: HealthCheckConfiguration;
806
-
807
- NetworkConfiguration?: NetworkConfiguration;
808
-
809
- ObservabilityConfiguration?: ServiceObservabilityConfiguration;
810
- }
811
- export interface UpdateServiceResponse {
812
-
813
- Service: Service | undefined;
814
-
815
- OperationId: string | undefined;
816
- }
817
-
818
- export declare const AssociateCustomDomainRequestFilterSensitiveLog: (obj: AssociateCustomDomainRequest) => any;
819
-
820
- export declare const CertificateValidationRecordFilterSensitiveLog: (obj: CertificateValidationRecord) => any;
821
-
822
- export declare const CustomDomainFilterSensitiveLog: (obj: CustomDomain) => any;
823
-
824
- export declare const AssociateCustomDomainResponseFilterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
825
-
826
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
827
-
828
- export declare const CreateAutoScalingConfigurationRequestFilterSensitiveLog: (obj: CreateAutoScalingConfigurationRequest) => any;
829
-
830
- export declare const AutoScalingConfigurationFilterSensitiveLog: (obj: AutoScalingConfiguration) => any;
831
-
832
- export declare const CreateAutoScalingConfigurationResponseFilterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
833
-
834
- export declare const CreateConnectionRequestFilterSensitiveLog: (obj: CreateConnectionRequest) => any;
835
-
836
- export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
837
-
838
- export declare const CreateConnectionResponseFilterSensitiveLog: (obj: CreateConnectionResponse) => any;
839
-
840
- export declare const TraceConfigurationFilterSensitiveLog: (obj: TraceConfiguration) => any;
841
-
842
- export declare const CreateObservabilityConfigurationRequestFilterSensitiveLog: (obj: CreateObservabilityConfigurationRequest) => any;
843
-
844
- export declare const ObservabilityConfigurationFilterSensitiveLog: (obj: ObservabilityConfiguration) => any;
845
-
846
- export declare const CreateObservabilityConfigurationResponseFilterSensitiveLog: (obj: CreateObservabilityConfigurationResponse) => any;
847
-
848
- export declare const EncryptionConfigurationFilterSensitiveLog: (obj: EncryptionConfiguration) => any;
849
-
850
- export declare const HealthCheckConfigurationFilterSensitiveLog: (obj: HealthCheckConfiguration) => any;
851
-
852
- export declare const InstanceConfigurationFilterSensitiveLog: (obj: InstanceConfiguration) => any;
853
-
854
- export declare const EgressConfigurationFilterSensitiveLog: (obj: EgressConfiguration) => any;
855
-
856
- export declare const NetworkConfigurationFilterSensitiveLog: (obj: NetworkConfiguration) => any;
857
-
858
- export declare const ServiceObservabilityConfigurationFilterSensitiveLog: (obj: ServiceObservabilityConfiguration) => any;
859
-
860
- export declare const AuthenticationConfigurationFilterSensitiveLog: (obj: AuthenticationConfiguration) => any;
861
-
862
- export declare const CodeConfigurationValuesFilterSensitiveLog: (obj: CodeConfigurationValues) => any;
863
-
864
- export declare const CodeConfigurationFilterSensitiveLog: (obj: CodeConfiguration) => any;
865
-
866
- export declare const SourceCodeVersionFilterSensitiveLog: (obj: SourceCodeVersion) => any;
867
-
868
- export declare const CodeRepositoryFilterSensitiveLog: (obj: CodeRepository) => any;
869
-
870
- export declare const ImageConfigurationFilterSensitiveLog: (obj: ImageConfiguration) => any;
871
-
872
- export declare const ImageRepositoryFilterSensitiveLog: (obj: ImageRepository) => any;
873
-
874
- export declare const SourceConfigurationFilterSensitiveLog: (obj: SourceConfiguration) => any;
875
-
876
- export declare const CreateServiceRequestFilterSensitiveLog: (obj: CreateServiceRequest) => any;
877
-
878
- export declare const AutoScalingConfigurationSummaryFilterSensitiveLog: (obj: AutoScalingConfigurationSummary) => any;
879
-
880
- export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
881
-
882
- export declare const CreateServiceResponseFilterSensitiveLog: (obj: CreateServiceResponse) => any;
883
-
884
- export declare const CreateVpcConnectorRequestFilterSensitiveLog: (obj: CreateVpcConnectorRequest) => any;
885
-
886
- export declare const VpcConnectorFilterSensitiveLog: (obj: VpcConnector) => any;
887
-
888
- export declare const CreateVpcConnectorResponseFilterSensitiveLog: (obj: CreateVpcConnectorResponse) => any;
889
-
890
- export declare const DeleteAutoScalingConfigurationRequestFilterSensitiveLog: (obj: DeleteAutoScalingConfigurationRequest) => any;
891
-
892
- export declare const DeleteAutoScalingConfigurationResponseFilterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
893
-
894
- export declare const DeleteConnectionRequestFilterSensitiveLog: (obj: DeleteConnectionRequest) => any;
895
-
896
- export declare const DeleteConnectionResponseFilterSensitiveLog: (obj: DeleteConnectionResponse) => any;
897
-
898
- export declare const DeleteObservabilityConfigurationRequestFilterSensitiveLog: (obj: DeleteObservabilityConfigurationRequest) => any;
899
-
900
- export declare const DeleteObservabilityConfigurationResponseFilterSensitiveLog: (obj: DeleteObservabilityConfigurationResponse) => any;
901
-
902
- export declare const DeleteServiceRequestFilterSensitiveLog: (obj: DeleteServiceRequest) => any;
903
-
904
- export declare const DeleteServiceResponseFilterSensitiveLog: (obj: DeleteServiceResponse) => any;
905
-
906
- export declare const DeleteVpcConnectorRequestFilterSensitiveLog: (obj: DeleteVpcConnectorRequest) => any;
907
-
908
- export declare const DeleteVpcConnectorResponseFilterSensitiveLog: (obj: DeleteVpcConnectorResponse) => any;
909
-
910
- export declare const DescribeAutoScalingConfigurationRequestFilterSensitiveLog: (obj: DescribeAutoScalingConfigurationRequest) => any;
911
-
912
- export declare const DescribeAutoScalingConfigurationResponseFilterSensitiveLog: (obj: DescribeAutoScalingConfigurationResponse) => any;
913
-
914
- export declare const DescribeCustomDomainsRequestFilterSensitiveLog: (obj: DescribeCustomDomainsRequest) => any;
915
-
916
- export declare const DescribeCustomDomainsResponseFilterSensitiveLog: (obj: DescribeCustomDomainsResponse) => any;
917
-
918
- export declare const DescribeObservabilityConfigurationRequestFilterSensitiveLog: (obj: DescribeObservabilityConfigurationRequest) => any;
919
-
920
- export declare const DescribeObservabilityConfigurationResponseFilterSensitiveLog: (obj: DescribeObservabilityConfigurationResponse) => any;
921
-
922
- export declare const DescribeServiceRequestFilterSensitiveLog: (obj: DescribeServiceRequest) => any;
923
-
924
- export declare const DescribeServiceResponseFilterSensitiveLog: (obj: DescribeServiceResponse) => any;
925
-
926
- export declare const DescribeVpcConnectorRequestFilterSensitiveLog: (obj: DescribeVpcConnectorRequest) => any;
927
-
928
- export declare const DescribeVpcConnectorResponseFilterSensitiveLog: (obj: DescribeVpcConnectorResponse) => any;
929
-
930
- export declare const DisassociateCustomDomainRequestFilterSensitiveLog: (obj: DisassociateCustomDomainRequest) => any;
931
-
932
- export declare const DisassociateCustomDomainResponseFilterSensitiveLog: (obj: DisassociateCustomDomainResponse) => any;
933
-
934
- export declare const ListAutoScalingConfigurationsRequestFilterSensitiveLog: (obj: ListAutoScalingConfigurationsRequest) => any;
935
-
936
- export declare const ListAutoScalingConfigurationsResponseFilterSensitiveLog: (obj: ListAutoScalingConfigurationsResponse) => any;
937
-
938
- export declare const ListConnectionsRequestFilterSensitiveLog: (obj: ListConnectionsRequest) => any;
939
-
940
- export declare const ConnectionSummaryFilterSensitiveLog: (obj: ConnectionSummary) => any;
941
-
942
- export declare const ListConnectionsResponseFilterSensitiveLog: (obj: ListConnectionsResponse) => any;
943
-
944
- export declare const ListObservabilityConfigurationsRequestFilterSensitiveLog: (obj: ListObservabilityConfigurationsRequest) => any;
945
-
946
- export declare const ObservabilityConfigurationSummaryFilterSensitiveLog: (obj: ObservabilityConfigurationSummary) => any;
947
-
948
- export declare const ListObservabilityConfigurationsResponseFilterSensitiveLog: (obj: ListObservabilityConfigurationsResponse) => any;
949
-
950
- export declare const ListOperationsRequestFilterSensitiveLog: (obj: ListOperationsRequest) => any;
951
-
952
- export declare const OperationSummaryFilterSensitiveLog: (obj: OperationSummary) => any;
953
-
954
- export declare const ListOperationsResponseFilterSensitiveLog: (obj: ListOperationsResponse) => any;
955
-
956
- export declare const ListServicesRequestFilterSensitiveLog: (obj: ListServicesRequest) => any;
957
-
958
- export declare const ServiceSummaryFilterSensitiveLog: (obj: ServiceSummary) => any;
959
-
960
- export declare const ListServicesResponseFilterSensitiveLog: (obj: ListServicesResponse) => any;
961
-
962
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
963
-
964
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
965
-
966
- export declare const ListVpcConnectorsRequestFilterSensitiveLog: (obj: ListVpcConnectorsRequest) => any;
967
-
968
- export declare const ListVpcConnectorsResponseFilterSensitiveLog: (obj: ListVpcConnectorsResponse) => any;
969
-
970
- export declare const PauseServiceRequestFilterSensitiveLog: (obj: PauseServiceRequest) => any;
971
-
972
- export declare const PauseServiceResponseFilterSensitiveLog: (obj: PauseServiceResponse) => any;
973
-
974
- export declare const ResumeServiceRequestFilterSensitiveLog: (obj: ResumeServiceRequest) => any;
975
-
976
- export declare const ResumeServiceResponseFilterSensitiveLog: (obj: ResumeServiceResponse) => any;
977
-
978
- export declare const StartDeploymentRequestFilterSensitiveLog: (obj: StartDeploymentRequest) => any;
979
-
980
- export declare const StartDeploymentResponseFilterSensitiveLog: (obj: StartDeploymentResponse) => any;
981
-
982
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
983
-
984
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
985
-
986
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
987
-
988
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
989
-
990
- export declare const UpdateServiceRequestFilterSensitiveLog: (obj: UpdateServiceRequest) => any;
991
-
992
- export declare const UpdateServiceResponseFilterSensitiveLog: (obj: UpdateServiceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
3
+ export interface AssociateCustomDomainRequest {
4
+ ServiceArn: string | undefined;
5
+
6
+ DomainName: string | undefined;
7
+
8
+ EnableWWWSubdomain?: boolean;
9
+ }
10
+ export declare enum CertificateValidationRecordStatus {
11
+ FAILED = "FAILED",
12
+ PENDING_VALIDATION = "PENDING_VALIDATION",
13
+ SUCCESS = "SUCCESS",
14
+ }
15
+
16
+ export interface CertificateValidationRecord {
17
+ Name?: string;
18
+
19
+ Type?: string;
20
+
21
+ Value?: string;
22
+
23
+ Status?: CertificateValidationRecordStatus | string;
24
+ }
25
+ export declare enum CustomDomainAssociationStatus {
26
+ ACTIVE = "ACTIVE",
27
+ BINDING_CERTIFICATE = "BINDING_CERTIFICATE",
28
+ CREATE_FAILED = "CREATE_FAILED",
29
+ CREATING = "CREATING",
30
+ DELETE_FAILED = "DELETE_FAILED",
31
+ DELETING = "DELETING",
32
+ PENDING_CERTIFICATE_DNS_VALIDATION = "PENDING_CERTIFICATE_DNS_VALIDATION",
33
+ }
34
+
35
+ export interface CustomDomain {
36
+ DomainName: string | undefined;
37
+
38
+ EnableWWWSubdomain: boolean | undefined;
39
+
40
+ CertificateValidationRecords?: CertificateValidationRecord[];
41
+
42
+ Status: CustomDomainAssociationStatus | string | undefined;
43
+ }
44
+ export interface AssociateCustomDomainResponse {
45
+ DNSTarget: string | undefined;
46
+
47
+ ServiceArn: string | undefined;
48
+
49
+ CustomDomain: CustomDomain | undefined;
50
+ }
51
+
52
+ export declare class InternalServiceErrorException extends __BaseException {
53
+ readonly name: "InternalServiceErrorException";
54
+ readonly $fault: "server";
55
+ Message?: string;
56
+
57
+ constructor(
58
+ opts: __ExceptionOptionType<InternalServiceErrorException, __BaseException>
59
+ );
60
+ }
61
+
62
+ export declare class InvalidRequestException extends __BaseException {
63
+ readonly name: "InvalidRequestException";
64
+ readonly $fault: "client";
65
+ Message?: string;
66
+
67
+ constructor(
68
+ opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
69
+ );
70
+ }
71
+
72
+ export declare class InvalidStateException extends __BaseException {
73
+ readonly name: "InvalidStateException";
74
+ readonly $fault: "client";
75
+ Message?: string;
76
+
77
+ constructor(
78
+ opts: __ExceptionOptionType<InvalidStateException, __BaseException>
79
+ );
80
+ }
81
+
82
+ export interface Tag {
83
+ Key?: string;
84
+
85
+ Value?: string;
86
+ }
87
+ export interface CreateAutoScalingConfigurationRequest {
88
+ AutoScalingConfigurationName: string | undefined;
89
+
90
+ MaxConcurrency?: number;
91
+
92
+ MinSize?: number;
93
+
94
+ MaxSize?: number;
95
+
96
+ Tags?: Tag[];
97
+ }
98
+ export declare enum AutoScalingConfigurationStatus {
99
+ ACTIVE = "ACTIVE",
100
+ INACTIVE = "INACTIVE",
101
+ }
102
+
103
+ export interface AutoScalingConfiguration {
104
+ AutoScalingConfigurationArn?: string;
105
+
106
+ AutoScalingConfigurationName?: string;
107
+
108
+ AutoScalingConfigurationRevision?: number;
109
+
110
+ Latest?: boolean;
111
+
112
+ Status?: AutoScalingConfigurationStatus | string;
113
+
114
+ MaxConcurrency?: number;
115
+
116
+ MinSize?: number;
117
+
118
+ MaxSize?: number;
119
+
120
+ CreatedAt?: Date;
121
+
122
+ DeletedAt?: Date;
123
+ }
124
+ export interface CreateAutoScalingConfigurationResponse {
125
+ AutoScalingConfiguration: AutoScalingConfiguration | undefined;
126
+ }
127
+
128
+ export declare class ServiceQuotaExceededException extends __BaseException {
129
+ readonly name: "ServiceQuotaExceededException";
130
+ readonly $fault: "client";
131
+ Message?: string;
132
+
133
+ constructor(
134
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
135
+ );
136
+ }
137
+ export declare enum ProviderType {
138
+ GITHUB = "GITHUB",
139
+ }
140
+ export interface CreateConnectionRequest {
141
+ ConnectionName: string | undefined;
142
+
143
+ ProviderType: ProviderType | string | undefined;
144
+
145
+ Tags?: Tag[];
146
+ }
147
+ export declare enum ConnectionStatus {
148
+ AVAILABLE = "AVAILABLE",
149
+ DELETED = "DELETED",
150
+ ERROR = "ERROR",
151
+ PENDING_HANDSHAKE = "PENDING_HANDSHAKE",
152
+ }
153
+
154
+ export interface Connection {
155
+ ConnectionName?: string;
156
+
157
+ ConnectionArn?: string;
158
+
159
+ ProviderType?: ProviderType | string;
160
+
161
+ Status?: ConnectionStatus | string;
162
+
163
+ CreatedAt?: Date;
164
+ }
165
+ export interface CreateConnectionResponse {
166
+ Connection: Connection | undefined;
167
+ }
168
+ export declare enum TracingVendor {
169
+ AWSXRAY = "AWSXRAY",
170
+ }
171
+
172
+ export interface TraceConfiguration {
173
+ Vendor: TracingVendor | string | undefined;
174
+ }
175
+ export interface CreateObservabilityConfigurationRequest {
176
+ ObservabilityConfigurationName: string | undefined;
177
+
178
+ TraceConfiguration?: TraceConfiguration;
179
+
180
+ Tags?: Tag[];
181
+ }
182
+ export declare enum ObservabilityConfigurationStatus {
183
+ ACTIVE = "ACTIVE",
184
+ INACTIVE = "INACTIVE",
185
+ }
186
+
187
+ export interface ObservabilityConfiguration {
188
+ ObservabilityConfigurationArn?: string;
189
+
190
+ ObservabilityConfigurationName?: string;
191
+
192
+ TraceConfiguration?: TraceConfiguration;
193
+
194
+ ObservabilityConfigurationRevision?: number;
195
+
196
+ Latest?: boolean;
197
+
198
+ Status?: ObservabilityConfigurationStatus | string;
199
+
200
+ CreatedAt?: Date;
201
+
202
+ DeletedAt?: Date;
203
+ }
204
+ export interface CreateObservabilityConfigurationResponse {
205
+ ObservabilityConfiguration: ObservabilityConfiguration | undefined;
206
+ }
207
+
208
+ export interface EncryptionConfiguration {
209
+ KmsKey: string | undefined;
210
+ }
211
+ export declare enum HealthCheckProtocol {
212
+ HTTP = "HTTP",
213
+ TCP = "TCP",
214
+ }
215
+
216
+ export interface HealthCheckConfiguration {
217
+ Protocol?: HealthCheckProtocol | string;
218
+
219
+ Path?: string;
220
+
221
+ Interval?: number;
222
+
223
+ Timeout?: number;
224
+
225
+ HealthyThreshold?: number;
226
+
227
+ UnhealthyThreshold?: number;
228
+ }
229
+
230
+ export interface InstanceConfiguration {
231
+ Cpu?: string;
232
+
233
+ Memory?: string;
234
+
235
+ InstanceRoleArn?: string;
236
+ }
237
+ export declare enum EgressType {
238
+ DEFAULT = "DEFAULT",
239
+ VPC = "VPC",
240
+ }
241
+
242
+ export interface EgressConfiguration {
243
+ EgressType?: EgressType | string;
244
+
245
+ VpcConnectorArn?: string;
246
+ }
247
+
248
+ export interface NetworkConfiguration {
249
+ EgressConfiguration?: EgressConfiguration;
250
+ }
251
+
252
+ export interface ServiceObservabilityConfiguration {
253
+ ObservabilityEnabled: boolean | undefined;
254
+
255
+ ObservabilityConfigurationArn?: string;
256
+ }
257
+
258
+ export interface AuthenticationConfiguration {
259
+ ConnectionArn?: string;
260
+
261
+ AccessRoleArn?: string;
262
+ }
263
+ export declare enum Runtime {
264
+ CORRETTO_11 = "CORRETTO_11",
265
+ CORRETTO_8 = "CORRETTO_8",
266
+ NODEJS_12 = "NODEJS_12",
267
+ NODEJS_14 = "NODEJS_14",
268
+ PYTHON_3 = "PYTHON_3",
269
+ }
270
+
271
+ export interface CodeConfigurationValues {
272
+ Runtime: Runtime | string | undefined;
273
+
274
+ BuildCommand?: string;
275
+
276
+ StartCommand?: string;
277
+
278
+ Port?: string;
279
+
280
+ RuntimeEnvironmentVariables?: Record<string, string>;
281
+ }
282
+ export declare enum ConfigurationSource {
283
+ API = "API",
284
+ REPOSITORY = "REPOSITORY",
285
+ }
286
+
287
+ export interface CodeConfiguration {
288
+ ConfigurationSource: ConfigurationSource | string | undefined;
289
+
290
+ CodeConfigurationValues?: CodeConfigurationValues;
291
+ }
292
+ export declare enum SourceCodeVersionType {
293
+ BRANCH = "BRANCH",
294
+ }
295
+
296
+ export interface SourceCodeVersion {
297
+ Type: SourceCodeVersionType | string | undefined;
298
+
299
+ Value: string | undefined;
300
+ }
301
+
302
+ export interface CodeRepository {
303
+ RepositoryUrl: string | undefined;
304
+
305
+ SourceCodeVersion: SourceCodeVersion | undefined;
306
+
307
+ CodeConfiguration?: CodeConfiguration;
308
+ }
309
+
310
+ export interface ImageConfiguration {
311
+ RuntimeEnvironmentVariables?: Record<string, string>;
312
+
313
+ StartCommand?: string;
314
+
315
+ Port?: string;
316
+ }
317
+ export declare enum ImageRepositoryType {
318
+ ECR = "ECR",
319
+ ECR_PUBLIC = "ECR_PUBLIC",
320
+ }
321
+
322
+ export interface ImageRepository {
323
+ ImageIdentifier: string | undefined;
324
+
325
+ ImageConfiguration?: ImageConfiguration;
326
+
327
+ ImageRepositoryType: ImageRepositoryType | string | undefined;
328
+ }
329
+
330
+ export interface SourceConfiguration {
331
+ CodeRepository?: CodeRepository;
332
+
333
+ ImageRepository?: ImageRepository;
334
+
335
+ AutoDeploymentsEnabled?: boolean;
336
+
337
+ AuthenticationConfiguration?: AuthenticationConfiguration;
338
+ }
339
+ export interface CreateServiceRequest {
340
+ ServiceName: string | undefined;
341
+
342
+ SourceConfiguration: SourceConfiguration | undefined;
343
+
344
+ InstanceConfiguration?: InstanceConfiguration;
345
+
346
+ Tags?: Tag[];
347
+
348
+ EncryptionConfiguration?: EncryptionConfiguration;
349
+
350
+ HealthCheckConfiguration?: HealthCheckConfiguration;
351
+
352
+ AutoScalingConfigurationArn?: string;
353
+
354
+ NetworkConfiguration?: NetworkConfiguration;
355
+
356
+ ObservabilityConfiguration?: ServiceObservabilityConfiguration;
357
+ }
358
+
359
+ export interface AutoScalingConfigurationSummary {
360
+ AutoScalingConfigurationArn?: string;
361
+
362
+ AutoScalingConfigurationName?: string;
363
+
364
+ AutoScalingConfigurationRevision?: number;
365
+ }
366
+ export declare enum ServiceStatus {
367
+ CREATE_FAILED = "CREATE_FAILED",
368
+ DELETED = "DELETED",
369
+ DELETE_FAILED = "DELETE_FAILED",
370
+ OPERATION_IN_PROGRESS = "OPERATION_IN_PROGRESS",
371
+ PAUSED = "PAUSED",
372
+ RUNNING = "RUNNING",
373
+ }
374
+
375
+ export interface Service {
376
+ ServiceName: string | undefined;
377
+
378
+ ServiceId: string | undefined;
379
+
380
+ ServiceArn: string | undefined;
381
+
382
+ ServiceUrl: string | undefined;
383
+
384
+ CreatedAt: Date | undefined;
385
+
386
+ UpdatedAt: Date | undefined;
387
+
388
+ DeletedAt?: Date;
389
+
390
+ Status: ServiceStatus | string | undefined;
391
+
392
+ SourceConfiguration: SourceConfiguration | undefined;
393
+
394
+ InstanceConfiguration: InstanceConfiguration | undefined;
395
+
396
+ EncryptionConfiguration?: EncryptionConfiguration;
397
+
398
+ HealthCheckConfiguration?: HealthCheckConfiguration;
399
+
400
+ AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
401
+
402
+ NetworkConfiguration: NetworkConfiguration | undefined;
403
+
404
+ ObservabilityConfiguration?: ServiceObservabilityConfiguration;
405
+ }
406
+ export interface CreateServiceResponse {
407
+ Service: Service | undefined;
408
+
409
+ OperationId: string | undefined;
410
+ }
411
+ export interface CreateVpcConnectorRequest {
412
+ VpcConnectorName: string | undefined;
413
+
414
+ Subnets: string[] | undefined;
415
+
416
+ SecurityGroups?: string[];
417
+
418
+ Tags?: Tag[];
419
+ }
420
+ export declare enum VpcConnectorStatus {
421
+ ACTIVE = "ACTIVE",
422
+ INACTIVE = "INACTIVE",
423
+ }
424
+
425
+ export interface VpcConnector {
426
+ VpcConnectorName?: string;
427
+
428
+ VpcConnectorArn?: string;
429
+
430
+ VpcConnectorRevision?: number;
431
+
432
+ Subnets?: string[];
433
+
434
+ SecurityGroups?: string[];
435
+
436
+ Status?: VpcConnectorStatus | string;
437
+
438
+ CreatedAt?: Date;
439
+
440
+ DeletedAt?: Date;
441
+ }
442
+ export interface CreateVpcConnectorResponse {
443
+ VpcConnector: VpcConnector | undefined;
444
+ }
445
+ export interface DeleteAutoScalingConfigurationRequest {
446
+ AutoScalingConfigurationArn: string | undefined;
447
+ }
448
+ export interface DeleteAutoScalingConfigurationResponse {
449
+ AutoScalingConfiguration: AutoScalingConfiguration | undefined;
450
+ }
451
+
452
+ export declare class ResourceNotFoundException extends __BaseException {
453
+ readonly name: "ResourceNotFoundException";
454
+ readonly $fault: "client";
455
+ Message?: string;
456
+
457
+ constructor(
458
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
459
+ );
460
+ }
461
+ export interface DeleteConnectionRequest {
462
+ ConnectionArn: string | undefined;
463
+ }
464
+ export interface DeleteConnectionResponse {
465
+ Connection?: Connection;
466
+ }
467
+ export interface DeleteObservabilityConfigurationRequest {
468
+ ObservabilityConfigurationArn: string | undefined;
469
+ }
470
+ export interface DeleteObservabilityConfigurationResponse {
471
+ ObservabilityConfiguration: ObservabilityConfiguration | undefined;
472
+ }
473
+ export interface DeleteServiceRequest {
474
+ ServiceArn: string | undefined;
475
+ }
476
+ export interface DeleteServiceResponse {
477
+ Service: Service | undefined;
478
+
479
+ OperationId: string | undefined;
480
+ }
481
+ export interface DeleteVpcConnectorRequest {
482
+ VpcConnectorArn: string | undefined;
483
+ }
484
+ export interface DeleteVpcConnectorResponse {
485
+ VpcConnector: VpcConnector | undefined;
486
+ }
487
+ export interface DescribeAutoScalingConfigurationRequest {
488
+ AutoScalingConfigurationArn: string | undefined;
489
+ }
490
+ export interface DescribeAutoScalingConfigurationResponse {
491
+ AutoScalingConfiguration: AutoScalingConfiguration | undefined;
492
+ }
493
+ export interface DescribeCustomDomainsRequest {
494
+ ServiceArn: string | undefined;
495
+
496
+ NextToken?: string;
497
+
498
+ MaxResults?: number;
499
+ }
500
+ export interface DescribeCustomDomainsResponse {
501
+ DNSTarget: string | undefined;
502
+
503
+ ServiceArn: string | undefined;
504
+
505
+ CustomDomains: CustomDomain[] | undefined;
506
+
507
+ NextToken?: string;
508
+ }
509
+ export interface DescribeObservabilityConfigurationRequest {
510
+ ObservabilityConfigurationArn: string | undefined;
511
+ }
512
+ export interface DescribeObservabilityConfigurationResponse {
513
+ ObservabilityConfiguration: ObservabilityConfiguration | undefined;
514
+ }
515
+ export interface DescribeServiceRequest {
516
+ ServiceArn: string | undefined;
517
+ }
518
+ export interface DescribeServiceResponse {
519
+ Service: Service | undefined;
520
+ }
521
+ export interface DescribeVpcConnectorRequest {
522
+ VpcConnectorArn: string | undefined;
523
+ }
524
+ export interface DescribeVpcConnectorResponse {
525
+ VpcConnector: VpcConnector | undefined;
526
+ }
527
+ export interface DisassociateCustomDomainRequest {
528
+ ServiceArn: string | undefined;
529
+
530
+ DomainName: string | undefined;
531
+ }
532
+ export interface DisassociateCustomDomainResponse {
533
+ DNSTarget: string | undefined;
534
+
535
+ ServiceArn: string | undefined;
536
+
537
+ CustomDomain: CustomDomain | undefined;
538
+ }
539
+ export interface ListAutoScalingConfigurationsRequest {
540
+ AutoScalingConfigurationName?: string;
541
+
542
+ LatestOnly?: boolean;
543
+
544
+ MaxResults?: number;
545
+
546
+ NextToken?: string;
547
+ }
548
+ export interface ListAutoScalingConfigurationsResponse {
549
+ AutoScalingConfigurationSummaryList:
550
+ | AutoScalingConfigurationSummary[]
551
+ | undefined;
552
+
553
+ NextToken?: string;
554
+ }
555
+ export interface ListConnectionsRequest {
556
+ ConnectionName?: string;
557
+
558
+ MaxResults?: number;
559
+
560
+ NextToken?: string;
561
+ }
562
+
563
+ export interface ConnectionSummary {
564
+ ConnectionName?: string;
565
+
566
+ ConnectionArn?: string;
567
+
568
+ ProviderType?: ProviderType | string;
569
+
570
+ Status?: ConnectionStatus | string;
571
+
572
+ CreatedAt?: Date;
573
+ }
574
+ export interface ListConnectionsResponse {
575
+ ConnectionSummaryList: ConnectionSummary[] | undefined;
576
+
577
+ NextToken?: string;
578
+ }
579
+ export interface ListObservabilityConfigurationsRequest {
580
+ ObservabilityConfigurationName?: string;
581
+
582
+ LatestOnly?: boolean;
583
+
584
+ MaxResults?: number;
585
+
586
+ NextToken?: string;
587
+ }
588
+
589
+ export interface ObservabilityConfigurationSummary {
590
+ ObservabilityConfigurationArn?: string;
591
+
592
+ ObservabilityConfigurationName?: string;
593
+
594
+ ObservabilityConfigurationRevision?: number;
595
+ }
596
+ export interface ListObservabilityConfigurationsResponse {
597
+ ObservabilityConfigurationSummaryList:
598
+ | ObservabilityConfigurationSummary[]
599
+ | undefined;
600
+
601
+ NextToken?: string;
602
+ }
603
+ export interface ListOperationsRequest {
604
+ ServiceArn: string | undefined;
605
+
606
+ NextToken?: string;
607
+
608
+ MaxResults?: number;
609
+ }
610
+ export declare enum OperationStatus {
611
+ FAILED = "FAILED",
612
+ IN_PROGRESS = "IN_PROGRESS",
613
+ PENDING = "PENDING",
614
+ ROLLBACK_FAILED = "ROLLBACK_FAILED",
615
+ ROLLBACK_IN_PROGRESS = "ROLLBACK_IN_PROGRESS",
616
+ ROLLBACK_SUCCEEDED = "ROLLBACK_SUCCEEDED",
617
+ SUCCEEDED = "SUCCEEDED",
618
+ }
619
+ export declare enum OperationType {
620
+ CREATE_SERVICE = "CREATE_SERVICE",
621
+ DELETE_SERVICE = "DELETE_SERVICE",
622
+ PAUSE_SERVICE = "PAUSE_SERVICE",
623
+ RESUME_SERVICE = "RESUME_SERVICE",
624
+ START_DEPLOYMENT = "START_DEPLOYMENT",
625
+ }
626
+
627
+ export interface OperationSummary {
628
+ Id?: string;
629
+
630
+ Type?: OperationType | string;
631
+
632
+ Status?: OperationStatus | string;
633
+
634
+ TargetArn?: string;
635
+
636
+ StartedAt?: Date;
637
+
638
+ EndedAt?: Date;
639
+
640
+ UpdatedAt?: Date;
641
+ }
642
+ export interface ListOperationsResponse {
643
+ OperationSummaryList?: OperationSummary[];
644
+
645
+ NextToken?: string;
646
+ }
647
+ export interface ListServicesRequest {
648
+ NextToken?: string;
649
+
650
+ MaxResults?: number;
651
+ }
652
+
653
+ export interface ServiceSummary {
654
+ ServiceName?: string;
655
+
656
+ ServiceId?: string;
657
+
658
+ ServiceArn?: string;
659
+
660
+ ServiceUrl?: string;
661
+
662
+ CreatedAt?: Date;
663
+
664
+ UpdatedAt?: Date;
665
+
666
+ Status?: ServiceStatus | string;
667
+ }
668
+ export interface ListServicesResponse {
669
+ ServiceSummaryList: ServiceSummary[] | undefined;
670
+
671
+ NextToken?: string;
672
+ }
673
+ export interface ListTagsForResourceRequest {
674
+ ResourceArn: string | undefined;
675
+ }
676
+ export interface ListTagsForResourceResponse {
677
+ Tags?: Tag[];
678
+ }
679
+ export interface ListVpcConnectorsRequest {
680
+ MaxResults?: number;
681
+
682
+ NextToken?: string;
683
+ }
684
+ export interface ListVpcConnectorsResponse {
685
+ VpcConnectors: VpcConnector[] | undefined;
686
+
687
+ NextToken?: string;
688
+ }
689
+ export interface PauseServiceRequest {
690
+ ServiceArn: string | undefined;
691
+ }
692
+ export interface PauseServiceResponse {
693
+ Service: Service | undefined;
694
+
695
+ OperationId?: string;
696
+ }
697
+ export interface ResumeServiceRequest {
698
+ ServiceArn: string | undefined;
699
+ }
700
+ export interface ResumeServiceResponse {
701
+ Service: Service | undefined;
702
+
703
+ OperationId?: string;
704
+ }
705
+ export interface StartDeploymentRequest {
706
+ ServiceArn: string | undefined;
707
+ }
708
+ export interface StartDeploymentResponse {
709
+ OperationId: string | undefined;
710
+ }
711
+ export interface TagResourceRequest {
712
+ ResourceArn: string | undefined;
713
+
714
+ Tags: Tag[] | undefined;
715
+ }
716
+ export interface TagResourceResponse {}
717
+ export interface UntagResourceRequest {
718
+ ResourceArn: string | undefined;
719
+
720
+ TagKeys: string[] | undefined;
721
+ }
722
+ export interface UntagResourceResponse {}
723
+ export interface UpdateServiceRequest {
724
+ ServiceArn: string | undefined;
725
+
726
+ SourceConfiguration?: SourceConfiguration;
727
+
728
+ InstanceConfiguration?: InstanceConfiguration;
729
+
730
+ AutoScalingConfigurationArn?: string;
731
+
732
+ HealthCheckConfiguration?: HealthCheckConfiguration;
733
+
734
+ NetworkConfiguration?: NetworkConfiguration;
735
+
736
+ ObservabilityConfiguration?: ServiceObservabilityConfiguration;
737
+ }
738
+ export interface UpdateServiceResponse {
739
+ Service: Service | undefined;
740
+
741
+ OperationId: string | undefined;
742
+ }
743
+
744
+ export declare const AssociateCustomDomainRequestFilterSensitiveLog: (
745
+ obj: AssociateCustomDomainRequest
746
+ ) => any;
747
+
748
+ export declare const CertificateValidationRecordFilterSensitiveLog: (
749
+ obj: CertificateValidationRecord
750
+ ) => any;
751
+
752
+ export declare const CustomDomainFilterSensitiveLog: (obj: CustomDomain) => any;
753
+
754
+ export declare const AssociateCustomDomainResponseFilterSensitiveLog: (
755
+ obj: AssociateCustomDomainResponse
756
+ ) => any;
757
+
758
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
759
+
760
+ export declare const CreateAutoScalingConfigurationRequestFilterSensitiveLog: (
761
+ obj: CreateAutoScalingConfigurationRequest
762
+ ) => any;
763
+
764
+ export declare const AutoScalingConfigurationFilterSensitiveLog: (
765
+ obj: AutoScalingConfiguration
766
+ ) => any;
767
+
768
+ export declare const CreateAutoScalingConfigurationResponseFilterSensitiveLog: (
769
+ obj: CreateAutoScalingConfigurationResponse
770
+ ) => any;
771
+
772
+ export declare const CreateConnectionRequestFilterSensitiveLog: (
773
+ obj: CreateConnectionRequest
774
+ ) => any;
775
+
776
+ export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
777
+
778
+ export declare const CreateConnectionResponseFilterSensitiveLog: (
779
+ obj: CreateConnectionResponse
780
+ ) => any;
781
+
782
+ export declare const TraceConfigurationFilterSensitiveLog: (
783
+ obj: TraceConfiguration
784
+ ) => any;
785
+
786
+ export declare const CreateObservabilityConfigurationRequestFilterSensitiveLog: (
787
+ obj: CreateObservabilityConfigurationRequest
788
+ ) => any;
789
+
790
+ export declare const ObservabilityConfigurationFilterSensitiveLog: (
791
+ obj: ObservabilityConfiguration
792
+ ) => any;
793
+
794
+ export declare const CreateObservabilityConfigurationResponseFilterSensitiveLog: (
795
+ obj: CreateObservabilityConfigurationResponse
796
+ ) => any;
797
+
798
+ export declare const EncryptionConfigurationFilterSensitiveLog: (
799
+ obj: EncryptionConfiguration
800
+ ) => any;
801
+
802
+ export declare const HealthCheckConfigurationFilterSensitiveLog: (
803
+ obj: HealthCheckConfiguration
804
+ ) => any;
805
+
806
+ export declare const InstanceConfigurationFilterSensitiveLog: (
807
+ obj: InstanceConfiguration
808
+ ) => any;
809
+
810
+ export declare const EgressConfigurationFilterSensitiveLog: (
811
+ obj: EgressConfiguration
812
+ ) => any;
813
+
814
+ export declare const NetworkConfigurationFilterSensitiveLog: (
815
+ obj: NetworkConfiguration
816
+ ) => any;
817
+
818
+ export declare const ServiceObservabilityConfigurationFilterSensitiveLog: (
819
+ obj: ServiceObservabilityConfiguration
820
+ ) => any;
821
+
822
+ export declare const AuthenticationConfigurationFilterSensitiveLog: (
823
+ obj: AuthenticationConfiguration
824
+ ) => any;
825
+
826
+ export declare const CodeConfigurationValuesFilterSensitiveLog: (
827
+ obj: CodeConfigurationValues
828
+ ) => any;
829
+
830
+ export declare const CodeConfigurationFilterSensitiveLog: (
831
+ obj: CodeConfiguration
832
+ ) => any;
833
+
834
+ export declare const SourceCodeVersionFilterSensitiveLog: (
835
+ obj: SourceCodeVersion
836
+ ) => any;
837
+
838
+ export declare const CodeRepositoryFilterSensitiveLog: (
839
+ obj: CodeRepository
840
+ ) => any;
841
+
842
+ export declare const ImageConfigurationFilterSensitiveLog: (
843
+ obj: ImageConfiguration
844
+ ) => any;
845
+
846
+ export declare const ImageRepositoryFilterSensitiveLog: (
847
+ obj: ImageRepository
848
+ ) => any;
849
+
850
+ export declare const SourceConfigurationFilterSensitiveLog: (
851
+ obj: SourceConfiguration
852
+ ) => any;
853
+
854
+ export declare const CreateServiceRequestFilterSensitiveLog: (
855
+ obj: CreateServiceRequest
856
+ ) => any;
857
+
858
+ export declare const AutoScalingConfigurationSummaryFilterSensitiveLog: (
859
+ obj: AutoScalingConfigurationSummary
860
+ ) => any;
861
+
862
+ export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
863
+
864
+ export declare const CreateServiceResponseFilterSensitiveLog: (
865
+ obj: CreateServiceResponse
866
+ ) => any;
867
+
868
+ export declare const CreateVpcConnectorRequestFilterSensitiveLog: (
869
+ obj: CreateVpcConnectorRequest
870
+ ) => any;
871
+
872
+ export declare const VpcConnectorFilterSensitiveLog: (obj: VpcConnector) => any;
873
+
874
+ export declare const CreateVpcConnectorResponseFilterSensitiveLog: (
875
+ obj: CreateVpcConnectorResponse
876
+ ) => any;
877
+
878
+ export declare const DeleteAutoScalingConfigurationRequestFilterSensitiveLog: (
879
+ obj: DeleteAutoScalingConfigurationRequest
880
+ ) => any;
881
+
882
+ export declare const DeleteAutoScalingConfigurationResponseFilterSensitiveLog: (
883
+ obj: DeleteAutoScalingConfigurationResponse
884
+ ) => any;
885
+
886
+ export declare const DeleteConnectionRequestFilterSensitiveLog: (
887
+ obj: DeleteConnectionRequest
888
+ ) => any;
889
+
890
+ export declare const DeleteConnectionResponseFilterSensitiveLog: (
891
+ obj: DeleteConnectionResponse
892
+ ) => any;
893
+
894
+ export declare const DeleteObservabilityConfigurationRequestFilterSensitiveLog: (
895
+ obj: DeleteObservabilityConfigurationRequest
896
+ ) => any;
897
+
898
+ export declare const DeleteObservabilityConfigurationResponseFilterSensitiveLog: (
899
+ obj: DeleteObservabilityConfigurationResponse
900
+ ) => any;
901
+
902
+ export declare const DeleteServiceRequestFilterSensitiveLog: (
903
+ obj: DeleteServiceRequest
904
+ ) => any;
905
+
906
+ export declare const DeleteServiceResponseFilterSensitiveLog: (
907
+ obj: DeleteServiceResponse
908
+ ) => any;
909
+
910
+ export declare const DeleteVpcConnectorRequestFilterSensitiveLog: (
911
+ obj: DeleteVpcConnectorRequest
912
+ ) => any;
913
+
914
+ export declare const DeleteVpcConnectorResponseFilterSensitiveLog: (
915
+ obj: DeleteVpcConnectorResponse
916
+ ) => any;
917
+
918
+ export declare const DescribeAutoScalingConfigurationRequestFilterSensitiveLog: (
919
+ obj: DescribeAutoScalingConfigurationRequest
920
+ ) => any;
921
+
922
+ export declare const DescribeAutoScalingConfigurationResponseFilterSensitiveLog: (
923
+ obj: DescribeAutoScalingConfigurationResponse
924
+ ) => any;
925
+
926
+ export declare const DescribeCustomDomainsRequestFilterSensitiveLog: (
927
+ obj: DescribeCustomDomainsRequest
928
+ ) => any;
929
+
930
+ export declare const DescribeCustomDomainsResponseFilterSensitiveLog: (
931
+ obj: DescribeCustomDomainsResponse
932
+ ) => any;
933
+
934
+ export declare const DescribeObservabilityConfigurationRequestFilterSensitiveLog: (
935
+ obj: DescribeObservabilityConfigurationRequest
936
+ ) => any;
937
+
938
+ export declare const DescribeObservabilityConfigurationResponseFilterSensitiveLog: (
939
+ obj: DescribeObservabilityConfigurationResponse
940
+ ) => any;
941
+
942
+ export declare const DescribeServiceRequestFilterSensitiveLog: (
943
+ obj: DescribeServiceRequest
944
+ ) => any;
945
+
946
+ export declare const DescribeServiceResponseFilterSensitiveLog: (
947
+ obj: DescribeServiceResponse
948
+ ) => any;
949
+
950
+ export declare const DescribeVpcConnectorRequestFilterSensitiveLog: (
951
+ obj: DescribeVpcConnectorRequest
952
+ ) => any;
953
+
954
+ export declare const DescribeVpcConnectorResponseFilterSensitiveLog: (
955
+ obj: DescribeVpcConnectorResponse
956
+ ) => any;
957
+
958
+ export declare const DisassociateCustomDomainRequestFilterSensitiveLog: (
959
+ obj: DisassociateCustomDomainRequest
960
+ ) => any;
961
+
962
+ export declare const DisassociateCustomDomainResponseFilterSensitiveLog: (
963
+ obj: DisassociateCustomDomainResponse
964
+ ) => any;
965
+
966
+ export declare const ListAutoScalingConfigurationsRequestFilterSensitiveLog: (
967
+ obj: ListAutoScalingConfigurationsRequest
968
+ ) => any;
969
+
970
+ export declare const ListAutoScalingConfigurationsResponseFilterSensitiveLog: (
971
+ obj: ListAutoScalingConfigurationsResponse
972
+ ) => any;
973
+
974
+ export declare const ListConnectionsRequestFilterSensitiveLog: (
975
+ obj: ListConnectionsRequest
976
+ ) => any;
977
+
978
+ export declare const ConnectionSummaryFilterSensitiveLog: (
979
+ obj: ConnectionSummary
980
+ ) => any;
981
+
982
+ export declare const ListConnectionsResponseFilterSensitiveLog: (
983
+ obj: ListConnectionsResponse
984
+ ) => any;
985
+
986
+ export declare const ListObservabilityConfigurationsRequestFilterSensitiveLog: (
987
+ obj: ListObservabilityConfigurationsRequest
988
+ ) => any;
989
+
990
+ export declare const ObservabilityConfigurationSummaryFilterSensitiveLog: (
991
+ obj: ObservabilityConfigurationSummary
992
+ ) => any;
993
+
994
+ export declare const ListObservabilityConfigurationsResponseFilterSensitiveLog: (
995
+ obj: ListObservabilityConfigurationsResponse
996
+ ) => any;
997
+
998
+ export declare const ListOperationsRequestFilterSensitiveLog: (
999
+ obj: ListOperationsRequest
1000
+ ) => any;
1001
+
1002
+ export declare const OperationSummaryFilterSensitiveLog: (
1003
+ obj: OperationSummary
1004
+ ) => any;
1005
+
1006
+ export declare const ListOperationsResponseFilterSensitiveLog: (
1007
+ obj: ListOperationsResponse
1008
+ ) => any;
1009
+
1010
+ export declare const ListServicesRequestFilterSensitiveLog: (
1011
+ obj: ListServicesRequest
1012
+ ) => any;
1013
+
1014
+ export declare const ServiceSummaryFilterSensitiveLog: (
1015
+ obj: ServiceSummary
1016
+ ) => any;
1017
+
1018
+ export declare const ListServicesResponseFilterSensitiveLog: (
1019
+ obj: ListServicesResponse
1020
+ ) => any;
1021
+
1022
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
1023
+ obj: ListTagsForResourceRequest
1024
+ ) => any;
1025
+
1026
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
1027
+ obj: ListTagsForResourceResponse
1028
+ ) => any;
1029
+
1030
+ export declare const ListVpcConnectorsRequestFilterSensitiveLog: (
1031
+ obj: ListVpcConnectorsRequest
1032
+ ) => any;
1033
+
1034
+ export declare const ListVpcConnectorsResponseFilterSensitiveLog: (
1035
+ obj: ListVpcConnectorsResponse
1036
+ ) => any;
1037
+
1038
+ export declare const PauseServiceRequestFilterSensitiveLog: (
1039
+ obj: PauseServiceRequest
1040
+ ) => any;
1041
+
1042
+ export declare const PauseServiceResponseFilterSensitiveLog: (
1043
+ obj: PauseServiceResponse
1044
+ ) => any;
1045
+
1046
+ export declare const ResumeServiceRequestFilterSensitiveLog: (
1047
+ obj: ResumeServiceRequest
1048
+ ) => any;
1049
+
1050
+ export declare const ResumeServiceResponseFilterSensitiveLog: (
1051
+ obj: ResumeServiceResponse
1052
+ ) => any;
1053
+
1054
+ export declare const StartDeploymentRequestFilterSensitiveLog: (
1055
+ obj: StartDeploymentRequest
1056
+ ) => any;
1057
+
1058
+ export declare const StartDeploymentResponseFilterSensitiveLog: (
1059
+ obj: StartDeploymentResponse
1060
+ ) => any;
1061
+
1062
+ export declare const TagResourceRequestFilterSensitiveLog: (
1063
+ obj: TagResourceRequest
1064
+ ) => any;
1065
+
1066
+ export declare const TagResourceResponseFilterSensitiveLog: (
1067
+ obj: TagResourceResponse
1068
+ ) => any;
1069
+
1070
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1071
+ obj: UntagResourceRequest
1072
+ ) => any;
1073
+
1074
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1075
+ obj: UntagResourceResponse
1076
+ ) => any;
1077
+
1078
+ export declare const UpdateServiceRequestFilterSensitiveLog: (
1079
+ obj: UpdateServiceRequest
1080
+ ) => any;
1081
+
1082
+ export declare const UpdateServiceResponseFilterSensitiveLog: (
1083
+ obj: UpdateServiceResponse
1084
+ ) => any;