@aws-sdk/client-elastic-beanstalk 3.325.0 → 3.327.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 (48) hide show
  1. package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +4 -0
  2. package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +9 -0
  3. package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +4 -0
  4. package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +7 -0
  5. package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +51 -0
  6. package/dist-types/commands/CreateApplicationCommand.d.ts +33 -0
  7. package/dist-types/commands/CreateApplicationVersionCommand.d.ts +24 -0
  8. package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +22 -0
  9. package/dist-types/commands/CreateEnvironmentCommand.d.ts +46 -0
  10. package/dist-types/commands/CreatePlatformVersionCommand.d.ts +26 -0
  11. package/dist-types/commands/CreateStorageLocationCommand.d.ts +6 -0
  12. package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +4 -0
  16. package/dist-types/commands/DeletePlatformVersionCommand.d.ts +23 -0
  17. package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +22 -0
  18. package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +27 -0
  19. package/dist-types/commands/DescribeApplicationsCommand.d.ts +35 -0
  20. package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +27 -0
  21. package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +26 -0
  22. package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +43 -0
  23. package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +18 -0
  24. package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +14 -0
  25. package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +44 -0
  26. package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +51 -0
  27. package/dist-types/commands/DescribeEventsCommand.d.ts +19 -0
  28. package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +61 -0
  29. package/dist-types/commands/DescribePlatformVersionCommand.d.ts +47 -0
  30. package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +4 -0
  31. package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +16 -0
  32. package/dist-types/commands/ListPlatformBranchesCommand.d.ts +17 -0
  33. package/dist-types/commands/ListPlatformVersionsCommand.d.ts +26 -0
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  35. package/dist-types/commands/RebuildEnvironmentCommand.d.ts +4 -0
  36. package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +4 -0
  37. package/dist-types/commands/RestartAppServerCommand.d.ts +4 -0
  38. package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +13 -0
  39. package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +4 -0
  40. package/dist-types/commands/TerminateEnvironmentCommand.d.ts +46 -0
  41. package/dist-types/commands/UpdateApplicationCommand.d.ts +33 -0
  42. package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +21 -0
  43. package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +24 -0
  44. package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +22 -0
  45. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +46 -0
  46. package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +4 -0
  47. package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +13 -0
  48. package/package.json +7 -7
@@ -33,6 +33,8 @@ export interface AbortEnvironmentUpdateCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new AbortEnvironmentUpdateCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param AbortEnvironmentUpdateCommandInput - {@link AbortEnvironmentUpdateCommandInput}
@@ -45,6 +47,8 @@ export interface AbortEnvironmentUpdateCommandOutput extends __MetadataBearer {
45
47
  * <p>The specified account does not have sufficient privileges for one or more AWS
46
48
  * services.</p>
47
49
  *
50
+ * @throws {@link ElasticBeanstalkServiceException}
51
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
48
52
  *
49
53
  * @example To abort a deployment
50
54
  * ```javascript
@@ -35,6 +35,13 @@ export interface ApplyEnvironmentManagedActionCommandOutput extends ApplyEnviron
35
35
  * };
36
36
  * const command = new ApplyEnvironmentManagedActionCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ApplyEnvironmentManagedActionResult
39
+ * // ActionId: "STRING_VALUE",
40
+ * // ActionDescription: "STRING_VALUE",
41
+ * // ActionType: "InstanceRefresh" || "PlatformUpdate" || "Unknown",
42
+ * // Status: "STRING_VALUE",
43
+ * // };
44
+ *
38
45
  * ```
39
46
  *
40
47
  * @param ApplyEnvironmentManagedActionCommandInput - {@link ApplyEnvironmentManagedActionCommandInput}
@@ -49,6 +56,8 @@ export interface ApplyEnvironmentManagedActionCommandOutput extends ApplyEnviron
49
56
  * @throws {@link ManagedActionInvalidStateException} (client fault)
50
57
  * <p>Cannot modify the managed action in its current state.</p>
51
58
  *
59
+ * @throws {@link ElasticBeanstalkServiceException}
60
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
52
61
  *
53
62
  */
54
63
  export declare class ApplyEnvironmentManagedActionCommand extends $Command<ApplyEnvironmentManagedActionCommandInput, ApplyEnvironmentManagedActionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface AssociateEnvironmentOperationsRoleCommandOutput extends __Metad
35
35
  * };
