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