@aws-sdk/client-elastic-beanstalk 3.933.0 → 3.935.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.
@@ -1,5 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ElasticBeanstalkSyntheticServiceException as __BaseException } from "./ElasticBeanstalkSyntheticServiceException";
1
+ import { ActionHistoryStatus, ActionStatus, ActionType, ApplicationVersionStatus, ComputeType, ConfigurationDeploymentStatus, ConfigurationOptionValueType, EnvironmentHealth, EnvironmentHealthAttribute, EnvironmentHealthStatus, EnvironmentInfoType, EnvironmentStatus, EventSeverity, FailureType, InstancesHealthAttribute, PlatformStatus, SourceRepository, SourceType, ValidationSeverity } from "./enums";
3
2
  /**
4
3
  * <p></p>
5
4
  * @public
@@ -18,59 +17,6 @@ export interface AbortEnvironmentUpdateMessage {
18
17
  */
19
18
  EnvironmentName?: string | undefined;
20
19
  }
21
- /**
22
- * <p>The specified account does not have sufficient privileges for one or more AWS
23
- * services.</p>
24
- * @public
25
- */
26
- export declare class InsufficientPrivilegesException extends __BaseException {
27
- readonly name: "InsufficientPrivilegesException";
28
- readonly $fault: "client";
29
- /**
30
- * @internal
31
- */
32
- constructor(opts: __ExceptionOptionType<InsufficientPrivilegesException, __BaseException>);
33
- }
34
- /**
35
- * @public
36
- * @enum
37
- */
38
- export declare const ActionHistoryStatus: {
39
- readonly Completed: "Completed";
40
- readonly Failed: "Failed";
41
- readonly Unknown: "Unknown";
42
- };
43
- /**
44
- * @public
45
- */
46
- export type ActionHistoryStatus = (typeof ActionHistoryStatus)[keyof typeof ActionHistoryStatus];
47
- /**
48
- * @public
49
- * @enum
50
- */
51
- export declare const ActionStatus: {
52
- readonly Pending: "Pending";
53
- readonly Running: "Running";
54
- readonly Scheduled: "Scheduled";
55
- readonly Unknown: "Unknown";
56
- };
57
- /**
58
- * @public
59
- */
60
- export type ActionStatus = (typeof ActionStatus)[keyof typeof ActionStatus];
61
- /**
62
- * @public
63
- * @enum
64
- */
65
- export declare const ActionType: {
66
- readonly InstanceRefresh: "InstanceRefresh";
67
- readonly PlatformUpdate: "PlatformUpdate";
68
- readonly Unknown: "Unknown";
69
- };
70
- /**
71
- * @public
72
- */
73
- export type ActionType = (typeof ActionType)[keyof typeof ActionType];
74
20
  /**
75
21
  * <p>A lifecycle rule that deletes application versions after the specified number of
76
22
  * days.</p>
@@ -370,30 +316,6 @@ export interface ApplicationResourceLifecycleDescriptionMessage {
370
316
  */
371
317
  ResourceLifecycleConfig?: ApplicationResourceLifecycleConfig | undefined;
372
318
  }
373
- /**
374
- * @public
375
- * @enum
376
- */
377
- export declare const SourceRepository: {
378
- readonly CodeCommit: "CodeCommit";
379
- readonly S3: "S3";
380
- };
381
- /**
382
- * @public
383
- */
384
- export type SourceRepository = (typeof SourceRepository)[keyof typeof SourceRepository];
385
- /**
386
- * @public
387
- * @enum
388
- */
389
- export declare const SourceType: {
390
- readonly Git: "Git";
391
- readonly Zip: "Zip";
392
- };
393
- /**
394
- * @public
395
- */
396
- export type SourceType = (typeof SourceType)[keyof typeof SourceType];
397
319
  /**
398
320
  * <p>Location of the source code for an application version.</p>
399
321
  * @public
@@ -470,21 +392,6 @@ export interface S3Location {
470
392
  */
471
393
  S3Key?: string | undefined;
472
394
  }
