@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.
Files changed (49) hide show
  1. package/dist-cjs/models/models_0.js +127 -146
  2. package/dist-es/models/models_0.js +127 -146
  3. package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +1 -1
  4. package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +1 -1
  5. package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +1 -1
  6. package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +1 -1
  7. package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +2 -2
  8. package/dist-types/commands/CreateApplicationCommand.d.ts +7 -7
  9. package/dist-types/commands/CreateApplicationVersionCommand.d.ts +6 -6
  10. package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +6 -6
  11. package/dist-types/commands/CreateEnvironmentCommand.d.ts +8 -8
  12. package/dist-types/commands/CreatePlatformVersionCommand.d.ts +6 -6
  13. package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +1 -1
  17. package/dist-types/commands/DeletePlatformVersionCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +2 -2
  19. package/dist-types/commands/DescribeApplicationsCommand.d.ts +2 -2
  20. package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +3 -3
  21. package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +2 -2
  23. package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +3 -3
  27. package/dist-types/commands/DescribeEventsCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +2 -2
  29. package/dist-types/commands/DescribePlatformVersionCommand.d.ts +1 -1
  30. package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +1 -1
  31. package/dist-types/commands/ListPlatformBranchesCommand.d.ts +4 -4
  32. package/dist-types/commands/ListPlatformVersionsCommand.d.ts +4 -4
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  34. package/dist-types/commands/RebuildEnvironmentCommand.d.ts +1 -1
  35. package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +1 -1
  36. package/dist-types/commands/RestartAppServerCommand.d.ts +1 -1
  37. package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +1 -1
  38. package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +1 -1
  39. package/dist-types/commands/TerminateEnvironmentCommand.d.ts +1 -1
  40. package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
  41. package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +5 -5
  42. package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +1 -1
  43. package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +5 -5
  44. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +6 -6
  45. package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +4 -4
  46. package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +3 -3
  47. package/dist-types/models/models_0.d.ts +222 -127
  48. package/dist-types/ts3.4/models/models_0.d.ts +159 -127
  49. package/package.json +35 -35
@@ -11,43 +11,37 @@ export class InsufficientPrivilegesException extends __BaseException {
11
11
  Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
12
12
  }
13
13
  }
