@aws-sdk/client-elastic-beanstalk 3.774.0 → 3.777.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 (54) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
  2. package/dist-cjs/index.js +17 -18
  3. package/dist-es/ElasticBeanstalkClient.js +2 -1
  4. package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
  5. package/dist-es/endpoint/EndpointParameters.js +2 -3
  6. package/dist-es/runtimeExtensions.js +2 -14
  7. package/dist-types/commands/AbortEnvironmentUpdateCommand.d.ts +7 -4
  8. package/dist-types/commands/ApplyEnvironmentManagedActionCommand.d.ts +1 -0
  9. package/dist-types/commands/AssociateEnvironmentOperationsRoleCommand.d.ts +1 -0
  10. package/dist-types/commands/CheckDNSAvailabilityCommand.d.ts +6 -6
  11. package/dist-types/commands/ComposeEnvironmentsCommand.d.ts +1 -0
  12. package/dist-types/commands/CreateApplicationCommand.d.ts +11 -11
  13. package/dist-types/commands/CreateApplicationVersionCommand.d.ts +20 -20
  14. package/dist-types/commands/CreateConfigurationTemplateCommand.d.ts +11 -11
  15. package/dist-types/commands/CreateEnvironmentCommand.d.ts +22 -22
  16. package/dist-types/commands/CreatePlatformVersionCommand.d.ts +1 -0
  17. package/dist-types/commands/CreateStorageLocationCommand.d.ts +5 -5
  18. package/dist-types/commands/DeleteApplicationCommand.d.ts +7 -4
  19. package/dist-types/commands/DeleteApplicationVersionCommand.d.ts +9 -6
  20. package/dist-types/commands/DeleteConfigurationTemplateCommand.d.ts +8 -5
  21. package/dist-types/commands/DeleteEnvironmentConfigurationCommand.d.ts +8 -5
  22. package/dist-types/commands/DeletePlatformVersionCommand.d.ts +1 -0
  23. package/dist-types/commands/DescribeAccountAttributesCommand.d.ts +1 -0
  24. package/dist-types/commands/DescribeApplicationVersionsCommand.d.ts +22 -22
  25. package/dist-types/commands/DescribeApplicationsCommand.d.ts +21 -21
  26. package/dist-types/commands/DescribeConfigurationOptionsCommand.d.ts +21 -21
  27. package/dist-types/commands/DescribeConfigurationSettingsCommand.d.ts +30 -30
  28. package/dist-types/commands/DescribeEnvironmentHealthCommand.d.ts +36 -36
  29. package/dist-types/commands/DescribeEnvironmentManagedActionHistoryCommand.d.ts +1 -0
  30. package/dist-types/commands/DescribeEnvironmentManagedActionsCommand.d.ts +1 -0
  31. package/dist-types/commands/DescribeEnvironmentResourcesCommand.d.ts +16 -16
  32. package/dist-types/commands/DescribeEnvironmentsCommand.d.ts +21 -21
  33. package/dist-types/commands/DescribeEventsCommand.d.ts +28 -28
  34. package/dist-types/commands/DescribeInstancesHealthCommand.d.ts +39 -39
  35. package/dist-types/commands/DescribePlatformVersionCommand.d.ts +1 -0
  36. package/dist-types/commands/DisassociateEnvironmentOperationsRoleCommand.d.ts +1 -0
  37. package/dist-types/commands/ListAvailableSolutionStacksCommand.d.ts +8 -8
  38. package/dist-types/commands/ListPlatformBranchesCommand.d.ts +1 -0
  39. package/dist-types/commands/ListPlatformVersionsCommand.d.ts +1 -0
  40. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
  41. package/dist-types/commands/RebuildEnvironmentCommand.d.ts +7 -4
  42. package/dist-types/commands/RequestEnvironmentInfoCommand.d.ts +8 -5
  43. package/dist-types/commands/RestartAppServerCommand.d.ts +7 -4
  44. package/dist-types/commands/RetrieveEnvironmentInfoCommand.d.ts +10 -10
  45. package/dist-types/commands/SwapEnvironmentCNAMEsCommand.d.ts +8 -5
  46. package/dist-types/commands/TerminateEnvironmentCommand.d.ts +19 -19
  47. package/dist-types/commands/UpdateApplicationCommand.d.ts +12 -12
  48. package/dist-types/commands/UpdateApplicationResourceLifecycleCommand.d.ts +1 -0
  49. package/dist-types/commands/UpdateApplicationVersionCommand.d.ts +15 -15
  50. package/dist-types/commands/UpdateConfigurationTemplateCommand.d.ts +13 -13
  51. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +63 -64
  52. package/dist-types/commands/UpdateTagsForResourceCommand.d.ts +1 -0
  53. package/dist-types/commands/ValidateConfigurationSettingsCommand.d.ts +10 -10
  54. package/package.json +34 -34