473
- /**
474
- * @public
475
- * @enum
476
- */
477
- export declare const ApplicationVersionStatus: {
478
- readonly Building: "Building";
479
- readonly Failed: "Failed";
480
- readonly Processed: "Processed";
481
- readonly Processing: "Processing";
482
- readonly Unprocessed: "Unprocessed";
483
- };
484
- /**
485
- * @public
486
- */
487
- export type ApplicationVersionStatus = (typeof ApplicationVersionStatus)[keyof typeof ApplicationVersionStatus];
488
395
  /**
489
396
  * <p>Describes the properties of an application version.</p>
490
397
  * @public
@@ -648,30 +555,6 @@ export interface ApplyEnvironmentManagedActionResult {
648
555
  */
649
556
  Status?: string | undefined;
650
557
  }
651
- /**
652
- * <p>A generic service exception has occurred.</p>
653
- * @public
654
- */
655
- export declare class ElasticBeanstalkServiceException extends __BaseException {
656
- readonly name: "ElasticBeanstalkServiceException";
657
- readonly $fault: "client";
658
- /**
659
- * @internal
660
- */
661
- constructor(opts: __ExceptionOptionType<ElasticBeanstalkServiceException, __BaseException>);
662
- }
663
- /**
664
- * <p>Cannot modify the managed action in its current state.</p>
665
- * @public
666
- */
667
- export declare class ManagedActionInvalidStateException extends __BaseException {
668
- readonly name: "ManagedActionInvalidStateException";
669
- readonly $fault: "client";
670
- /**
671
- * @internal
672
- */
673
- constructor(opts: __ExceptionOptionType<ManagedActionInvalidStateException, __BaseException>);
674
- }
675
558
  /**
676
559
  * <p>Request to add or change the operations role used by an environment.</p>
677
560
  * @public
@@ -800,39 +683,6 @@ export interface EnvironmentLink {
800
683
  */
801
684
  EnvironmentName?: string | undefined;
802
685
  }
803
- /**
804
- * @public
805
- * @enum
806
- */
807
- export declare const EnvironmentHealth: {
808
- readonly Green: "Green";
809
- readonly Grey: "Grey";
810
- readonly Red: "Red";
811
- readonly Yellow: "Yellow";
812
- };
813
- /**
814
- * @public
815
- */
816
- export type EnvironmentHealth = (typeof EnvironmentHealth)[keyof typeof EnvironmentHealth];
817
- /**
818
- * @public
819
- * @enum
820
- */
821
- export declare const EnvironmentHealthStatus: {
822
- readonly Degraded: "Degraded";
823
- readonly Info: "Info";
824
- readonly NoData: "NoData";
825
- readonly Ok: "Ok";
826
- readonly Pending: "Pending";
827
- readonly Severe: "Severe";
828
- readonly Suspended: "Suspended";
829
- readonly Unknown: "Unknown";
830
- readonly Warning: "Warning";
831
- };
832
- /**
833
- * @public
834
- */
835
- export type EnvironmentHealthStatus = (typeof EnvironmentHealthStatus)[keyof typeof EnvironmentHealthStatus];
836
686
  /**
837
687
  * <p>Describes the properties of a Listener for the LoadBalancer.</p>
838
688
  * @public
@@ -882,24 +732,6 @@ export interface EnvironmentResourcesDescription {
882
732
  */
883
733
  LoadBalancer?: LoadBalancerDescription | undefined;
884
734
  }
885
- /**
886
- * @public
887
- * @enum
888
- */
889
- export declare const EnvironmentStatus: {
890
- readonly Aborting: "Aborting";
891
- readonly Launching: "Launching";
892
- readonly LinkingFrom: "LinkingFrom";
893
- readonly LinkingTo: "LinkingTo";
894
- readonly Ready: "Ready";
895
- readonly Terminated: "Terminated";
896
- readonly Terminating: "Terminating";
897
- readonly Updating: "Updating";
898
- };
899
- /**
900
- * @public
901
- */
902
- export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus];
903
735
  /**
904
736
  * <p>Describes the properties of an environment tier</p>
905
737
  * @public
@@ -1135,18 +967,6 @@ export interface EnvironmentDescriptionsMessage {
1135
967
  */
