@aws-sdk/client-apprunner 3.50.0 → 3.51.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 (43) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AppRunner.d.ts +115 -0
  3. package/dist-types/ts3.4/AppRunnerClient.d.ts +95 -0
  4. package/dist-types/ts3.4/commands/AssociateCustomDomainCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  28. package/dist-types/ts3.4/index.d.ts +5 -0
  29. package/dist-types/ts3.4/models/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +882 -0
  31. package/dist-types/ts3.4/pagination/DescribeCustomDomainsPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  33. package/dist-types/ts3.4/pagination/ListAutoScalingConfigurationsPaginator.d.ts +4 -0
  34. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +4 -0
  35. package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  38. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +68 -0
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  43. package/package.json +8 -8
@@ -0,0 +1,882 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+ export interface AssociateCustomDomainRequest {
3
+
4
+ ServiceArn: string | undefined;
5
+
6
+ DomainName: string | undefined;
7
+
8
+ EnableWWWSubdomain?: boolean;
9
+ }
10
+ export declare namespace AssociateCustomDomainRequest {
11
+
12
+ const filterSensitiveLog: (obj: AssociateCustomDomainRequest) => any;
13
+ }
14
+ export declare enum CertificateValidationRecordStatus {
15
+ FAILED = "FAILED",
16
+ PENDING_VALIDATION = "PENDING_VALIDATION",
17
+ SUCCESS = "SUCCESS"
18
+ }
19
+
20
+ export interface CertificateValidationRecord {
21
+
22
+ Name?: string;
23
+
24
+ Type?: string;
25
+
26
+ Value?: string;
27
+
28
+ Status?: CertificateValidationRecordStatus | string;
29
+ }
30
+ export declare namespace CertificateValidationRecord {
31
+
32
+ const filterSensitiveLog: (obj: CertificateValidationRecord) => any;
33
+ }
34
+ export declare enum CustomDomainAssociationStatus {
35
+ ACTIVE = "ACTIVE",
36
+ BINDING_CERTIFICATE = "BINDING_CERTIFICATE",
37
+ CREATE_FAILED = "CREATE_FAILED",
38
+ CREATING = "CREATING",
39
+ DELETE_FAILED = "DELETE_FAILED",
40
+ DELETING = "DELETING",
41
+ PENDING_CERTIFICATE_DNS_VALIDATION = "PENDING_CERTIFICATE_DNS_VALIDATION"
42
+ }
43
+
44
+ export interface CustomDomain {
45
+
46
+ DomainName: string | undefined;
47
+
48
+ EnableWWWSubdomain: boolean | undefined;
49
+
50
+ CertificateValidationRecords?: CertificateValidationRecord[];
51
+
52
+ Status: CustomDomainAssociationStatus | string | undefined;
53
+ }
54
+ export declare namespace CustomDomain {
55
+
56
+ const filterSensitiveLog: (obj: CustomDomain) => any;
57
+ }
58
+ export interface AssociateCustomDomainResponse {
59
+
60
+ DNSTarget: string | undefined;
61
+
62
+ ServiceArn: string | undefined;
63
+
64
+ CustomDomain: CustomDomain | undefined;
65
+ }
66
+ export declare namespace AssociateCustomDomainResponse {
67
+
68
+ const filterSensitiveLog: (obj: AssociateCustomDomainResponse) => any;
69
+ }
70
+
71
+ export interface InternalServiceErrorException extends __SmithyException, $MetadataBearer {
72
+ name: "InternalServiceErrorException";
73
+ $fault: "server";
74
+ Message?: string;
75
+ }
76
+
77
+ export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
78
+ name: "InvalidRequestException";
79
+ $fault: "client";
80
+ Message?: string;
81
+ }
82
+
83
+ export interface InvalidStateException extends __SmithyException, $MetadataBearer {
84
+ name: "InvalidStateException";
85
+ $fault: "client";
86
+ Message?: string;
87
+ }
88
+
89
+ export interface Tag {
90
+
91
+ Key?: string;
92
+
93
+ Value?: string;
94
+ }
95
+ export declare namespace Tag {
96
+
97
+ const filterSensitiveLog: (obj: Tag) => any;
98
+ }
99
+ export interface CreateAutoScalingConfigurationRequest {
100
+
101
+ AutoScalingConfigurationName: string | undefined;
102
+
103
+ MaxConcurrency?: number;
104
+
105
+ MinSize?: number;
106
+
107
+ MaxSize?: number;
108
+
109
+ Tags?: Tag[];
110
+ }
111
+ export declare namespace CreateAutoScalingConfigurationRequest {
112
+
113
+ const filterSensitiveLog: (obj: CreateAutoScalingConfigurationRequest) => any;
114
+ }
115
+ export declare enum AutoScalingConfigurationStatus {
116
+ ACTIVE = "ACTIVE",
117
+ INACTIVE = "INACTIVE"
118
+ }
119
+
120
+ export interface AutoScalingConfiguration {
121
+
122
+ AutoScalingConfigurationArn?: string;
123
+
124
+ AutoScalingConfigurationName?: string;
125
+
126
+ AutoScalingConfigurationRevision?: number;
127
+
128
+ Latest?: boolean;
129
+
130
+ Status?: AutoScalingConfigurationStatus | string;
131
+
132
+ MaxConcurrency?: number;
133
+
134
+ MinSize?: number;
135
+
136
+ MaxSize?: number;
137
+
138
+ CreatedAt?: Date;
139
+
140
+ DeletedAt?: Date;
141
+ }
142
+ export declare namespace AutoScalingConfiguration {
143
+
144
+ const filterSensitiveLog: (obj: AutoScalingConfiguration) => any;
145
+ }
146
+ export interface CreateAutoScalingConfigurationResponse {
147
+
148
+ AutoScalingConfiguration: AutoScalingConfiguration | undefined;
149
+ }
150
+ export declare namespace CreateAutoScalingConfigurationResponse {
151
+
152
+ const filterSensitiveLog: (obj: CreateAutoScalingConfigurationResponse) => any;
153
+ }
154
+
155
+ export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
156
+ name: "ServiceQuotaExceededException";
157
+ $fault: "client";
158
+ Message?: string;
159
+ }
160
+ export declare enum ProviderType {
161
+ GITHUB = "GITHUB"
162
+ }
163
+ export interface CreateConnectionRequest {
164
+
165
+ ConnectionName: string | undefined;
166
+
167
+ ProviderType: ProviderType | string | undefined;
168
+
169
+ Tags?: Tag[];
170
+ }
171
+ export declare namespace CreateConnectionRequest {
172
+
173
+ const filterSensitiveLog: (obj: CreateConnectionRequest) => any;
174
+ }
175
+ export declare enum ConnectionStatus {
176
+ AVAILABLE = "AVAILABLE",
177
+ DELETED = "DELETED",
178
+ ERROR = "ERROR",
179
+ PENDING_HANDSHAKE = "PENDING_HANDSHAKE"
180
+ }
181
+
182
+ export interface Connection {
183
+
184
+ ConnectionName?: string;
185
+
186
+ ConnectionArn?: string;
187
+
188
+ ProviderType?: ProviderType | string;
189
+
190
+ Status?: ConnectionStatus | string;
191
+
192
+ CreatedAt?: Date;
193
+ }
194
+ export declare namespace Connection {
195
+
196
+ const filterSensitiveLog: (obj: Connection) => any;
197
+ }
198
+ export interface CreateConnectionResponse {
199
+
200
+ Connection: Connection | undefined;
201
+ }
202
+ export declare namespace CreateConnectionResponse {
203
+
204
+ const filterSensitiveLog: (obj: CreateConnectionResponse) => any;
205
+ }
206
+
207
+ export interface EncryptionConfiguration {
208
+
209
+ KmsKey: string | undefined;
210
+ }
211
+ export declare namespace EncryptionConfiguration {
212
+
213
+ const filterSensitiveLog: (obj: EncryptionConfiguration) => any;
214
+ }
215
+ export declare enum HealthCheckProtocol {
216
+ HTTP = "HTTP",
217
+ TCP = "TCP"
218
+ }
219
+
220
+ export interface HealthCheckConfiguration {
221
+
222
+ Protocol?: HealthCheckProtocol | string;
223
+
224
+ Path?: string;
225
+
226
+ Interval?: number;
227
+
228
+ Timeout?: number;
229
+
230
+ HealthyThreshold?: number;
231
+
232
+ UnhealthyThreshold?: number;
233
+ }
234
+ export declare namespace HealthCheckConfiguration {
235
+
236
+ const filterSensitiveLog: (obj: HealthCheckConfiguration) => any;
237
+ }
238
+
239
+ export interface InstanceConfiguration {
240
+
241
+ Cpu?: string;
242
+
243
+ Memory?: string;
244
+
245
+ InstanceRoleArn?: string;
246
+ }
247
+ export declare namespace InstanceConfiguration {
248
+
249
+ const filterSensitiveLog: (obj: InstanceConfiguration) => any;
250
+ }
251
+
252
+ export interface AuthenticationConfiguration {
253
+
254
+ ConnectionArn?: string;
255
+
256
+ AccessRoleArn?: string;
257
+ }
258
+ export declare namespace AuthenticationConfiguration {
259
+
260
+ const filterSensitiveLog: (obj: AuthenticationConfiguration) => any;
261
+ }
262
+ export declare enum Runtime {
263
+ NODEJS_12 = "NODEJS_12",
264
+ PYTHON_3 = "PYTHON_3"
265
+ }
266
+
267
+ export interface CodeConfigurationValues {
268
+
269
+ Runtime: Runtime | string | undefined;
270
+
271
+ BuildCommand?: string;
272
+
273
+ StartCommand?: string;
274
+
275
+ Port?: string;
276
+
277
+ RuntimeEnvironmentVariables?: {
278
+ [key: string]: string;
279
+ };
280
+ }
281
+ export declare namespace CodeConfigurationValues {
282
+
283
+ const filterSensitiveLog: (obj: CodeConfigurationValues) => any;
284
+ }
285
+ export declare enum ConfigurationSource {
286
+ API = "API",
287
+ REPOSITORY = "REPOSITORY"
288
+ }
289
+
290
+ export interface CodeConfiguration {
291
+
292
+ ConfigurationSource: ConfigurationSource | string | undefined;
293
+
294
+ CodeConfigurationValues?: CodeConfigurationValues;
295
+ }
296
+ export declare namespace CodeConfiguration {
297
+
298
+ const filterSensitiveLog: (obj: CodeConfiguration) => any;
299
+ }
300
+ export declare enum SourceCodeVersionType {
301
+ BRANCH = "BRANCH"
302
+ }
303
+
304
+ export interface SourceCodeVersion {
305
+
306
+ Type: SourceCodeVersionType | string | undefined;
307
+
308
+ Value: string | undefined;
309
+ }
310
+ export declare namespace SourceCodeVersion {
311
+
312
+ const filterSensitiveLog: (obj: SourceCodeVersion) => any;
313
+ }
314
+
315
+ export interface CodeRepository {
316
+
317
+ RepositoryUrl: string | undefined;
318
+
319
+ SourceCodeVersion: SourceCodeVersion | undefined;
320
+
321
+ CodeConfiguration?: CodeConfiguration;
322
+ }
323
+ export declare namespace CodeRepository {
324
+
325
+ const filterSensitiveLog: (obj: CodeRepository) => any;
326
+ }
327
+
328
+ export interface ImageConfiguration {
329
+
330
+ RuntimeEnvironmentVariables?: {
331
+ [key: string]: string;
332
+ };
333
+
334
+ StartCommand?: string;
335
+
336
+ Port?: string;
337
+ }
338
+ export declare namespace ImageConfiguration {
339
+
340
+ const filterSensitiveLog: (obj: ImageConfiguration) => any;
341
+ }
342
+ export declare enum ImageRepositoryType {
343
+ ECR = "ECR",
344
+ ECR_PUBLIC = "ECR_PUBLIC"
345
+ }
346
+
347
+ export interface ImageRepository {
348
+
349
+ ImageIdentifier: string | undefined;
350
+
351
+ ImageConfiguration?: ImageConfiguration;
352
+
353
+ ImageRepositoryType: ImageRepositoryType | string | undefined;
354
+ }
355
+ export declare namespace ImageRepository {
356
+
357
+ const filterSensitiveLog: (obj: ImageRepository) => any;
358
+ }
359
+
360
+ export interface SourceConfiguration {
361
+
362
+ CodeRepository?: CodeRepository;
363
+
364
+ ImageRepository?: ImageRepository;
365
+
366
+ AutoDeploymentsEnabled?: boolean;
367
+
368
+ AuthenticationConfiguration?: AuthenticationConfiguration;
369
+ }
370
+ export declare namespace SourceConfiguration {
371
+
372
+ const filterSensitiveLog: (obj: SourceConfiguration) => any;
373
+ }
374
+ export interface CreateServiceRequest {
375
+
376
+ ServiceName: string | undefined;
377
+
378
+ SourceConfiguration: SourceConfiguration | undefined;
379
+
380
+ InstanceConfiguration?: InstanceConfiguration;
381
+
382
+ Tags?: Tag[];
383
+
384
+ EncryptionConfiguration?: EncryptionConfiguration;
385
+
386
+ HealthCheckConfiguration?: HealthCheckConfiguration;
387
+
388
+ AutoScalingConfigurationArn?: string;
389
+ }
390
+ export declare namespace CreateServiceRequest {
391
+
392
+ const filterSensitiveLog: (obj: CreateServiceRequest) => any;
393
+ }
394
+
395
+ export interface AutoScalingConfigurationSummary {
396
+
397
+ AutoScalingConfigurationArn?: string;
398
+
399
+ AutoScalingConfigurationName?: string;
400
+
401
+ AutoScalingConfigurationRevision?: number;
402
+ }
403
+ export declare namespace AutoScalingConfigurationSummary {
404
+
405
+ const filterSensitiveLog: (obj: AutoScalingConfigurationSummary) => any;
406
+ }
407
+ export declare enum ServiceStatus {
408
+ CREATE_FAILED = "CREATE_FAILED",
409
+ DELETED = "DELETED",
410
+ DELETE_FAILED = "DELETE_FAILED",
411
+ OPERATION_IN_PROGRESS = "OPERATION_IN_PROGRESS",
412
+ PAUSED = "PAUSED",
413
+ RUNNING = "RUNNING"
414
+ }
415
+
416
+ export interface Service {
417
+
418
+ ServiceName: string | undefined;
419
+
420
+ ServiceId: string | undefined;
421
+
422
+ ServiceArn: string | undefined;
423
+
424
+ ServiceUrl: string | undefined;
425
+
426
+ CreatedAt: Date | undefined;
427
+
428
+ UpdatedAt: Date | undefined;
429
+
430
+ DeletedAt?: Date;
431
+
432
+ Status: ServiceStatus | string | undefined;
433
+
434
+ SourceConfiguration: SourceConfiguration | undefined;
435
+
436
+ InstanceConfiguration: InstanceConfiguration | undefined;
437
+
438
+ EncryptionConfiguration?: EncryptionConfiguration;
439
+
440
+ HealthCheckConfiguration?: HealthCheckConfiguration;
441
+
442
+ AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
443
+ }
444
+ export declare namespace Service {
445
+
446
+ const filterSensitiveLog: (obj: Service) => any;
447
+ }
448
+ export interface CreateServiceResponse {
449
+
450
+ Service: Service | undefined;
451
+
452
+ OperationId: string | undefined;
453
+ }
454
+ export declare namespace CreateServiceResponse {
455
+
456
+ const filterSensitiveLog: (obj: CreateServiceResponse) => any;
457
+ }
458
+ export interface DeleteAutoScalingConfigurationRequest {
459
+
460
+ AutoScalingConfigurationArn: string | undefined;
461
+ }
462
+ export declare namespace DeleteAutoScalingConfigurationRequest {
463
+
464
+ const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationRequest) => any;
465
+ }
466
+ export interface DeleteAutoScalingConfigurationResponse {
467
+
468
+ AutoScalingConfiguration: AutoScalingConfiguration | undefined;
469
+ }
470
+ export declare namespace DeleteAutoScalingConfigurationResponse {
471
+
472
+ const filterSensitiveLog: (obj: DeleteAutoScalingConfigurationResponse) => any;
473
+ }
474
+
475
+ export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
476
+ name: "ResourceNotFoundException";
477
+ $fault: "client";
478
+ Message?: string;
479
+ }
480
+ export interface DeleteConnectionRequest {
481
+
482
+ ConnectionArn: string | undefined;
483
+ }
484
+ export declare namespace DeleteConnectionRequest {
485
+
486
+ const filterSensitiveLog: (obj: DeleteConnectionRequest) => any;
487
+ }
488
+ export interface DeleteConnectionResponse {
489
+
490
+ Connection?: Connection;
491
+ }
492
+ export declare namespace DeleteConnectionResponse {
493
+
494
+ const filterSensitiveLog: (obj: DeleteConnectionResponse) => any;
495
+ }
496
+ export interface DeleteServiceRequest {
497
+
498
+ ServiceArn: string | undefined;
499
+ }
500
+ export declare namespace DeleteServiceRequest {
501
+
502
+ const filterSensitiveLog: (obj: DeleteServiceRequest) => any;
503
+ }
504
+ export interface DeleteServiceResponse {
505
+
506
+ Service: Service | undefined;
507
+
508
+ OperationId: string | undefined;
509
+ }
510
+ export declare namespace DeleteServiceResponse {
511
+
512
+ const filterSensitiveLog: (obj: DeleteServiceResponse) => any;
513
+ }
514
+ export interface DescribeAutoScalingConfigurationRequest {
515
+
516
+ AutoScalingConfigurationArn: string | undefined;
517
+ }
518
+ export declare namespace DescribeAutoScalingConfigurationRequest {
519
+
520
+ const filterSensitiveLog: (obj: DescribeAutoScalingConfigurationRequest) => any;
521
+ }
522
+ export interface DescribeAutoScalingConfigurationResponse {
523
+
524
+ AutoScalingConfiguration: AutoScalingConfiguration | undefined;
525
+ }
526
+ export declare namespace DescribeAutoScalingConfigurationResponse {
527
+
528
+ const filterSensitiveLog: (obj: DescribeAutoScalingConfigurationResponse) => any;
529
+ }
530
+ export interface DescribeCustomDomainsRequest {
531
+
532
+ ServiceArn: string | undefined;
533
+
534
+ NextToken?: string;
535
+
536
+ MaxResults?: number;
537
+ }
538
+ export declare namespace DescribeCustomDomainsRequest {
539
+
540
+ const filterSensitiveLog: (obj: DescribeCustomDomainsRequest) => any;
541
+ }
542
+ export interface DescribeCustomDomainsResponse {
543
+
544
+ DNSTarget: string | undefined;
545
+
546
+ ServiceArn: string | undefined;
547
+
548
+ CustomDomains: CustomDomain[] | undefined;
549
+
550
+ NextToken?: string;
551
+ }
552
+ export declare namespace DescribeCustomDomainsResponse {
553
+
554
+ const filterSensitiveLog: (obj: DescribeCustomDomainsResponse) => any;
555
+ }
556
+ export interface DescribeServiceRequest {
557
+
558
+ ServiceArn: string | undefined;
559
+ }
560
+ export declare namespace DescribeServiceRequest {
561
+
562
+ const filterSensitiveLog: (obj: DescribeServiceRequest) => any;
563
+ }
564
+ export interface DescribeServiceResponse {
565
+
566
+ Service: Service | undefined;
567
+ }
568
+ export declare namespace DescribeServiceResponse {
569
+
570
+ const filterSensitiveLog: (obj: DescribeServiceResponse) => any;
571
+ }
572
+ export interface DisassociateCustomDomainRequest {
573
+
574
+ ServiceArn: string | undefined;
575
+
576
+ DomainName: string | undefined;
577
+ }
578
+ export declare namespace DisassociateCustomDomainRequest {
579
+
580
+ const filterSensitiveLog: (obj: DisassociateCustomDomainRequest) => any;
581
+ }
582
+ export interface DisassociateCustomDomainResponse {
583
+
584
+ DNSTarget: string | undefined;
585
+
586
+ ServiceArn: string | undefined;
587
+
588
+ CustomDomain: CustomDomain | undefined;
589
+ }
590
+ export declare namespace DisassociateCustomDomainResponse {
591
+
592
+ const filterSensitiveLog: (obj: DisassociateCustomDomainResponse) => any;
593
+ }
594
+ export interface ListAutoScalingConfigurationsRequest {
595
+
596
+ AutoScalingConfigurationName?: string;
597
+
598
+ LatestOnly?: boolean;
599
+
600
+ MaxResults?: number;
601
+
602
+ NextToken?: string;
603
+ }
604
+ export declare namespace ListAutoScalingConfigurationsRequest {
605
+
606
+ const filterSensitiveLog: (obj: ListAutoScalingConfigurationsRequest) => any;
607
+ }
608
+ export interface ListAutoScalingConfigurationsResponse {
609
+
610
+ AutoScalingConfigurationSummaryList: AutoScalingConfigurationSummary[] | undefined;
611
+
612
+ NextToken?: string;
613
+ }
614
+ export declare namespace ListAutoScalingConfigurationsResponse {
615
+
616
+ const filterSensitiveLog: (obj: ListAutoScalingConfigurationsResponse) => any;
617
+ }
618
+ export interface ListConnectionsRequest {
619
+
620
+ ConnectionName?: string;
621
+
622
+ MaxResults?: number;
623
+
624
+ NextToken?: string;
625
+ }
626
+ export declare namespace ListConnectionsRequest {
627
+
628
+ const filterSensitiveLog: (obj: ListConnectionsRequest) => any;
629
+ }
630
+
631
+ export interface ConnectionSummary {
632
+
633
+ ConnectionName?: string;
634
+
635
+ ConnectionArn?: string;
636
+
637
+ ProviderType?: ProviderType | string;
638
+
639
+ Status?: ConnectionStatus | string;
640
+
641
+ CreatedAt?: Date;
642
+ }
643
+ export declare namespace ConnectionSummary {
644
+
645
+ const filterSensitiveLog: (obj: ConnectionSummary) => any;
646
+ }
647
+ export interface ListConnectionsResponse {
648
+
649
+ ConnectionSummaryList: ConnectionSummary[] | undefined;
650
+
651
+ NextToken?: string;
652
+ }
653
+ export declare namespace ListConnectionsResponse {
654
+
655
+ const filterSensitiveLog: (obj: ListConnectionsResponse) => any;
656
+ }
657
+ export interface ListOperationsRequest {
658
+
659
+ ServiceArn: string | undefined;
660
+
661
+ NextToken?: string;
662
+
663
+ MaxResults?: number;
664
+ }
665
+ export declare namespace ListOperationsRequest {
666
+
667
+ const filterSensitiveLog: (obj: ListOperationsRequest) => any;
668
+ }
669
+ export declare enum OperationStatus {
670
+ FAILED = "FAILED",
671
+ IN_PROGRESS = "IN_PROGRESS",
672
+ PENDING = "PENDING",
673
+ ROLLBACK_FAILED = "ROLLBACK_FAILED",
674
+ ROLLBACK_IN_PROGRESS = "ROLLBACK_IN_PROGRESS",
675
+ ROLLBACK_SUCCEEDED = "ROLLBACK_SUCCEEDED",
676
+ SUCCEEDED = "SUCCEEDED"
677
+ }
678
+ export declare enum OperationType {
679
+ CREATE_SERVICE = "CREATE_SERVICE",
680
+ DELETE_SERVICE = "DELETE_SERVICE",
681
+ PAUSE_SERVICE = "PAUSE_SERVICE",
682
+ RESUME_SERVICE = "RESUME_SERVICE",
683
+ START_DEPLOYMENT = "START_DEPLOYMENT"
684
+ }
685
+
686
+ export interface OperationSummary {
687
+
688
+ Id?: string;
689
+
690
+ Type?: OperationType | string;
691
+
692
+ Status?: OperationStatus | string;
693
+
694
+ TargetArn?: string;
695
+
696
+ StartedAt?: Date;
697
+
698
+ EndedAt?: Date;
699
+
700
+ UpdatedAt?: Date;
701
+ }
702
+ export declare namespace OperationSummary {
703
+
704
+ const filterSensitiveLog: (obj: OperationSummary) => any;
705
+ }
706
+ export interface ListOperationsResponse {
707
+
708
+ OperationSummaryList?: OperationSummary[];
709
+
710
+ NextToken?: string;
711
+ }
712
+ export declare namespace ListOperationsResponse {
713
+
714
+ const filterSensitiveLog: (obj: ListOperationsResponse) => any;
715
+ }
716
+ export interface ListServicesRequest {
717
+
718
+ NextToken?: string;
719
+
720
+ MaxResults?: number;
721
+ }
722
+ export declare namespace ListServicesRequest {
723
+
724
+ const filterSensitiveLog: (obj: ListServicesRequest) => any;
725
+ }
726
+
727
+ export interface ServiceSummary {
728
+
729
+ ServiceName?: string;
730
+
731
+ ServiceId?: string;
732
+
733
+ ServiceArn?: string;
734
+
735
+ ServiceUrl?: string;
736
+
737
+ CreatedAt?: Date;
738
+
739
+ UpdatedAt?: Date;
740
+
741
+ Status?: ServiceStatus | string;
742
+ }
743
+ export declare namespace ServiceSummary {
744
+
745
+ const filterSensitiveLog: (obj: ServiceSummary) => any;
746
+ }
747
+ export interface ListServicesResponse {
748
+
749
+ ServiceSummaryList: ServiceSummary[] | undefined;
750
+
751
+ NextToken?: string;
752
+ }
753
+ export declare namespace ListServicesResponse {
754
+
755
+ const filterSensitiveLog: (obj: ListServicesResponse) => any;
756
+ }
757
+ export interface ListTagsForResourceRequest {
758
+
759
+ ResourceArn: string | undefined;
760
+ }
761
+ export declare namespace ListTagsForResourceRequest {
762
+
763
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
764
+ }
765
+ export interface ListTagsForResourceResponse {
766
+
767
+ Tags?: Tag[];
768
+ }
769
+ export declare namespace ListTagsForResourceResponse {
770
+
771
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
772
+ }
773
+ export interface PauseServiceRequest {
774
+
775
+ ServiceArn: string | undefined;
776
+ }
777
+ export declare namespace PauseServiceRequest {
778
+
779
+ const filterSensitiveLog: (obj: PauseServiceRequest) => any;
780
+ }
781
+ export interface PauseServiceResponse {
782
+
783
+ Service: Service | undefined;
784
+
785
+ OperationId?: string;
786
+ }
787
+ export declare namespace PauseServiceResponse {
788
+
789
+ const filterSensitiveLog: (obj: PauseServiceResponse) => any;
790
+ }
791
+ export interface ResumeServiceRequest {
792
+
793
+ ServiceArn: string | undefined;
794
+ }
795
+ export declare namespace ResumeServiceRequest {
796
+
797
+ const filterSensitiveLog: (obj: ResumeServiceRequest) => any;
798
+ }
799
+ export interface ResumeServiceResponse {
800
+
801
+ Service: Service | undefined;
802
+
803
+ OperationId?: string;
804
+ }
805
+ export declare namespace ResumeServiceResponse {
806
+
807
+ const filterSensitiveLog: (obj: ResumeServiceResponse) => any;
808
+ }
809
+ export interface StartDeploymentRequest {
810
+
811
+ ServiceArn: string | undefined;
812
+ }
813
+ export declare namespace StartDeploymentRequest {
814
+
815
+ const filterSensitiveLog: (obj: StartDeploymentRequest) => any;
816
+ }
817
+ export interface StartDeploymentResponse {
818
+
819
+ OperationId: string | undefined;
820
+ }
821
+ export declare namespace StartDeploymentResponse {
822
+
823
+ const filterSensitiveLog: (obj: StartDeploymentResponse) => any;
824
+ }
825
+ export interface TagResourceRequest {
826
+
827
+ ResourceArn: string | undefined;
828
+
829
+ Tags: Tag[] | undefined;
830
+ }
831
+ export declare namespace TagResourceRequest {
832
+
833
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
834
+ }
835
+ export interface TagResourceResponse {
836
+ }
837
+ export declare namespace TagResourceResponse {
838
+
839
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
840
+ }
841
+ export interface UntagResourceRequest {
842
+
843
+ ResourceArn: string | undefined;
844
+
845
+ TagKeys: string[] | undefined;
846
+ }
847
+ export declare namespace UntagResourceRequest {
848
+
849
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
850
+ }
851
+ export interface UntagResourceResponse {
852
+ }
853
+ export declare namespace UntagResourceResponse {
854
+
855
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
856
+ }
857
+ export interface UpdateServiceRequest {
858
+
859
+ ServiceArn: string | undefined;
860
+
861
+ SourceConfiguration?: SourceConfiguration;
862
+
863
+ InstanceConfiguration?: InstanceConfiguration;
864
+
865
+ AutoScalingConfigurationArn?: string;
866
+
867
+ HealthCheckConfiguration?: HealthCheckConfiguration;
868
+ }
869
+ export declare namespace UpdateServiceRequest {
870
+
871
+ const filterSensitiveLog: (obj: UpdateServiceRequest) => any;
872
+ }
873
+ export interface UpdateServiceResponse {
874
+
875
+ Service: Service | undefined;
876
+
877
+ OperationId: string | undefined;
878
+ }
879
+ export declare namespace UpdateServiceResponse {
880
+
881
+ const filterSensitiveLog: (obj: UpdateServiceResponse) => any;
882
+ }