@@ -80,49 +80,49 @@ declare const DescribeApplicationVersionsCommand_base: {
80
80
  * @throws {@link ElasticBeanstalkServiceException}
81
81
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
82
82
  *
83
- * @public
83
+ *
84
84
  * @example To view information about an application version
85
85
  * ```javascript
86
86
  * // The following operation retrieves information about an application version labeled v2:
87
87
  * const input = {
88
- * "ApplicationName": "my-app",
89
- * "VersionLabels": [
88
+ * ApplicationName: "my-app",
89
+ * VersionLabels: [
90
90
  * "v2"
91
91
  * ]
92
92
  * };
93
93
  * const command = new DescribeApplicationVersionsCommand(input);
94
94
  * const response = await client.send(command);
95
- * /* response ==
95
+ * /* response is
96
96
  * {
97
- * "ApplicationVersions": [
97
+ * ApplicationVersions: [
98
98
  * {
99
- * "ApplicationName": "my-app",
100
- * "DateCreated": "2015-07-23T01:32:26.079Z",
101
- * "DateUpdated": "2015-07-23T01:32:26.079Z",
102
- * "Description": "update cover page",
103
- * "SourceBundle": {
104
- * "S3Bucket": "elasticbeanstalk-us-west-2-015321684451",
105
- * "S3Key": "my-app/5026-stage-150723_224258.war"
99
+ * ApplicationName: "my-app",
100
+ * DateCreated: "2015-07-23T01:32:26.079Z",
101
+ * DateUpdated: "2015-07-23T01:32:26.079Z",
102
+ * Description: "update cover page",
103
+ * SourceBundle: {
104
+ * S3Bucket: "elasticbeanstalk-us-west-2-015321684451",
105
+ * S3Key: "my-app/5026-stage-150723_224258.war"
106
106
  * },
107
- * "VersionLabel": "v2"
107
+ * VersionLabel: "v2"
108
108
  * },
109
109
  * {
110
- * "ApplicationName": "my-app",
111
- * "DateCreated": "2015-07-23T22:26:10.816Z",
112
- * "DateUpdated": "2015-07-23T22:26:10.816Z",
113
- * "Description": "initial version",
114
- * "SourceBundle": {
115
- * "S3Bucket": "elasticbeanstalk-us-west-2-015321684451",
116
- * "S3Key": "my-app/5026-stage-150723_222618.war"
110
+ * ApplicationName: "my-app",
111
+ * DateCreated: "2015-07-23T22:26:10.816Z",
112
+ * DateUpdated: "2015-07-23T22:26:10.816Z",
113
+ * Description: "initial version",
114
+ * SourceBundle: {
115
+ * S3Bucket: "elasticbeanstalk-us-west-2-015321684451",
116
+ * S3Key: "my-app/5026-stage-150723_222618.war"
117
117
  * },
118
- * "VersionLabel": "v1"
118
+ * VersionLabel: "v1"
119
119
  * }
120
120
  * ]
121
121
  * }
122
122
  * *\/
123
- * // example id: to-view-information-about-an-application-version-1456269947428
124
123
  * ```
125
124
  *
125
+ * @public
126
126
  */
127
127
  export declare class DescribeApplicationVersionsCommand extends DescribeApplicationVersionsCommand_base {
128
128
  /** @internal type navigation helper, not in runtime. */
@@ -85,41 +85,41 @@ declare const DescribeApplicationsCommand_base: {
85
85
  * @throws {@link ElasticBeanstalkServiceException}
86
86
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
87
87
  *
88
- * @public
88
+ *
89
89
  * @example To view a list of applications
90
90
  * ```javascript
91
91
  * // The following operation retrieves information about applications in the current region:
92
- * const input = {};
92
+ * const input = { /* empty *\/ };
93
93
  * const command = new DescribeApplicationsCommand(input);
94
94
  * const response = await client.send(command);
95
- * /* response ==
95
+ * /* response is
96
96
  * {
97
- * "Applications": [
97
+ * Applications: [
98
98
  * {
99
- * "ApplicationName": "ruby",
100
- * "ConfigurationTemplates": [],
101
- * "DateCreated": "2015-08-13T21:05:44.376Z",
102
- * "DateUpdated": "2015-08-13T21:05:44.376Z",
103
- * "Versions": [
99
+ * ApplicationName: "ruby",
100
+ * ConfigurationTemplates: [],
101
+ * DateCreated: "2015-08-13T21:05:44.376Z",
102
+ * DateUpdated: "2015-08-13T21:05:44.376Z",
103
+ * Versions: [
104
104
  * "Sample Application"
105
105
  * ]
106
106
  * },
107
107
  * {
108
- * "ApplicationName": "pythonsample",
109
- * "ConfigurationTemplates": [],
110
- * "DateCreated": "2015-08-13T19:05:43.637Z",
111
- * "DateUpdated": "2015-08-13T19:05:43.637Z",
112
- * "Description": "Application created from the EB CLI using \"eb init\"",
113
- * "Versions": [
108
+ * ApplicationName: "pythonsample",
109
+ * ConfigurationTemplates: [],
110
+ * DateCreated: "2015-08-13T19:05:43.637Z",
111
+ * DateUpdated: "2015-08-13T19:05:43.637Z",
112
+ * Description: `Application created from the EB CLI using "eb init"`,
113
+ * Versions: [
114
114
  * "Sample Application"
115
115
  * ]
116
116
  * },
117
117
  * {
118
- * "ApplicationName": "nodejs-example",
119
- * "ConfigurationTemplates": [],
120
- * "DateCreated": "2015-08-06T17:50:02.486Z",
121
- * "DateUpdated": "2015-08-06T17:50:02.486Z",
122
- * "Versions": [
118
+ * ApplicationName: "nodejs-example",
119
+ * ConfigurationTemplates: [],
120
+ * DateCreated: "2015-08-06T17:50:02.486Z",
121
+ * DateUpdated: "2015-08-06T17:50:02.486Z",
122
+ * Versions: [
123
123
  * "add elasticache",
124
124
  * "First Release"
125
125
  * ]
@@ -127,9 +127,9 @@ declare const DescribeApplicationsCommand_base: {
127
127
  * ]
128
128
  * }
129
129
  * *\/
130
- * // example id: to-view-a-list-of-applications-1456270027373
131
130
  * ```
132
131
  *
132
+ * @public
133
133
  */
134
134
  export declare class DescribeApplicationsCommand extends DescribeApplicationsCommand_base {
135
135
  /** @internal type navigation helper, not in runtime. */
@@ -92,44 +92,44 @@ declare const DescribeConfigurationOptionsCommand_base: {
92
92
  * @throws {@link ElasticBeanstalkServiceException}
93
93
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
94
94
  *
95
- * @public
95
+ *
96
96
  * @example To view configuration options for an environment
97
97
  * ```javascript
98
98
  * // The following operation retrieves descriptions of all available configuration options for an environment named my-env:
99
99
  * const input = {
100
- * "ApplicationName": "my-app",
101
- * "EnvironmentName": "my-env"
100
+ * ApplicationName: "my-app",
101
+ * EnvironmentName: "my-env"
102
102
  * };
103
103
  * const command = new DescribeConfigurationOptionsCommand(input);
104
104
  * const response = await client.send(command);
105
- * /* response ==
105
+ * /* response is
106
106
  * {
107
- * "Options": [
107
+ * Options: [
108
108
  * {
109
- * "ChangeSeverity": "NoInterruption",
110
- * "DefaultValue": "30",
111
- * "MaxValue": 300,
112
- * "MinValue": 5,
113
- * "Name": "Interval",
114
- * "Namespace": "aws:elb:healthcheck",
115
- * "UserDefined": false,
116
- * "ValueType": "Scalar"
109
+ * ChangeSeverity: "NoInterruption",
110
+ * DefaultValue: "30",
111
+ * MaxValue: 300,
112
+ * MinValue: 5,
113
+ * Name: "Interval",
114
+ * Namespace: "aws:elb:healthcheck",
115
+ * UserDefined: false,
116
+ * ValueType: "Scalar"
117
117
  * },
118
118
  * {
119
- * "ChangeSeverity": "NoInterruption",
120
- * "DefaultValue": "2000000",
121
- * "MinValue": 0,
122
- * "Name": "LowerThreshold",
123
- * "Namespace": "aws:autoscaling:trigger",
124
- * "UserDefined": false,
125
- * "ValueType": "Scalar"
119
+ * ChangeSeverity: "NoInterruption",
120
+ * DefaultValue: "2000000",
121
+ * MinValue: 0,
122
+ * Name: "LowerThreshold",
123
+ * Namespace: "aws:autoscaling:trigger",
124
+ * UserDefined: false,
125
+ * ValueType: "Scalar"
126
126
  * }
127
127
  * ]
128
128
  * }
129
129
  * *\/
130
- * // example id: to-view-configuration-options-for-an-environment-1456276763917
131
130
  * ```
132
131
  *
132
+ * @public
133
133
  */
134
134
  export declare class DescribeConfigurationOptionsCommand extends DescribeConfigurationOptionsCommand_base {
135
135
  /** @internal type navigation helper, not in runtime. */
@@ -93,60 +93,60 @@ declare const DescribeConfigurationSettingsCommand_base: {
93
93
  * @throws {@link ElasticBeanstalkServiceException}
94
94
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
95
95
  *
96
- * @public
96
+ *
97
97
  * @example To view configurations settings for an environment
98
98
  * ```javascript
99
99
  * // The following operation retrieves configuration settings for an environment named my-env:
100
100
  * const input = {
101
- * "ApplicationName": "my-app",
102
- * "EnvironmentName": "my-env"
101
+ * ApplicationName: "my-app",
102
+ * EnvironmentName: "my-env"
103
103
  * };
104
104
  * const command = new DescribeConfigurationSettingsCommand(input);
105
105
  * const response = await client.send(command);
106
- * /* response ==
106
+ * /* response is
107
107
  * {
108
- * "ConfigurationSettings": [
108
+ * ConfigurationSettings: [
109
109
  * {
110
- * "ApplicationName": "my-app",
111
- * "DateCreated": "2015-08-13T19:16:25Z",
112
- * "DateUpdated": "2015-08-13T23:30:07Z",
113
- * "DeploymentStatus": "deployed",
114
- * "Description": "Environment created from the EB CLI using \"eb create\"",
115
- * "EnvironmentName": "my-env",
116
- * "OptionSettings": [
110
+ * ApplicationName: "my-app",
111
+ * DateCreated: "2015-08-13T19:16:25Z",
112
+ * DateUpdated: "2015-08-13T23:30:07Z",
113
+ * DeploymentStatus: "deployed",
114
+ * Description: `Environment created from the EB CLI using "eb create"`,
115
+ * EnvironmentName: "my-env",
116
+ * OptionSettings: [
117
117
  * {
118
- * "Namespace": "aws:autoscaling:asg",
119
- * "OptionName": "Availability Zones",
120
- * "ResourceName": "AWSEBAutoScalingGroup",
121
- * "Value": "Any"
118
+ * Namespace: "aws:autoscaling:asg",
119
+ * OptionName: "Availability Zones",
120
+ * ResourceName: "AWSEBAutoScalingGroup",
121
+ * Value: "Any"
122
122
  * },
123
123
  * {
124
- * "Namespace": "aws:autoscaling:asg",
125
- * "OptionName": "Cooldown",
126
- * "ResourceName": "AWSEBAutoScalingGroup",
127
- * "Value": "360"
124
+ * Namespace: "aws:autoscaling:asg",
125
+ * OptionName: "Cooldown",
126
+ * ResourceName: "AWSEBAutoScalingGroup",
127
+ * Value: "360"
128
128
  * },
129
129
  * {
130
- * "Namespace": "aws:elb:policies",
131
- * "OptionName": "ConnectionDrainingTimeout",
132
- * "ResourceName": "AWSEBLoadBalancer",
133
- * "Value": "20"
130
+ * Namespace: "aws:elb:policies",
131
+ * OptionName: "ConnectionDrainingTimeout",
132
+ * ResourceName: "AWSEBLoadBalancer",
133
+ * Value: "20"
134
134
  * },
135
135
  * {
136
- * "Namespace": "aws:elb:policies",
137
- * "OptionName": "ConnectionSettingIdleTimeout",
138
- * "ResourceName": "AWSEBLoadBalancer",
139
- * "Value": "60"
136
+ * Namespace: "aws:elb:policies",
137
+ * OptionName: "ConnectionSettingIdleTimeout",
138
+ * ResourceName: "AWSEBLoadBalancer",
139
+ * Value: "60"
140
140
  * }
141
141
  * ],
142
- * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8"
142
+ * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8"
143
143
  * }
144
144
  * ]
145
145
  * }
146
146
  * *\/
147
- * // example id: to-view-configurations-settings-for-an-environment-1456276924537
148
147
  * ```
149
148
  *
149
+ * @public
150
150
  */
151
151
  export declare class DescribeConfigurationSettingsCommand extends DescribeConfigurationSettingsCommand_base {
152
152
  /** @internal type navigation helper, not in runtime. */
@@ -104,60 +104,60 @@ declare const DescribeEnvironmentHealthCommand_base: {
104
104
  * @throws {@link ElasticBeanstalkServiceException}
105
105
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
106
106
  *
107
- * @public
107
+ *
108
108
  * @example To view environment health
109
109
  * ```javascript
110
110
  * // The following operation retrieves overall health information for an environment named my-env:
111
111
  * const input = {
112
- * "AttributeNames": [
112
+ * AttributeNames: [
113
113
  * "All"
114
114
  * ],
115
- * "EnvironmentName": "my-env"
115
+ * EnvironmentName: "my-env"
116
116
  * };
117
117
  * const command = new DescribeEnvironmentHealthCommand(input);
118
118
  * const response = await client.send(command);
119
- * /* response ==
119
+ * /* response is
120
120
  * {
121
- * "ApplicationMetrics": {
122
- * "Duration": 10,
123
- * "Latency": {
124
- * "P10": 0.001,
125
- * "P50": 0.001,
126
- * "P75": 0.002,
127
- * "P85": 0.003,
128
- * "P90": 0.003,
129
- * "P95": 0.004,
130
- * "P99": 0.004,
131
- * "P999": 0.004
121
+ * ApplicationMetrics: {
122
+ * Duration: 10,
123
+ * Latency: {
124
+ * P10: 0.001,
125
+ * P50: 0.001,
126
+ * P75: 0.002,
127
+ * P85: 0.003,
128
+ * P90: 0.003,
129
+ * P95: 0.004,
130
+ * P99: 0.004,
131
+ * P999: 0.004
132
132
  * },
133
- * "RequestCount": 45,
134
- * "StatusCodes": {
135
- * "Status2xx": 45,
136
- * "Status3xx": 0,
137
- * "Status4xx": 0,
138
- * "Status5xx": 0
133
+ * RequestCount: 45,
134
+ * StatusCodes: {
135
+ * Status2xx: 45,
136
+ * Status3xx: 0,
137
+ * Status4xx: 0,
138
+ * Status5xx: 0
139
139
  * }
140
140
  * },
141
- * "Causes": [],
142
- * "Color": "Green",
143
- * "EnvironmentName": "my-env",
144
- * "HealthStatus": "Ok",
145
- * "InstancesHealth": {
146
- * "Degraded": 0,
147
- * "Info": 0,
148
- * "NoData": 0,
149
- * "Ok": 1,
150
- * "Pending": 0,
151
- * "Severe": 0,
152
- * "Unknown": 0,
153
- * "Warning": 0
141
+ * Causes: [],
142
+ * Color: "Green",
143
+ * EnvironmentName: "my-env",
144
+ * HealthStatus: "Ok",
145
+ * InstancesHealth: {
146
+ * Degraded: 0,
147
+ * Info: 0,
148
+ * NoData: 0,
149
+ * Ok: 1,
150
+ * Pending: 0,
151
+ * Severe: 0,
152
+ * Unknown: 0,
153
+ * Warning: 0
154
154
  * },
155
- * "RefreshedAt": "2015-08-20T21:09:18Z"
155
+ * RefreshedAt: "2015-08-20T21:09:18Z"
156
156
  * }
157
157
  * *\/
158
- * // example id: to-view-environment-health-1456277109510
159
158
  * ```
160
159
  *
160
+ * @public
161
161
  */
162
162
  export declare class DescribeEnvironmentHealthCommand extends DescribeEnvironmentHealthCommand_base {
163
163
  /** @internal type navigation helper, not in runtime. */
@@ -72,6 +72,7 @@ declare const DescribeEnvironmentManagedActionHistoryCommand_base: {
72
72
  * @throws {@link ElasticBeanstalkServiceException}
73
73
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
74
74
  *
75
+ *
75
76
  * @public
76
77
  */
77
78
  export declare class DescribeEnvironmentManagedActionHistoryCommand extends DescribeEnvironmentManagedActionHistoryCommand_base {
@@ -67,6 +67,7 @@ declare const DescribeEnvironmentManagedActionsCommand_base: {
67
67
  * @throws {@link ElasticBeanstalkServiceException}
68
68
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
69
69
  *
70
+ *
70
71
  * @public
71
72
  */
72
73
  export declare class DescribeEnvironmentManagedActionsCommand extends DescribeEnvironmentManagedActionsCommand_base {
@@ -97,47 +97,47 @@ declare const DescribeEnvironmentResourcesCommand_base: {
97
97
  * @throws {@link ElasticBeanstalkServiceException}
98
98
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
99
99
  *
100
- * @public
100
+ *
101
101
  * @example To view information about the AWS resources in your environment
102
102
  * ```javascript
103
103
  * // The following operation retrieves information about resources in an environment named my-env:
104
104
  * const input = {
105
- * "EnvironmentName": "my-env"
105
+ * EnvironmentName: "my-env"
106
106
  * };
107
107
  * const command = new DescribeEnvironmentResourcesCommand(input);
108
108
  * const response = await client.send(command);
109
- * /* response ==
109
+ * /* response is
110
110
  * {
111
- * "EnvironmentResources": {
112
- * "AutoScalingGroups": [
111
+ * EnvironmentResources: {
112
+ * AutoScalingGroups: [
113
113
  * {
114
- * "Name": "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingGroup-QSB2ZO88SXZT"
114
+ * Name: "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingGroup-QSB2ZO88SXZT"
115
115
  * }
116
116
  * ],
117
- * "EnvironmentName": "my-env",
118
- * "Instances": [
117
+ * EnvironmentName: "my-env",
118
+ * Instances: [
119
119
  * {
120
- * "Id": "i-0c91c786"
120
+ * Id: "i-0c91c786"
121
121
  * }
122
122
  * ],
123
- * "LaunchConfigurations": [
123
+ * LaunchConfigurations: [
124
124
  * {
125
- * "Name": "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingLaunchConfiguration-1UUVQIBC96TQ2"
125
+ * Name: "awseb-e-qu3fyyjyjs-stack-AWSEBAutoScalingLaunchConfiguration-1UUVQIBC96TQ2"
126
126
  * }
127
127
  * ],
128
- * "LoadBalancers": [
128
+ * LoadBalancers: [
129
129
  * {
130
- * "Name": "awseb-e-q-AWSEBLoa-1EEPZ0K98BIF0"
130
+ * Name: "awseb-e-q-AWSEBLoa-1EEPZ0K98BIF0"
131
131
  * }
132
132
  * ],
133
- * "Queues": [],
134
- * "Triggers": []
133
+ * Queues: [],
134
+ * Triggers: []
135
135
  * }
136
136
  * }
137
137
  * *\/
138
- * // example id: to-view-information-about-the-aws-resources-in-your-environment-1456277206232
139
138
  * ```
140
139
  *
140
+ * @public
141
141
  */
142
142
  export declare class DescribeEnvironmentResourcesCommand extends DescribeEnvironmentResourcesCommand_base {
143
143
  /** @internal type navigation helper, not in runtime. */
@@ -110,45 +110,45 @@ declare const DescribeEnvironmentsCommand_base: {
110
110
  * @throws {@link ElasticBeanstalkServiceException}
111
111
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
112
112
  *
113
- * @public
113
+ *
114
114
  * @example To view information about an environment
115
115
  * ```javascript
116
116
  * // The following operation retrieves information about an environment named my-env:
117
117
  * const input = {
118
- * "EnvironmentNames": [
118
+ * EnvironmentNames: [
119
119
  * "my-env"
120
120
  * ]
121
121
  * };
122
122
  * const command = new DescribeEnvironmentsCommand(input);
123
123
  * const response = await client.send(command);
124
- * /* response ==
124
+ * /* response is
125
125
  * {
126
- * "Environments": [
126
+ * Environments: [
127
127
  * {
128
- * "AbortableOperationInProgress": false,
129
- * "ApplicationName": "my-app",
130
- * "CNAME": "my-env.elasticbeanstalk.com",
131
- * "DateCreated": "2015-08-07T20:48:49.599Z",
132
- * "DateUpdated": "2015-08-12T18:16:55.019Z",
133
- * "EndpointURL": "awseb-e-w-AWSEBLoa-1483140XB0Q4L-109QXY8121.us-west-2.elb.amazonaws.com",
134
- * "EnvironmentId": "e-rpqsewtp2j",
135
- * "EnvironmentName": "my-env",
136
- * "Health": "Green",
137
- * "SolutionStackName": "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
138
- * "Status": "Ready",
139
- * "Tier": {
140
- * "Name": "WebServer",
141
- * "Type": "Standard",
142
- * "Version": " "
128
+ * AbortableOperationInProgress: false,
129
+ * ApplicationName: "my-app",
130
+ * CNAME: "my-env.elasticbeanstalk.com",
131
+ * DateCreated: "2015-08-07T20:48:49.599Z",
132
+ * DateUpdated: "2015-08-12T18:16:55.019Z",
133
+ * EndpointURL: "awseb-e-w-AWSEBLoa-1483140XB0Q4L-109QXY8121.us-west-2.elb.amazonaws.com",
134
+ * EnvironmentId: "e-rpqsewtp2j",
135
+ * EnvironmentName: "my-env",
136
+ * Health: "Green",
137
+ * SolutionStackName: "64bit Amazon Linux 2015.03 v2.0.0 running Tomcat 8 Java 8",
138
+ * Status: "Ready",
139
+ * Tier: {
140
+ * Name: "WebServer",
141
+ * Type: "Standard",
142
+ * Version: " "
143
143
  * },
144
- * "VersionLabel": "7f58-stage-150812_025409"
144
+ * VersionLabel: "7f58-stage-150812_025409"
145
145
  * }
146
146
  * ]
147
147
  * }
148
148
  * *\/
149
- * // example id: to-view-information-about-an-environment-1456277288662
150
149
  * ```
151
150
  *
151
+ * @public
152
152
  */
153
153
  export declare class DescribeEnvironmentsCommand extends DescribeEnvironmentsCommand_base {
154
154
  /** @internal type navigation helper, not in runtime. */
@@ -82,55 +82,55 @@ declare const DescribeEventsCommand_base: {
82
82
  * @throws {@link ElasticBeanstalkServiceException}
83
83
  * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
84
84
  *
85
- * @public
85
+ *
86
86
  * @example To view events for an environment
87
87
  * ```javascript
88
88
  * // The following operation retrieves events for an environment named my-env:
89
89
  * const input = {
90
- * "EnvironmentName": "my-env"
90
+ * EnvironmentName: "my-env"
91
91
  * };
92
92
  * const command = new DescribeEventsCommand(input);
93
93
  * const response = await client.send(command);
94
- * /* response ==
94
+ * /* response is
95
95
  * {
96
- * "Events": [
96
+ * Events: [
97
97
  * {
98
- * "ApplicationName": "my-app",
99
- * "EnvironmentName": "my-env",
100
- * "EventDate": "2015-08-20T07:06:53.535Z",
101
- * "Message": "Environment health has transitioned from Info to Ok.",
102
- * "Severity": "INFO"
98
+ * ApplicationName: "my-app",
99
+ * EnvironmentName: "my-env",
100
+ * EventDate: "2015-08-20T07:06:53.535Z",
101
+ * Message: "Environment health has transitioned from Info to Ok.",
102
+ * Severity: "INFO"
103
103
  * },
104
104
  * {
105
- * "ApplicationName": "my-app",
106
- * "EnvironmentName": "my-env",
107
- * "EventDate": "2015-08-20T07:06:02.049Z",
108
- * "Message": "Environment update completed successfully.",
109
- * "RequestId": "b7f3960b-4709-11e5-ba1e-07e16200da41",
110
- * "Severity": "INFO"
105
+ * ApplicationName: "my-app",
106
+ * EnvironmentName: "my-env",
107
+ * EventDate: "2015-08-20T07:06:02.049Z",
108
+ * Message: "Environment update completed successfully.",
109
+ * RequestId: "b7f3960b-4709-11e5-ba1e-07e16200da41",
110
+ * Severity: "INFO"
111
111
  * },
112
112
  * {
113
- * "ApplicationName": "my-app",
114
- * "EnvironmentName": "my-env",
115
- * "EventDate": "2015-08-13T19:16:27.561Z",
116
- * "Message": "Using elasticbeanstalk-us-west-2-012445113685 as Amazon S3 storage bucket for environment data.",
117
- * "RequestId": "ca8dfbf6-41ef-11e5-988b-651aa638f46b",
118
- * "Severity": "INFO"
113
+ * ApplicationName: "my-app",
114
+ * EnvironmentName: "my-env",
115
+ * EventDate: "2015-08-13T19:16:27.561Z",
116
+ * Message: "Using elasticbeanstalk-us-west-2-012445113685 as Amazon S3 storage bucket for environment data.",
117
+ * RequestId: "ca8dfbf6-41ef-11e5-988b-651aa638f46b",
118
+ * Severity: "INFO"
119
119
  * },
120
120
  * {
121
- * "ApplicationName": "my-app",
122
- * "EnvironmentName": "my-env",
123
- * "EventDate": "2015-08-13T19:16:26.581Z",
124
- * "Message": "createEnvironment is starting.",
125
- * "RequestId": "cdfba8f6-41ef-11e5-988b-65638f41aa6b",
126
- * "Severity": "INFO"
121
+ * ApplicationName: "my-app",
122
+ * EnvironmentName: "my-env",
123
+ * EventDate: "2015-08-13T19:16:26.581Z",
124
+ * Message: "createEnvironment is starting.",
125
+ * RequestId: "cdfba8f6-41ef-11e5-988b-65638f41aa6b",
126
+ * Severity: "INFO"
127
127
  * }
128
128
  * ]
129
129
  * }
130
130
  * *\/
131
- * // example id: to-view-events-for-an-environment-1456277367589
132
131
  * ```
133
132
  *
133
+ * @public
134
134
  */
135
135
  export declare class DescribeEventsCommand extends DescribeEventsCommand_base {
136
136
  /** @internal type navigation helper, not in runtime. */