1136
968
  NextToken?: string | undefined;
1137
969
  }
1138
- /**
1139
- * <p>The specified account has reached its limit of environments.</p>
1140
- * @public
1141
- */
1142
- export declare class TooManyEnvironmentsException extends __BaseException {
1143
- readonly name: "TooManyEnvironmentsException";
1144
- readonly $fault: "client";
1145
- /**
1146
- * @internal
1147
- */
1148
- constructor(opts: __ExceptionOptionType<TooManyEnvironmentsException, __BaseException>);
1149
- }
1150
970
  /**
1151
971
  * <p>Describes a tag applied to a resource in an environment.</p>
1152
972
  * @public
@@ -1192,43 +1012,6 @@ export interface CreateApplicationMessage {
1192
1012
  */
1193
1013
  Tags?: Tag[] | undefined;
1194
1014
  }
1195
- /**
1196
- * <p>The specified account has reached its limit of applications.</p>
1197
- * @public
1198
- */
1199
- export declare class TooManyApplicationsException extends __BaseException {
1200
- readonly name: "TooManyApplicationsException";
1201
- readonly $fault: "client";
1202
- /**
1203
- * @internal
1204
- */
1205
- constructor(opts: __ExceptionOptionType<TooManyApplicationsException, __BaseException>);
1206
- }
1207
- /**
1208
- * <p>AWS CodeBuild is not available in the specified region.</p>
1209
- * @public
1210
- */
1211
- export declare class CodeBuildNotInServiceRegionException extends __BaseException {
1212
- readonly name: "CodeBuildNotInServiceRegionException";
1213
- readonly $fault: "client";
1214
- /**
1215
- * @internal
1216
- */
1217
- constructor(opts: __ExceptionOptionType<CodeBuildNotInServiceRegionException, __BaseException>);
1218
- }
1219
- /**
1220
- * @public
1221
- * @enum
1222
- */
1223
- export declare const ComputeType: {
1224
- readonly BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE";
1225
- readonly BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM";
1226
- readonly BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL";
1227
- };
1228
- /**
1229
- * @public
1230
- */
1231
- export type ComputeType = (typeof ComputeType)[keyof typeof ComputeType];
1232
1015
  /**
1233
1016
  * <p>Settings for an AWS CodeBuild build.</p>
1234
1017
  * @public
@@ -1362,55 +1145,6 @@ export interface CreateApplicationVersionMessage {
1362
1145
  */
1363
1146
  Tags?: Tag[] | undefined;
1364
1147
  }
1365
- /**
1366
- * <p>The specified S3 bucket does not belong to the S3 region in which the service is
1367
- * running. The following regions are supported:</p>
1368
- * <ul>
1369
- * <li>
1370
- * <p>IAD/us-east-1</p>
1371
- * </li>
1372
- * <li>
1373
- * <p>PDX/us-west-2</p>
1374
- * </li>
1375
- * <li>
1376
- * <p>DUB/eu-west-1</p>
1377
- * </li>
1378
- * </ul>
1379
- * @public
1380
- */
1381
- export declare class S3LocationNotInServiceRegionException extends __BaseException {
1382
- readonly name: "S3LocationNotInServiceRegionException";
1383
- readonly $fault: "client";
1384
- /**
1385
- * @internal
1386
- */
1387
- constructor(opts: __ExceptionOptionType<S3LocationNotInServiceRegionException, __BaseException>);
1388
- }
1389
- /**
1390
- * <p>The specified account has reached its limit of application versions.</p>
1391
- * @public
1392
- */
1393
- export declare class TooManyApplicationVersionsException extends __BaseException {
1394
- readonly name: "TooManyApplicationVersionsException";
1395
- readonly $fault: "client";
1396
- /**
1397
- * @internal
1398
- */
1399
- constructor(opts: __ExceptionOptionType<TooManyApplicationVersionsException, __BaseException>);
1400
- }
1401
- /**
1402
- * @public
1403
- * @enum
1404
- */
1405
- export declare const ConfigurationDeploymentStatus: {
1406
- readonly deployed: "deployed";
1407
- readonly failed: "failed";
1408
- readonly pending: "pending";
1409
- };
1410
- /**
1411
- * @public
1412
- */
1413
- export type ConfigurationDeploymentStatus = (typeof ConfigurationDeploymentStatus)[keyof typeof ConfigurationDeploymentStatus];
1414
1148
  /**
1415
1149
  * <p>A specification identifying an individual configuration option along with its current
1416
1150
  * 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
@@ -1623,30 +1357,6 @@ export interface CreateConfigurationTemplateMessage {
1623
1357
  */
