@aws-sdk/client-elastic-beanstalk 3.300.0 → 3.303.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/models/models_0.js +127 -146
- package/dist-es/models/models_0.js +127 -146
- package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +1 -1
- package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +1 -1
- package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +1 -1
- package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +1 -1
- package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +2 -2
- package/dist-types/commands/CreateApplicationCommand.d.ts +7 -7
- package/dist-types/commands/CreateApplicationVersionCommand.d.ts +6 -6
- package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +6 -6
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +8 -8
- package/dist-types/commands/CreatePlatformVersionCommand.d.ts +6 -6
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeletePlatformVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeApplicationsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +3 -3
- package/dist-types/commands/DescribeEventsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +2 -2
- package/dist-types/commands/DescribePlatformVersionCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +1 -1
- package/dist-types/commands/ListPlatformBranchesCommand.d.ts +4 -4
- package/dist-types/commands/ListPlatformVersionsCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RebuildEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +1 -1
- package/dist-types/commands/RestartAppServerCommand.d.ts +1 -1
- package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +1 -1
- package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +1 -1
- package/dist-types/commands/TerminateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +5 -5
- package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +5 -5
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +6 -6
- package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +4 -4
- package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +222 -127
- package/dist-types/ts3.4/models/models_0.d.ts +159 -127
- package/package.json +35 -35
|
@@ -31,29 +31,44 @@ export declare class InsufficientPrivilegesException extends __BaseException {
|
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @public
|
|
34
|
+
* @enum
|
|
34
35
|
*/
|
|
35
|
-
export declare
|
|
36
|
-
Completed
|
|
37
|
-
Failed
|
|
38
|
-
Unknown
|
|
39
|
-
}
|
|
36
|
+
export declare const ActionHistoryStatus: {
|
|
37
|
+
readonly Completed: "Completed";
|
|
38
|
+
readonly Failed: "Failed";
|
|
39
|
+
readonly Unknown: "Unknown";
|
|
40
|
+
};
|
|
40
41
|
/**
|
|
41
42
|
* @public
|
|
42
43
|
*/
|
|
43
|
-
export
|
|
44
|
-
Pending = "Pending",
|
|
45
|
-
Running = "Running",
|
|
46
|
-
Scheduled = "Scheduled",
|
|
47
|
-
Unknown = "Unknown"
|
|
48
|
-
}
|
|
44
|
+
export type ActionHistoryStatus = (typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus];
|
|
49
45
|
/**
|
|
50
46
|
* @public
|
|
47
|
+
* @enum
|
|
51
48
|
*/
|
|
52
|
-
export declare
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
49
|
+
export declare const ActionStatus: {
|
|
50
|
+
readonly Pending: "Pending";
|
|
51
|
+
readonly Running: "Running";
|
|
52
|
+
readonly Scheduled: "Scheduled";
|
|
53
|
+
readonly Unknown: "Unknown";
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
* @enum
|
|
62
|
+
*/
|
|
63
|
+
export declare const ActionType: {
|
|
64
|
+
readonly InstanceRefresh: "InstanceRefresh";
|
|
65
|
+
readonly PlatformUpdate: "PlatformUpdate";
|
|
66
|
+
readonly Unknown: "Unknown";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export type ActionType = (typeof ActionType)[keyof typeof ActionType];
|
|
57
72
|
/**
|
|
58
73
|
* @public
|
|
59
74
|
* <p>A lifecycle rule that deletes application versions after the specified number of
|
|
@@ -317,18 +332,28 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
|
|
|
317
332
|
}
|
|
318
333
|
/**
|
|
319
334
|
* @public
|
|
335
|
+
* @enum
|
|
320
336
|
*/
|
|
321
|
-
export declare
|
|
322
|
-
CodeCommit
|
|
323
|
-
S3
|
|
324
|
-
}
|
|
337
|
+
export declare const SourceRepository: {
|
|
338
|
+
readonly CodeCommit: "CodeCommit";
|
|
339
|
+
readonly S3: "S3";
|
|
340
|
+
};
|
|
325
341
|
/**
|
|
326
342
|
* @public
|
|
327
343
|
*/
|
|
328
|
-
export
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
344
|
+
export type SourceRepository = (typeof SourceRepository)[keyof typeof SourceRepository];
|
|
345
|
+
/**
|
|
346
|
+
* @public
|
|
347
|
+
* @enum
|
|
348
|
+
*/
|
|
349
|
+
export declare const SourceType: {
|
|
350
|
+
readonly Git: "Git";
|
|
351
|
+
readonly Zip: "Zip";
|
|
352
|
+
};
|
|
353
|
+
/**
|
|
354
|
+
* @public
|
|
355
|
+
*/
|
|
356
|
+
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
332
357
|
/**
|
|
333
358
|
* @public
|
|
334
359
|
* <p>Location of the source code for an application version.</p>
|
|
@@ -402,14 +427,19 @@ export interface S3Location {
|
|
|
402
427
|
}
|
|
403
428
|
/**
|
|
404
429
|
* @public
|
|
430
|
+
* @enum
|
|
405
431
|
*/
|
|
406
|
-
export declare
|
|
407
|
-
Building
|
|
408
|
-
Failed
|
|
409
|
-
Processed
|
|
410
|
-
Processing
|
|
411
|
-
Unprocessed
|
|
412
|
-
}
|
|
432
|
+
export declare const ApplicationVersionStatus: {
|
|
433
|
+
readonly Building: "Building";
|
|
434
|
+
readonly Failed: "Failed";
|
|
435
|
+
readonly Processed: "Processed";
|
|
436
|
+
readonly Processing: "Processing";
|
|
437
|
+
readonly Unprocessed: "Unprocessed";
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* @public
|
|
441
|
+
*/
|
|
442
|
+
export type ApplicationVersionStatus = (typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
|
|
413
443
|
/**
|
|
414
444
|
* @public
|
|
415
445
|
* <p>Describes the properties of an application version.</p>
|
|
@@ -694,27 +724,37 @@ export interface EnvironmentLink {
|
|
|
694
724
|
}
|
|
695
725
|
/**
|
|
696
726
|
* @public
|
|
727
|
+
* @enum
|
|
697
728
|
*/
|
|
698
|
-
export declare
|
|
699
|
-
Green
|
|
700
|
-
Grey
|
|
701
|
-
Red
|
|
702
|
-
Yellow
|
|
703
|
-
}
|
|
729
|
+
export declare const EnvironmentHealth: {
|
|
730
|
+
readonly Green: "Green";
|
|
731
|
+
readonly Grey: "Grey";
|
|
732
|
+
readonly Red: "Red";
|
|
733
|
+
readonly Yellow: "Yellow";
|
|
734
|
+
};
|
|
704
735
|
/**
|
|
705
736
|
* @public
|
|
706
737
|
*/
|
|
707
|
-
export
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
738
|
+
export type EnvironmentHealth = (typeof EnvironmentHealth)[keyof typeof EnvironmentHealth];
|
|
739
|
+
/**
|
|
740
|
+
* @public
|
|
741
|
+
* @enum
|
|
742
|
+
*/
|
|
743
|
+
export declare const EnvironmentHealthStatus: {
|
|
744
|
+
readonly Degraded: "Degraded";
|
|
745
|
+
readonly Info: "Info";
|
|
746
|
+
readonly NoData: "NoData";
|
|
747
|
+
readonly Ok: "Ok";
|
|
748
|
+
readonly Pending: "Pending";
|
|
749
|
+
readonly Severe: "Severe";
|
|
750
|
+
readonly Suspended: "Suspended";
|
|
751
|
+
readonly Unknown: "Unknown";
|
|
752
|
+
readonly Warning: "Warning";
|
|
753
|
+
};
|
|
754
|
+
/**
|
|
755
|
+
* @public
|
|
756
|
+
*/
|
|
757
|
+
export type EnvironmentHealthStatus = (typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
|
|
718
758
|
/**
|
|
719
759
|
* @public
|
|
720
760
|
* <p>Describes the properties of a Listener for the LoadBalancer.</p>
|
|
@@ -760,17 +800,22 @@ export interface EnvironmentResourcesDescription {
|
|
|
760
800
|
}
|
|
761
801
|
/**
|
|
762
802
|
* @public
|
|
803
|
+
* @enum
|
|
763
804
|
*/
|
|
764
|
-
export declare
|
|
765
|
-
Aborting
|
|
766
|
-
Launching
|
|
767
|
-
LinkingFrom
|
|
768
|
-
LinkingTo
|
|
769
|
-
Ready
|
|
770
|
-
Terminated
|
|
771
|
-
Terminating
|
|
772
|
-
Updating
|
|
773
|
-
}
|
|
805
|
+
export declare const EnvironmentStatus: {
|
|
806
|
+
readonly Aborting: "Aborting";
|
|
807
|
+
readonly Launching: "Launching";
|
|
808
|
+
readonly LinkingFrom: "LinkingFrom";
|
|
809
|
+
readonly LinkingTo: "LinkingTo";
|
|
810
|
+
readonly Ready: "Ready";
|
|
811
|
+
readonly Terminated: "Terminated";
|
|
812
|
+
readonly Terminating: "Terminating";
|
|
813
|
+
readonly Updating: "Updating";
|
|
814
|
+
};
|
|
815
|
+
/**
|
|
816
|
+
* @public
|
|
817
|
+
*/
|
|
818
|
+
export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
|
|
774
819
|
/**
|
|
775
820
|
* @public
|
|
776
821
|
* <p>Describes the properties of an environment tier</p>
|
|
@@ -1057,12 +1102,17 @@ export declare class CodeBuildNotInServiceRegionException extends __BaseExceptio
|
|
|
1057
1102
|
}
|
|
1058
1103
|
/**
|
|
1059
1104
|
* @public
|
|
1105
|
+
* @enum
|
|
1060
1106
|
*/
|
|
1061
|
-
export declare
|
|
1062
|
-
BUILD_GENERAL1_LARGE
|
|
1063
|
-
BUILD_GENERAL1_MEDIUM
|
|
1064
|
-
BUILD_GENERAL1_SMALL
|
|
1065
|
-
}
|
|
1107
|
+
export declare const ComputeType: {
|
|
1108
|
+
readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
|
|
1109
|
+
readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
|
|
1110
|
+
readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
|
|
1111
|
+
};
|
|
1112
|
+
/**
|
|
1113
|
+
* @public
|
|
1114
|
+
*/
|
|
1115
|
+
export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
|
|
1066
1116
|
/**
|
|
1067
1117
|
* @public
|
|
1068
1118
|
* <p>Settings for an AWS CodeBuild build.</p>
|
|
@@ -1220,12 +1270,17 @@ export declare class TooManyApplicationVersionsException extends __BaseException
|
|
|
1220
1270
|
}
|
|
1221
1271
|
/**
|
|
1222
1272
|
* @public
|
|
1273
|
+
* @enum
|
|
1223
1274
|
*/
|
|
1224
|
-
export declare
|
|
1225
|
-
deployed
|
|
1226
|
-
failed
|
|
1227
|
-
pending
|
|
1228
|
-
}
|
|
1275
|
+
export declare const ConfigurationDeploymentStatus: {
|
|
1276
|
+
readonly deployed: "deployed";
|
|
1277
|
+
readonly failed: "failed";
|
|
1278
|
+
readonly pending: "pending";
|
|
1279
|
+
};
|
|
1280
|
+
/**
|
|
1281
|
+
* @public
|
|
1282
|
+
*/
|
|
1283
|
+
export type ConfigurationDeploymentStatus = (typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
|
|
1229
1284
|
/**
|
|
1230
1285
|
* @public
|
|
1231
1286
|
* <p>A specification identifying an individual configuration option along with its current
|
|
@@ -1600,14 +1655,19 @@ export interface Builder {
|
|
|
1600
1655
|
}
|
|
1601
1656
|
/**
|
|
1602
1657
|
* @public
|
|
1658
|
+
* @enum
|
|
1603
1659
|
*/
|
|
1604
|
-
export declare
|
|
1605
|
-
Creating
|
|
1606
|
-
Deleted
|
|
1607
|
-
Deleting
|
|
1608
|
-
Failed
|
|
1609
|
-
Ready
|
|
1610
|
-
}
|
|
1660
|
+
export declare const PlatformStatus: {
|
|
1661
|
+
readonly Creating: "Creating";
|
|
1662
|
+
readonly Deleted: "Deleted";
|
|
1663
|
+
readonly Deleting: "Deleting";
|
|
1664
|
+
readonly Failed: "Failed";
|
|
1665
|
+
readonly Ready: "Ready";
|
|
1666
|
+
};
|
|
1667
|
+
/**
|
|
1668
|
+
* @public
|
|
1669
|
+
*/
|
|
1670
|
+
export type PlatformStatus = (typeof PlatformStatus)[keyof typeof PlatformStatus];
|
|
1611
1671
|
/**
|
|
1612
1672
|
* @public
|
|
1613
1673
|
* <p>Summary information about a platform version.</p>
|
|
@@ -1940,11 +2000,16 @@ export interface OptionRestrictionRegex {
|
|
|
1940
2000
|
}
|
|
1941
2001
|
/**
|
|
1942
2002
|
* @public
|
|
2003
|
+
* @enum
|
|
1943
2004
|
*/
|
|
1944
|
-
export declare
|
|
1945
|
-
List
|
|
1946
|
-
Scalar
|
|
1947
|
-
}
|
|
2005
|
+
export declare const ConfigurationOptionValueType: {
|
|
2006
|
+
readonly List: "List";
|
|
2007
|
+
readonly Scalar: "Scalar";
|
|
2008
|
+
};
|
|
2009
|
+
/**
|
|
2010
|
+
* @public
|
|
2011
|
+
*/
|
|
2012
|
+
export type ConfigurationOptionValueType = (typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
|
|
1948
2013
|
/**
|
|
1949
2014
|
* @public
|
|
1950
2015
|
* <p>Describes the possible values for a configuration option.</p>
|
|
@@ -2151,17 +2216,22 @@ export interface DescribeConfigurationSettingsMessage {
|
|
|
2151
2216
|
}
|
|
2152
2217
|
/**
|
|
2153
2218
|
* @public
|
|
2219
|
+
* @enum
|
|
2154
2220
|
*/
|
|
2155
|
-
export declare
|
|
2156
|
-
All
|
|
2157
|
-
ApplicationMetrics
|
|
2158
|
-
Causes
|
|
2159
|
-
Color
|
|
2160
|
-
HealthStatus
|
|
2161
|
-
InstancesHealth
|
|
2162
|
-
RefreshedAt
|
|
2163
|
-
Status
|
|
2164
|
-
}
|
|
2221
|
+
export declare const EnvironmentHealthAttribute: {
|
|
2222
|
+
readonly All: "All";
|
|
2223
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
2224
|
+
readonly Causes: "Causes";
|
|
2225
|
+
readonly Color: "Color";
|
|
2226
|
+
readonly HealthStatus: "HealthStatus";
|
|
2227
|
+
readonly InstancesHealth: "InstancesHealth";
|
|
2228
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
2229
|
+
readonly Status: "Status";
|
|
2230
|
+
};
|
|
2231
|
+
/**
|
|
2232
|
+
* @public
|
|
2233
|
+
*/
|
|
2234
|
+
export type EnvironmentHealthAttribute = (typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
|
|
2165
2235
|
/**
|
|
2166
2236
|
* @public
|
|
2167
2237
|
* <p>See the example below to learn how to create a request body.</p>
|
|
@@ -2317,16 +2387,21 @@ export interface DescribeEnvironmentManagedActionHistoryRequest {
|
|
|
2317
2387
|
}
|
|
2318
2388
|
/**
|
|
2319
2389
|
* @public
|
|
2390
|
+
* @enum
|
|
2320
2391
|
*/
|
|
2321
|
-
export declare
|
|
2322
|
-
CancellationFailed
|
|
2323
|
-
InternalFailure
|
|
2324
|
-
InvalidEnvironmentState
|
|
2325
|
-
PermissionsError
|
|
2326
|
-
RollbackFailed
|
|
2327
|
-
RollbackSuccessful
|
|
2328
|
-
UpdateCancelled
|
|
2329
|
-
}
|
|
2392
|
+
export declare const FailureType: {
|
|
2393
|
+
readonly CancellationFailed: "CancellationFailed";
|
|
2394
|
+
readonly InternalFailure: "InternalFailure";
|
|
2395
|
+
readonly InvalidEnvironmentState: "InvalidEnvironmentState";
|
|
2396
|
+
readonly PermissionsError: "PermissionsError";
|
|
2397
|
+
readonly RollbackFailed: "RollbackFailed";
|
|
2398
|
+
readonly RollbackSuccessful: "RollbackSuccessful";
|
|
2399
|
+
readonly UpdateCancelled: "UpdateCancelled";
|
|
2400
|
+
};
|
|
2401
|
+
/**
|
|
2402
|
+
* @public
|
|
2403
|
+
*/
|
|
2404
|
+
export type FailureType = (typeof FailureType)[keyof typeof FailureType];
|
|
2330
2405
|
/**
|
|
2331
2406
|
* @public
|
|
2332
2407
|
* <p>The record of a completed or failed managed action.</p>
|
|
@@ -2623,15 +2698,20 @@ export interface DescribeEnvironmentsMessage {
|
|
|
2623
2698
|
}
|
|
2624
2699
|
/**
|
|
2625
2700
|
* @public
|
|
2701
|
+
* @enum
|
|
2626
2702
|
*/
|
|
2627
|
-
export declare
|
|
2628
|
-
DEBUG
|
|
2629
|
-
ERROR
|
|
2630
|
-
FATAL
|
|
2631
|
-
INFO
|
|
2632
|
-
TRACE
|
|
2633
|
-
WARN
|
|
2634
|
-
}
|
|
2703
|
+
export declare const EventSeverity: {
|
|
2704
|
+
readonly DEBUG: "DEBUG";
|
|
2705
|
+
readonly ERROR: "ERROR";
|
|
2706
|
+
readonly FATAL: "FATAL";
|
|
2707
|
+
readonly INFO: "INFO";
|
|
2708
|
+
readonly TRACE: "TRACE";
|
|
2709
|
+
readonly WARN: "WARN";
|
|
2710
|
+
};
|
|
2711
|
+
/**
|
|
2712
|
+
* @public
|
|
2713
|
+
*/
|
|
2714
|
+
export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
|
|
2635
2715
|
/**
|
|
2636
2716
|
* @public
|
|
2637
2717
|
* <p>Request to retrieve a list of events for an environment.</p>
|
|
@@ -2756,20 +2836,25 @@ export interface EventDescriptionsMessage {
|
|
|
2756
2836
|
}
|
|
2757
2837
|
/**
|
|
2758
2838
|
* @public
|
|
2839
|
+
* @enum
|
|
2759
2840
|
*/
|
|
2760
|
-
export declare
|
|
2761
|
-
All
|
|
2762
|
-
ApplicationMetrics
|
|
2763
|
-
AvailabilityZone
|
|
2764
|
-
Causes
|
|
2765
|
-
Color
|
|
2766
|
-
Deployment
|
|
2767
|
-
HealthStatus
|
|
2768
|
-
InstanceType
|
|
2769
|
-
LaunchedAt
|
|
2770
|
-
RefreshedAt
|
|
2771
|
-
System
|
|
2772
|
-
}
|
|
2841
|
+
export declare const InstancesHealthAttribute: {
|
|
2842
|
+
readonly All: "All";
|
|
2843
|
+
readonly ApplicationMetrics: "ApplicationMetrics";
|
|
2844
|
+
readonly AvailabilityZone: "AvailabilityZone";
|
|
2845
|
+
readonly Causes: "Causes";
|
|
2846
|
+
readonly Color: "Color";
|
|
2847
|
+
readonly Deployment: "Deployment";
|
|
2848
|
+
readonly HealthStatus: "HealthStatus";
|
|
2849
|
+
readonly InstanceType: "InstanceType";
|
|
2850
|
+
readonly LaunchedAt: "LaunchedAt";
|
|
2851
|
+
readonly RefreshedAt: "RefreshedAt";
|
|
2852
|
+
readonly System: "System";
|
|
2853
|
+
};
|
|
2854
|
+
/**
|
|
2855
|
+
* @public
|
|
2856
|
+
*/
|
|
2857
|
+
export type InstancesHealthAttribute = (typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
|
|
2773
2858
|
/**
|
|
2774
2859
|
* @public
|
|
2775
2860
|
* <p>Parameters for a call to <code>DescribeInstancesHealth</code>.</p>
|
|
@@ -3489,11 +3574,16 @@ export interface RebuildEnvironmentMessage {
|
|
|
3489
3574
|
}
|
|
3490
3575
|
/**
|
|
3491
3576
|
* @public
|
|
3577
|
+
* @enum
|
|
3492
3578
|
*/
|
|
3493
|
-
export declare
|
|
3494
|
-
bundle
|
|
3495
|
-
tail
|
|
3496
|
-
}
|
|
3579
|
+
export declare const EnvironmentInfoType: {
|
|
3580
|
+
readonly bundle: "bundle";
|
|
3581
|
+
readonly tail: "tail";
|
|
3582
|
+
};
|
|
3583
|
+
/**
|
|
3584
|
+
* @public
|
|
3585
|
+
*/
|
|
3586
|
+
export type EnvironmentInfoType = (typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
|
|
3497
3587
|
/**
|
|
3498
3588
|
* @public
|
|
3499
3589
|
* <p>Request to retrieve logs from an environment and store them in your Elastic Beanstalk
|
|
@@ -3895,11 +3985,16 @@ export interface UpdateTagsForResourceMessage {
|
|
|
3895
3985
|
}
|
|
3896
3986
|
/**
|
|
3897
3987
|
* @public
|
|
3988
|
+
* @enum
|
|
3898
3989
|
*/
|
|
3899
|
-
export declare
|
|
3900
|
-
error
|
|
3901
|
-
warning
|
|
3902
|
-
}
|
|
3990
|
+
export declare const ValidationSeverity: {
|
|
3991
|
+
readonly error: "error";
|
|
3992
|
+
readonly warning: "warning";
|
|
3993
|
+
};
|
|
3994
|
+
/**
|
|
3995
|
+
* @public
|
|
3996
|
+
*/
|
|
3997
|
+
export type ValidationSeverity = (typeof ValidationSeverity)[keyof typeof ValidationSeverity];
|
|
3903
3998
|
/**
|
|
3904
3999
|
* @public
|
|
3905
4000
|
* <p>An error or warning for a desired configuration option value.</p>
|