36
36
  * const command = new AssociateEnvironmentOperationsRoleCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param AssociateEnvironmentOperationsRoleCommandInput - {@link AssociateEnvironmentOperationsRoleCommandInput}
@@ -47,6 +49,8 @@ export interface AssociateEnvironmentOperationsRoleCommandOutput extends __Metad
47
49
  * <p>The specified account does not have sufficient privileges for one or more AWS
48
50
  * services.</p>
49
51
  *
52
+ * @throws {@link ElasticBeanstalkServiceException}
53
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
50
54
  *
51
55
  */
52
56
  export declare class AssociateEnvironmentOperationsRoleCommand extends $Command<AssociateEnvironmentOperationsRoleCommandInput, AssociateEnvironmentOperationsRoleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -31,6 +31,11 @@ export interface CheckDNSAvailabilityCommandOutput extends CheckDNSAvailabilityR
31
31
  * };
32
32
  * const command = new CheckDNSAvailabilityCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // CheckDNSAvailabilityResultMessage
35
+ * // Available: true || false,
36
+ * // FullyQualifiedCNAME: "STRING_VALUE",
37
+ * // };
38
+ *
34
39
  * ```
35
40
  *
36
41
  * @param CheckDNSAvailabilityCommandInput - {@link CheckDNSAvailabilityCommandInput}
@@ -39,6 +44,8 @@ export interface CheckDNSAvailabilityCommandOutput extends CheckDNSAvailabilityR
39
44
  * @see {@link CheckDNSAvailabilityCommandOutput} for command's `response` shape.
40
45
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
41
46
  *
47
+ * @throws {@link ElasticBeanstalkServiceException}
48
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
42
49
  *
43
50
  * @example To check the availability of a CNAME
44
51
  * ```javascript
@@ -40,6 +40,55 @@ export interface ComposeEnvironmentsCommandOutput extends EnvironmentDescription
40
40
  * };
41
41
  * const command = new ComposeEnvironmentsCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // EnvironmentDescriptionsMessage
44
+ * // Environments: [ // EnvironmentDescriptionsList
45
+ * // { // EnvironmentDescription
46
+ * // EnvironmentName: "STRING_VALUE",
47
+ * // EnvironmentId: "STRING_VALUE",
48
+ * // ApplicationName: "STRING_VALUE",
49
+ * // VersionLabel: "STRING_VALUE",
50
+ * // SolutionStackName: "STRING_VALUE",
51
+ * // PlatformArn: "STRING_VALUE",
52
+ * // TemplateName: "STRING_VALUE",
53
+ * // Description: "STRING_VALUE",
54
+ * // EndpointURL: "STRING_VALUE",
55
+ * // CNAME: "STRING_VALUE",
56
+ * // DateCreated: new Date("TIMESTAMP"),
57
+ * // DateUpdated: new Date("TIMESTAMP"),
58
+ * // Status: "Aborting" || "Launching" || "Updating" || "LinkingFrom" || "LinkingTo" || "Ready" || "Terminating" || "Terminated",
59
+ * // AbortableOperationInProgress: true || false,
60
+ * // Health: "Green" || "Yellow" || "Red" || "Grey",
61
+ * // HealthStatus: "NoData" || "Unknown" || "Pending" || "Ok" || "Info" || "Warning" || "Degraded" || "Severe" || "Suspended",
62
+ * // Resources: { // EnvironmentResourcesDescription
63
+ * // LoadBalancer: { // LoadBalancerDescription
64
+ * // LoadBalancerName: "STRING_VALUE",
65
+ * // Domain: "STRING_VALUE",
66
+ * // Listeners: [ // LoadBalancerListenersDescription
67
+ * // { // Listener
68
+ * // Protocol: "STRING_VALUE",
69
+ * // Port: Number("int"),
70
+ * // },
71
+ * // ],
72
+ * // },
73
+ * // },
74
+ * // Tier: { // EnvironmentTier
75
+ * // Name: "STRING_VALUE",
76
+ * // Type: "STRING_VALUE",
77
+ * // Version: "STRING_VALUE",
78
+ * // },
79
+ * // EnvironmentLinks: [ // EnvironmentLinks
80
+ * // { // EnvironmentLink
81
+ * // LinkName: "STRING_VALUE",
82
+ * // EnvironmentName: "STRING_VALUE",
83
+ * // },
84
+ * // ],
85
+ * // EnvironmentArn: "STRING_VALUE",
86
+ * // OperationsRole: "STRING_VALUE",
87
+ * // },
88
+ * // ],
89
+ * // NextToken: "STRING_VALUE",
90
+ * // };
91
+ *
43
92
  * ```
44
93
  *
45
94
  * @param ComposeEnvironmentsCommandInput - {@link ComposeEnvironmentsCommandInput}
@@ -55,6 +104,8 @@ export interface ComposeEnvironmentsCommandOutput extends EnvironmentDescription
55
104
  * @throws {@link TooManyEnvironmentsException} (client fault)
56
105
  * <p>The specified account has reached its limit of environments.</p>
57
106
  *
107
+ * @throws {@link ElasticBeanstalkServiceException}
108
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
58
109
  *
59
110
  */
60
111
  export declare class ComposeEnvironmentsCommand extends $Command<ComposeEnvironmentsCommandInput, ComposeEnvironmentsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -54,6 +54,37 @@ export interface CreateApplicationCommandOutput extends ApplicationDescriptionMe
54
54
  * };
55
55
  * const command = new CreateApplicationCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // ApplicationDescriptionMessage
58
+ * // Application: { // ApplicationDescription
59
+ * // ApplicationArn: "STRING_VALUE",
60
+ * // ApplicationName: "STRING_VALUE",
61
+ * // Description: "STRING_VALUE",
62
+ * // DateCreated: new Date("TIMESTAMP"),
63
+ * // DateUpdated: new Date("TIMESTAMP"),
64
+ * // Versions: [ // VersionLabelsList
65
+ * // "STRING_VALUE",
66
+ * // ],
67
+ * // ConfigurationTemplates: [ // ConfigurationTemplateNamesList
68
+ * // "STRING_VALUE",
69
+ * // ],
70
+ * // ResourceLifecycleConfig: { // ApplicationResourceLifecycleConfig
71
+ * // ServiceRole: "STRING_VALUE",
72
+ * // VersionLifecycleConfig: { // ApplicationVersionLifecycleConfig
73
+ * // MaxCountRule: { // MaxCountRule
74
+ * // Enabled: true || false, // required
75
+ * // MaxCount: Number("int"),
76
+ * // DeleteSourceFromS3: true || false,
77
+ * // },
78
+ * // MaxAgeRule: { // MaxAgeRule
79
+ * // Enabled: true || false, // required
80
+ * // MaxAgeInDays: Number("int"),
81
+ * // DeleteSourceFromS3: true || false,
82
+ * // },
83
+ * // },
84
+ * // },
85
+ * // },
86
+ * // };
87
+ *
57
88
  * ```
58
89
  *
59
90
  * @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
@@ -65,6 +96,8 @@ export interface CreateApplicationCommandOutput extends ApplicationDescriptionMe
65
96
  * @throws {@link TooManyApplicationsException} (client fault)
66
97
  * <p>The specified account has reached its limit of applications.</p>
67
98
  *
99
+ * @throws {@link ElasticBeanstalkServiceException}
100
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
68
101
  *
69
102
  * @example To create a new application