1624
1358
  Tags?: Tag[] | undefined;
1625
1359
  }
1626
- /**
1627
- * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
1628
- * @public
1629
- */
1630
- export declare class TooManyBucketsException extends __BaseException {
1631
- readonly name: "TooManyBucketsException";
1632
- readonly $fault: "client";
1633
- /**
1634
- * @internal
1635
- */
1636
- constructor(opts: __ExceptionOptionType<TooManyBucketsException, __BaseException>);
1637
- }
1638
- /**
1639
- * <p>The specified account has reached its limit of configuration templates.</p>
1640
- * @public
1641
- */
1642
- export declare class TooManyConfigurationTemplatesException extends __BaseException {
1643
- readonly name: "TooManyConfigurationTemplatesException";
1644
- readonly $fault: "client";
1645
- /**
1646
- * @internal
1647
- */
1648
- constructor(opts: __ExceptionOptionType<TooManyConfigurationTemplatesException, __BaseException>);
1649
- }
1650
1360
  /**
1651
1361
  * <p>A specification identifying an individual configuration option.</p>
1652
1362
  * @public
@@ -1832,21 +1542,6 @@ export interface Builder {
1832
1542
  */
1833
1543
  ARN?: string | undefined;
1834
1544
  }
1835
- /**
1836
- * @public
1837
- * @enum
1838
- */
1839
- export declare const PlatformStatus: {
1840
- readonly Creating: "Creating";
1841
- readonly Deleted: "Deleted";
1842
- readonly Deleting: "Deleting";
1843
- readonly Failed: "Failed";
1844
- readonly Ready: "Ready";
1845
- };
1846
- /**
1847
- * @public
1848
- */
1849
- export type PlatformStatus = (typeof PlatformStatus)[keyof typeof PlatformStatus];
1850
1545
  /**
1851
1546
  * <p>Summary information about a platform version.</p>
1852
1547
  * @public
@@ -1935,18 +1630,6 @@ export interface CreatePlatformVersionResult {
1935
1630
  */
1936
1631
  Builder?: Builder | undefined;
1937
1632
  }
1938
- /**
1939
- * <p>You have exceeded the maximum number of allowed platforms associated with the account.</p>
1940
- * @public
1941
- */
1942
- export declare class TooManyPlatformsException extends __BaseException {
1943
- readonly name: "TooManyPlatformsException";
1944
- readonly $fault: "client";
1945
- /**
1946
- * @internal
1947
- */
1948
- constructor(opts: __ExceptionOptionType<TooManyPlatformsException, __BaseException>);
1949
- }
1950
1633
  /**
1951
1634
  * <p>Results of a <a>CreateStorageLocationResult</a> call.</p>
1952
1635
  * @public
@@ -1958,18 +1641,6 @@ export interface CreateStorageLocationResultMessage {
1958
1641
  */
1959
1642
  S3Bucket?: string | undefined;
1960
1643
  }
1961
- /**
1962
- * <p>The specified account does not have a subscription to Amazon S3.</p>
1963
- * @public
1964
- */
1965
- export declare class S3SubscriptionRequiredException extends __BaseException {
1966
- readonly name: "S3SubscriptionRequiredException";
1967
- readonly $fault: "client";
1968
- /**
1969
- * @internal
1970
- */
1971
- constructor(opts: __ExceptionOptionType<S3SubscriptionRequiredException, __BaseException>);
1972
- }
1973
1644
  /**
1974
1645
  * <p>Request to delete an application.</p>
1975
1646
  * @public
@@ -1987,19 +1658,6 @@ export interface DeleteApplicationMessage {
1987
1658
  */
