@aws-sdk/client-apprunner 3.131.0 → 3.142.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 (69) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/AssociateCustomDomainCommand.js +2 -2
  4. package/dist-cjs/commands/CreateAutoScalingConfigurationCommand.js +2 -2
  5. package/dist-cjs/commands/CreateConnectionCommand.js +2 -2
  6. package/dist-cjs/commands/CreateObservabilityConfigurationCommand.js +2 -2
  7. package/dist-cjs/commands/CreateServiceCommand.js +2 -2
  8. package/dist-cjs/commands/CreateVpcConnectorCommand.js +2 -2
  9. package/dist-cjs/commands/DeleteAutoScalingConfigurationCommand.js +2 -2
  10. package/dist-cjs/commands/DeleteConnectionCommand.js +2 -2
  11. package/dist-cjs/commands/DeleteObservabilityConfigurationCommand.js +2 -2
  12. package/dist-cjs/commands/DeleteServiceCommand.js +2 -2
  13. package/dist-cjs/commands/DeleteVpcConnectorCommand.js +2 -2
  14. package/dist-cjs/commands/DescribeAutoScalingConfigurationCommand.js +2 -2
  15. package/dist-cjs/commands/DescribeCustomDomainsCommand.js +2 -2
  16. package/dist-cjs/commands/DescribeObservabilityConfigurationCommand.js +2 -2
  17. package/dist-cjs/commands/DescribeServiceCommand.js +2 -2
  18. package/dist-cjs/commands/DescribeVpcConnectorCommand.js +2 -2
  19. package/dist-cjs/commands/DisassociateCustomDomainCommand.js +2 -2
  20. package/dist-cjs/commands/ListAutoScalingConfigurationsCommand.js +2 -2
  21. package/dist-cjs/commands/ListConnectionsCommand.js +2 -2
  22. package/dist-cjs/commands/ListObservabilityConfigurationsCommand.js +2 -2
  23. package/dist-cjs/commands/ListOperationsCommand.js +2 -2
  24. package/dist-cjs/commands/ListServicesCommand.js +2 -2
  25. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  26. package/dist-cjs/commands/ListVpcConnectorsCommand.js +2 -2
  27. package/dist-cjs/commands/PauseServiceCommand.js +2 -2
  28. package/dist-cjs/commands/ResumeServiceCommand.js +2 -2
  29. package/dist-cjs/commands/StartDeploymentCommand.js +2 -2
  30. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  31. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  32. package/dist-cjs/commands/UpdateServiceCommand.js +2 -2
  33. package/dist-cjs/models/models_0.js +382 -560
  34. package/dist-cjs/protocols/Aws_json1_0.js +150 -249
  35. package/dist-es/commands/AssociateCustomDomainCommand.js +3 -3
  36. package/dist-es/commands/CreateAutoScalingConfigurationCommand.js +3 -3
  37. package/dist-es/commands/CreateConnectionCommand.js +3 -3
  38. package/dist-es/commands/CreateObservabilityConfigurationCommand.js +3 -3
  39. package/dist-es/commands/CreateServiceCommand.js +3 -3
  40. package/dist-es/commands/CreateVpcConnectorCommand.js +3 -3
  41. package/dist-es/commands/DeleteAutoScalingConfigurationCommand.js +3 -3
  42. package/dist-es/commands/DeleteConnectionCommand.js +3 -3
  43. package/dist-es/commands/DeleteObservabilityConfigurationCommand.js +3 -3
  44. package/dist-es/commands/DeleteServiceCommand.js +3 -3
  45. package/dist-es/commands/DeleteVpcConnectorCommand.js +3 -3
  46. package/dist-es/commands/DescribeAutoScalingConfigurationCommand.js +3 -3
  47. package/dist-es/commands/DescribeCustomDomainsCommand.js +3 -3
  48. package/dist-es/commands/DescribeObservabilityConfigurationCommand.js +3 -3
  49. package/dist-es/commands/DescribeServiceCommand.js +3 -3
  50. package/dist-es/commands/DescribeVpcConnectorCommand.js +3 -3
  51. package/dist-es/commands/DisassociateCustomDomainCommand.js +3 -3
  52. package/dist-es/commands/ListAutoScalingConfigurationsCommand.js +3 -3
  53. package/dist-es/commands/ListConnectionsCommand.js +3 -3
  54. package/dist-es/commands/ListObservabilityConfigurationsCommand.js +3 -3
  55. package/dist-es/commands/ListOperationsCommand.js +3 -3
  56. package/dist-es/commands/ListServicesCommand.js +3 -3
  57. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  58. package/dist-es/commands/ListVpcConnectorsCommand.js +3 -3
  59. package/dist-es/commands/PauseServiceCommand.js +3 -3
  60. package/dist-es/commands/ResumeServiceCommand.js +3 -3
  61. package/dist-es/commands/StartDeploymentCommand.js +3 -3
  62. package/dist-es/commands/TagResourceCommand.js +3 -3
  63. package/dist-es/commands/UntagResourceCommand.js +3 -3
  64. package/dist-es/commands/UpdateServiceCommand.js +3 -3
  65. package/dist-es/models/models_0.js +96 -362
  66. package/dist-es/protocols/Aws_json1_0.js +241 -250
  67. package/dist-types/models/models_0.d.ts +352 -528
  68. package/dist-types/ts3.4/models/models_0.d.ts +176 -352
  69. package/package.json +6 -6