70
103
  * ```javascript
@@ -73,6 +73,28 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio
73
73
  * };
74
74
  * const command = new CreateApplicationVersionCommand(input);
75
75
  * const response = await client.send(command);
76
+ * // { // ApplicationVersionDescriptionMessage
77
+ * // ApplicationVersion: { // ApplicationVersionDescription
78
+ * // ApplicationVersionArn: "STRING_VALUE",
79
+ * // ApplicationName: "STRING_VALUE",
80
+ * // Description: "STRING_VALUE",
81
+ * // VersionLabel: "STRING_VALUE",
82
+ * // SourceBuildInformation: { // SourceBuildInformation
83
+ * // SourceType: "Git" || "Zip", // required
84
+ * // SourceRepository: "CodeCommit" || "S3", // required
85
+ * // SourceLocation: "STRING_VALUE", // required
86
+ * // },
87
+ * // BuildArn: "STRING_VALUE",
88
+ * // SourceBundle: { // S3Location
89
+ * // S3Bucket: "STRING_VALUE",
90
+ * // S3Key: "STRING_VALUE",
91
+ * // },
92
+ * // DateCreated: new Date("TIMESTAMP"),
93
+ * // DateUpdated: new Date("TIMESTAMP"),
94
+ * // Status: "Processed" || "Unprocessed" || "Failed" || "Processing" || "Building",
95
+ * // },
96
+ * // };
97
+ *
76
98
  * ```
77
99
  *
78
100
  * @param CreateApplicationVersionCommandInput - {@link CreateApplicationVersionCommandInput}
@@ -109,6 +131,8 @@ export interface CreateApplicationVersionCommandOutput extends ApplicationVersio
109
131
  * @throws {@link TooManyApplicationVersionsException} (client fault)
110
132
  * <p>The specified account has reached its limit of application versions.</p>
111
133
  *
134
+ * @throws {@link ElasticBeanstalkServiceException}
135
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
112
136
  *
113
137
  * @example To create a new application
114
138
  * ```javascript
@@ -77,6 +77,26 @@ export interface CreateConfigurationTemplateCommandOutput extends ConfigurationS
77
77
  * };
78
78
  * const command = new CreateConfigurationTemplateCommand(input);
79
79
  * const response = await client.send(command);
80
+ * // { // ConfigurationSettingsDescription
81
+ * // SolutionStackName: "STRING_VALUE",
82
+ * // PlatformArn: "STRING_VALUE",
83
+ * // ApplicationName: "STRING_VALUE",
84
+ * // TemplateName: "STRING_VALUE",
85
+ * // Description: "STRING_VALUE",
86
+ * // EnvironmentName: "STRING_VALUE",
87
+ * // DeploymentStatus: "deployed" || "pending" || "failed",
88
+ * // DateCreated: new Date("TIMESTAMP"),
89
+ * // DateUpdated: new Date("TIMESTAMP"),
90
+ * // OptionSettings: [ // ConfigurationOptionSettingsList
91
+ * // { // ConfigurationOptionSetting
92
+ * // ResourceName: "STRING_VALUE",
93
+ * // Namespace: "STRING_VALUE",
94
+ * // OptionName: "STRING_VALUE",
95
+ * // Value: "STRING_VALUE",
96
+ * // },
97
+ * // ],
98
+ * // };
99
+ *
80
100
  * ```
81
101
  *
82
102
  * @param CreateConfigurationTemplateCommandInput - {@link CreateConfigurationTemplateCommandInput}
@@ -95,6 +115,8 @@ export interface CreateConfigurationTemplateCommandOutput extends ConfigurationS
95
115
  * @throws {@link TooManyConfigurationTemplatesException} (client fault)
96
116
  * <p>The specified account has reached its limit of configuration templates.</p>
97
117
  *
118
+ * @throws {@link ElasticBeanstalkServiceException}
119
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
98
120
  *
99
121
  * @example To create a configuration template