1988
1659
  TerminateEnvByForce?: boolean | undefined;
1989
1660
  }
1990
- /**
1991
- * <p>Unable to perform the specified operation because another operation that effects an
1992
- * element in this activity is already in progress.</p>
1993
- * @public
1994
- */
1995
- export declare class OperationInProgressException extends __BaseException {
1996
- readonly name: "OperationInProgressException";
1997
- readonly $fault: "client";
1998
- /**
1999
- * @internal
2000
- */
2001
- constructor(opts: __ExceptionOptionType<OperationInProgressException, __BaseException>);
2002
- }
2003
1661
  /**
2004
1662
  * <p>Request to delete an application version.</p>
2005
1663
  * @public
@@ -2023,19 +1681,6 @@ export interface DeleteApplicationVersionMessage {
2023
1681
  */
2024
1682
  DeleteSourceBundle?: boolean | undefined;
2025
1683
  }
2026
- /**
2027
- * <p>Unable to delete the Amazon S3 source bundle associated with the application version.
2028
- * The application version was deleted successfully.</p>
2029
- * @public
2030
- */
2031
- export declare class SourceBundleDeletionException extends __BaseException {
2032
- readonly name: "SourceBundleDeletionException";
2033
- readonly $fault: "client";
2034
- /**
2035
- * @internal
2036
- */
2037
- constructor(opts: __ExceptionOptionType<SourceBundleDeletionException, __BaseException>);
2038
- }
2039
1684
  /**
2040
1685
  * <p>Request to delete a configuration template.</p>
2041
1686
  * @public
@@ -2088,18 +1733,6 @@ export interface DeletePlatformVersionResult {
2088
1733
  */
2089
1734
  PlatformSummary?: PlatformSummary | undefined;
2090
1735
  }
2091
- /**
2092
- * <p>You cannot delete the platform version because there are still environments running on it.</p>
2093
- * @public
2094
- */
2095
- export declare class PlatformVersionStillReferencedException extends __BaseException {
2096
- readonly name: "PlatformVersionStillReferencedException";
2097
- readonly $fault: "client";
2098
- /**
2099
- * @internal
2100
- */
2101
- constructor(opts: __ExceptionOptionType<PlatformVersionStillReferencedException, __BaseException>);
2102
- }
2103
1736
  /**
2104
1737
  * <p>The AWS Elastic Beanstalk quota information for a single resource type in an AWS account. It
2105
1738
  * reflects the resource's limits for this account.</p>
@@ -2217,18 +1850,6 @@ export interface OptionRestrictionRegex {
2217
1850
  */
2218
1851
  Label?: string | undefined;
2219
1852
  }
2220
- /**
2221
- * @public
2222
- * @enum
2223
- */
2224
- export declare const ConfigurationOptionValueType: {
2225
- readonly List: "List";
2226
- readonly Scalar: "Scalar";
2227
- };
2228
- /**
2229
- * @public
2230
- */
2231
- export type ConfigurationOptionValueType = (typeof ConfigurationOptionValueType)[keyof typeof ConfigurationOptionValueType];
2232
1853
  /**
2233
1854
  * <p>Describes the possible values for a configuration option.</p>
2234
1855
  * @public
@@ -2457,24 +2078,6 @@ export interface DescribeConfigurationSettingsMessage {
2457
2078
  */
2458
2079
  EnvironmentName?: string | undefined;
2459
2080
  }