14
- export var ActionHistoryStatus;
15
- (function (ActionHistoryStatus) {
16
- ActionHistoryStatus["Completed"] = "Completed";
17
- ActionHistoryStatus["Failed"] = "Failed";
18
- ActionHistoryStatus["Unknown"] = "Unknown";
19
- })(ActionHistoryStatus || (ActionHistoryStatus = {}));
20
- export var ActionStatus;
21
- (function (ActionStatus) {
22
- ActionStatus["Pending"] = "Pending";
23
- ActionStatus["Running"] = "Running";
24
- ActionStatus["Scheduled"] = "Scheduled";
25
- ActionStatus["Unknown"] = "Unknown";
26
- })(ActionStatus || (ActionStatus = {}));
27
- export var ActionType;
28
- (function (ActionType) {
29
- ActionType["InstanceRefresh"] = "InstanceRefresh";
30
- ActionType["PlatformUpdate"] = "PlatformUpdate";
31
- ActionType["Unknown"] = "Unknown";
32
- })(ActionType || (ActionType = {}));
33
- export var SourceRepository;
34
- (function (SourceRepository) {
35
- SourceRepository["CodeCommit"] = "CodeCommit";
36
- SourceRepository["S3"] = "S3";
37
- })(SourceRepository || (SourceRepository = {}));
38
- export var SourceType;
39
- (function (SourceType) {
40
- SourceType["Git"] = "Git";
41
- SourceType["Zip"] = "Zip";
42
- })(SourceType || (SourceType = {}));
43
- export var ApplicationVersionStatus;
44
- (function (ApplicationVersionStatus) {
45
- ApplicationVersionStatus["Building"] = "Building";
46
- ApplicationVersionStatus["Failed"] = "Failed";
47
- ApplicationVersionStatus["Processed"] = "Processed";
48
- ApplicationVersionStatus["Processing"] = "Processing";
49
- ApplicationVersionStatus["Unprocessed"] = "Unprocessed";
50
- })(ApplicationVersionStatus || (ApplicationVersionStatus = {}));
14
+ export const ActionHistoryStatus = {
15
+ Completed: "Completed",
16
+ Failed: "Failed",
17
+ Unknown: "Unknown",
18
+ };
19
+ export const ActionStatus = {
20
+ Pending: "Pending",
21
+ Running: "Running",
22
+ Scheduled: "Scheduled",
23
+ Unknown: "Unknown",
24
+ };
25
+ export const ActionType = {
26
+ InstanceRefresh: "InstanceRefresh",
27
+ PlatformUpdate: "PlatformUpdate",
28
+ Unknown: "Unknown",
29
+ };
30
+ export const SourceRepository = {
31
+ CodeCommit: "CodeCommit",
32
+ S3: "S3",
33
+ };
34
+ export const SourceType = {
35
+ Git: "Git",
36
+ Zip: "Zip",
37
+ };
38
+ export const ApplicationVersionStatus = {
39
+ Building: "Building",
40
+ Failed: "Failed",
41
+ Processed: "Processed",
42
+ Processing: "Processing",
43
+ Unprocessed: "Unprocessed",
44
+ };
51
45
  export class ElasticBeanstalkServiceException extends __BaseException {
52
46
  constructor(opts) {
53
47
  super({
@@ -72,36 +66,33 @@ export class ManagedActionInvalidStateException extends __BaseException {
72
66
  Object.setPrototypeOf(this, ManagedActionInvalidStateException.prototype);
73
67
  }
74
68
  }
75
- export var EnvironmentHealth;
76
- (function (EnvironmentHealth) {
77
- EnvironmentHealth["Green"] = "Green";
78
- EnvironmentHealth["Grey"] = "Grey";
79
- EnvironmentHealth["Red"] = "Red";
80
- EnvironmentHealth["Yellow"] = "Yellow";
81
- })(EnvironmentHealth || (EnvironmentHealth = {}));
82
- export var EnvironmentHealthStatus;
83
- (function (EnvironmentHealthStatus) {
84
- EnvironmentHealthStatus["Degraded"] = "Degraded";
85
- EnvironmentHealthStatus["Info"] = "Info";
86
- EnvironmentHealthStatus["NoData"] = "NoData";
87
- EnvironmentHealthStatus["Ok"] = "Ok";
88
- EnvironmentHealthStatus["Pending"] = "Pending";
89
- EnvironmentHealthStatus["Severe"] = "Severe";
90
- EnvironmentHealthStatus["Suspended"] = "Suspended";
91
- EnvironmentHealthStatus["Unknown"] = "Unknown";
92
- EnvironmentHealthStatus["Warning"] = "Warning";
93
- })(EnvironmentHealthStatus || (EnvironmentHealthStatus = {}));
94
- export var EnvironmentStatus;
95
- (function (EnvironmentStatus) {
96
- EnvironmentStatus["Aborting"] = "Aborting";
97
- EnvironmentStatus["Launching"] = "Launching";
98
- EnvironmentStatus["LinkingFrom"] = "LinkingFrom";
99
- EnvironmentStatus["LinkingTo"] = "LinkingTo";
100
- EnvironmentStatus["Ready"] = "Ready";
101
- EnvironmentStatus["Terminated"] = "Terminated";
102
- EnvironmentStatus["Terminating"] = "Terminating";
103
- EnvironmentStatus["Updating"] = "Updating";
104
- })(EnvironmentStatus || (EnvironmentStatus = {}));
69
+ export const EnvironmentHealth = {
70
+ Green: "Green",
71
+ Grey: "Grey",
72
+ Red: "Red",
73
+ Yellow: "Yellow",
74
+ };
75
+ export const EnvironmentHealthStatus = {
76
+ Degraded: "Degraded",
77
+ Info: "Info",
78
+ NoData: "NoData",
79
+ Ok: "Ok",
80
+ Pending: "Pending",
81
+ Severe: "Severe",
82
+ Suspended: "Suspended",
83
+ Unknown: "Unknown",
84
+ Warning: "Warning",
85
+ };
86
+ export const EnvironmentStatus = {
87
+ Aborting: "Aborting",
88
+ Launching: "Launching",
89
+ LinkingFrom: "LinkingFrom",
90
+ LinkingTo: "LinkingTo",
91
+ Ready: "Ready",
92
+ Terminated: "Terminated",
93
+ Terminating: "Terminating",
94
+ Updating: "Updating",
95
+ };
105
96
  export class TooManyEnvironmentsException extends __BaseException {
106
97
  constructor(opts) {
107
98
  super({
@@ -138,12 +129,11 @@ export class CodeBuildNotInServiceRegionException extends __BaseException {
138
129
  Object.setPrototypeOf(this, CodeBuildNotInServiceRegionException.prototype);
139
130
  }
140
131
  }
141
- export var ComputeType;
142
- (function (ComputeType) {
143
- ComputeType["BUILD_GENERAL1_LARGE"] = "BUILD_GENERAL1_LARGE";
144
- ComputeType["BUILD_GENERAL1_MEDIUM"] = "BUILD_GENERAL1_MEDIUM";
145
- ComputeType["BUILD_GENERAL1_SMALL"] = "BUILD_GENERAL1_SMALL";
146
- })(ComputeType || (ComputeType = {}));
132
+ export const ComputeType = {
133
+ BUILD_GENERAL1_LARGE: "BUILD_GENERAL1_LARGE",
134
+ BUILD_GENERAL1_MEDIUM: "BUILD_GENERAL1_MEDIUM",
135
+ BUILD_GENERAL1_SMALL: "BUILD_GENERAL1_SMALL",
136
+ };
147
137
  export class S3LocationNotInServiceRegionException extends __BaseException {
148
138
  constructor(opts) {
149
139
  super({
@@ -168,12 +158,11 @@ export class TooManyApplicationVersionsException extends __BaseException {
168
158
  Object.setPrototypeOf(this, TooManyApplicationVersionsException.prototype);
169
159
  }
170
160
  }
171
- export var ConfigurationDeploymentStatus;
172
- (function (ConfigurationDeploymentStatus) {
173
- ConfigurationDeploymentStatus["deployed"] = "deployed";
174
- ConfigurationDeploymentStatus["failed"] = "failed";
175
- ConfigurationDeploymentStatus["pending"] = "pending";
176
- })(ConfigurationDeploymentStatus || (ConfigurationDeploymentStatus = {}));
161
+ export const ConfigurationDeploymentStatus = {
162
+ deployed: "deployed",
163
+ failed: "failed",
164
+ pending: "pending",
165
+ };
177
166
  export class TooManyBucketsException extends __BaseException {
178
167
  constructor(opts) {
179
168
  super({
@@ -198,14 +187,13 @@ export class TooManyConfigurationTemplatesException extends __BaseException {
198
187
  Object.setPrototypeOf(this, TooManyConfigurationTemplatesException.prototype);
199
188
  }
200
189
  }
201
- export var PlatformStatus;
202
- (function (PlatformStatus) {
203
- PlatformStatus["Creating"] = "Creating";
204
- PlatformStatus["Deleted"] = "Deleted";
205
- PlatformStatus["Deleting"] = "Deleting";
206
- PlatformStatus["Failed"] = "Failed";
207
- PlatformStatus["Ready"] = "Ready";
208
- })(PlatformStatus || (PlatformStatus = {}));
190
+ export const PlatformStatus = {
191
+ Creating: "Creating",
192
+ Deleted: "Deleted",
193
+ Deleting: "Deleting",
194
+ Failed: "Failed",
195
+ Ready: "Ready",
196
+ };
209
197
  export class TooManyPlatformsException extends __BaseException {
210
198
  constructor(opts) {
211
199
  super({
@@ -266,22 +254,20 @@ export class PlatformVersionStillReferencedException extends __BaseException {
266
254
  Object.setPrototypeOf(this, PlatformVersionStillReferencedException.prototype);
267
255
  }
268
256
  }
269
- export var ConfigurationOptionValueType;
270
- (function (ConfigurationOptionValueType) {
271
- ConfigurationOptionValueType["List"] = "List";
272
- ConfigurationOptionValueType["Scalar"] = "Scalar";
273
- })(ConfigurationOptionValueType || (ConfigurationOptionValueType = {}));
274
- export var EnvironmentHealthAttribute;
275
- (function (EnvironmentHealthAttribute) {
276
- EnvironmentHealthAttribute["All"] = "All";
277
- EnvironmentHealthAttribute["ApplicationMetrics"] = "ApplicationMetrics";
278
- EnvironmentHealthAttribute["Causes"] = "Causes";
279
- EnvironmentHealthAttribute["Color"] = "Color";
280
- EnvironmentHealthAttribute["HealthStatus"] = "HealthStatus";
281
- EnvironmentHealthAttribute["InstancesHealth"] = "InstancesHealth";
282
- EnvironmentHealthAttribute["RefreshedAt"] = "RefreshedAt";
283
- EnvironmentHealthAttribute["Status"] = "Status";
284
- })(EnvironmentHealthAttribute || (EnvironmentHealthAttribute = {}));
257
+ export const ConfigurationOptionValueType = {
258
+ List: "List",
259
+ Scalar: "Scalar",
260
+ };
261
+ export const EnvironmentHealthAttribute = {
262
+ All: "All",
263
+ ApplicationMetrics: "ApplicationMetrics",
264
+ Causes: "Causes",
265
+ Color: "Color",
266
+ HealthStatus: "HealthStatus",
267
+ InstancesHealth: "InstancesHealth",
268
+ RefreshedAt: "RefreshedAt",
269
+ Status: "Status",
270
+ };
285
271
  export class InvalidRequestException extends __BaseException {
286
272
  constructor(opts) {
287
273
  super({
@@ -294,39 +280,36 @@ export class InvalidRequestException extends __BaseException {
294
280
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
295
281
  }
296
282
  }
297
- export var FailureType;
298
- (function (FailureType) {
299
- FailureType["CancellationFailed"] = "CancellationFailed";
300
- FailureType["InternalFailure"] = "InternalFailure";
301
- FailureType["InvalidEnvironmentState"] = "InvalidEnvironmentState";
302
- FailureType["PermissionsError"] = "PermissionsError";
303
- FailureType["RollbackFailed"] = "RollbackFailed";
304
- FailureType["RollbackSuccessful"] = "RollbackSuccessful";
305
- FailureType["UpdateCancelled"] = "UpdateCancelled";
306
- })(FailureType || (FailureType = {}));
307
- export var EventSeverity;
308
- (function (EventSeverity) {
309
- EventSeverity["DEBUG"] = "DEBUG";
310
- EventSeverity["ERROR"] = "ERROR";
311
- EventSeverity["FATAL"] = "FATAL";
312
- EventSeverity["INFO"] = "INFO";
313
- EventSeverity["TRACE"] = "TRACE";
314
- EventSeverity["WARN"] = "WARN";
315
- })(EventSeverity || (EventSeverity = {}));
316
- export var InstancesHealthAttribute;
317
- (function (InstancesHealthAttribute) {
318
- InstancesHealthAttribute["All"] = "All";
319
- InstancesHealthAttribute["ApplicationMetrics"] = "ApplicationMetrics";
320
- InstancesHealthAttribute["AvailabilityZone"] = "AvailabilityZone";
321
- InstancesHealthAttribute["Causes"] = "Causes";
322
- InstancesHealthAttribute["Color"] = "Color";
323
- InstancesHealthAttribute["Deployment"] = "Deployment";
324
- InstancesHealthAttribute["HealthStatus"] = "HealthStatus";
325
- InstancesHealthAttribute["InstanceType"] = "InstanceType";
326
- InstancesHealthAttribute["LaunchedAt"] = "LaunchedAt";
327
- InstancesHealthAttribute["RefreshedAt"] = "RefreshedAt";
328
- InstancesHealthAttribute["System"] = "System";
329
- })(InstancesHealthAttribute || (InstancesHealthAttribute = {}));
283
+ export const FailureType = {
284
+ CancellationFailed: "CancellationFailed",
285
+ InternalFailure: "InternalFailure",
286
+ InvalidEnvironmentState: "InvalidEnvironmentState",
287
+ PermissionsError: "PermissionsError",
288
+ RollbackFailed: "RollbackFailed",
289
+ RollbackSuccessful: "RollbackSuccessful",
290
+ UpdateCancelled: "UpdateCancelled",
291
+ };
292
+ export const EventSeverity = {
293
+ DEBUG: "DEBUG",
294
+ ERROR: "ERROR",
295
+ FATAL: "FATAL",
296
+ INFO: "INFO",
297
+ TRACE: "TRACE",
298
+ WARN: "WARN",
299
+ };
300
+ export const InstancesHealthAttribute = {
301
+ All: "All",
302
+ ApplicationMetrics: "ApplicationMetrics",
303
+ AvailabilityZone: "AvailabilityZone",
304
+ Causes: "Causes",
305
+ Color: "Color",
306
+ Deployment: "Deployment",
307
+ HealthStatus: "HealthStatus",
308
+ InstanceType: "InstanceType",
309
+ LaunchedAt: "LaunchedAt",
310
+ RefreshedAt: "RefreshedAt",
311
+ System: "System",
312
+ };
330
313
  export class ResourceNotFoundException extends __BaseException {
331
314
  constructor(opts) {
332
315
  super({
@@ -351,11 +334,10 @@ export class ResourceTypeNotSupportedException extends __BaseException {
351
334
  Object.setPrototypeOf(this, ResourceTypeNotSupportedException.prototype);
352
335
  }
353
336
  }
354
- export var EnvironmentInfoType;
355
- (function (EnvironmentInfoType) {
356
- EnvironmentInfoType["bundle"] = "bundle";
357
- EnvironmentInfoType["tail"] = "tail";
358
- })(EnvironmentInfoType || (EnvironmentInfoType = {}));
337
+ export const EnvironmentInfoType = {
338
+ bundle: "bundle",
339
+ tail: "tail",
340
+ };
359
341
  export class TooManyTagsException extends __BaseException {
360
342
  constructor(opts) {
361
343
  super({
@@ -368,8 +350,7 @@ export class TooManyTagsException extends __BaseException {
368
350
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
369
351
  }
370
352
  }
371
- export var ValidationSeverity;
372
- (function (ValidationSeverity) {
373
- ValidationSeverity["error"] = "error";
374
- ValidationSeverity["warning"] = "warning";
375
- })(ValidationSeverity || (ValidationSeverity = {}));
353
+ export const ValidationSeverity = {
354
+ error: "error",
355
+ warning: "warning",
356
+ };
@@ -27,7 +27,7 @@ export interface AbortEnvironmentUpdateCommandOutput extends __MetadataBearer {
27
27
  * import { ElasticBeanstalkClient, AbortEnvironmentUpdateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
28
28
  * // const { ElasticBeanstalkClient, AbortEnvironmentUpdateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
29
29
  * const client = new ElasticBeanstalkClient(config);
30
- * const input = {
30
+ * const input = { // AbortEnvironmentUpdateMessage
31
31
  * EnvironmentId: "STRING_VALUE",
32
32
  * EnvironmentName: "STRING_VALUE",
33
33
  * };
@@ -28,7 +28,7 @@ export interface ApplyEnvironmentManagedActionCommandOutput extends ApplyEnviron
28
28
  * import { ElasticBeanstalkClient, ApplyEnvironmentManagedActionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
29
29
  * // const { ElasticBeanstalkClient, ApplyEnvironmentManagedActionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
30
30
  * const client = new ElasticBeanstalkClient(config);
31
- * const input = {
31
+ * const input = { // ApplyEnvironmentManagedActionRequest
32
32
  * EnvironmentName: "STRING_VALUE",
33
33
  * EnvironmentId: "STRING_VALUE",
34
34
  * ActionId: "STRING_VALUE", // required
@@ -29,7 +29,7 @@ export interface AssociateEnvironmentOperationsRoleCommandOutput extends __Metad
29
29
  * import { ElasticBeanstalkClient, AssociateEnvironmentOperationsRoleCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
30
30
  * // const { ElasticBeanstalkClient, AssociateEnvironmentOperationsRoleCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
31
31
  * const client = new ElasticBeanstalkClient(config);
32
- * const input = {
32
+ * const input = { // AssociateEnvironmentOperationsRoleMessage
33
33
  * EnvironmentName: "STRING_VALUE", // required
34
34
  * OperationsRole: "STRING_VALUE", // required
35
35
  * };
@@ -26,7 +26,7 @@ export interface CheckDNSAvailabilityCommandOutput extends CheckDNSAvailabilityR
26
26
  * import { ElasticBeanstalkClient, CheckDNSAvailabilityCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
27
27
  * // const { ElasticBeanstalkClient, CheckDNSAvailabilityCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
28
28
  * const client = new ElasticBeanstalkClient(config);
29
- * const input = {
29
+ * const input = { // CheckDNSAvailabilityMessage
30
30
  * CNAMEPrefix: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new CheckDNSAvailabilityCommand(input);
@@ -31,10 +31,10 @@ export interface ComposeEnvironmentsCommandOutput extends EnvironmentDescription
31
31
  * import { ElasticBeanstalkClient, ComposeEnvironmentsCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
32
32
  * // const { ElasticBeanstalkClient, ComposeEnvironmentsCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
33
33
  * const client = new ElasticBeanstalkClient(config);
34
- * const input = {
34
+ * const input = { // ComposeEnvironmentsMessage
35
35
  * ApplicationName: "STRING_VALUE",
36
36
  * GroupName: "STRING_VALUE",
37
- * VersionLabels: [
37
+ * VersionLabels: [ // VersionLabels
38
38
  * "STRING_VALUE",
39
39
  * ],
40
40
  * };
@@ -27,26 +27,26 @@ export interface CreateApplicationCommandOutput extends ApplicationDescriptionMe
27
27
  * import { ElasticBeanstalkClient, CreateApplicationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
28
28
  * // const { ElasticBeanstalkClient, CreateApplicationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
29
29
  * const client = new ElasticBeanstalkClient(config);
30
- * const input = {
30
+ * const input = { // CreateApplicationMessage
31
31
  * ApplicationName: "STRING_VALUE", // required
32
32
  * Description: "STRING_VALUE",
33
- * ResourceLifecycleConfig: {
33
+ * ResourceLifecycleConfig: { // ApplicationResourceLifecycleConfig
34
34
  * ServiceRole: "STRING_VALUE",
35
- * VersionLifecycleConfig: {
36
- * MaxCountRule: {
35
+ * VersionLifecycleConfig: { // ApplicationVersionLifecycleConfig
36
+ * MaxCountRule: { // MaxCountRule
37
37
  * Enabled: true || false, // required
38
38
  * MaxCount: Number("int"),
39
39
  * DeleteSourceFromS3: true || false,
40
40
  * },
41
- * MaxAgeRule: {
41
+ * MaxAgeRule: { // MaxAgeRule
42
42
  * Enabled: true || false, // required
43
43
  * MaxAgeInDays: Number("int"),
44
44
  * DeleteSourceFromS3: true || false,
45
45
  * },
46
46
  * },
47
47
  * },
48
- * Tags: [
49
- * {
48
+ * Tags: [ // Tags
49
+ * { // Tag
50
50
  * Key: "STRING_VALUE",
51
51
  * Value: "STRING_VALUE",
52
52
  * },
@@ -42,20 +42,20 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio
42
42
  * import { ElasticBeanstalkClient, CreateApplicationVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
43
43
  * // const { ElasticBeanstalkClient, CreateApplicationVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
44
44
  * const client = new ElasticBeanstalkClient(config);
45
- * const input = {
45
+ * const input = { // CreateApplicationVersionMessage
46
46
  * ApplicationName: "STRING_VALUE", // required
47
47
  * VersionLabel: "STRING_VALUE", // required
48
48
  * Description: "STRING_VALUE",
49
- * SourceBuildInformation: {
49
+ * SourceBuildInformation: { // SourceBuildInformation
50
50
  * SourceType: "Git" || "Zip", // required
51
51
  * SourceRepository: "CodeCommit" || "S3", // required
52
52
  * SourceLocation: "STRING_VALUE", // required
53
53
  * },
54
- * SourceBundle: {
54
+ * SourceBundle: { // S3Location
55
55
  * S3Bucket: "STRING_VALUE",
56
56
  * S3Key: "STRING_VALUE",
57
57
  * },
58
- * BuildConfiguration: {
58
+ * BuildConfiguration: { // BuildConfiguration
59
59
  * ArtifactName: "STRING_VALUE",
60
60
  * CodeBuildServiceRole: "STRING_VALUE", // required
61
61
  * ComputeType: "BUILD_GENERAL1_SMALL" || "BUILD_GENERAL1_MEDIUM" || "BUILD_GENERAL1_LARGE",
@@ -64,8 +64,8 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio
64
64
  * },
65
65
  * AutoCreateApplication: true || false,
66
66
  * Process: true || false,
67
- * Tags: [
68
- * {
67
+ * Tags: [ // Tags
68
+ * { // Tag
69
69
  * Key: "STRING_VALUE",
70
70
  * Value: "STRING_VALUE",
71
71
  * },
@@ -49,27 +49,27 @@ export interface CreateConfigurationTemplateCommandOutput extends ConfigurationS
49
49
  * import { ElasticBeanstalkClient, CreateConfigurationTemplateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
50
50
  * // const { ElasticBeanstalkClient, CreateConfigurationTemplateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
51
51
  * const client = new ElasticBeanstalkClient(config);
52
- * const input = {
52
+ * const input = { // CreateConfigurationTemplateMessage
53
53
  * ApplicationName: "STRING_VALUE", // required
54
54
  * TemplateName: "STRING_VALUE", // required
55
55
  * SolutionStackName: "STRING_VALUE",
56
56
  * PlatformArn: "STRING_VALUE",
57
- * SourceConfiguration: {
57
+ * SourceConfiguration: { // SourceConfiguration
58
58
  * ApplicationName: "STRING_VALUE",
59
59
  * TemplateName: "STRING_VALUE",
60
60
  * },
61
61
  * EnvironmentId: "STRING_VALUE",
62
62
  * Description: "STRING_VALUE",
63
- * OptionSettings: [
64
- * {
63
+ * OptionSettings: [ // ConfigurationOptionSettingsList
64
+ * { // ConfigurationOptionSetting
65
65
  * ResourceName: "STRING_VALUE",
66
66
  * Namespace: "STRING_VALUE",
67
67
  * OptionName: "STRING_VALUE",
68
68
  * Value: "STRING_VALUE",
69
69
  * },
70
70
  * ],
71
- * Tags: [
72
- * {
71
+ * Tags: [ // Tags
72
+ * { // Tag
73
73
  * Key: "STRING_VALUE",
74
74
  * Value: "STRING_VALUE",
75
75
  * },
@@ -27,19 +27,19 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription,
27
27
  * import { ElasticBeanstalkClient, CreateEnvironmentCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
28
28
  * // const { ElasticBeanstalkClient, CreateEnvironmentCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
29
29
  * const client = new ElasticBeanstalkClient(config);
30
- * const input = {
30
+ * const input = { // CreateEnvironmentMessage
31
31
  * ApplicationName: "STRING_VALUE", // required
32
32
  * EnvironmentName: "STRING_VALUE",
33
33
  * GroupName: "STRING_VALUE",
34
34
  * Description: "STRING_VALUE",
35
35
  * CNAMEPrefix: "STRING_VALUE",
36
- * Tier: {
36
+ * Tier: { // EnvironmentTier
37
37
  * Name: "STRING_VALUE",
38
38
  * Type: "STRING_VALUE",
39
39
  * Version: "STRING_VALUE",
40
40
  * },
41
- * Tags: [
42
- * {
41
+ * Tags: [ // Tags
42
+ * { // Tag
43
43
  * Key: "STRING_VALUE",
44
44
  * Value: "STRING_VALUE",
45
45
  * },
@@ -48,16 +48,16 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription,
48
48
  * TemplateName: "STRING_VALUE",
49
49
  * SolutionStackName: "STRING_VALUE",
50
50
  * PlatformArn: "STRING_VALUE",
51
- * OptionSettings: [
52
- * {
51
+ * OptionSettings: [ // ConfigurationOptionSettingsList
52
+ * { // ConfigurationOptionSetting
53
53
  * ResourceName: "STRING_VALUE",
54
54
  * Namespace: "STRING_VALUE",
55
55
  * OptionName: "STRING_VALUE",
56
56
  * Value: "STRING_VALUE",
57
57
  * },
58
58
  * ],
59
- * OptionsToRemove: [
60
- * {
59
+ * OptionsToRemove: [ // OptionsSpecifierList
60
+ * { // OptionSpecification
61
61
  * ResourceName: "STRING_VALUE",
62
62
  * Namespace: "STRING_VALUE",
63
63
  * OptionName: "STRING_VALUE",
@@ -26,24 +26,24 @@ export interface CreatePlatformVersionCommandOutput extends CreatePlatformVersio
26
26
  * import { ElasticBeanstalkClient, CreatePlatformVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
27
27
  * // const { ElasticBeanstalkClient, CreatePlatformVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
28
28
  * const client = new ElasticBeanstalkClient(config);
29
- * const input = {
29
+ * const input = { // CreatePlatformVersionRequest
30
30
  * PlatformName: "STRING_VALUE", // required
31
31
  * PlatformVersion: "STRING_VALUE", // required
32
- * PlatformDefinitionBundle: {
32
+ * PlatformDefinitionBundle: { // S3Location
33
33
  * S3Bucket: "STRING_VALUE",
34
34
  * S3Key: "STRING_VALUE",
35
35
  * },
36
36
  * EnvironmentName: "STRING_VALUE",
37
- * OptionSettings: [
38
- * {
37
+ * OptionSettings: [ // ConfigurationOptionSettingsList
38
+ * { // ConfigurationOptionSetting
39
39
  * ResourceName: "STRING_VALUE",
40
40
  * Namespace: "STRING_VALUE",
41
41
  * OptionName: "STRING_VALUE",
42
42
  * Value: "STRING_VALUE",
43
43
  * },
44
44
  * ],
45
- * Tags: [
46
- * {
45
+ * Tags: [ // Tags
46
+ * { // Tag
47
47
  * Key: "STRING_VALUE",
48
48
  * Value: "STRING_VALUE",
49
49
  * },
@@ -31,7 +31,7 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
31
31
  * import { ElasticBeanstalkClient, DeleteApplicationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
32
32
  * // const { ElasticBeanstalkClient, DeleteApplicationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
33
33
  * const client = new ElasticBeanstalkClient(config);
34
- * const input = {
34
+ * const input = { // DeleteApplicationMessage
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * TerminateEnvByForce: true || false,
37
37
  * };
@@ -30,7 +30,7 @@ export interface DeleteApplicationVersionCommandOutput extends __MetadataBearer
30
30
  * import { ElasticBeanstalkClient, DeleteApplicationVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
31
31
  * // const { ElasticBeanstalkClient, DeleteApplicationVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
32
32
  * const client = new ElasticBeanstalkClient(config);
33
- * const input = {
33
+ * const input = { // DeleteApplicationVersionMessage
34
34
  * ApplicationName: "STRING_VALUE", // required
35
35
  * VersionLabel: "STRING_VALUE", // required
36
36
  * DeleteSourceBundle: true || false,
@@ -31,7 +31,7 @@ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBear
31
31
  * import { ElasticBeanstalkClient, DeleteConfigurationTemplateCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
32
32
  * // const { ElasticBeanstalkClient, DeleteConfigurationTemplateCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
33
33
  * const client = new ElasticBeanstalkClient(config);
34
- * const input = {
34
+ * const input = { // DeleteConfigurationTemplateMessage
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * TemplateName: "STRING_VALUE", // required
37
37
  * };
@@ -31,7 +31,7 @@ export interface DeleteEnvironmentConfigurationCommandOutput extends __MetadataB
31
31
  * import { ElasticBeanstalkClient, DeleteEnvironmentConfigurationCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
32
32
  * // const { ElasticBeanstalkClient, DeleteEnvironmentConfigurationCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
33
33
  * const client = new ElasticBeanstalkClient(config);
34
- * const input = {
34
+ * const input = { // DeleteEnvironmentConfigurationMessage
35
35
  * ApplicationName: "STRING_VALUE", // required
36
36
  * EnvironmentName: "STRING_VALUE", // required
37
37
  * };
@@ -26,7 +26,7 @@ export interface DeletePlatformVersionCommandOutput extends DeletePlatformVersio
26
26
  * import { ElasticBeanstalkClient, DeletePlatformVersionCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import
27
27
  * // const { ElasticBeanstalkClient, DeletePlatformVersionCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import
28
28
  * const client = new ElasticBeanstalkClient(config);
29
- * const input = {
29
+ * const input = { // DeletePlatformVersionRequest
30
30
  * PlatformArn: "STRING_VALUE",
31
31
  * };
32
32
  * const command = new DeletePlatformVersionCommand(input);