100
122
  * ```javascript
@@ -67,6 +67,50 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription,
67
67
  * };
68
68
  * const command = new CreateEnvironmentCommand(input);
69
69
  * const response = await client.send(command);
70
+ * // { // EnvironmentDescription
71
+ * // EnvironmentName: "STRING_VALUE",
72
+ * // EnvironmentId: "STRING_VALUE",
73
+ * // ApplicationName: "STRING_VALUE",
74
+ * // VersionLabel: "STRING_VALUE",
75
+ * // SolutionStackName: "STRING_VALUE",
76
+ * // PlatformArn: "STRING_VALUE",
77
+ * // TemplateName: "STRING_VALUE",
78
+ * // Description: "STRING_VALUE",
79
+ * // EndpointURL: "STRING_VALUE",
80
+ * // CNAME: "STRING_VALUE",
81
+ * // DateCreated: new Date("TIMESTAMP"),
82
+ * // DateUpdated: new Date("TIMESTAMP"),
83
+ * // Status: "Aborting" || "Launching" || "Updating" || "LinkingFrom" || "LinkingTo" || "Ready" || "Terminating" || "Terminated",
84
+ * // AbortableOperationInProgress: true || false,
85
+ * // Health: "Green" || "Yellow" || "Red" || "Grey",
86
+ * // HealthStatus: "NoData" || "Unknown" || "Pending" || "Ok" || "Info" || "Warning" || "Degraded" || "Severe" || "Suspended",
87
+ * // Resources: { // EnvironmentResourcesDescription
88
+ * // LoadBalancer: { // LoadBalancerDescription
89
+ * // LoadBalancerName: "STRING_VALUE",
90
+ * // Domain: "STRING_VALUE",
91
+ * // Listeners: [ // LoadBalancerListenersDescription
92
+ * // { // Listener
93
+ * // Protocol: "STRING_VALUE",
94
+ * // Port: Number("int"),
95
+ * // },
96
+ * // ],
97
+ * // },
98
+ * // },
99
+ * // Tier: { // EnvironmentTier
100
+ * // Name: "STRING_VALUE",
101
+ * // Type: "STRING_VALUE",
102
+ * // Version: "STRING_VALUE",
103
+ * // },
104
+ * // EnvironmentLinks: [ // EnvironmentLinks
105
+ * // { // EnvironmentLink
106
+ * // LinkName: "STRING_VALUE",
107
+ * // EnvironmentName: "STRING_VALUE",
108
+ * // },
109
+ * // ],
110
+ * // EnvironmentArn: "STRING_VALUE",
111
+ * // OperationsRole: "STRING_VALUE",
112
+ * // };
113
+ *
70
114
  * ```
71
115
  *
72
116
  * @param CreateEnvironmentCommandInput - {@link CreateEnvironmentCommandInput}
@@ -82,6 +126,8 @@ export interface CreateEnvironmentCommandOutput extends EnvironmentDescription,
82
126
  * @throws {@link TooManyEnvironmentsException} (client fault)
83
127
  * <p>The specified account has reached its limit of environments.</p>
84
128
  *
129
+ * @throws {@link ElasticBeanstalkServiceException}
130
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
85
131
  *
86
132
  * @example To create a new environment for an application
87
133
  * ```javascript
@@ -51,6 +51,30 @@ export interface CreatePlatformVersionCommandOutput extends CreatePlatformVersio
51
51
  * };
52
52
  * const command = new CreatePlatformVersionCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // CreatePlatformVersionResult
55
+ * // PlatformSummary: { // PlatformSummary
56
+ * // PlatformArn: "STRING_VALUE",
57
+ * // PlatformOwner: "STRING_VALUE",
58
+ * // PlatformStatus: "Creating" || "Failed" || "Ready" || "Deleting" || "Deleted",
59
+ * // PlatformCategory: "STRING_VALUE",
60
+ * // OperatingSystemName: "STRING_VALUE",
61
+ * // OperatingSystemVersion: "STRING_VALUE",
62
+ * // SupportedTierList: [ // SupportedTierList
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // SupportedAddonList: [ // SupportedAddonList
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // PlatformLifecycleState: "STRING_VALUE",
69
+ * // PlatformVersion: "STRING_VALUE",
70
+ * // PlatformBranchName: "STRING_VALUE",
71
+ * // PlatformBranchLifecycleState: "STRING_VALUE",
72
+ * // },
73
+ * // Builder: { // Builder
74
+ * // ARN: "STRING_VALUE",
75
+ * // },
76
+ * // };
77
+ *
54
78
  * ```