2460
- /**
2461
- * @public
2462
- * @enum
2463
- */
2464
- export declare const EnvironmentHealthAttribute: {
2465
- readonly All: "All";
2466
- readonly ApplicationMetrics: "ApplicationMetrics";
2467
- readonly Causes: "Causes";
2468
- readonly Color: "Color";
2469
- readonly HealthStatus: "HealthStatus";
2470
- readonly InstancesHealth: "InstancesHealth";
2471
- readonly RefreshedAt: "RefreshedAt";
2472
- readonly Status: "Status";
2473
- };
2474
- /**
2475
- * @public
2476
- */
2477
- export type EnvironmentHealthAttribute = (typeof EnvironmentHealthAttribute)[keyof typeof EnvironmentHealthAttribute];
2478
2081
  /**
2479
2082
  * <p>See the example below to learn how to create a request body.</p>
2480
2083
  * @public
@@ -2612,19 +2215,6 @@ export interface DescribeEnvironmentHealthResult {
2612
2215
  */
2613
2216
  RefreshedAt?: Date | undefined;
2614
2217
  }
2615
- /**
2616
- * <p>One or more input parameters is not valid. Please correct the input parameters and try
2617
- * the operation again.</p>
2618
- * @public
2619
- */
2620
- export declare class InvalidRequestException extends __BaseException {
2621
- readonly name: "InvalidRequestException";
2622
- readonly $fault: "client";
2623
- /**
2624
- * @internal
2625
- */
2626
- constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
2627
- }
2628
2218
  /**
2629
2219
  * <p>Request to list completed and failed managed actions.</p>
2630
2220
  * @public
@@ -2651,23 +2241,6 @@ export interface DescribeEnvironmentManagedActionHistoryRequest {
2651
2241
  */
2652
2242
  MaxItems?: number | undefined;
2653
2243
  }
2654
- /**
2655
- * @public
2656
- * @enum
2657
- */
2658
- export declare const FailureType: {
2659
- readonly CancellationFailed: "CancellationFailed";
2660
- readonly InternalFailure: "InternalFailure";
2661
- readonly InvalidEnvironmentState: "InvalidEnvironmentState";
2662
- readonly PermissionsError: "PermissionsError";
2663
- readonly RollbackFailed: "RollbackFailed";
2664
- readonly RollbackSuccessful: "RollbackSuccessful";
2665
- readonly UpdateCancelled: "UpdateCancelled";
2666
- };
2667
- /**
2668
- * @public
2669
- */
2670
- export type FailureType = (typeof FailureType)[keyof typeof FailureType];
2671
2244
  /**
2672
2245
  * <p>The record of a completed or failed managed action.</p>
2673
2246
  * @public
@@ -3007,22 +2580,6 @@ export interface DescribeEnvironmentsMessage {
3007
2580
  */
3008
2581
  NextToken?: string | undefined;
3009
2582
  }
3010
- /**
3011
- * @public
3012
- * @enum
3013
- */
3014
- export declare const EventSeverity: {
3015
- readonly DEBUG: "DEBUG";
3016
- readonly ERROR: "ERROR";
3017
- readonly FATAL: "FATAL";
3018
- readonly INFO: "INFO";
3019
- readonly TRACE: "TRACE";
3020
- readonly WARN: "WARN";
3021
- };
3022
- /**
3023
- * @public
3024
- */
3025
- export type EventSeverity = (typeof EventSeverity)[keyof typeof EventSeverity];
3026
2583
  /**
3027
2584
  * <p>Request to retrieve a list of events for an environment.</p>
3028
2585
  * @public
@@ -3168,27 +2725,6 @@ export interface EventDescriptionsMessage {
3168
2725
  */
3169
2726
  NextToken?: string | undefined;
3170
2727
  }
3171
- /**
3172
- * @public
3173
- * @enum
3174
- */
3175
- export declare const InstancesHealthAttribute: {
3176
- readonly All: "All";
3177
- readonly ApplicationMetrics: "ApplicationMetrics";
3178
- readonly AvailabilityZone: "AvailabilityZone";
3179
- readonly Causes: "Causes";
3180
- readonly Color: "Color";
3181
- readonly Deployment: "Deployment";
3182
- readonly HealthStatus: "HealthStatus";
3183
- readonly InstanceType: "InstanceType";
3184
- readonly LaunchedAt: "LaunchedAt";
3185
- readonly RefreshedAt: "RefreshedAt";
3186
- readonly System: "System";
3187
- };
3188
- /**
3189
- * @public
3190
- */
3191
- export type InstancesHealthAttribute = (typeof InstancesHealthAttribute)[keyof typeof InstancesHealthAttribute];
3192
2728
  /**
3193
2729
  * <p>Parameters for a call to <code>DescribeInstancesHealth</code>.</p>
3194
2730
  * @public
@@ -3934,18 +3470,6 @@ export interface ListTagsForResourceMessage {
3934
3470
  */