@@ -8,10 +8,6 @@ export interface AssociateCustomDomainRequest {
8
8
 
9
9
  EnableWWWSubdomain?: boolean;
10
10
  }
11
- export declare namespace AssociateCustomDomainRequest {
12
-
13
- const filterSensitiveLog: (obj: AssociateCustomDomainRequest) => any;
14
- }
15
11
  export declare enum CertificateValidationRecordStatus {
16
12
  FAILED = "FAILED",
17
13
  PENDING_VALIDATION = "PENDING_VALIDATION",
@@ -28,10 +24,6 @@ export interface CertificateValidationRecord {
28
24
 
29
25
  Status?: CertificateValidationRecordStatus | string;
30
26
  }
31
- export declare namespace CertificateValidationRecord {
32
-
33
- const filterSensitiveLog: (obj: CertificateValidationRecord) => any;
34
- }
35
27
  export declare enum CustomDomainAssociationStatus {
36
28
  ACTIVE = "ACTIVE",
37
29
  BINDING_CERTIFICATE = "BINDING_CERTIFICATE",
@@ -52,10 +44,6 @@ export interface CustomDomain {
52
44
 
53
45
  Status: CustomDomainAssociationStatus | string | undefined;
54
46
  }
55
- export declare namespace CustomDomain {
56
-
57
- const filterSensitiveLog: (obj: CustomDomain) => any;
58
- }
59
47
  export interface AssociateCustomDomainResponse {
60
48
 
61
49
  DNSTarget: string | undefined;
@@ -64,10 +52,6 @@ export interface AssociateCustomDomainResponse {
64
52
 
65
53
  CustomDomain: CustomDomain | undefined;
66
54
  }
67
- export declare namespace AssociateCustomDomainResponse {
68
-
69
- const filterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
70
- }
71
55
 
72
56
  export declare class InternalServiceErrorException extends __BaseException {
73
57
  readonly name: "InternalServiceErrorException";
@@ -99,10 +83,6 @@ export interface Tag {
99
83
 
100
84
  Value?: string;
101
85
  }
102
- export declare namespace Tag {
103
-
104
- const filterSensitiveLog: (obj: Tag) => any;
105
- }
106
86
  export interface CreateAutoScalingConfigurationRequest {
107
87
 
108
88
  AutoScalingConfigurationName: string | undefined;
@@ -115,10 +95,6 @@ export interface CreateAutoScalingConfigurationRequest {
115
95
 
116
96
  Tags?: Tag[];
117
97
  }
118
- export declare namespace CreateAutoScalingConfigurationRequest {
119
-
120
- const filterSensitiveLog: (obj: CreateAutoScalingConfigurationRequest) => any;
121
- }
122
98
  export declare enum AutoScalingConfigurationStatus {
123
99
  ACTIVE = "ACTIVE",
124
100
  INACTIVE = "INACTIVE"
@@ -146,18 +122,10 @@ export interface AutoScalingConfiguration {
146
122
 
147
123
  DeletedAt?: Date;
148
124
  }
149
- export declare namespace AutoScalingConfiguration {
150
-
151
- const filterSensitiveLog: (obj: AutoScalingConfiguration) => any;
152
- }
153
125
  export interface CreateAutoScalingConfigurationResponse {
154
126
 
155
127
  AutoScalingConfiguration: AutoScalingConfiguration | undefined;
156
128
  }
157
- export declare namespace CreateAutoScalingConfigurationResponse {
158
-
159
- const filterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
160
- }
161
129
 
162
130
  export declare class ServiceQuotaExceededException extends __BaseException {
163
131
  readonly name: "ServiceQuotaExceededException";
@@ -177,10 +145,6 @@ export interface CreateConnectionRequest {
177
145
 
178
146
  Tags?: Tag[];
179
147
  }
180
- export declare namespace CreateConnectionRequest {
181
-
182
- const filterSensitiveLog: (obj: CreateConnectionRequest) => any;
183
- }
184
148
  export declare enum ConnectionStatus {
185
149
  AVAILABLE = "AVAILABLE",
186
150
  DELETED = "DELETED",
@@ -200,18 +164,10 @@ export interface Connection {
200
164
 
201
165
  CreatedAt?: Date;
202
166
  }
203
- export declare namespace Connection {
204
-
205
- const filterSensitiveLog: (obj: Connection) => any;
206
- }
207
167
  export interface CreateConnectionResponse {
208
168
 
209
169
  Connection: Connection | undefined;
210
170
  }
211
- export declare namespace CreateConnectionResponse {
212
-
213
- const filterSensitiveLog: (obj: CreateConnectionResponse) => any;
214
- }
215
171
  export declare enum TracingVendor {
216
172
  AWSXRAY = "AWSXRAY"
217
173
  }
@@ -220,10 +176,6 @@ export interface TraceConfiguration {
220
176
 
221
177
  Vendor: TracingVendor | string | undefined;
222
178
  }
223
- export declare namespace TraceConfiguration {
224
-
225
- const filterSensitiveLog: (obj: TraceConfiguration) => any;
226
- }
227
179
  export interface CreateObservabilityConfigurationRequest {
228
180
 
229
181
  ObservabilityConfigurationName: string | undefined;
@@ -232,10 +184,6 @@ export interface CreateObservabilityConfigurationRequest {
232
184
 
233
185
  Tags?: Tag[];
234
186
  }
235
- export declare namespace CreateObservabilityConfigurationRequest {
236
-
237
- const filterSensitiveLog: (obj: CreateObservabilityConfigurationRequest) => any;
238
- }
239
187
  export declare enum ObservabilityConfigurationStatus {
240
188
  ACTIVE = "ACTIVE",
241
189
  INACTIVE = "INACTIVE"
@@ -259,27 +207,15 @@ export interface ObservabilityConfiguration {
259
207
 
260
208
  DeletedAt?: Date;
261
209
  }
262
- export declare namespace ObservabilityConfiguration {
263
-
264
- const filterSensitiveLog: (obj: ObservabilityConfiguration) => any;
265
- }
266
210
  export interface CreateObservabilityConfigurationResponse {
267
211
 
268
212
  ObservabilityConfiguration: ObservabilityConfiguration | undefined;
269
213
  }
270
- export declare namespace CreateObservabilityConfigurationResponse {
271
-
272
- const filterSensitiveLog: (obj: CreateObservabilityConfigurationResponse) => any;
273
- }
274
214
 
275
215
  export interface EncryptionConfiguration {
276
216
 
277
217
  KmsKey: string | undefined;
278
218
  }
279
- export declare namespace EncryptionConfiguration {
280
-
281
- const filterSensitiveLog: (obj: EncryptionConfiguration) => any;
282
- }
283
219
  export declare enum HealthCheckProtocol {
284
220
  HTTP = "HTTP",
285
221
  TCP = "TCP"
@@ -299,10 +235,6 @@ export interface HealthCheckConfiguration {
299
235
 
300
236
  UnhealthyThreshold?: number;
301
237
  }
302
- export declare namespace HealthCheckConfiguration {
303
-
304
- const filterSensitiveLog: (obj: HealthCheckConfiguration) => any;
305
- }
306
238
 
307
239
  export interface InstanceConfiguration {
308
240
 
@@ -312,10 +244,6 @@ export interface InstanceConfiguration {
312
244
 
313
245
  InstanceRoleArn?: string;
314
246
  }
315
- export declare namespace InstanceConfiguration {
316
-
317
- const filterSensitiveLog: (obj: InstanceConfiguration) => any;
318
- }
319
247
  export declare enum EgressType {
320
248
  DEFAULT = "DEFAULT",
321
249
  VPC = "VPC"
@@ -327,19 +255,11 @@ export interface EgressConfiguration {
327
255
 
328
256
  VpcConnectorArn?: string;
329
257
  }
330
- export declare namespace EgressConfiguration {
331
-
332
- const filterSensitiveLog: (obj: EgressConfiguration) => any;
333
- }
334
258
 
335
259
  export interface NetworkConfiguration {
336
260
 
337
261
  EgressConfiguration?: EgressConfiguration;
338
262
  }
339
- export declare namespace NetworkConfiguration {
340
-
341
- const filterSensitiveLog: (obj: NetworkConfiguration) => any;
342
- }
343
263
 
344
264
  export interface ServiceObservabilityConfiguration {
345
265
 
@@ -347,10 +267,6 @@ export interface ServiceObservabilityConfiguration {
347
267
 
348
268
  ObservabilityConfigurationArn?: string;
349
269
  }
350
- export declare namespace ServiceObservabilityConfiguration {
351
-
352
- const filterSensitiveLog: (obj: ServiceObservabilityConfiguration) => any;
353
- }
354
270
 
355
271
  export interface AuthenticationConfiguration {
356
272
 
@@ -358,10 +274,6 @@ export interface AuthenticationConfiguration {
358
274
 
359
275
  AccessRoleArn?: string;
360
276
  }
361
- export declare namespace AuthenticationConfiguration {
362
-
363
- const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
364
- }
365
277
  export declare enum Runtime {
366
278
  CORRETTO_11 = "CORRETTO_11",
367
279
  CORRETTO_8 = "CORRETTO_8",
@@ -382,10 +294,6 @@ export interface CodeConfigurationValues {
382
294
 
383
295
  RuntimeEnvironmentVariables?: Record<string, string>;
384
296
  }
385
- export declare namespace CodeConfigurationValues {
386
-
387
- const filterSensitiveLog: (obj: CodeConfigurationValues) => any;
388
- }
389
297
  export declare enum ConfigurationSource {
390
298
  API = "API",
391
299
  REPOSITORY = "REPOSITORY"
@@ -397,10 +305,6 @@ export interface CodeConfiguration {
397
305
 
398
306
  CodeConfigurationValues?: CodeConfigurationValues;
399
307
  }
400
- export declare namespace CodeConfiguration {
401
-
402
- const filterSensitiveLog: (obj: CodeConfiguration) => any;
403
- }
404
308
  export declare enum SourceCodeVersionType {
405
309
  BRANCH = "BRANCH"
406
310
  }
@@ -411,10 +315,6 @@ export interface SourceCodeVersion {
411
315
 
412
316
  Value: string | undefined;
413
317
  }
414
- export declare namespace SourceCodeVersion {
415
-
416
- const filterSensitiveLog: (obj: SourceCodeVersion) => any;
417
- }
418
318
 
419
319
  export interface CodeRepository {
420
320
 
@@ -424,10 +324,6 @@ export interface CodeRepository {
424
324
 
425
325
  CodeConfiguration?: CodeConfiguration;
426
326
  }
427
- export declare namespace CodeRepository {
428
-
429
- const filterSensitiveLog: (obj: CodeRepository) => any;
430
- }
431
327
 
432
328
  export interface ImageConfiguration {
433
329
 
@@ -437,10 +333,6 @@ export interface ImageConfiguration {
437
333
 
438
334
  Port?: string;
439
335
  }
440
- export declare namespace ImageConfiguration {
441
-
442
- const filterSensitiveLog: (obj: ImageConfiguration) => any;
443
- }
444
336
  export declare enum ImageRepositoryType {
445
337
  ECR = "ECR",
446
338
  ECR_PUBLIC = "ECR_PUBLIC"
@@ -454,10 +346,6 @@ export interface ImageRepository {
454
346
 
455
347
  ImageRepositoryType: ImageRepositoryType | string | undefined;
456
348
  }
457
- export declare namespace ImageRepository {
458
-
459
- const filterSensitiveLog: (obj: ImageRepository) => any;
460
- }
461
349
 
462
350
  export interface SourceConfiguration {
463
351
 
@@ -469,10 +357,6 @@ export interface SourceConfiguration {
469
357
 
470
358
  AuthenticationConfiguration?: AuthenticationConfiguration;
471
359
  }
472
- export declare namespace SourceConfiguration {
473
-
474
- const filterSensitiveLog: (obj: SourceConfiguration) => any;
475
- }
476
360
  export interface CreateServiceRequest {
477
361
 
478
362
  ServiceName: string | undefined;
@@ -493,10 +377,6 @@ export interface CreateServiceRequest {
493
377
 
494
378
  ObservabilityConfiguration?: ServiceObservabilityConfiguration;
495
379
  }
496
- export declare namespace CreateServiceRequest {
497
-
498
- const filterSensitiveLog: (obj: CreateServiceRequest) => any;
499
- }
500
380
 
501
381
  export interface AutoScalingConfigurationSummary {
502
382
 
@@ -506,10 +386,6 @@ export interface AutoScalingConfigurationSummary {
506
386
 
507
387
  AutoScalingConfigurationRevision?: number;
508
388
  }
509
- export declare namespace AutoScalingConfigurationSummary {
510
-
511
- const filterSensitiveLog: (obj: AutoScalingConfigurationSummary) => any;
512
- }
513
389
  export declare enum ServiceStatus {
514
390
  CREATE_FAILED = "CREATE_FAILED",
515
391
  DELETED = "DELETED",
@@ -551,20 +427,12 @@ export interface Service {
551
427
 
552
428
  ObservabilityConfiguration?: ServiceObservabilityConfiguration;
553
429
  }
554
- export declare namespace Service {
555
-
556
- const filterSensitiveLog: (obj: Service) => any;
557
- }
558
430
  export interface CreateServiceResponse {
559
431
 
560
432
  Service: Service | undefined;
561
433
 
562
434
  OperationId: string | undefined;
563
435
  }
564
- export declare namespace CreateServiceResponse {
565
-
566
- const filterSensitiveLog: (obj: CreateServiceResponse) => any;
567
- }
568
436
  export interface CreateVpcConnectorRequest {
569
437
 
570
438
  VpcConnectorName: string | undefined;
@@ -575,10 +443,6 @@ export interface CreateVpcConnectorRequest {
575
443
 
576
444
  Tags?: Tag[];
577
445
  }
578
- export declare namespace CreateVpcConnectorRequest {
579
-
580
- const filterSensitiveLog: (obj: CreateVpcConnectorRequest) => any;
581
- }
582
446
  export declare enum VpcConnectorStatus {
583
447
  ACTIVE = "ACTIVE",
584
448
  INACTIVE = "INACTIVE"
@@ -602,34 +466,18 @@ export interface VpcConnector {
602
466
 
603
467
  DeletedAt?: Date;
604
468
  }
605
- export declare namespace VpcConnector {
606
-
607
- const filterSensitiveLog: (obj: VpcConnector) => any;
608
- }
609
469
  export interface CreateVpcConnectorResponse {
610
470
 
611
471
  VpcConnector: VpcConnector | undefined;
612
472
  }
613
- export declare namespace CreateVpcConnectorResponse {
614
-
615
- const filterSensitiveLog: (obj: CreateVpcConnectorResponse) => any;
616
- }
617
473
  export interface DeleteAutoScalingConfigurationRequest {
618
474
 
619
475
  AutoScalingConfigurationArn: string | undefined;
620
476
  }
621
- export declare namespace DeleteAutoScalingConfigurationRequest {
622
-
623
- const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationRequest) => any;
624
- }
625
477
  export interface DeleteAutoScalingConfigurationResponse {
626
478
 
627
479
  AutoScalingConfiguration: AutoScalingConfiguration | undefined;
628
480
  }
629
- export declare namespace DeleteAutoScalingConfigurationResponse {
630
-
631
- const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
632
- }
633
481
 
634
482
  export declare class ResourceNotFoundException extends __BaseException {
635
483
  readonly name: "ResourceNotFoundException";
@@ -642,84 +490,44 @@ export interface DeleteConnectionRequest {
642
490
 
643
491
  ConnectionArn: string | undefined;
644
492
  }
645
- export declare namespace DeleteConnectionRequest {
646
-
647
- const filterSensitiveLog: (obj: DeleteConnectionRequest) => any;
648
- }
649
493
  export interface DeleteConnectionResponse {
650
494
 
651
495
  Connection?: Connection;
652
496
  }
653
- export declare namespace DeleteConnectionResponse {
654
-
655
- const filterSensitiveLog: (obj: DeleteConnectionResponse) => any;
656
- }
657
497
  export interface DeleteObservabilityConfigurationRequest {
658
498
 
659
499
  ObservabilityConfigurationArn: string | undefined;
660
500
  }
661
- export declare namespace DeleteObservabilityConfigurationRequest {
662
-
663
- const filterSensitiveLog: (obj: DeleteObservabilityConfigurationRequest) => any;
664
- }
665
501
  export interface DeleteObservabilityConfigurationResponse {
666
502
 
667
503
  ObservabilityConfiguration: ObservabilityConfiguration | undefined;
668
504
  }
669
- export declare namespace DeleteObservabilityConfigurationResponse {
670
-
671
- const filterSensitiveLog: (obj: DeleteObservabilityConfigurationResponse) => any;
672
- }
673
505
  export interface DeleteServiceRequest {
674
506
 
675
507
  ServiceArn: string | undefined;
676
508
  }
677
- export declare namespace DeleteServiceRequest {
678
-
679
- const filterSensitiveLog: (obj: DeleteServiceRequest) => any;
680
- }
681
509
  export interface DeleteServiceResponse {
682
510
 
683
511
  Service: Service | undefined;
684
512
 
685
513
  OperationId: string | undefined;
686
514
  }
687
- export declare namespace DeleteServiceResponse {
688
-
689
- const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
690
- }
691
515
  export interface DeleteVpcConnectorRequest {
692
516
 
693
517
  VpcConnectorArn: string | undefined;
694
518
  }
695
- export declare namespace DeleteVpcConnectorRequest {
696
-
697
- const filterSensitiveLog: (obj: DeleteVpcConnectorRequest) => any;
698
- }
699
519
  export interface DeleteVpcConnectorResponse {
700
520
 
701
521
  VpcConnector: VpcConnector | undefined;
702
522
  }
703
- export declare namespace DeleteVpcConnectorResponse {
704
-
705
- const filterSensitiveLog: (obj: DeleteVpcConnectorResponse) => any;
706
- }
707
523
  export interface DescribeAutoScalingConfigurationRequest {
708
524
 
709
525
  AutoScalingConfigurationArn: string | undefined;
710
526
  }
711
- export declare namespace DescribeAutoScalingConfigurationRequest {
712
-
713
- const filterSensitiveLog: (obj: DescribeAutoScalingConfigurationRequest) => any;
714
- }
715
527
  export interface DescribeAutoScalingConfigurationResponse {
716
528
 
717
529
  AutoScalingConfiguration: AutoScalingConfiguration | undefined;
718
530
  }
719
- export declare namespace DescribeAutoScalingConfigurationResponse {
720
-
721
- const filterSensitiveLog: (obj: DescribeAutoScalingConfigurationResponse) => any;
722
- }
723
531
  export interface DescribeCustomDomainsRequest {
724
532
 
725
533
  ServiceArn: string | undefined;
@@ -728,10 +536,6 @@ export interface DescribeCustomDomainsRequest {
728
536
 
729
537
  MaxResults?: number;
730
538
  }
731
- export declare namespace DescribeCustomDomainsRequest {
732
-
733
- const filterSensitiveLog: (obj: DescribeCustomDomainsRequest) => any;
734
- }
735
539
  export interface DescribeCustomDomainsResponse {
736
540
 
737
541
  DNSTarget: string | undefined;
@@ -742,68 +546,36 @@ export interface DescribeCustomDomainsResponse {
742
546
 
743
547
  NextToken?: string;
744
548
  }
745
- export declare namespace DescribeCustomDomainsResponse {
746
-
747
- const filterSensitiveLog: (obj: DescribeCustomDomainsResponse) => any;
748
- }
749
549
  export interface DescribeObservabilityConfigurationRequest {
750
550
 
751
551
  ObservabilityConfigurationArn: string | undefined;
752
552
  }
753
- export declare namespace DescribeObservabilityConfigurationRequest {
754
-
755
- const filterSensitiveLog: (obj: DescribeObservabilityConfigurationRequest) => any;
756
- }
757
553
  export interface DescribeObservabilityConfigurationResponse {
758
554
 
759
555
  ObservabilityConfiguration: ObservabilityConfiguration | undefined;
760
556
  }
761
- export declare namespace DescribeObservabilityConfigurationResponse {
762
-
763
- const filterSensitiveLog: (obj: DescribeObservabilityConfigurationResponse) => any;
764
- }
765
557
  export interface DescribeServiceRequest {
766
558
 
767
559
  ServiceArn: string | undefined;
768
560
  }
769
- export declare namespace DescribeServiceRequest {
770
-
771
- const filterSensitiveLog: (obj: DescribeServiceRequest) => any;
772
- }
773
561
  export interface DescribeServiceResponse {
774
562
 
775
563
  Service: Service | undefined;
776
564
  }
777
- export declare namespace DescribeServiceResponse {
778
-
779
- const filterSensitiveLog: (obj: DescribeServiceResponse) => any;
780
- }
781
565
  export interface DescribeVpcConnectorRequest {
782
566
 
783
567
  VpcConnectorArn: string | undefined;
784
568
  }
785
- export declare namespace DescribeVpcConnectorRequest {
786
-
787
- const filterSensitiveLog: (obj: DescribeVpcConnectorRequest) => any;
788
- }
789
569
  export interface DescribeVpcConnectorResponse {
790
570
 
791
571
  VpcConnector: VpcConnector | undefined;
792
572
  }
793
- export declare namespace DescribeVpcConnectorResponse {
794
-
795
- const filterSensitiveLog: (obj: DescribeVpcConnectorResponse) => any;
796
- }
797
573
  export interface DisassociateCustomDomainRequest {
798
574
 
799
575
  ServiceArn: string | undefined;
800
576
 
801
577
  DomainName: string | undefined;
802
578
  }
803
- export declare namespace DisassociateCustomDomainRequest {
804
-
805
- const filterSensitiveLog: (obj: DisassociateCustomDomainRequest) => any;
806
- }
807
579
  export interface DisassociateCustomDomainResponse {
808
580
 
809
581
  DNSTarget: string | undefined;
@@ -812,10 +584,6 @@ export interface DisassociateCustomDomainResponse {
812
584
 
813
585
  CustomDomain: CustomDomain | undefined;
814
586
  }
815
- export declare namespace DisassociateCustomDomainResponse {
816
-
817
- const filterSensitiveLog: (obj: DisassociateCustomDomainResponse) => any;
818
- }
819
587
  export interface ListAutoScalingConfigurationsRequest {
820
588
 
821
589
  AutoScalingConfigurationName?: string;
@@ -826,20 +594,12 @@ export interface ListAutoScalingConfigurationsRequest {
826
594
 
827
595
  NextToken?: string;
828
596
  }
829
- export declare namespace ListAutoScalingConfigurationsRequest {
830
-
831
- const filterSensitiveLog: (obj: ListAutoScalingConfigurationsRequest) => any;
832
- }
833
597
  export interface ListAutoScalingConfigurationsResponse {
834
598
 
835
599
  AutoScalingConfigurationSummaryList: AutoScalingConfigurationSummary[] | undefined;
836
600
 
837
601
  NextToken?: string;
838
602
  }
839
- export declare namespace ListAutoScalingConfigurationsResponse {
840
-
841
- const filterSensitiveLog: (obj: ListAutoScalingConfigurationsResponse) => any;
842
- }
843
603
  export interface ListConnectionsRequest {
844
604
 
845
605
  ConnectionName?: string;
@@ -848,10 +608,6 @@ export interface ListConnectionsRequest {
848
608
 
849
609
  NextToken?: string;
850
610
  }
851
- export declare namespace ListConnectionsRequest {
852
-
853
- const filterSensitiveLog: (obj: ListConnectionsRequest) => any;
854
- }
855
611
 
856
612
  export interface ConnectionSummary {
857
613
 
@@ -865,20 +621,12 @@ export interface ConnectionSummary {
865
621
 
866
622
  CreatedAt?: Date;
867
623
  }
868
- export declare namespace ConnectionSummary {
869
-
870
- const filterSensitiveLog: (obj: ConnectionSummary) => any;
871
- }
872
624
  export interface ListConnectionsResponse {
873
625
 
874
626
  ConnectionSummaryList: ConnectionSummary[] | undefined;
875
627
 
876
628
  NextToken?: string;
877
629
  }
878
- export declare namespace ListConnectionsResponse {
879
-
880
- const filterSensitiveLog: (obj: ListConnectionsResponse) => any;
881
- }
882
630
  export interface ListObservabilityConfigurationsRequest {
883
631
 
884
632
  ObservabilityConfigurationName?: string;
@@ -889,10 +637,6 @@ export interface ListObservabilityConfigurationsRequest {
889
637
 
890
638
  NextToken?: string;
891
639
  }
892
- export declare namespace ListObservabilityConfigurationsRequest {
893
-
894
- const filterSensitiveLog: (obj: ListObservabilityConfigurationsRequest) => any;
895
- }
896
640
 
897
641
  export interface ObservabilityConfigurationSummary {
898
642
 
@@ -902,20 +646,12 @@ export interface ObservabilityConfigurationSummary {
902
646
 
903
647
  ObservabilityConfigurationRevision?: number;
904
648
  }
905
- export declare namespace ObservabilityConfigurationSummary {
906
-
907
- const filterSensitiveLog: (obj: ObservabilityConfigurationSummary) => any;
908
- }
909
649
  export interface ListObservabilityConfigurationsResponse {
910
650
 
911
651
  ObservabilityConfigurationSummaryList: ObservabilityConfigurationSummary[] | undefined;
912
652
 
913
653
  NextToken?: string;
914
654
  }
915
- export declare namespace ListObservabilityConfigurationsResponse {
916
-
917
- const filterSensitiveLog: (obj: ListObservabilityConfigurationsResponse) => any;
918
- }
919
655
  export interface ListOperationsRequest {
920
656
 
921
657
  ServiceArn: string | undefined;
@@ -924,10 +660,6 @@ export interface ListOperationsRequest {
924
660
 
925
661
  MaxResults?: number;
926
662
  }
927
- export declare namespace ListOperationsRequest {
928
-
929
- const filterSensitiveLog: (obj: ListOperationsRequest) => any;
930
- }
931
663
  export declare enum OperationStatus {
932
664
  FAILED = "FAILED",
933
665
  IN_PROGRESS = "IN_PROGRESS",
@@ -961,30 +693,18 @@ export interface OperationSummary {
961
693
 
962
694
  UpdatedAt?: Date;
963
695
  }
964
- export declare namespace OperationSummary {
965
-
966
- const filterSensitiveLog: (obj: OperationSummary) => any;
967
- }
968
696
  export interface ListOperationsResponse {
969
697
 
970
698
  OperationSummaryList?: OperationSummary[];
971
699
 
972
700
  NextToken?: string;
973
701
  }
974
- export declare namespace ListOperationsResponse {
975
-
976
- const filterSensitiveLog: (obj: ListOperationsResponse) => any;
977
- }
978
702
  export interface ListServicesRequest {
979
703
 
980
704
  NextToken?: string;
981
705
 
982
706
  MaxResults?: number;
983
707
  }
984
- export declare namespace ListServicesRequest {
985
-
986
- const filterSensitiveLog: (obj: ListServicesRequest) => any;
987
- }
988
708
 
989
709
  export interface ServiceSummary {
990
710
 
@@ -1002,140 +722,76 @@ export interface ServiceSummary {
1002
722
 
1003
723
  Status?: ServiceStatus | string;
1004
724
  }
1005
- export declare namespace ServiceSummary {
1006
-
1007
- const filterSensitiveLog: (obj: ServiceSummary) => any;
1008
- }
1009
725
  export interface ListServicesResponse {
1010
726
 
1011
727
  ServiceSummaryList: ServiceSummary[] | undefined;
1012
728
 
1013
729
  NextToken?: string;
1014
730
  }
1015
- export declare namespace ListServicesResponse {
1016
-
1017
- const filterSensitiveLog: (obj: ListServicesResponse) => any;
1018
- }
1019
731
  export interface ListTagsForResourceRequest {
1020
732
 
1021
733
  ResourceArn: string | undefined;
1022
734
  }
1023
- export declare namespace ListTagsForResourceRequest {
1024
-
1025
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1026
- }
1027
735
  export interface ListTagsForResourceResponse {
1028
736
 
1029
737
  Tags?: Tag[];
1030
738
  }
1031
- export declare namespace ListTagsForResourceResponse {
1032
-
1033
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1034
- }
1035
739
  export interface ListVpcConnectorsRequest {
1036
740
 
1037
741
  MaxResults?: number;
1038
742
 
1039
743
  NextToken?: string;
1040
744
  }
1041
- export declare namespace ListVpcConnectorsRequest {
1042
-
1043
- const filterSensitiveLog: (obj: ListVpcConnectorsRequest) => any;
1044
- }
1045
745
  export interface ListVpcConnectorsResponse {
1046
746
 
1047
747
  VpcConnectors: VpcConnector[] | undefined;
1048
748
 
1049
749
  NextToken?: string;
1050
750
  }
1051
- export declare namespace ListVpcConnectorsResponse {
1052
-
1053
- const filterSensitiveLog: (obj: ListVpcConnectorsResponse) => any;
1054
- }
1055
751
  export interface PauseServiceRequest {
1056
752
 
1057
753
  ServiceArn: string | undefined;
1058
754
  }
1059
- export declare namespace PauseServiceRequest {
1060
-
1061
- const filterSensitiveLog: (obj: PauseServiceRequest) => any;
1062
- }
1063
755
  export interface PauseServiceResponse {
1064
756
 
1065
757
  Service: Service | undefined;
1066
758
 
1067
759
  OperationId?: string;
1068
760
  }
1069
- export declare namespace PauseServiceResponse {
1070
-
1071
- const filterSensitiveLog: (obj: PauseServiceResponse) => any;
1072
- }
1073
761
  export interface ResumeServiceRequest {
1074
762
 
1075
763
  ServiceArn: string | undefined;
1076
764
  }
1077
- export declare namespace ResumeServiceRequest {
1078
-
1079
- const filterSensitiveLog: (obj: ResumeServiceRequest) => any;
1080
- }
1081
765
  export interface ResumeServiceResponse {
1082
766
 
1083
767
  Service: Service | undefined;
1084
768
 
1085
769
  OperationId?: string;
1086
770
  }
1087
- export declare namespace ResumeServiceResponse {
1088
-
1089
- const filterSensitiveLog: (obj: ResumeServiceResponse) => any;
1090
- }
1091
771
  export interface StartDeploymentRequest {
1092
772
 
1093
773
  ServiceArn: string | undefined;
1094
774
  }
1095
- export declare namespace StartDeploymentRequest {
1096
-
1097
- const filterSensitiveLog: (obj: StartDeploymentRequest) => any;
1098
- }
1099
775
  export interface StartDeploymentResponse {
1100
776
 
1101
777
  OperationId: string | undefined;
1102
778
  }
1103
- export declare namespace StartDeploymentResponse {
1104
-
1105
- const filterSensitiveLog: (obj: StartDeploymentResponse) => any;
1106
- }
1107
779
  export interface TagResourceRequest {
1108
780
 
1109
781
  ResourceArn: string | undefined;
1110
782
 
1111
783
  Tags: Tag[] | undefined;
1112
784
  }
1113
- export declare namespace TagResourceRequest {
1114
-
1115
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
1116
- }
1117
785
  export interface TagResourceResponse {
1118
786
  }
1119
- export declare namespace TagResourceResponse {
1120
-
1121
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
1122
- }
1123
787
  export interface UntagResourceRequest {
1124
788
 
1125
789
  ResourceArn: string | undefined;
1126
790
 
1127
791
  TagKeys: string[] | undefined;
1128
792
  }
1129
- export declare namespace UntagResourceRequest {
1130
-
1131
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1132
- }
1133
793
  export interface UntagResourceResponse {
1134
794
  }
1135
- export declare namespace UntagResourceResponse {
1136
-
1137
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1138
- }
1139
795
  export interface UpdateServiceRequest {
1140
796
 
1141
797
  ServiceArn: string | undefined;
@@ -1152,17 +808,185 @@ export interface UpdateServiceRequest {
1152
808
 
1153
809
  ObservabilityConfiguration?: ServiceObservabilityConfiguration;
1154
810
  }
1155
- export declare namespace UpdateServiceRequest {
1156
-
1157
- const filterSensitiveLog: (obj: UpdateServiceRequest) => any;
1158
- }
1159
811
  export interface UpdateServiceResponse {
1160
812
 
1161
813
  Service: Service | undefined;
1162
814
 
1163
815
  OperationId: string | undefined;
1164
816
  }
1165
- export declare namespace UpdateServiceResponse {
1166
-
1167
- const filterSensitiveLog: (obj: UpdateServiceResponse) => any;
1168
- }
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;