55
79
  *
56
80
  * @param CreatePlatformVersionCommandInput - {@link CreatePlatformVersionCommandInput}
@@ -69,6 +93,8 @@ export interface CreatePlatformVersionCommandOutput extends CreatePlatformVersio
69
93
  * @throws {@link TooManyPlatformsException} (client fault)
70
94
  * <p>You have exceeded the maximum number of allowed platforms associated with the account.</p>
71
95
  *
96
+ * @throws {@link ElasticBeanstalkServiceException}
97
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
72
98
  *
73
99
  */
74
100
  export declare class CreatePlatformVersionCommand extends $Command<CreatePlatformVersionCommandInput, CreatePlatformVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -33,6 +33,10 @@ export interface CreateStorageLocationCommandOutput extends CreateStorageLocatio
33
33
  * const input = {};
34
34
  * const command = new CreateStorageLocationCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // CreateStorageLocationResultMessage
37
+ * // S3Bucket: "STRING_VALUE",
38
+ * // };
39
+ *
36
40
  * ```
37
41
  *
38
42
  * @param CreateStorageLocationCommandInput - {@link CreateStorageLocationCommandInput}
@@ -51,6 +55,8 @@ export interface CreateStorageLocationCommandOutput extends CreateStorageLocatio
51
55
  * @throws {@link TooManyBucketsException} (client fault)
52
56
  * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
53
57
  *
58
+ * @throws {@link ElasticBeanstalkServiceException}
59
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
54
60
  *
55
61
  * @example To create a new environment for an application
56
62
  * ```javascript
@@ -37,6 +37,8 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
37
37
  * };
38
38
  * const command = new DeleteApplicationCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
@@ -49,6 +51,8 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
49
51
  * <p>Unable to perform the specified operation because another operation that effects an
50
52
  * element in this activity is already in progress.</p>
51
53
  *
54
+ * @throws {@link ElasticBeanstalkServiceException}
55
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
52
56
  *
53
57
  * @example To delete an application
54
58
  * ```javascript
@@ -37,6 +37,8 @@ export interface DeleteApplicationVersionCommandOutput extends __MetadataBearer
37
37
  * };
38
38
  * const command = new DeleteApplicationVersionCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param DeleteApplicationVersionCommandInput - {@link DeleteApplicationVersionCommandInput}
@@ -72,6 +74,8 @@ export interface DeleteApplicationVersionCommandOutput extends __MetadataBearer
72
74
  * <p>Unable to delete the Amazon S3 source bundle associated with the application version.
73
75
  * The application version was deleted successfully.</p>
74
76
  *
77
+ * @throws {@link ElasticBeanstalkServiceException}
78
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
75
79
  *
76
80
  * @example To delete an application version
77
81
  * ```javascript
@@ -37,6 +37,8 @@ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBear
37
37
  * };
38
38
  * const command = new DeleteConfigurationTemplateCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param DeleteConfigurationTemplateCommandInput - {@link DeleteConfigurationTemplateCommandInput}
@@ -49,6 +51,8 @@ export interface DeleteConfigurationTemplateCommandOutput extends __MetadataBear
49
51
  * <p>Unable to perform the specified operation because another operation that effects an
50
52
  * element in this activity is already in progress.</p>
51
53
  *
54
+ * @throws {@link ElasticBeanstalkServiceException}
55
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
52
56
  *
53
57
  * @example To delete a configuration template
