@aws-sdk/client-elastic-beanstalk 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/protocols/Aws_query.js +96 -504
- package/dist-es/protocols/Aws_query.js +96 -504
- package/dist-types/ElasticBeanstalk.d.ts +48 -0
- package/dist-types/ElasticBeanstalkClient.d.ts +24 -4
- package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +16 -0
- package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +16 -0
- package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +16 -0
- package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +16 -0
- package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/CreatePlatformVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateStorageLocationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeletePlatformVersionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribePlatformVersionCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +16 -0
- package/dist-types/commands/ListPlatformBranchesCommand.d.ts +16 -0
- package/dist-types/commands/ListPlatformVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RebuildEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +16 -0
- package/dist-types/commands/RestartAppServerCommand.d.ts +16 -0
- package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +16 -0
- package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +16 -0
- package/dist-types/commands/TerminateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +16 -0
- package/dist-types/models/ElasticBeanstalkServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +232 -0
- package/dist-types/pagination/DescribeEnvironmentManagedActionHistoryPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeEventsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPlatformBranchesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPlatformVersionsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ElasticBeanstalkServiceException as __BaseException } from "./ElasticBeanstalkServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p></p>
|
|
5
6
|
*/
|
|
6
7
|
export interface AbortEnvironmentUpdateMessage {
|
|
@@ -16,6 +17,7 @@ export interface AbortEnvironmentUpdateMessage {
|
|
|
16
17
|
EnvironmentName?: string;
|
|
17
18
|
}
|
|
18
19
|
/**
|
|
20
|
+
* @public
|
|
19
21
|
* <p>The specified account does not have sufficient privileges for one or more AWS
|
|
20
22
|
* services.</p>
|
|
21
23
|
*/
|
|
@@ -27,23 +29,33 @@ export declare class InsufficientPrivilegesException extends __BaseException {
|
|
|
27
29
|
*/
|
|
28
30
|
constructor(opts: __ExceptionOptionType<InsufficientPrivilegesException, __BaseException>);
|
|
29
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
30
35
|
export declare enum ActionHistoryStatus {
|
|
31
36
|
Completed = "Completed",
|
|
32
37
|
Failed = "Failed",
|
|
33
38
|
Unknown = "Unknown"
|
|
34
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
35
43
|
export declare enum ActionStatus {
|
|
36
44
|
Pending = "Pending",
|
|
37
45
|
Running = "Running",
|
|
38
46
|
Scheduled = "Scheduled",
|
|
39
47
|
Unknown = "Unknown"
|
|
40
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
41
52
|
export declare enum ActionType {
|
|
42
53
|
InstanceRefresh = "InstanceRefresh",
|
|
43
54
|
PlatformUpdate = "PlatformUpdate",
|
|
44
55
|
Unknown = "Unknown"
|
|
45
56
|
}
|
|
46
57
|
/**
|
|
58
|
+
* @public
|
|
47
59
|
* <p>A lifecycle rule that deletes application versions after the specified number of
|
|
48
60
|
* days.</p>
|
|
49
61
|
*/
|
|
@@ -64,6 +76,7 @@ export interface MaxAgeRule {
|
|
|
64
76
|
DeleteSourceFromS3?: boolean;
|
|
65
77
|
}
|
|
66
78
|
/**
|
|
79
|
+
* @public
|
|
67
80
|
* <p>A lifecycle rule that deletes the oldest application version when the maximum count is
|
|
68
81
|
* exceeded.</p>
|
|
69
82
|
*/
|
|
@@ -84,6 +97,7 @@ export interface MaxCountRule {
|
|
|
84
97
|
DeleteSourceFromS3?: boolean;
|
|
85
98
|
}
|
|
86
99
|
/**
|
|
100
|
+
* @public
|
|
87
101
|
* <p>The application version lifecycle settings for an application. Defines the rules that
|
|
88
102
|
* Elastic Beanstalk applies to an application's versions in order to avoid hitting the
|
|
89
103
|
* per-region limit for application versions.</p>
|
|
@@ -104,6 +118,7 @@ export interface ApplicationVersionLifecycleConfig {
|
|
|
104
118
|
MaxAgeRule?: MaxAgeRule;
|
|
105
119
|
}
|
|
106
120
|
/**
|
|
121
|
+
* @public
|
|
107
122
|
* <p>The resource lifecycle configuration for an application. Defines lifecycle settings for
|
|
108
123
|
* resources that belong to the application, and the service role that AWS Elastic Beanstalk assumes
|
|
109
124
|
* in order to apply lifecycle settings. The version lifecycle configuration defines lifecycle
|
|
@@ -128,6 +143,7 @@ export interface ApplicationResourceLifecycleConfig {
|
|
|
128
143
|
VersionLifecycleConfig?: ApplicationVersionLifecycleConfig;
|
|
129
144
|
}
|
|
130
145
|
/**
|
|
146
|
+
* @public
|
|
131
147
|
* <p>Describes the properties of an application.</p>
|
|
132
148
|
*/
|
|
133
149
|
export interface ApplicationDescription {
|
|
@@ -165,6 +181,7 @@ export interface ApplicationDescription {
|
|
|
165
181
|
ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
|
|
166
182
|
}
|
|
167
183
|
/**
|
|
184
|
+
* @public
|
|
168
185
|
* <p>Result message containing a single description of an application.</p>
|
|
169
186
|
*/
|
|
170
187
|
export interface ApplicationDescriptionMessage {
|
|
@@ -174,6 +191,7 @@ export interface ApplicationDescriptionMessage {
|
|
|
174
191
|
Application?: ApplicationDescription;
|
|
175
192
|
}
|
|
176
193
|
/**
|
|
194
|
+
* @public
|
|
177
195
|
* <p>Result message containing a list of application descriptions.</p>
|
|
178
196
|
*/
|
|
179
197
|
export interface ApplicationDescriptionsMessage {
|
|
@@ -183,6 +201,7 @@ export interface ApplicationDescriptionsMessage {
|
|
|
183
201
|
Applications?: ApplicationDescription[];
|
|
184
202
|
}
|
|
185
203
|
/**
|
|
204
|
+
* @public
|
|
186
205
|
* <p>Represents the average latency for the slowest X percent of requests over the last 10
|
|
187
206
|
* seconds.</p>
|
|
188
207
|
*/
|
|
@@ -229,6 +248,7 @@ export interface Latency {
|
|
|
229
248
|
P10?: number;
|
|
230
249
|
}
|
|
231
250
|
/**
|
|
251
|
+
* @public
|
|
232
252
|
* <p>Represents the percentage of requests over the last 10 seconds that resulted in each
|
|
233
253
|
* type of status code response. For more information, see <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html">Status Code
|
|
234
254
|
* Definitions</a>.</p>
|
|
@@ -256,6 +276,7 @@ export interface StatusCodes {
|
|
|
256
276
|
Status5xx?: number;
|
|
257
277
|
}
|
|
258
278
|
/**
|
|
279
|
+
* @public
|
|
259
280
|
* <p>Application request metrics for an AWS Elastic Beanstalk environment.</p>
|
|
260
281
|
*/
|
|
261
282
|
export interface ApplicationMetrics {
|
|
@@ -281,6 +302,9 @@ export interface ApplicationMetrics {
|
|
|
281
302
|
*/
|
|
282
303
|
Latency?: Latency;
|
|
283
304
|
}
|
|
305
|
+
/**
|
|
306
|
+
* @public
|
|
307
|
+
*/
|
|
284
308
|
export interface ApplicationResourceLifecycleDescriptionMessage {
|
|
285
309
|
/**
|
|
286
310
|
* <p>The name of the application.</p>
|
|
@@ -291,15 +315,22 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
|
|
|
291
315
|
*/
|
|
292
316
|
ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig;
|
|
293
317
|
}
|
|
318
|
+
/**
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
294
321
|
export declare enum SourceRepository {
|
|
295
322
|
CodeCommit = "CodeCommit",
|
|
296
323
|
S3 = "S3"
|
|
297
324
|
}
|
|
325
|
+
/**
|
|
326
|
+
* @public
|
|
327
|
+
*/
|
|
298
328
|
export declare enum SourceType {
|
|
299
329
|
Git = "Git",
|
|
300
330
|
Zip = "Zip"
|
|
301
331
|
}
|
|
302
332
|
/**
|
|
333
|
+
* @public
|
|
303
334
|
* <p>Location of the source code for an application version.</p>
|
|
304
335
|
*/
|
|
305
336
|
export interface SourceBuildInformation {
|
|
@@ -356,6 +387,7 @@ export interface SourceBuildInformation {
|
|
|
356
387
|
SourceLocation: string | undefined;
|
|
357
388
|
}
|
|
358
389
|
/**
|
|
390
|
+
* @public
|
|
359
391
|
* <p>The bucket and key of an item stored in Amazon S3.</p>
|
|
360
392
|
*/
|
|
361
393
|
export interface S3Location {
|
|
@@ -368,6 +400,9 @@ export interface S3Location {
|
|
|
368
400
|
*/
|
|
369
401
|
S3Key?: string;
|
|
370
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* @public
|
|
405
|
+
*/
|
|
371
406
|
export declare enum ApplicationVersionStatus {
|
|
372
407
|
Building = "Building",
|
|
373
408
|
Failed = "Failed",
|
|
@@ -376,6 +411,7 @@ export declare enum ApplicationVersionStatus {
|
|
|
376
411
|
Unprocessed = "Unprocessed"
|
|
377
412
|
}
|
|
378
413
|
/**
|
|
414
|
+
* @public
|
|
379
415
|
* <p>Describes the properties of an application version.</p>
|
|
380
416
|
*/
|
|
381
417
|
export interface ApplicationVersionDescription {
|
|
@@ -451,6 +487,7 @@ export interface ApplicationVersionDescription {
|
|
|
451
487
|
Status?: ApplicationVersionStatus | string;
|
|
452
488
|
}
|
|
453
489
|
/**
|
|
490
|
+
* @public
|
|
454
491
|
* <p>Result message wrapping a single description of an application version.</p>
|
|
455
492
|
*/
|
|
456
493
|
export interface ApplicationVersionDescriptionMessage {
|
|
@@ -461,6 +498,7 @@ export interface ApplicationVersionDescriptionMessage {
|
|
|
461
498
|
ApplicationVersion?: ApplicationVersionDescription;
|
|
462
499
|
}
|
|
463
500
|
/**
|
|
501
|
+
* @public
|
|
464
502
|
* <p>Result message wrapping a list of application version descriptions.</p>
|
|
465
503
|
*/
|
|
466
504
|
export interface ApplicationVersionDescriptionsMessage {
|
|
@@ -476,6 +514,7 @@ export interface ApplicationVersionDescriptionsMessage {
|
|
|
476
514
|
NextToken?: string;
|
|
477
515
|
}
|
|
478
516
|
/**
|
|
517
|
+
* @public
|
|
479
518
|
* <p>Request to execute a scheduled managed action immediately.</p>
|
|
480
519
|
*/
|
|
481
520
|
export interface ApplyEnvironmentManagedActionRequest {
|
|
@@ -493,6 +532,7 @@ export interface ApplyEnvironmentManagedActionRequest {
|
|
|
493
532
|
ActionId: string | undefined;
|
|
494
533
|
}
|
|
495
534
|
/**
|
|
535
|
+
* @public
|
|
496
536
|
* <p>The result message containing information about the managed action.</p>
|
|
497
537
|
*/
|
|
498
538
|
export interface ApplyEnvironmentManagedActionResult {
|
|
@@ -514,6 +554,7 @@ export interface ApplyEnvironmentManagedActionResult {
|
|
|
514
554
|
Status?: string;
|
|
515
555
|
}
|
|
516
556
|
/**
|
|
557
|
+
* @public
|
|
517
558
|
* <p>A generic service exception has occurred.</p>
|
|
518
559
|
*/
|
|
519
560
|
export declare class ElasticBeanstalkServiceException extends __BaseException {
|
|
@@ -525,6 +566,7 @@ export declare class ElasticBeanstalkServiceException extends __BaseException {
|
|
|
525
566
|
constructor(opts: __ExceptionOptionType<ElasticBeanstalkServiceException, __BaseException>);
|
|
526
567
|
}
|
|
527
568
|
/**
|
|
569
|
+
* @public
|
|
528
570
|
* <p>Cannot modify the managed action in its current state.</p>
|
|
529
571
|
*/
|
|
530
572
|
export declare class ManagedActionInvalidStateException extends __BaseException {
|
|
@@ -536,6 +578,7 @@ export declare class ManagedActionInvalidStateException extends __BaseException
|
|
|
536
578
|
constructor(opts: __ExceptionOptionType<ManagedActionInvalidStateException, __BaseException>);
|
|
537
579
|
}
|
|
538
580
|
/**
|
|
581
|
+
* @public
|
|
539
582
|
* <p>Request to add or change the operations role used by an environment.</p>
|
|
540
583
|
*/
|
|
541
584
|
export interface AssociateEnvironmentOperationsRoleMessage {
|
|
@@ -550,6 +593,7 @@ export interface AssociateEnvironmentOperationsRoleMessage {
|
|
|
550
593
|
OperationsRole: string | undefined;
|
|
551
594
|
}
|
|
552
595
|
/**
|
|
596
|
+
* @public
|
|
553
597
|
* <p>Describes an Auto Scaling launch configuration.</p>
|
|
554
598
|
*/
|
|
555
599
|
export interface AutoScalingGroup {
|
|
@@ -559,6 +603,7 @@ export interface AutoScalingGroup {
|
|
|
559
603
|
Name?: string;
|
|
560
604
|
}
|
|
561
605
|
/**
|
|
606
|
+
* @public
|
|
562
607
|
* <p>Describes the solution stack.</p>
|
|
563
608
|
*/
|
|
564
609
|
export interface SolutionStackDescription {
|
|
@@ -572,6 +617,7 @@ export interface SolutionStackDescription {
|
|
|
572
617
|
PermittedFileTypes?: string[];
|
|
573
618
|
}
|
|
574
619
|
/**
|
|
620
|
+
* @public
|
|
575
621
|
* <p>Results message indicating whether a CNAME is available.</p>
|
|
576
622
|
*/
|
|
577
623
|
export interface CheckDNSAvailabilityMessage {
|
|
@@ -581,6 +627,7 @@ export interface CheckDNSAvailabilityMessage {
|
|
|
581
627
|
CNAMEPrefix: string | undefined;
|
|
582
628
|
}
|
|
583
629
|
/**
|
|
630
|
+
* @public
|
|
584
631
|
* <p>Indicates if the specified CNAME is available.</p>
|
|
585
632
|
*/
|
|
586
633
|
export interface CheckDNSAvailabilityResultMessage {
|
|
@@ -605,6 +652,7 @@ export interface CheckDNSAvailabilityResultMessage {
|
|
|
605
652
|
FullyQualifiedCNAME?: string;
|
|
606
653
|
}
|
|
607
654
|
/**
|
|
655
|
+
* @public
|
|
608
656
|
* <p>Request to create or update a group of environments.</p>
|
|
609
657
|
*/
|
|
610
658
|
export interface ComposeEnvironmentsMessage {
|
|
@@ -628,6 +676,7 @@ export interface ComposeEnvironmentsMessage {
|
|
|
628
676
|
VersionLabels?: string[];
|
|
629
677
|
}
|
|
630
678
|
/**
|
|
679
|
+
* @public
|
|
631
680
|
* <p>A link to another environment, defined in the environment's manifest. Links provide
|
|
632
681
|
* connection information in system properties that can be used to connect to another environment
|
|
633
682
|
* in the same group. See <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environment-cfg-manifest.html">Environment Manifest
|
|
@@ -643,12 +692,18 @@ export interface EnvironmentLink {
|
|
|
643
692
|
*/
|
|
644
693
|
EnvironmentName?: string;
|
|
645
694
|
}
|
|
695
|
+
/**
|
|
696
|
+
* @public
|
|
697
|
+
*/
|
|
646
698
|
export declare enum EnvironmentHealth {
|
|
647
699
|
Green = "Green",
|
|
648
700
|
Grey = "Grey",
|
|
649
701
|
Red = "Red",
|
|
650
702
|
Yellow = "Yellow"
|
|
651
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
* @public
|
|
706
|
+
*/
|
|
652
707
|
export declare enum EnvironmentHealthStatus {
|
|
653
708
|
Degraded = "Degraded",
|
|
654
709
|
Info = "Info",
|
|
@@ -661,6 +716,7 @@ export declare enum EnvironmentHealthStatus {
|
|
|
661
716
|
Warning = "Warning"
|
|
662
717
|
}
|
|
663
718
|
/**
|
|
719
|
+
* @public
|
|
664
720
|
* <p>Describes the properties of a Listener for the LoadBalancer.</p>
|
|
665
721
|
*/
|
|
666
722
|
export interface Listener {
|
|
@@ -674,6 +730,7 @@ export interface Listener {
|
|
|
674
730
|
Port?: number;
|
|
675
731
|
}
|
|
676
732
|
/**
|
|
733
|
+
* @public
|
|
677
734
|
* <p>Describes the details of a LoadBalancer.</p>
|
|
678
735
|
*/
|
|
679
736
|
export interface LoadBalancerDescription {
|
|
@@ -691,6 +748,7 @@ export interface LoadBalancerDescription {
|
|
|
691
748
|
Listeners?: Listener[];
|
|
692
749
|
}
|
|
693
750
|
/**
|
|
751
|
+
* @public
|
|
694
752
|
* <p>Describes the AWS resources in use by this environment. This data is not live
|
|
695
753
|
* data.</p>
|
|
696
754
|
*/
|
|
@@ -700,6 +758,9 @@ export interface EnvironmentResourcesDescription {
|
|
|
700
758
|
*/
|
|
701
759
|
LoadBalancer?: LoadBalancerDescription;
|
|
702
760
|
}
|
|
761
|
+
/**
|
|
762
|
+
* @public
|
|
763
|
+
*/
|
|
703
764
|
export declare enum EnvironmentStatus {
|
|
704
765
|
Aborting = "Aborting",
|
|
705
766
|
Launching = "Launching",
|
|
@@ -711,6 +772,7 @@ export declare enum EnvironmentStatus {
|
|
|
711
772
|
Updating = "Updating"
|
|
712
773
|
}
|
|
713
774
|
/**
|
|
775
|
+
* @public
|
|
714
776
|
* <p>Describes the properties of an environment tier</p>
|
|
715
777
|
*/
|
|
716
778
|
export interface EnvironmentTier {
|
|
@@ -755,6 +817,7 @@ export interface EnvironmentTier {
|
|
|
755
817
|
Version?: string;
|
|
756
818
|
}
|
|
757
819
|
/**
|
|
820
|
+
* @public
|
|
758
821
|
* <p>Describes the properties of an environment.</p>
|
|
759
822
|
*/
|
|
760
823
|
export interface EnvironmentDescription {
|
|
@@ -903,6 +966,7 @@ export interface EnvironmentDescription {
|
|
|
903
966
|
OperationsRole?: string;
|
|
904
967
|
}
|
|
905
968
|
/**
|
|
969
|
+
* @public
|
|
906
970
|
* <p>Result message containing a list of environment descriptions.</p>
|
|
907
971
|
*/
|
|
908
972
|
export interface EnvironmentDescriptionsMessage {
|
|
@@ -917,6 +981,7 @@ export interface EnvironmentDescriptionsMessage {
|
|
|
917
981
|
NextToken?: string;
|
|
918
982
|
}
|
|
919
983
|
/**
|
|
984
|
+
* @public
|
|
920
985
|
* <p>The specified account has reached its limit of environments.</p>
|
|
921
986
|
*/
|
|
922
987
|
export declare class TooManyEnvironmentsException extends __BaseException {
|
|
@@ -928,6 +993,7 @@ export declare class TooManyEnvironmentsException extends __BaseException {
|
|
|
928
993
|
constructor(opts: __ExceptionOptionType<TooManyEnvironmentsException, __BaseException>);
|
|
929
994
|
}
|
|
930
995
|
/**
|
|
996
|
+
* @public
|
|
931
997
|
* <p>Describes a tag applied to a resource in an environment.</p>
|
|
932
998
|
*/
|
|
933
999
|
export interface Tag {
|
|
@@ -941,6 +1007,7 @@ export interface Tag {
|
|
|
941
1007
|
Value?: string;
|
|
942
1008
|
}
|
|
943
1009
|
/**
|
|
1010
|
+
* @public
|
|
944
1011
|
* <p>Request to create an application.</p>
|
|
945
1012
|
*/
|
|
946
1013
|
export interface CreateApplicationMessage {
|
|
@@ -965,6 +1032,7 @@ export interface CreateApplicationMessage {
|
|
|
965
1032
|
Tags?: Tag[];
|
|
966
1033
|
}
|
|
967
1034
|
/**
|
|
1035
|
+
* @public
|
|
968
1036
|
* <p>The specified account has reached its limit of applications.</p>
|
|
969
1037
|
*/
|
|
970
1038
|
export declare class TooManyApplicationsException extends __BaseException {
|
|
@@ -976,6 +1044,7 @@ export declare class TooManyApplicationsException extends __BaseException {
|
|
|
976
1044
|
constructor(opts: __ExceptionOptionType<TooManyApplicationsException, __BaseException>);
|
|
977
1045
|
}
|
|
978
1046
|
/**
|
|
1047
|
+
* @public
|
|
979
1048
|
* <p>AWS CodeBuild is not available in the specified region.</p>
|
|
980
1049
|
*/
|
|
981
1050
|
export declare class CodeBuildNotInServiceRegionException extends __BaseException {
|
|
@@ -986,12 +1055,16 @@ export declare class CodeBuildNotInServiceRegionException extends __BaseExceptio
|
|
|
986
1055
|
*/
|
|
987
1056
|
constructor(opts: __ExceptionOptionType<CodeBuildNotInServiceRegionException, __BaseException>);
|
|
988
1057
|
}
|
|
1058
|
+
/**
|
|
1059
|
+
* @public
|
|
1060
|
+
*/
|
|
989
1061
|
export declare enum ComputeType {
|
|
990
1062
|
BUILD_GENERAL1_LARGE = "BUILD_GENERAL1_LARGE",
|
|
991
1063
|
BUILD_GENERAL1_MEDIUM = "BUILD_GENERAL1_MEDIUM",
|
|
992
1064
|
BUILD_GENERAL1_SMALL = "BUILD_GENERAL1_SMALL"
|
|
993
1065
|
}
|
|
994
1066
|
/**
|
|
1067
|
+
* @public
|
|
995
1068
|
* <p>Settings for an AWS CodeBuild build.</p>
|
|
996
1069
|
*/
|
|
997
1070
|
export interface BuildConfiguration {
|
|
@@ -1039,6 +1112,7 @@ export interface BuildConfiguration {
|
|
|
1039
1112
|
TimeoutInMinutes?: number;
|
|
1040
1113
|
}
|
|
1041
1114
|
/**
|
|
1115
|
+
* @public
|
|
1042
1116
|
* <p></p>
|
|
1043
1117
|
*/
|
|
1044
1118
|
export interface CreateApplicationVersionMessage {
|
|
@@ -1109,6 +1183,7 @@ export interface CreateApplicationVersionMessage {
|
|
|
1109
1183
|
Tags?: Tag[];
|
|
1110
1184
|
}
|
|
1111
1185
|
/**
|
|
1186
|
+
* @public
|
|
1112
1187
|
* <p>The specified S3 bucket does not belong to the S3 region in which the service is
|
|
1113
1188
|
* running. The following regions are supported:</p>
|
|
1114
1189
|
* <ul>
|
|
@@ -1132,6 +1207,7 @@ export declare class S3LocationNotInServiceRegionException extends __BaseExcepti
|
|
|
1132
1207
|
constructor(opts: __ExceptionOptionType<S3LocationNotInServiceRegionException, __BaseException>);
|
|
1133
1208
|
}
|
|
1134
1209
|
/**
|
|
1210
|
+
* @public
|
|
1135
1211
|
* <p>The specified account has reached its limit of application versions.</p>
|
|
1136
1212
|
*/
|
|
1137
1213
|
export declare class TooManyApplicationVersionsException extends __BaseException {
|
|
@@ -1142,12 +1218,16 @@ export declare class TooManyApplicationVersionsException extends __BaseException
|
|
|
1142
1218
|
*/
|
|
1143
1219
|
constructor(opts: __ExceptionOptionType<TooManyApplicationVersionsException, __BaseException>);
|
|
1144
1220
|
}
|
|
1221
|
+
/**
|
|
1222
|
+
* @public
|
|
1223
|
+
*/
|
|
1145
1224
|
export declare enum ConfigurationDeploymentStatus {
|
|
1146
1225
|
deployed = "deployed",
|
|
1147
1226
|
failed = "failed",
|
|
1148
1227
|
pending = "pending"
|
|
1149
1228
|
}
|
|
1150
1229
|
/**
|
|
1230
|
+
* @public
|
|
1151
1231
|
* <p>A specification identifying an individual configuration option along with its current
|
|
1152
1232
|
* value. For a list of possible namespaces and option values, see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options.html">Option Values</a> in the
|
|
1153
1233
|
* <i>AWS Elastic Beanstalk Developer Guide</i>. </p>
|
|
@@ -1171,6 +1251,7 @@ export interface ConfigurationOptionSetting {
|
|
|
1171
1251
|
Value?: string;
|
|
1172
1252
|
}
|
|
1173
1253
|
/**
|
|
1254
|
+
* @public
|
|
1174
1255
|
* <p>Describes the settings for a configuration set.</p>
|
|
1175
1256
|
*/
|
|
1176
1257
|
export interface ConfigurationSettingsDescription {
|
|
@@ -1243,6 +1324,7 @@ export interface ConfigurationSettingsDescription {
|
|
|
1243
1324
|
OptionSettings?: ConfigurationOptionSetting[];
|
|
1244
1325
|
}
|
|
1245
1326
|
/**
|
|
1327
|
+
* @public
|
|
1246
1328
|
* <p>A specification for an environment configuration.</p>
|
|
1247
1329
|
*/
|
|
1248
1330
|
export interface SourceConfiguration {
|
|
@@ -1256,6 +1338,7 @@ export interface SourceConfiguration {
|
|
|
1256
1338
|
TemplateName?: string;
|
|
1257
1339
|
}
|
|
1258
1340
|
/**
|
|
1341
|
+
* @public
|
|
1259
1342
|
* <p>Request to create a configuration template.</p>
|
|
1260
1343
|
*/
|
|
1261
1344
|
export interface CreateConfigurationTemplateMessage {
|
|
@@ -1331,6 +1414,7 @@ export interface CreateConfigurationTemplateMessage {
|
|
|
1331
1414
|
Tags?: Tag[];
|
|
1332
1415
|
}
|
|
1333
1416
|
/**
|
|
1417
|
+
* @public
|
|
1334
1418
|
* <p>The specified account has reached its limit of Amazon S3 buckets.</p>
|
|
1335
1419
|
*/
|
|
1336
1420
|
export declare class TooManyBucketsException extends __BaseException {
|
|
@@ -1342,6 +1426,7 @@ export declare class TooManyBucketsException extends __BaseException {
|
|
|
1342
1426
|
constructor(opts: __ExceptionOptionType<TooManyBucketsException, __BaseException>);
|
|
1343
1427
|
}
|
|
1344
1428
|
/**
|
|
1429
|
+
* @public
|
|
1345
1430
|
* <p>The specified account has reached its limit of configuration templates.</p>
|
|
1346
1431
|
*/
|
|
1347
1432
|
export declare class TooManyConfigurationTemplatesException extends __BaseException {
|
|
@@ -1353,6 +1438,7 @@ export declare class TooManyConfigurationTemplatesException extends __BaseExcept
|
|
|
1353
1438
|
constructor(opts: __ExceptionOptionType<TooManyConfigurationTemplatesException, __BaseException>);
|
|
1354
1439
|
}
|
|
1355
1440
|
/**
|
|
1441
|
+
* @public
|
|
1356
1442
|
* <p>A specification identifying an individual configuration option.</p>
|
|
1357
1443
|
*/
|
|
1358
1444
|
export interface OptionSpecification {
|
|
@@ -1370,6 +1456,7 @@ export interface OptionSpecification {
|
|
|
1370
1456
|
OptionName?: string;
|
|
1371
1457
|
}
|
|
1372
1458
|
/**
|
|
1459
|
+
* @public
|
|
1373
1460
|
* <p></p>
|
|
1374
1461
|
*/
|
|
1375
1462
|
export interface CreateEnvironmentMessage {
|
|
@@ -1470,6 +1557,7 @@ export interface CreateEnvironmentMessage {
|
|
|
1470
1557
|
OperationsRole?: string;
|
|
1471
1558
|
}
|
|
1472
1559
|
/**
|
|
1560
|
+
* @public
|
|
1473
1561
|
* <p>Request to create a new platform version.</p>
|
|
1474
1562
|
*/
|
|
1475
1563
|
export interface CreatePlatformVersionRequest {
|
|
@@ -1501,6 +1589,7 @@ export interface CreatePlatformVersionRequest {
|
|
|
1501
1589
|
Tags?: Tag[];
|
|
1502
1590
|
}
|
|
1503
1591
|
/**
|
|
1592
|
+
* @public
|
|
1504
1593
|
* <p>The builder used to build the custom platform.</p>
|
|
1505
1594
|
*/
|
|
1506
1595
|
export interface Builder {
|
|
@@ -1509,6 +1598,9 @@ export interface Builder {
|
|
|
1509
1598
|
*/
|
|
1510
1599
|
ARN?: string;
|
|
1511
1600
|
}
|
|
1601
|
+
/**
|
|
1602
|
+
* @public
|
|
1603
|
+
*/
|
|
1512
1604
|
export declare enum PlatformStatus {
|
|
1513
1605
|
Creating = "Creating",
|
|
1514
1606
|
Deleted = "Deleted",
|
|
@@ -1517,6 +1609,7 @@ export declare enum PlatformStatus {
|
|
|
1517
1609
|
Ready = "Ready"
|
|
1518
1610
|
}
|
|
1519
1611
|
/**
|
|
1612
|
+
* @public
|
|
1520
1613
|
* <p>Summary information about a platform version.</p>
|
|
1521
1614
|
*/
|
|
1522
1615
|
export interface PlatformSummary {
|
|
@@ -1576,6 +1669,9 @@ export interface PlatformSummary {
|
|
|
1576
1669
|
*/
|
|
1577
1670
|
PlatformBranchLifecycleState?: string;
|
|
1578
1671
|
}
|
|
1672
|
+
/**
|
|
1673
|
+
* @public
|
|
1674
|
+
*/
|
|
1579
1675
|
export interface CreatePlatformVersionResult {
|
|
1580
1676
|
/**
|
|
1581
1677
|
* <p>Detailed information about the new version of the custom platform.</p>
|
|
@@ -1587,6 +1683,7 @@ export interface CreatePlatformVersionResult {
|
|
|
1587
1683
|
Builder?: Builder;
|
|
1588
1684
|
}
|
|
1589
1685
|
/**
|
|
1686
|
+
* @public
|
|
1590
1687
|
* <p>You have exceeded the maximum number of allowed platforms associated with the account.</p>
|
|
1591
1688
|
*/
|
|
1592
1689
|
export declare class TooManyPlatformsException extends __BaseException {
|
|
@@ -1598,6 +1695,7 @@ export declare class TooManyPlatformsException extends __BaseException {
|
|
|
1598
1695
|
constructor(opts: __ExceptionOptionType<TooManyPlatformsException, __BaseException>);
|
|
1599
1696
|
}
|
|
1600
1697
|
/**
|
|
1698
|
+
* @public
|
|
1601
1699
|
* <p>Results of a <a>CreateStorageLocationResult</a> call.</p>
|
|
1602
1700
|
*/
|
|
1603
1701
|
export interface CreateStorageLocationResultMessage {
|
|
@@ -1607,6 +1705,7 @@ export interface CreateStorageLocationResultMessage {
|
|
|
1607
1705
|
S3Bucket?: string;
|
|
1608
1706
|
}
|
|
1609
1707
|
/**
|
|
1708
|
+
* @public
|
|
1610
1709
|
* <p>The specified account does not have a subscription to Amazon S3.</p>
|
|
1611
1710
|
*/
|
|
1612
1711
|
export declare class S3SubscriptionRequiredException extends __BaseException {
|
|
@@ -1618,6 +1717,7 @@ export declare class S3SubscriptionRequiredException extends __BaseException {
|
|
|
1618
1717
|
constructor(opts: __ExceptionOptionType<S3SubscriptionRequiredException, __BaseException>);
|
|
1619
1718
|
}
|
|
1620
1719
|
/**
|
|
1720
|
+
* @public
|
|
1621
1721
|
* <p>Request to delete an application.</p>
|
|
1622
1722
|
*/
|
|
1623
1723
|
export interface DeleteApplicationMessage {
|
|
@@ -1632,6 +1732,7 @@ export interface DeleteApplicationMessage {
|
|
|
1632
1732
|
TerminateEnvByForce?: boolean;
|
|
1633
1733
|
}
|
|
1634
1734
|
/**
|
|
1735
|
+
* @public
|
|
1635
1736
|
* <p>Unable to perform the specified operation because another operation that effects an
|
|
1636
1737
|
* element in this activity is already in progress.</p>
|
|
1637
1738
|
*/
|
|
@@ -1644,6 +1745,7 @@ export declare class OperationInProgressException extends __BaseException {
|
|
|
1644
1745
|
constructor(opts: __ExceptionOptionType<OperationInProgressException, __BaseException>);
|
|
1645
1746
|
}
|
|
1646
1747
|
/**
|
|
1748
|
+
* @public
|
|
1647
1749
|
* <p>Request to delete an application version.</p>
|
|
1648
1750
|
*/
|
|
1649
1751
|
export interface DeleteApplicationVersionMessage {
|
|
@@ -1663,6 +1765,7 @@ export interface DeleteApplicationVersionMessage {
|
|
|
1663
1765
|
DeleteSourceBundle?: boolean;
|
|
1664
1766
|
}
|
|
1665
1767
|
/**
|
|
1768
|
+
* @public
|
|
1666
1769
|
* <p>Unable to delete the Amazon S3 source bundle associated with the application version.
|
|
1667
1770
|
* The application version was deleted successfully.</p>
|
|
1668
1771
|
*/
|
|
@@ -1675,6 +1778,7 @@ export declare class SourceBundleDeletionException extends __BaseException {
|
|
|
1675
1778
|
constructor(opts: __ExceptionOptionType<SourceBundleDeletionException, __BaseException>);
|
|
1676
1779
|
}
|
|
1677
1780
|
/**
|
|
1781
|
+
* @public
|
|
1678
1782
|
* <p>Request to delete a configuration template.</p>
|
|
1679
1783
|
*/
|
|
1680
1784
|
export interface DeleteConfigurationTemplateMessage {
|
|
@@ -1688,6 +1792,7 @@ export interface DeleteConfigurationTemplateMessage {
|
|
|
1688
1792
|
TemplateName: string | undefined;
|
|
1689
1793
|
}
|
|
1690
1794
|
/**
|
|
1795
|
+
* @public
|
|
1691
1796
|
* <p>Request to delete a draft environment configuration.</p>
|
|
1692
1797
|
*/
|
|
1693
1798
|
export interface DeleteEnvironmentConfigurationMessage {
|
|
@@ -1700,12 +1805,18 @@ export interface DeleteEnvironmentConfigurationMessage {
|
|
|
1700
1805
|
*/
|
|
1701
1806
|
EnvironmentName: string | undefined;
|
|
1702
1807
|
}
|
|
1808
|
+
/**
|
|
1809
|
+
* @public
|
|
1810
|
+
*/
|
|
1703
1811
|
export interface DeletePlatformVersionRequest {
|
|
1704
1812
|
/**
|
|
1705
1813
|
* <p>The ARN of the version of the custom platform.</p>
|
|
1706
1814
|
*/
|
|
1707
1815
|
PlatformArn?: string;
|
|
1708
1816
|
}
|
|
1817
|
+
/**
|
|
1818
|
+
* @public
|
|
1819
|
+
*/
|
|
1709
1820
|
export interface DeletePlatformVersionResult {
|
|
1710
1821
|
/**
|
|
1711
1822
|
* <p>Detailed information about the version of the custom platform.</p>
|
|
@@ -1713,6 +1824,7 @@ export interface DeletePlatformVersionResult {
|
|
|
1713
1824
|
PlatformSummary?: PlatformSummary;
|
|
1714
1825
|
}
|
|
1715
1826
|
/**
|
|
1827
|
+
* @public
|
|
1716
1828
|
* <p>You cannot delete the platform version because there are still environments running on it.</p>
|
|
1717
1829
|
*/
|
|
1718
1830
|
export declare class PlatformVersionStillReferencedException extends __BaseException {
|
|
@@ -1724,6 +1836,7 @@ export declare class PlatformVersionStillReferencedException extends __BaseExcep
|
|
|
1724
1836
|
constructor(opts: __ExceptionOptionType<PlatformVersionStillReferencedException, __BaseException>);
|
|
1725
1837
|
}
|
|
1726
1838
|
/**
|
|
1839
|
+
* @public
|
|
1727
1840
|
* <p>The AWS Elastic Beanstalk quota information for a single resource type in an AWS account. It
|
|
1728
1841
|
* reflects the resource's limits for this account.</p>
|
|
1729
1842
|
*/
|
|
@@ -1735,6 +1848,7 @@ export interface ResourceQuota {
|
|
|
1735
1848
|
Maximum?: number;
|
|
1736
1849
|
}
|
|
1737
1850
|
/**
|
|
1851
|
+
* @public
|
|
1738
1852
|
* <p>A set of per-resource AWS Elastic Beanstalk quotas associated with an AWS account. They reflect
|
|
1739
1853
|
* Elastic Beanstalk resource limits for this account.</p>
|
|
1740
1854
|
*/
|
|
@@ -1760,6 +1874,9 @@ export interface ResourceQuotas {
|
|
|
1760
1874
|
*/
|
|
1761
1875
|
CustomPlatformQuota?: ResourceQuota;
|
|
1762
1876
|
}
|
|
1877
|
+
/**
|
|
1878
|
+
* @public
|
|
1879
|
+
*/
|
|
1763
1880
|
export interface DescribeAccountAttributesResult {
|
|
1764
1881
|
/**
|
|
1765
1882
|
* <p>The Elastic Beanstalk resource quotas associated with the calling AWS account.</p>
|
|
@@ -1767,6 +1884,7 @@ export interface DescribeAccountAttributesResult {
|
|
|
1767
1884
|
ResourceQuotas?: ResourceQuotas;
|
|
1768
1885
|
}
|
|
1769
1886
|
/**
|
|
1887
|
+
* @public
|
|
1770
1888
|
* <p>Request to describe one or more applications.</p>
|
|
1771
1889
|
*/
|
|
1772
1890
|
export interface DescribeApplicationsMessage {
|
|
@@ -1777,6 +1895,7 @@ export interface DescribeApplicationsMessage {
|
|
|
1777
1895
|
ApplicationNames?: string[];
|
|
1778
1896
|
}
|
|
1779
1897
|
/**
|
|
1898
|
+
* @public
|
|
1780
1899
|
* <p>Request to describe application versions.</p>
|
|
1781
1900
|
*/
|
|
1782
1901
|
export interface DescribeApplicationVersionsMessage {
|
|
@@ -1804,6 +1923,7 @@ export interface DescribeApplicationVersionsMessage {
|
|
|
1804
1923
|
NextToken?: string;
|
|
1805
1924
|
}
|
|
1806
1925
|
/**
|
|
1926
|
+
* @public
|
|
1807
1927
|
* <p>A regular expression representing a restriction on a string configuration option
|
|
1808
1928
|
* value.</p>
|
|
1809
1929
|
*/
|
|
@@ -1818,11 +1938,15 @@ export interface OptionRestrictionRegex {
|
|
|
1818
1938
|
*/
|
|
1819
1939
|
Label?: string;
|
|
1820
1940
|
}
|
|
1941
|
+
/**
|
|
1942
|
+
* @public
|
|
1943
|
+
*/
|
|
1821
1944
|
export declare enum ConfigurationOptionValueType {
|
|
1822
1945
|
List = "List",
|
|
1823
1946
|
Scalar = "Scalar"
|
|
1824
1947
|
}
|
|
1825
1948
|
/**
|
|
1949
|
+
* @public
|
|
1826
1950
|
* <p>Describes the possible values for a configuration option.</p>
|
|
1827
1951
|
*/
|
|
1828
1952
|
export interface ConfigurationOptionDescription {
|
|
@@ -1936,6 +2060,7 @@ export interface ConfigurationOptionDescription {
|
|
|
1936
2060
|
Regex?: OptionRestrictionRegex;
|
|
1937
2061
|
}
|
|
1938
2062
|
/**
|
|
2063
|
+
* @public
|
|
1939
2064
|
* <p>Describes the settings for a specified configuration set.</p>
|
|
1940
2065
|
*/
|
|
1941
2066
|
export interface ConfigurationOptionsDescription {
|
|
@@ -1953,6 +2078,7 @@ export interface ConfigurationOptionsDescription {
|
|
|
1953
2078
|
Options?: ConfigurationOptionDescription[];
|
|
1954
2079
|
}
|
|
1955
2080
|
/**
|
|
2081
|
+
* @public
|
|
1956
2082
|
* <p>Result message containing a list of application version descriptions.</p>
|
|
1957
2083
|
*/
|
|
1958
2084
|
export interface DescribeConfigurationOptionsMessage {
|
|
@@ -1986,6 +2112,7 @@ export interface DescribeConfigurationOptionsMessage {
|
|
|
1986
2112
|
Options?: OptionSpecification[];
|
|
1987
2113
|
}
|
|
1988
2114
|
/**
|
|
2115
|
+
* @public
|
|
1989
2116
|
* <p>The results from a request to change the configuration settings of an
|
|
1990
2117
|
* environment.</p>
|
|
1991
2118
|
*/
|
|
@@ -1996,6 +2123,7 @@ export interface ConfigurationSettingsDescriptions {
|
|
|
1996
2123
|
ConfigurationSettings?: ConfigurationSettingsDescription[];
|
|
1997
2124
|
}
|
|
1998
2125
|
/**
|
|
2126
|
+
* @public
|
|
1999
2127
|
* <p>Result message containing all of the configuration settings for a specified solution
|
|
2000
2128
|
* stack or configuration template.</p>
|
|
2001
2129
|
*/
|
|
@@ -2021,6 +2149,9 @@ export interface DescribeConfigurationSettingsMessage {
|
|
|
2021
2149
|
*/
|
|
2022
2150
|
EnvironmentName?: string;
|
|
2023
2151
|
}
|
|
2152
|
+
/**
|
|
2153
|
+
* @public
|
|
2154
|
+
*/
|
|
2024
2155
|
export declare enum EnvironmentHealthAttribute {
|
|
2025
2156
|
All = "All",
|
|
2026
2157
|
ApplicationMetrics = "ApplicationMetrics",
|
|
@@ -2032,6 +2163,7 @@ export declare enum EnvironmentHealthAttribute {
|
|
|
2032
2163
|
Status = "Status"
|
|
2033
2164
|
}
|
|
2034
2165
|
/**
|
|
2166
|
+
* @public
|
|
2035
2167
|
* <p>See the example below to learn how to create a request body.</p>
|
|
2036
2168
|
*/
|
|
2037
2169
|
export interface DescribeEnvironmentHealthRequest {
|
|
@@ -2053,6 +2185,7 @@ export interface DescribeEnvironmentHealthRequest {
|
|
|
2053
2185
|
AttributeNames?: (EnvironmentHealthAttribute | string)[];
|
|
2054
2186
|
}
|
|
2055
2187
|
/**
|
|
2188
|
+
* @public
|
|
2056
2189
|
* <p>Represents summary information about the health of an instance. For more information,
|
|
2057
2190
|
* see <a href="https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/health-enhanced-status.html">Health Colors and Statuses</a>.</p>
|
|
2058
2191
|
*/
|
|
@@ -2106,6 +2239,7 @@ export interface InstanceHealthSummary {
|
|
|
2106
2239
|
Severe?: number;
|
|
2107
2240
|
}
|
|
2108
2241
|
/**
|
|
2242
|
+
* @public
|
|
2109
2243
|
* <p>Health details for an AWS Elastic Beanstalk environment.</p>
|
|
2110
2244
|
*/
|
|
2111
2245
|
export interface DescribeEnvironmentHealthResult {
|
|
@@ -2147,6 +2281,7 @@ export interface DescribeEnvironmentHealthResult {
|
|
|
2147
2281
|
RefreshedAt?: Date;
|
|
2148
2282
|
}
|
|
2149
2283
|
/**
|
|
2284
|
+
* @public
|
|
2150
2285
|
* <p>One or more input parameters is not valid. Please correct the input parameters and try
|
|
2151
2286
|
* the operation again.</p>
|
|
2152
2287
|
*/
|
|
@@ -2159,6 +2294,7 @@ export declare class InvalidRequestException extends __BaseException {
|
|
|
2159
2294
|
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
2160
2295
|
}
|
|
2161
2296
|
/**
|
|
2297
|
+
* @public
|
|
2162
2298
|
* <p>Request to list completed and failed managed actions.</p>
|
|
2163
2299
|
*/
|
|
2164
2300
|
export interface DescribeEnvironmentManagedActionHistoryRequest {
|
|
@@ -2179,6 +2315,9 @@ export interface DescribeEnvironmentManagedActionHistoryRequest {
|
|
|
2179
2315
|
*/
|
|
2180
2316
|
MaxItems?: number;
|
|
2181
2317
|
}
|
|
2318
|
+
/**
|
|
2319
|
+
* @public
|
|
2320
|
+
*/
|
|
2182
2321
|
export declare enum FailureType {
|
|
2183
2322
|
CancellationFailed = "CancellationFailed",
|
|
2184
2323
|
InternalFailure = "InternalFailure",
|
|
@@ -2189,6 +2328,7 @@ export declare enum FailureType {
|
|
|
2189
2328
|
UpdateCancelled = "UpdateCancelled"
|
|
2190
2329
|
}
|
|
2191
2330
|
/**
|
|
2331
|
+
* @public
|
|
2192
2332
|
* <p>The record of a completed or failed managed action.</p>
|
|
2193
2333
|
*/
|
|
2194
2334
|
export interface ManagedActionHistoryItem {
|
|
@@ -2226,6 +2366,7 @@ export interface ManagedActionHistoryItem {
|
|
|
2226
2366
|
FinishedTime?: Date;
|
|
2227
2367
|
}
|
|
2228
2368
|
/**
|
|
2369
|
+
* @public
|
|
2229
2370
|
* <p>A result message containing a list of completed and failed managed actions.</p>
|
|
2230
2371
|
*/
|
|
2231
2372
|
export interface DescribeEnvironmentManagedActionHistoryResult {
|
|
@@ -2240,6 +2381,7 @@ export interface DescribeEnvironmentManagedActionHistoryResult {
|
|
|
2240
2381
|
NextToken?: string;
|
|
2241
2382
|
}
|
|
2242
2383
|
/**
|
|
2384
|
+
* @public
|
|
2243
2385
|
* <p>Request to list an environment's upcoming and in-progress managed actions.</p>
|
|
2244
2386
|
*/
|
|
2245
2387
|
export interface DescribeEnvironmentManagedActionsRequest {
|
|
@@ -2257,6 +2399,7 @@ export interface DescribeEnvironmentManagedActionsRequest {
|
|
|
2257
2399
|
Status?: ActionStatus | string;
|
|
2258
2400
|
}
|
|
2259
2401
|
/**
|
|
2402
|
+
* @public
|
|
2260
2403
|
* <p>The record of an upcoming or in-progress managed action.</p>
|
|
2261
2404
|
*/
|
|
2262
2405
|
export interface ManagedAction {
|
|
@@ -2284,6 +2427,7 @@ export interface ManagedAction {
|
|
|
2284
2427
|
WindowStartTime?: Date;
|
|
2285
2428
|
}
|
|
2286
2429
|
/**
|
|
2430
|
+
* @public
|
|
2287
2431
|
* <p>The result message containing a list of managed actions.</p>
|
|
2288
2432
|
*/
|
|
2289
2433
|
export interface DescribeEnvironmentManagedActionsResult {
|
|
@@ -2293,6 +2437,7 @@ export interface DescribeEnvironmentManagedActionsResult {
|
|
|
2293
2437
|
ManagedActions?: ManagedAction[];
|
|
2294
2438
|
}
|
|
2295
2439
|
/**
|
|
2440
|
+
* @public
|
|
2296
2441
|
* <p>Request to describe the resources in an environment.</p>
|
|
2297
2442
|
*/
|
|
2298
2443
|
export interface DescribeEnvironmentResourcesMessage {
|
|
@@ -2312,6 +2457,7 @@ export interface DescribeEnvironmentResourcesMessage {
|
|
|
2312
2457
|
EnvironmentName?: string;
|
|
2313
2458
|
}
|
|
2314
2459
|
/**
|
|
2460
|
+
* @public
|
|
2315
2461
|
* <p>The description of an Amazon EC2 instance.</p>
|
|
2316
2462
|
*/
|
|
2317
2463
|
export interface Instance {
|
|
@@ -2321,6 +2467,7 @@ export interface Instance {
|
|
|
2321
2467
|
Id?: string;
|
|
2322
2468
|
}
|
|
2323
2469
|
/**
|
|
2470
|
+
* @public
|
|
2324
2471
|
* <p>Describes an Auto Scaling launch configuration.</p>
|
|
2325
2472
|
*/
|
|
2326
2473
|
export interface LaunchConfiguration {
|
|
@@ -2330,6 +2477,7 @@ export interface LaunchConfiguration {
|
|
|
2330
2477
|
Name?: string;
|
|
2331
2478
|
}
|
|
2332
2479
|
/**
|
|
2480
|
+
* @public
|
|
2333
2481
|
* <p>Describes an Amazon EC2 launch template.</p>
|
|
2334
2482
|
*/
|
|
2335
2483
|
export interface LaunchTemplate {
|
|
@@ -2339,6 +2487,7 @@ export interface LaunchTemplate {
|
|
|
2339
2487
|
Id?: string;
|
|
2340
2488
|
}
|
|
2341
2489
|
/**
|
|
2490
|
+
* @public
|
|
2342
2491
|
* <p>Describes a LoadBalancer.</p>
|
|
2343
2492
|
*/
|
|
2344
2493
|
export interface LoadBalancer {
|
|
@@ -2348,6 +2497,7 @@ export interface LoadBalancer {
|
|
|
2348
2497
|
Name?: string;
|
|
2349
2498
|
}
|
|
2350
2499
|
/**
|
|
2500
|
+
* @public
|
|
2351
2501
|
* <p>Describes a queue.</p>
|
|
2352
2502
|
*/
|
|
2353
2503
|
export interface Queue {
|
|
@@ -2361,6 +2511,7 @@ export interface Queue {
|
|
|
2361
2511
|
URL?: string;
|
|
2362
2512
|
}
|
|
2363
2513
|
/**
|
|
2514
|
+
* @public
|
|
2364
2515
|
* <p>Describes a trigger.</p>
|
|
2365
2516
|
*/
|
|
2366
2517
|
export interface Trigger {
|
|
@@ -2370,6 +2521,7 @@ export interface Trigger {
|
|
|
2370
2521
|
Name?: string;
|
|
2371
2522
|
}
|
|
2372
2523
|
/**
|
|
2524
|
+
* @public
|
|
2373
2525
|
* <p>Describes the AWS resources in use by this environment. This data is live.</p>
|
|
2374
2526
|
*/
|
|
2375
2527
|
export interface EnvironmentResourceDescription {
|
|
@@ -2407,6 +2559,7 @@ export interface EnvironmentResourceDescription {
|
|
|
2407
2559
|
Queues?: Queue[];
|
|
2408
2560
|
}
|
|
2409
2561
|
/**
|
|
2562
|
+
* @public
|
|
2410
2563
|
* <p>Result message containing a list of environment resource descriptions.</p>
|
|
2411
2564
|
*/
|
|
2412
2565
|
export interface EnvironmentResourceDescriptionsMessage {
|
|
@@ -2416,6 +2569,7 @@ export interface EnvironmentResourceDescriptionsMessage {
|
|
|
2416
2569
|
EnvironmentResources?: EnvironmentResourceDescription;
|
|
2417
2570
|
}
|
|
2418
2571
|
/**
|
|
2572
|
+
* @public
|
|
2419
2573
|
* <p>Request to describe one or more environments.</p>
|
|
2420
2574
|
*/
|
|
2421
2575
|
export interface DescribeEnvironmentsMessage {
|
|
@@ -2467,6 +2621,9 @@ export interface DescribeEnvironmentsMessage {
|
|
|
2467
2621
|
*/
|
|
2468
2622
|
NextToken?: string;
|
|
2469
2623
|
}
|
|
2624
|
+
/**
|
|
2625
|
+
* @public
|
|
2626
|
+
*/
|
|
2470
2627
|
export declare enum EventSeverity {
|
|
2471
2628
|
DEBUG = "DEBUG",
|
|
2472
2629
|
ERROR = "ERROR",
|
|
@@ -2476,6 +2633,7 @@ export declare enum EventSeverity {
|
|
|
2476
2633
|
WARN = "WARN"
|
|
2477
2634
|
}
|
|
2478
2635
|
/**
|
|
2636
|
+
* @public
|
|
2479
2637
|
* <p>Request to retrieve a list of events for an environment.</p>
|
|
2480
2638
|
*/
|
|
2481
2639
|
export interface DescribeEventsMessage {
|
|
@@ -2540,6 +2698,7 @@ export interface DescribeEventsMessage {
|
|
|
2540
2698
|
NextToken?: string;
|
|
2541
2699
|
}
|
|
2542
2700
|
/**
|
|
2701
|
+
* @public
|
|
2543
2702
|
* <p>Describes an event.</p>
|
|
2544
2703
|
*/
|
|
2545
2704
|
export interface EventDescription {
|
|
@@ -2581,6 +2740,7 @@ export interface EventDescription {
|
|
|
2581
2740
|
Severity?: EventSeverity | string;
|
|
2582
2741
|
}
|
|
2583
2742
|
/**
|
|
2743
|
+
* @public
|
|
2584
2744
|
* <p>Result message wrapping a list of event descriptions.</p>
|
|
2585
2745
|
*/
|
|
2586
2746
|
export interface EventDescriptionsMessage {
|
|
@@ -2594,6 +2754,9 @@ export interface EventDescriptionsMessage {
|
|
|
2594
2754
|
*/
|
|
2595
2755
|
NextToken?: string;
|
|
2596
2756
|
}
|
|
2757
|
+
/**
|
|
2758
|
+
* @public
|
|
2759
|
+
*/
|
|
2597
2760
|
export declare enum InstancesHealthAttribute {
|
|
2598
2761
|
All = "All",
|
|
2599
2762
|
ApplicationMetrics = "ApplicationMetrics",
|
|
@@ -2608,6 +2771,7 @@ export declare enum InstancesHealthAttribute {
|
|
|
2608
2771
|
System = "System"
|
|
2609
2772
|
}
|
|
2610
2773
|
/**
|
|
2774
|
+
* @public
|
|
2611
2775
|
* <p>Parameters for a call to <code>DescribeInstancesHealth</code>.</p>
|
|
2612
2776
|
*/
|
|
2613
2777
|
export interface DescribeInstancesHealthRequest {
|
|
@@ -2631,6 +2795,7 @@ export interface DescribeInstancesHealthRequest {
|
|
|
2631
2795
|
NextToken?: string;
|
|
2632
2796
|
}
|
|
2633
2797
|
/**
|
|
2798
|
+
* @public
|
|
2634
2799
|
* <p>Information about an application version deployment.</p>
|
|
2635
2800
|
*/
|
|
2636
2801
|
export interface Deployment {
|
|
@@ -2668,6 +2833,7 @@ export interface Deployment {
|
|
|
2668
2833
|
DeploymentTime?: Date;
|
|
2669
2834
|
}
|
|
2670
2835
|
/**
|
|
2836
|
+
* @public
|
|
2671
2837
|
* <p>CPU utilization metrics for an instance.</p>
|
|
2672
2838
|
*/
|
|
2673
2839
|
export interface CPUUtilization {
|
|
@@ -2719,6 +2885,7 @@ export interface CPUUtilization {
|
|
|
2719
2885
|
Privileged?: number;
|
|
2720
2886
|
}
|
|
2721
2887
|
/**
|
|
2888
|
+
* @public
|
|
2722
2889
|
* <p>CPU utilization and load average metrics for an Amazon EC2 instance.</p>
|
|
2723
2890
|
*/
|
|
2724
2891
|
export interface SystemStatus {
|
|
@@ -2734,6 +2901,7 @@ export interface SystemStatus {
|
|
|
2734
2901
|
LoadAverage?: number[];
|
|
2735
2902
|
}
|
|
2736
2903
|
/**
|
|
2904
|
+
* @public
|
|
2737
2905
|
* <p>Detailed health information about an Amazon EC2 instance in your Elastic Beanstalk
|
|
2738
2906
|
* environment.</p>
|
|
2739
2907
|
*/
|
|
@@ -2784,6 +2952,7 @@ export interface SingleInstanceHealth {
|
|
|
2784
2952
|
InstanceType?: string;
|
|
2785
2953
|
}
|
|
2786
2954
|
/**
|
|
2955
|
+
* @public
|
|
2787
2956
|
* <p>Detailed health information about the Amazon EC2 instances in an AWS Elastic Beanstalk
|
|
2788
2957
|
* environment.</p>
|
|
2789
2958
|
*/
|
|
@@ -2803,6 +2972,9 @@ export interface DescribeInstancesHealthResult {
|
|
|
2803
2972
|
*/
|
|
2804
2973
|
NextToken?: string;
|
|
2805
2974
|
}
|
|
2975
|
+
/**
|
|
2976
|
+
* @public
|
|
2977
|
+
*/
|
|
2806
2978
|
export interface DescribePlatformVersionRequest {
|
|
2807
2979
|
/**
|
|
2808
2980
|
* <p>The ARN of the platform version.</p>
|
|
@@ -2810,6 +2982,7 @@ export interface DescribePlatformVersionRequest {
|
|
|
2810
2982
|
PlatformArn?: string;
|
|
2811
2983
|
}
|
|
2812
2984
|
/**
|
|
2985
|
+
* @public
|
|
2813
2986
|
* <p>A custom AMI available to platforms.</p>
|
|
2814
2987
|
*/
|
|
2815
2988
|
export interface CustomAmi {
|
|
@@ -2823,6 +2996,7 @@ export interface CustomAmi {
|
|
|
2823
2996
|
ImageId?: string;
|
|
2824
2997
|
}
|
|
2825
2998
|
/**
|
|
2999
|
+
* @public
|
|
2826
3000
|
* <p>A framework supported by the platform.</p>
|
|
2827
3001
|
*/
|
|
2828
3002
|
export interface PlatformFramework {
|
|
@@ -2836,6 +3010,7 @@ export interface PlatformFramework {
|
|
|
2836
3010
|
Version?: string;
|
|
2837
3011
|
}
|
|
2838
3012
|
/**
|
|
3013
|
+
* @public
|
|
2839
3014
|
* <p>A programming language supported by the platform.</p>
|
|
2840
3015
|
*/
|
|
2841
3016
|
export interface PlatformProgrammingLanguage {
|
|
@@ -2849,6 +3024,7 @@ export interface PlatformProgrammingLanguage {
|
|
|
2849
3024
|
Version?: string;
|
|
2850
3025
|
}
|
|
2851
3026
|
/**
|
|
3027
|
+
* @public
|
|
2852
3028
|
* <p>Detailed information about a platform version.</p>
|
|
2853
3029
|
*/
|
|
2854
3030
|
export interface PlatformDescription {
|
|
@@ -2945,6 +3121,9 @@ export interface PlatformDescription {
|
|
|
2945
3121
|
*/
|
|
2946
3122
|
PlatformBranchLifecycleState?: string;
|
|
2947
3123
|
}
|
|
3124
|
+
/**
|
|
3125
|
+
* @public
|
|
3126
|
+
*/
|
|
2948
3127
|
export interface DescribePlatformVersionResult {
|
|
2949
3128
|
/**
|
|
2950
3129
|
* <p>Detailed information about the platform version.</p>
|
|
@@ -2952,6 +3131,7 @@ export interface DescribePlatformVersionResult {
|
|
|
2952
3131
|
PlatformDescription?: PlatformDescription;
|
|
2953
3132
|
}
|
|
2954
3133
|
/**
|
|
3134
|
+
* @public
|
|
2955
3135
|
* <p>Request to disassociate the operations role from an environment.</p>
|
|
2956
3136
|
*/
|
|
2957
3137
|
export interface DisassociateEnvironmentOperationsRoleMessage {
|
|
@@ -2961,6 +3141,7 @@ export interface DisassociateEnvironmentOperationsRoleMessage {
|
|
|
2961
3141
|
EnvironmentName: string | undefined;
|
|
2962
3142
|
}
|
|
2963
3143
|
/**
|
|
3144
|
+
* @public
|
|
2964
3145
|
* <p>A list of available AWS Elastic Beanstalk solution stacks.</p>
|
|
2965
3146
|
*/
|
|
2966
3147
|
export interface ListAvailableSolutionStacksResultMessage {
|
|
@@ -2974,6 +3155,7 @@ export interface ListAvailableSolutionStacksResultMessage {
|
|
|
2974
3155
|
SolutionStackDetails?: SolutionStackDescription[];
|
|
2975
3156
|
}
|
|
2976
3157
|
/**
|
|
3158
|
+
* @public
|
|
2977
3159
|
* <p>Describes criteria to restrict a list of results.</p>
|
|
2978
3160
|
* <p>For operators that apply a single value to the attribute, the filter is evaluated as
|
|
2979
3161
|
* follows: <code>Attribute Operator Values[1]</code>
|
|
@@ -3004,6 +3186,9 @@ export interface SearchFilter {
|
|
|
3004
3186
|
*/
|
|
3005
3187
|
Values?: string[];
|
|
3006
3188
|
}
|
|
3189
|
+
/**
|
|
3190
|
+
* @public
|
|
3191
|
+
*/
|
|
3007
3192
|
export interface ListPlatformBranchesRequest {
|
|
3008
3193
|
/**
|
|
3009
3194
|
* <p>Criteria for restricting the resulting list of platform branches. The filter is evaluated
|
|
@@ -3091,6 +3276,7 @@ export interface ListPlatformBranchesRequest {
|
|
|
3091
3276
|
NextToken?: string;
|
|
3092
3277
|
}
|
|
3093
3278
|
/**
|
|
3279
|
+
* @public
|
|
3094
3280
|
* <p>Summary information about a platform branch.</p>
|
|
3095
3281
|
*/
|
|
3096
3282
|
export interface PlatformBranchSummary {
|
|
@@ -3125,6 +3311,9 @@ export interface PlatformBranchSummary {
|
|
|
3125
3311
|
*/
|
|
3126
3312
|
SupportedTierList?: string[];
|
|
3127
3313
|
}
|
|
3314
|
+
/**
|
|
3315
|
+
* @public
|
|
3316
|
+
*/
|
|
3128
3317
|
export interface ListPlatformBranchesResult {
|
|
3129
3318
|
/**
|
|
3130
3319
|
* <p>Summary information about the platform branches.</p>
|
|
@@ -3137,6 +3326,7 @@ export interface ListPlatformBranchesResult {
|
|
|
3137
3326
|
NextToken?: string;
|
|
3138
3327
|
}
|
|
3139
3328
|
/**
|
|
3329
|
+
* @public
|
|
3140
3330
|
* <p>Describes criteria to restrict the results when listing platform versions.</p>
|
|
3141
3331
|
* <p>The filter is evaluated as follows: <code>Type Operator Values[1]</code>
|
|
3142
3332
|
* </p>
|
|
@@ -3194,6 +3384,9 @@ export interface PlatformFilter {
|
|
|
3194
3384
|
*/
|
|
3195
3385
|
Values?: string[];
|
|
3196
3386
|
}
|
|
3387
|
+
/**
|
|
3388
|
+
* @public
|
|
3389
|
+
*/
|
|
3197
3390
|
export interface ListPlatformVersionsRequest {
|
|
3198
3391
|
/**
|
|
3199
3392
|
* <p>Criteria for restricting the resulting list of platform versions. The filter is
|
|
@@ -3213,6 +3406,9 @@ export interface ListPlatformVersionsRequest {
|
|
|
3213
3406
|
*/
|
|
3214
3407
|
NextToken?: string;
|
|
3215
3408
|
}
|
|
3409
|
+
/**
|
|
3410
|
+
* @public
|
|
3411
|
+
*/
|
|
3216
3412
|
export interface ListPlatformVersionsResult {
|
|
3217
3413
|
/**
|
|
3218
3414
|
* <p>Summary information about the platform versions.</p>
|
|
@@ -3224,6 +3420,9 @@ export interface ListPlatformVersionsResult {
|
|
|
3224
3420
|
*/
|
|
3225
3421
|
NextToken?: string;
|
|
3226
3422
|
}
|
|
3423
|
+
/**
|
|
3424
|
+
* @public
|
|
3425
|
+
*/
|
|
3227
3426
|
export interface ListTagsForResourceMessage {
|
|
3228
3427
|
/**
|
|
3229
3428
|
* <p>The Amazon Resource Name (ARN) of the resouce for which a tag list is requested.</p>
|
|
@@ -3232,6 +3431,7 @@ export interface ListTagsForResourceMessage {
|
|
|
3232
3431
|
ResourceArn: string | undefined;
|
|
3233
3432
|
}
|
|
3234
3433
|
/**
|
|
3434
|
+
* @public
|
|
3235
3435
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN).</p>
|
|
3236
3436
|
*/
|
|
3237
3437
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -3242,6 +3442,9 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
3242
3442
|
*/
|
|
3243
3443
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
3244
3444
|
}
|
|
3445
|
+
/**
|
|
3446
|
+
* @public
|
|
3447
|
+
*/
|
|
3245
3448
|
export interface ResourceTagsDescriptionMessage {
|
|
3246
3449
|
/**
|
|
3247
3450
|
* <p>The Amazon Resource Name (ARN) of the resource for which a tag list was requested.</p>
|
|
@@ -3253,6 +3456,7 @@ export interface ResourceTagsDescriptionMessage {
|
|
|
3253
3456
|
ResourceTags?: Tag[];
|
|
3254
3457
|
}
|
|
3255
3458
|
/**
|
|
3459
|
+
* @public
|
|
3256
3460
|
* <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
|
|
3257
3461
|
*/
|
|
3258
3462
|
export declare class ResourceTypeNotSupportedException extends __BaseException {
|
|
@@ -3264,6 +3468,7 @@ export declare class ResourceTypeNotSupportedException extends __BaseException {
|
|
|
3264
3468
|
constructor(opts: __ExceptionOptionType<ResourceTypeNotSupportedException, __BaseException>);
|
|
3265
3469
|
}
|
|
3266
3470
|
/**
|
|
3471
|
+
* @public
|
|
3267
3472
|
* <p></p>
|
|
3268
3473
|
*/
|
|
3269
3474
|
export interface RebuildEnvironmentMessage {
|
|
@@ -3282,11 +3487,15 @@ export interface RebuildEnvironmentMessage {
|
|
|
3282
3487
|
*/
|
|
3283
3488
|
EnvironmentName?: string;
|
|
3284
3489
|
}
|
|
3490
|
+
/**
|
|
3491
|
+
* @public
|
|
3492
|
+
*/
|
|
3285
3493
|
export declare enum EnvironmentInfoType {
|
|
3286
3494
|
bundle = "bundle",
|
|
3287
3495
|
tail = "tail"
|
|
3288
3496
|
}
|
|
3289
3497
|
/**
|
|
3498
|
+
* @public
|
|
3290
3499
|
* <p>Request to retrieve logs from an environment and store them in your Elastic Beanstalk
|
|
3291
3500
|
* storage bucket.</p>
|
|
3292
3501
|
*/
|
|
@@ -3315,6 +3524,7 @@ export interface RequestEnvironmentInfoMessage {
|
|
|
3315
3524
|
InfoType: EnvironmentInfoType | string | undefined;
|
|
3316
3525
|
}
|
|
3317
3526
|
/**
|
|
3527
|
+
* @public
|
|
3318
3528
|
* <p></p>
|
|
3319
3529
|
*/
|
|
3320
3530
|
export interface RestartAppServerMessage {
|
|
@@ -3334,6 +3544,7 @@ export interface RestartAppServerMessage {
|
|
|
3334
3544
|
EnvironmentName?: string;
|
|
3335
3545
|
}
|
|
3336
3546
|
/**
|
|
3547
|
+
* @public
|
|
3337
3548
|
* <p>Request to download logs retrieved with <a>RequestEnvironmentInfo</a>.</p>
|
|
3338
3549
|
*/
|
|
3339
3550
|
export interface RetrieveEnvironmentInfoMessage {
|
|
@@ -3360,6 +3571,7 @@ export interface RetrieveEnvironmentInfoMessage {
|
|
|
3360
3571
|
InfoType: EnvironmentInfoType | string | undefined;
|
|
3361
3572
|
}
|
|
3362
3573
|
/**
|
|
3574
|
+
* @public
|
|
3363
3575
|
* <p>The information retrieved from the Amazon EC2 instances.</p>
|
|
3364
3576
|
*/
|
|
3365
3577
|
export interface EnvironmentInfoDescription {
|
|
@@ -3384,6 +3596,7 @@ export interface EnvironmentInfoDescription {
|
|
|
3384
3596
|
Message?: string;
|
|
3385
3597
|
}
|
|
3386
3598
|
/**
|
|
3599
|
+
* @public
|
|
3387
3600
|
* <p>Result message containing a description of the requested environment info.</p>
|
|
3388
3601
|
*/
|
|
3389
3602
|
export interface RetrieveEnvironmentInfoResultMessage {
|
|
@@ -3393,6 +3606,7 @@ export interface RetrieveEnvironmentInfoResultMessage {
|
|
|
3393
3606
|
EnvironmentInfo?: EnvironmentInfoDescription[];
|
|
3394
3607
|
}
|
|
3395
3608
|
/**
|
|
3609
|
+
* @public
|
|
3396
3610
|
* <p>Swaps the CNAMEs of two environments.</p>
|
|
3397
3611
|
*/
|
|
3398
3612
|
export interface SwapEnvironmentCNAMEsMessage {
|
|
@@ -3429,6 +3643,7 @@ export interface SwapEnvironmentCNAMEsMessage {
|
|
|
3429
3643
|
DestinationEnvironmentName?: string;
|
|
3430
3644
|
}
|
|
3431
3645
|
/**
|
|
3646
|
+
* @public
|
|
3432
3647
|
* <p>Request to terminate an environment.</p>
|
|
3433
3648
|
*/
|
|
3434
3649
|
export interface TerminateEnvironmentMessage {
|
|
@@ -3476,6 +3691,7 @@ export interface TerminateEnvironmentMessage {
|
|
|
3476
3691
|
ForceTerminate?: boolean;
|
|
3477
3692
|
}
|
|
3478
3693
|
/**
|
|
3694
|
+
* @public
|
|
3479
3695
|
* <p>Request to update an application.</p>
|
|
3480
3696
|
*/
|
|
3481
3697
|
export interface UpdateApplicationMessage {
|
|
@@ -3492,6 +3708,9 @@ export interface UpdateApplicationMessage {
|
|
|
3492
3708
|
*/
|
|
3493
3709
|
Description?: string;
|
|
3494
3710
|
}
|
|
3711
|
+
/**
|
|
3712
|
+
* @public
|
|
3713
|
+
*/
|
|
3495
3714
|
export interface UpdateApplicationResourceLifecycleMessage {
|
|
3496
3715
|
/**
|
|
3497
3716
|
* <p>The name of the application.</p>
|
|
@@ -3503,6 +3722,7 @@ export interface UpdateApplicationResourceLifecycleMessage {
|
|
|
3503
3722
|
ResourceLifecycleConfig: ApplicationResourceLifecycleConfig | undefined;
|
|
3504
3723
|
}
|
|
3505
3724
|
/**
|
|
3725
|
+
* @public
|
|
3506
3726
|
* <p></p>
|
|
3507
3727
|
*/
|
|
3508
3728
|
export interface UpdateApplicationVersionMessage {
|
|
@@ -3524,6 +3744,7 @@ export interface UpdateApplicationVersionMessage {
|
|
|
3524
3744
|
Description?: string;
|
|
3525
3745
|
}
|
|
3526
3746
|
/**
|
|
3747
|
+
* @public
|
|
3527
3748
|
* <p>The result message containing the options for the specified solution stack.</p>
|
|
3528
3749
|
*/
|
|
3529
3750
|
export interface UpdateConfigurationTemplateMessage {
|
|
@@ -3558,6 +3779,7 @@ export interface UpdateConfigurationTemplateMessage {
|
|
|
3558
3779
|
OptionsToRemove?: OptionSpecification[];
|
|
3559
3780
|
}
|
|
3560
3781
|
/**
|
|
3782
|
+
* @public
|
|
3561
3783
|
* <p>Request to update an environment.</p>
|
|
3562
3784
|
*/
|
|
3563
3785
|
export interface UpdateEnvironmentMessage {
|
|
@@ -3634,6 +3856,7 @@ export interface UpdateEnvironmentMessage {
|
|
|
3634
3856
|
OptionsToRemove?: OptionSpecification[];
|
|
3635
3857
|
}
|
|
3636
3858
|
/**
|
|
3859
|
+
* @public
|
|
3637
3860
|
* <p>The number of tags in the resource would exceed the number of tags that each resource
|
|
3638
3861
|
* can have.</p>
|
|
3639
3862
|
* <p>To calculate this, the operation considers both the number of tags the resource already has
|
|
@@ -3647,6 +3870,9 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
3647
3870
|
*/
|
|
3648
3871
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
3649
3872
|
}
|
|
3873
|
+
/**
|
|
3874
|
+
* @public
|
|
3875
|
+
*/
|
|
3650
3876
|
export interface UpdateTagsForResourceMessage {
|
|
3651
3877
|
/**
|
|
3652
3878
|
* <p>The Amazon Resource Name (ARN) of the resouce to be updated.</p>
|
|
@@ -3667,11 +3893,15 @@ export interface UpdateTagsForResourceMessage {
|
|
|
3667
3893
|
*/
|
|
3668
3894
|
TagsToRemove?: string[];
|
|
3669
3895
|
}
|
|
3896
|
+
/**
|
|
3897
|
+
* @public
|
|
3898
|
+
*/
|
|
3670
3899
|
export declare enum ValidationSeverity {
|
|
3671
3900
|
error = "error",
|
|
3672
3901
|
warning = "warning"
|
|
3673
3902
|
}
|
|
3674
3903
|
/**
|
|
3904
|
+
* @public
|
|
3675
3905
|
* <p>An error or warning for a desired configuration option value.</p>
|
|
3676
3906
|
*/
|
|
3677
3907
|
export interface ValidationMessage {
|
|
@@ -3705,6 +3935,7 @@ export interface ValidationMessage {
|
|
|
3705
3935
|
OptionName?: string;
|
|
3706
3936
|
}
|
|
3707
3937
|
/**
|
|
3938
|
+
* @public
|
|
3708
3939
|
* <p>Provides a list of validation messages.</p>
|
|
3709
3940
|
*/
|
|
3710
3941
|
export interface ConfigurationSettingsValidationMessages {
|
|
@@ -3714,6 +3945,7 @@ export interface ConfigurationSettingsValidationMessages {
|
|
|
3714
3945
|
Messages?: ValidationMessage[];
|
|
3715
3946
|
}
|
|
3716
3947
|
/**
|
|
3948
|
+
* @public
|
|
3717
3949
|
* <p>A list of validation messages for a specified configuration template.</p>
|
|
3718
3950
|
*/
|
|
3719
3951
|
export interface ValidateConfigurationSettingsMessage {
|