@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
|
@@ -11,43 +11,37 @@ export class InsufficientPrivilegesException extends __BaseException {
|
|
|
11
11
|
Object.setPrototypeOf(this, InsufficientPrivilegesException.prototype);
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
export
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
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
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
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
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
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
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
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
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
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
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
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
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
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
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
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);
|