54
58
  * ```javascript
@@ -37,6 +37,8 @@ export interface DeleteEnvironmentConfigurationCommandOutput extends __MetadataB
37
37
  * };
38
38
  * const command = new DeleteEnvironmentConfigurationCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param DeleteEnvironmentConfigurationCommandInput - {@link DeleteEnvironmentConfigurationCommandInput}
@@ -45,6 +47,8 @@ export interface DeleteEnvironmentConfigurationCommandOutput extends __MetadataB
45
47
  * @see {@link DeleteEnvironmentConfigurationCommandOutput} for command's `response` shape.
46
48
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
47
49
  *
50
+ * @throws {@link ElasticBeanstalkServiceException}
51
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
48
52
  *
49
53
  * @example To delete a draft configuration
50
54
  * ```javascript
@@ -31,6 +31,27 @@ export interface DeletePlatformVersionCommandOutput extends DeletePlatformVersio
31
31
  * };
32
32
  * const command = new DeletePlatformVersionCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DeletePlatformVersionResult
35
+ * // PlatformSummary: { // PlatformSummary
36
+ * // PlatformArn: "STRING_VALUE",
37
+ * // PlatformOwner: "STRING_VALUE",
38
+ * // PlatformStatus: "Creating" || "Failed" || "Ready" || "Deleting" || "Deleted",
39
+ * // PlatformCategory: "STRING_VALUE",
40
+ * // OperatingSystemName: "STRING_VALUE",
41
+ * // OperatingSystemVersion: "STRING_VALUE",
42
+ * // SupportedTierList: [ // SupportedTierList
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // SupportedAddonList: [ // SupportedAddonList
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // PlatformLifecycleState: "STRING_VALUE",
49
+ * // PlatformVersion: "STRING_VALUE",
50
+ * // PlatformBranchName: "STRING_VALUE",
51
+ * // PlatformBranchLifecycleState: "STRING_VALUE",
52
+ * // },
53
+ * // };
54
+ *
34
55
  * ```
35
56
  *
36
57
  * @param DeletePlatformVersionCommandInput - {@link DeletePlatformVersionCommandInput}
@@ -53,6 +74,8 @@ export interface DeletePlatformVersionCommandOutput extends DeletePlatformVersio
53
74
  * @throws {@link PlatformVersionStillReferencedException} (client fault)
54
75
  * <p>You cannot delete the platform version because there are still environments running on it.</p>
55
76
  *
77
+ * @throws {@link ElasticBeanstalkServiceException}
78
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
56
79
  *
57
80
  */
58
81
  export declare class DeletePlatformVersionCommand extends $Command<DeletePlatformVersionCommandInput, DeletePlatformVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -31,6 +31,26 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA
31
31
  * const input = {};
32
32
  * const command = new DescribeAccountAttributesCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeAccountAttributesResult
35
+ * // ResourceQuotas: { // ResourceQuotas
36
+ * // ApplicationQuota: { // ResourceQuota
37
+ * // Maximum: Number("int"),
38
+ * // },
39
+ * // ApplicationVersionQuota: {
40
+ * // Maximum: Number("int"),
41
+ * // },
42
+ * // EnvironmentQuota: {
43
+ * // Maximum: Number("int"),
44
+ * // },
45
+ * // ConfigurationTemplateQuota: {
46
+ * // Maximum: Number("int"),
47
+ * // },
48
+ * // CustomPlatformQuota: {
49
+ * // Maximum: Number("int"),
50
+ * // },
51
+ * // },
52
+ * // };
53
+ *
34
54
  * ```
35
55
  *
36
56
  * @param DescribeAccountAttributesCommandInput - {@link DescribeAccountAttributesCommandInput}
@@ -43,6 +63,8 @@ export interface DescribeAccountAttributesCommandOutput extends DescribeAccountA
43
63
  * <p>The specified account does not have sufficient privileges for one or more AWS
44
64
  * services.</p>
45
65
  *
66
+ * @throws {@link ElasticBeanstalkServiceException}
67
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
46
68
  *
47
69
  */
48
70
  export declare class DescribeAccountAttributesCommand extends $Command<DescribeAccountAttributesCommandInput, DescribeAccountAttributesCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -36,6 +36,31 @@ export interface DescribeApplicationVersionsCommandOutput extends ApplicationVer