3935
3471
  ResourceArn: string | undefined;
3936
3472
  }
3937
- /**
3938
- * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN).</p>
3939
- * @public
3940
- */
3941
- export declare class ResourceNotFoundException extends __BaseException {
3942
- readonly name: "ResourceNotFoundException";
3943
- readonly $fault: "client";
3944
- /**
3945
- * @internal
3946
- */
3947
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
3948
- }
3949
3473
  /**
3950
3474
  * @public
3951
3475
  */
@@ -3961,18 +3485,6 @@ export interface ResourceTagsDescriptionMessage {
3961
3485
  */
3962
3486
  ResourceTags?: Tag[] | undefined;
3963
3487
  }
3964
- /**
3965
- * <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
3966
- * @public
3967
- */
3968
- export declare class ResourceTypeNotSupportedException extends __BaseException {
3969
- readonly name: "ResourceTypeNotSupportedException";
3970
- readonly $fault: "client";
3971
- /**
3972
- * @internal
3973
- */
3974
- constructor(opts: __ExceptionOptionType<ResourceTypeNotSupportedException, __BaseException>);
3975
- }
3976
3488
  /**
3977
3489
  * <p></p>
3978
3490
  * @public
@@ -3995,18 +3507,6 @@ export interface RebuildEnvironmentMessage {
3995
3507
  */
3996
3508
  EnvironmentName?: string | undefined;
3997
3509
  }
3998
- /**
3999
- * @public
4000
- * @enum
4001
- */
4002
- export declare const EnvironmentInfoType: {
4003
- readonly bundle: "bundle";
4004
- readonly tail: "tail";
4005
- };
4006
- /**
4007
- * @public
4008
- */
4009
- export type EnvironmentInfoType = (typeof EnvironmentInfoType)[keyof typeof EnvironmentInfoType];
4010
3510
  /**
4011
3511
  * <p>Request to retrieve logs from an environment and store them in your Elastic Beanstalk
4012
3512
  * storage bucket.</p>
@@ -4413,21 +3913,6 @@ export interface UpdateEnvironmentMessage {
4413
3913
  */
4414
3914
  OptionsToRemove?: OptionSpecification[] | undefined;
4415
3915
  }
4416
- /**
4417
- * <p>The number of tags in the resource would exceed the number of tags that each resource
4418
- * can have.</p>
4419
- * <p>To calculate this, the operation considers both the number of tags the resource already has
4420
- * and the tags this operation would add if it succeeded.</p>
4421
- * @public
4422
- */
4423
- export declare class TooManyTagsException extends __BaseException {
4424
- readonly name: "TooManyTagsException";
4425
- readonly $fault: "client";
4426
- /**
4427
- * @internal
4428
- */
4429
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
4430
- }
4431
3916
  /**
4432
3917
  * @public
4433
3918
  */
@@ -4454,18 +3939,6 @@ export interface UpdateTagsForResourceMessage {
4454
3939
  */
4455
3940
  TagsToRemove?: string[] | undefined;
4456
3941
  }
4457
- /**
4458
- * @public
4459
- * @enum
4460
- */
4461
- export declare const ValidationSeverity: {
4462
- readonly error: "error";
4463
- readonly warning: "warning";
4464
- };
4465
- /**
4466
- * @public
4467
- */
4468
- export type ValidationSeverity = (typeof ValidationSeverity)[keyof typeof ValidationSeverity];
4469
3942
  /**
4470
3943
  * <p>An error or warning for a desired configuration option value.</p>
4471
3944
  * @public