36
36
  * };
37
37
  * const command = new DescribeApplicationVersionsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ApplicationVersionDescriptionsMessage
40
+ * // ApplicationVersions: [ // ApplicationVersionDescriptionList
41
+ * // { // ApplicationVersionDescription
42
+ * // ApplicationVersionArn: "STRING_VALUE",
43
+ * // ApplicationName: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // VersionLabel: "STRING_VALUE",
46
+ * // SourceBuildInformation: { // SourceBuildInformation
47
+ * // SourceType: "Git" || "Zip", // required
48
+ * // SourceRepository: "CodeCommit" || "S3", // required
49
+ * // SourceLocation: "STRING_VALUE", // required
50
+ * // },
51
+ * // BuildArn: "STRING_VALUE",
52
+ * // SourceBundle: { // S3Location
53
+ * // S3Bucket: "STRING_VALUE",
54
+ * // S3Key: "STRING_VALUE",
55
+ * // },
56
+ * // DateCreated: new Date("TIMESTAMP"),
57
+ * // DateUpdated: new Date("TIMESTAMP"),
58
+ * // Status: "Processed" || "Unprocessed" || "Failed" || "Processing" || "Building",
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
39
64
  * ```
40
65
  *
41
66
  * @param DescribeApplicationVersionsCommandInput - {@link DescribeApplicationVersionsCommandInput}
@@ -44,6 +69,8 @@ export interface DescribeApplicationVersionsCommandOutput extends ApplicationVer
44
69
  * @see {@link DescribeApplicationVersionsCommandOutput} for command's `response` shape.
45
70
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
46
71
  *
72
+ * @throws {@link ElasticBeanstalkServiceException}
73
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
47
74
  *
48
75
  * @example To view information about an application version
49
76
  * ```javascript
@@ -33,6 +33,39 @@ export interface DescribeApplicationsCommandOutput extends ApplicationDescriptio
33
33
  * };
34
34
  * const command = new DescribeApplicationsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ApplicationDescriptionsMessage
37
+ * // Applications: [ // ApplicationDescriptionList
38
+ * // { // ApplicationDescription
39
+ * // ApplicationArn: "STRING_VALUE",
40
+ * // ApplicationName: "STRING_VALUE",
41
+ * // Description: "STRING_VALUE",
42
+ * // DateCreated: new Date("TIMESTAMP"),
43
+ * // DateUpdated: new Date("TIMESTAMP"),
44
+ * // Versions: [ // VersionLabelsList
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // ConfigurationTemplates: [ // ConfigurationTemplateNamesList
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // ResourceLifecycleConfig: { // ApplicationResourceLifecycleConfig
51
+ * // ServiceRole: "STRING_VALUE",
52
+ * // VersionLifecycleConfig: { // ApplicationVersionLifecycleConfig
53
+ * // MaxCountRule: { // MaxCountRule
54
+ * // Enabled: true || false, // required
55
+ * // MaxCount: Number("int"),
56
+ * // DeleteSourceFromS3: true || false,
57
+ * // },
58
+ * // MaxAgeRule: { // MaxAgeRule
59
+ * // Enabled: true || false, // required
60
+ * // MaxAgeInDays: Number("int"),
61
+ * // DeleteSourceFromS3: true || false,
62
+ * // },
63
+ * // },
64
+ * // },
65
+ * // },
66
+ * // ],
67
+ * // };
68
+ *
36
69
  * ```
37
70
  *
38
71
  * @param DescribeApplicationsCommandInput - {@link DescribeApplicationsCommandInput}
@@ -41,6 +74,8 @@ export interface DescribeApplicationsCommandOutput extends ApplicationDescriptio
41
74
  * @see {@link DescribeApplicationsCommandOutput} for command's `response` shape.
42
75
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
43
76
  *
77
+ * @throws {@link ElasticBeanstalkServiceException}
78
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
44
79
  *
45
80
  * @example To view a list of applications
46
81
  * ```javascript