@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
@@ -45,6 +45,31 @@ export interface DescribeConfigurationOptionsCommandOutput extends Configuration
45
45
  * };
46
46
  * const command = new DescribeConfigurationOptionsCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // ConfigurationOptionsDescription
49
+ * // SolutionStackName: "STRING_VALUE",
50
+ * // PlatformArn: "STRING_VALUE",
51
+ * // Options: [ // ConfigurationOptionDescriptionsList
52
+ * // { // ConfigurationOptionDescription
53
+ * // Namespace: "STRING_VALUE",
54
+ * // Name: "STRING_VALUE",
55
+ * // DefaultValue: "STRING_VALUE",
56
+ * // ChangeSeverity: "STRING_VALUE",
57
+ * // UserDefined: true || false,
58
+ * // ValueType: "Scalar" || "List",
59
+ * // ValueOptions: [ // ConfigurationOptionPossibleValues
60
+ * // "STRING_VALUE",
61
+ * // ],
62
+ * // MinValue: Number("int"),
63
+ * // MaxValue: Number("int"),
64
+ * // MaxLength: Number("int"),
65
+ * // Regex: { // OptionRestrictionRegex
66
+ * // Pattern: "STRING_VALUE",
67
+ * // Label: "STRING_VALUE",
68
+ * // },
69
+ * // },
70
+ * // ],
71
+ * // };
72
+ *
48
73
  * ```
49
74
  *
50
75
  * @param DescribeConfigurationOptionsCommandInput - {@link DescribeConfigurationOptionsCommandInput}
@@ -56,6 +81,8 @@ export interface DescribeConfigurationOptionsCommandOutput extends Configuration
56
81
  * @throws {@link TooManyBucketsException} (client fault)
57
82
  * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
58
83
  *
84
+ * @throws {@link ElasticBeanstalkServiceException}
85
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
59
86
  *
60
87
  * @example To view configuration options for an environment
61
88
  * ```javascript
@@ -47,6 +47,30 @@ export interface DescribeConfigurationSettingsCommandOutput extends Configuratio
47
47
  * };
48
48
  * const command = new DescribeConfigurationSettingsCommand(input);
49
49
  * const response = await client.send(command);
50
+ * // { // ConfigurationSettingsDescriptions
51
+ * // ConfigurationSettings: [ // ConfigurationSettingsDescriptionList
52
+ * // { // ConfigurationSettingsDescription
53
+ * // SolutionStackName: "STRING_VALUE",
54
+ * // PlatformArn: "STRING_VALUE",
55
+ * // ApplicationName: "STRING_VALUE",
56
+ * // TemplateName: "STRING_VALUE",
57
+ * // Description: "STRING_VALUE",
58
+ * // EnvironmentName: "STRING_VALUE",
59
+ * // DeploymentStatus: "deployed" || "pending" || "failed",
60
+ * // DateCreated: new Date("TIMESTAMP"),
61
+ * // DateUpdated: new Date("TIMESTAMP"),
62
+ * // OptionSettings: [ // ConfigurationOptionSettingsList
63
+ * // { // ConfigurationOptionSetting
64
+ * // ResourceName: "STRING_VALUE",
65
+ * // Namespace: "STRING_VALUE",
66
+ * // OptionName: "STRING_VALUE",
67
+ * // Value: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // },
71
+ * // ],
72
+ * // };
73
+ *
50
74
  * ```
51
75
  *
52
76
  * @param DescribeConfigurationSettingsCommandInput - {@link DescribeConfigurationSettingsCommandInput}
@@ -58,6 +82,8 @@ export interface DescribeConfigurationSettingsCommandOutput extends Configuratio
58
82
  * @throws {@link TooManyBucketsException} (client fault)
59
83
  * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
60
84
  *
85
+ * @throws {@link ElasticBeanstalkServiceException}
86
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
61
87
  *
62
88
  * @example To view configurations settings for an environment
63
89
  * ```javascript
@@ -37,6 +37,47 @@ export interface DescribeEnvironmentHealthCommandOutput extends DescribeEnvironm
37
37
  * };
38
38
  * const command = new DescribeEnvironmentHealthCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // DescribeEnvironmentHealthResult
41
+ * // EnvironmentName: "STRING_VALUE",
42
+ * // HealthStatus: "STRING_VALUE",
43
+ * // Status: "Green" || "Yellow" || "Red" || "Grey",
44
+ * // Color: "STRING_VALUE",
45
+ * // Causes: [ // Causes
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // ApplicationMetrics: { // ApplicationMetrics
49
+ * // Duration: Number("int"),
50
+ * // RequestCount: Number("int"),
51
+ * // StatusCodes: { // StatusCodes
52
+ * // Status2xx: Number("int"),
53
+ * // Status3xx: Number("int"),
54
+ * // Status4xx: Number("int"),
55
+ * // Status5xx: Number("int"),
56
+ * // },
57
+ * // Latency: { // Latency
58
+ * // P999: Number("double"),
59
+ * // P99: Number("double"),
60
+ * // P95: Number("double"),
61
+ * // P90: Number("double"),
62
+ * // P85: Number("double"),
63
+ * // P75: Number("double"),
64
+ * // P50: Number("double"),
65
+ * // P10: Number("double"),
66
+ * // },
67
+ * // },
68
+ * // InstancesHealth: { // InstanceHealthSummary
69
+ * // NoData: Number("int"),
70
+ * // Unknown: Number("int"),
71
+ * // Pending: Number("int"),
72
+ * // Ok: Number("int"),
73
+ * // Info: Number("int"),
74
+ * // Warning: Number("int"),
75
+ * // Degraded: Number("int"),
76
+ * // Severe: Number("int"),
77
+ * // },
78
+ * // RefreshedAt: new Date("TIMESTAMP"),
79
+ * // };
80
+ *
40
81
  * ```
41
82
  *
42
83
  * @param DescribeEnvironmentHealthCommandInput - {@link DescribeEnvironmentHealthCommandInput}
@@ -52,6 +93,8 @@ export interface DescribeEnvironmentHealthCommandOutput extends DescribeEnvironm
52
93
  * <p>One or more input parameters is not valid. Please correct the input parameters and try
53
94
  * the operation again.</p>
54
95
  *
96
+ * @throws {@link ElasticBeanstalkServiceException}
97
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
55
98
  *
56
99
  * @example To view environment health
57
100
  * ```javascript
@@ -34,6 +34,22 @@ export interface DescribeEnvironmentManagedActionHistoryCommandOutput extends De
34
34
  * };
35
35
  * const command = new DescribeEnvironmentManagedActionHistoryCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeEnvironmentManagedActionHistoryResult
38
+ * // ManagedActionHistoryItems: [ // ManagedActionHistoryItems
39
+ * // { // ManagedActionHistoryItem
40
+ * // ActionId: "STRING_VALUE",
41
+ * // ActionType: "InstanceRefresh" || "PlatformUpdate" || "Unknown",
42
+ * // ActionDescription: "STRING_VALUE",
43
+ * // FailureType: "UpdateCancelled" || "CancellationFailed" || "RollbackFailed" || "RollbackSuccessful" || "InternalFailure" || "InvalidEnvironmentState" || "PermissionsError",
44
+ * // Status: "Completed" || "Failed" || "Unknown",
45
+ * // FailureDescription: "STRING_VALUE",
46
+ * // ExecutedTime: new Date("TIMESTAMP"),
47
+ * // FinishedTime: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
37
53
  * ```
38
54
  *
39
55
  * @param DescribeEnvironmentManagedActionHistoryCommandInput - {@link DescribeEnvironmentManagedActionHistoryCommandInput}
@@ -45,6 +61,8 @@ export interface DescribeEnvironmentManagedActionHistoryCommandOutput extends De
45
61
  * @throws {@link ElasticBeanstalkServiceException} (client fault)
46
62
  * <p>A generic service exception has occurred.</p>
47
63
  *
64
+ * @throws {@link ElasticBeanstalkServiceException}
65
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
48
66
  *
49
67
  */
50
68
  export declare class DescribeEnvironmentManagedActionHistoryCommand extends $Command<DescribeEnvironmentManagedActionHistoryCommandInput, DescribeEnvironmentManagedActionHistoryCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -33,6 +33,18 @@ export interface DescribeEnvironmentManagedActionsCommandOutput extends Describe
33
33
  * };
34
34
  * const command = new DescribeEnvironmentManagedActionsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeEnvironmentManagedActionsResult
37
+ * // ManagedActions: [ // ManagedActions
38
+ * // { // ManagedAction
39
+ * // ActionId: "STRING_VALUE",
40
+ * // ActionDescription: "STRING_VALUE",
41
+ * // ActionType: "InstanceRefresh" || "PlatformUpdate" || "Unknown",
42
+ * // Status: "Scheduled" || "Pending" || "Running" || "Unknown",
43
+ * // WindowStartTime: new Date("TIMESTAMP"),
44
+ * // },
45
+ * // ],
46
+ * // };
47
+ *
36
48
  * ```
37
49
  *
38
50
  * @param DescribeEnvironmentManagedActionsCommandInput - {@link DescribeEnvironmentManagedActionsCommandInput}
@@ -44,6 +56,8 @@ export interface DescribeEnvironmentManagedActionsCommandOutput extends Describe
44
56
  * @throws {@link ElasticBeanstalkServiceException} (client fault)
45
57
  * <p>A generic service exception has occurred.</p>
46
58
  *
59
+ * @throws {@link ElasticBeanstalkServiceException}
60
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
47
61
  *
48
62
  */
49
63
  export declare class DescribeEnvironmentManagedActionsCommand extends $Command<DescribeEnvironmentManagedActionsCommandInput, DescribeEnvironmentManagedActionsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -32,6 +32,48 @@ export interface DescribeEnvironmentResourcesCommandOutput extends EnvironmentRe
32
32
  * };
33
33
  * const command = new DescribeEnvironmentResourcesCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // EnvironmentResourceDescriptionsMessage
36
+ * // EnvironmentResources: { // EnvironmentResourceDescription
37
+ * // EnvironmentName: "STRING_VALUE",
38
+ * // AutoScalingGroups: [ // AutoScalingGroupList
39
+ * // { // AutoScalingGroup
40
+ * // Name: "STRING_VALUE",
41
+ * // },
42
+ * // ],
43
+ * // Instances: [ // InstanceList
44
+ * // { // Instance
45
+ * // Id: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // LaunchConfigurations: [ // LaunchConfigurationList
49
+ * // { // LaunchConfiguration
50
+ * // Name: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // LaunchTemplates: [ // LaunchTemplateList
54
+ * // { // LaunchTemplate
55
+ * // Id: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // LoadBalancers: [ // LoadBalancerList
59
+ * // { // LoadBalancer
60
+ * // Name: "STRING_VALUE",
61
+ * // },
62
+ * // ],
63
+ * // Triggers: [ // TriggerList
64
+ * // { // Trigger
65
+ * // Name: "STRING_VALUE",
66
+ * // },
67
+ * // ],
68
+ * // Queues: [ // QueueList
69
+ * // { // Queue
70
+ * // Name: "STRING_VALUE",
71
+ * // URL: "STRING_VALUE",
72
+ * // },
73
+ * // ],
74
+ * // },
75
+ * // };
76
+ *
35
77
  * ```
36
78
  *
37
79
  * @param DescribeEnvironmentResourcesCommandInput - {@link DescribeEnvironmentResourcesCommandInput}
@@ -44,6 +86,8 @@ export interface DescribeEnvironmentResourcesCommandOutput extends EnvironmentRe
44
86
  * <p>The specified account does not have sufficient privileges for one or more AWS
45
87
  * services.</p>
46
88
  *
89
+ * @throws {@link ElasticBeanstalkServiceException}
90
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
47
91
  *
48
92
  * @example To view information about the AWS resources in your environment
49
93
  * ```javascript
@@ -42,6 +42,55 @@ export interface DescribeEnvironmentsCommandOutput extends EnvironmentDescriptio
42
42
  * };
43
43
  * const command = new DescribeEnvironmentsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // EnvironmentDescriptionsMessage
46
+ * // Environments: [ // EnvironmentDescriptionsList
47
+ * // { // EnvironmentDescription
48
+ * // EnvironmentName: "STRING_VALUE",
49
+ * // EnvironmentId: "STRING_VALUE",
50
+ * // ApplicationName: "STRING_VALUE",
51
+ * // VersionLabel: "STRING_VALUE",
52
+ * // SolutionStackName: "STRING_VALUE",
53
+ * // PlatformArn: "STRING_VALUE",
54
+ * // TemplateName: "STRING_VALUE",
55
+ * // Description: "STRING_VALUE",
56
+ * // EndpointURL: "STRING_VALUE",
57
+ * // CNAME: "STRING_VALUE",
58
+ * // DateCreated: new Date("TIMESTAMP"),
59
+ * // DateUpdated: new Date("TIMESTAMP"),
60
+ * // Status: "Aborting" || "Launching" || "Updating" || "LinkingFrom" || "LinkingTo" || "Ready" || "Terminating" || "Terminated",
61
+ * // AbortableOperationInProgress: true || false,
62
+ * // Health: "Green" || "Yellow" || "Red" || "Grey",
63
+ * // HealthStatus: "NoData" || "Unknown" || "Pending" || "Ok" || "Info" || "Warning" || "Degraded" || "Severe" || "Suspended",
64
+ * // Resources: { // EnvironmentResourcesDescription
65
+ * // LoadBalancer: { // LoadBalancerDescription
66
+ * // LoadBalancerName: "STRING_VALUE",
67
+ * // Domain: "STRING_VALUE",
68
+ * // Listeners: [ // LoadBalancerListenersDescription
69
+ * // { // Listener
70
+ * // Protocol: "STRING_VALUE",
71
+ * // Port: Number("int"),
72
+ * // },
73
+ * // ],
74
+ * // },
75
+ * // },
76
+ * // Tier: { // EnvironmentTier
77
+ * // Name: "STRING_VALUE",
78
+ * // Type: "STRING_VALUE",
79
+ * // Version: "STRING_VALUE",
80
+ * // },
81
+ * // EnvironmentLinks: [ // EnvironmentLinks
82
+ * // { // EnvironmentLink
83
+ * // LinkName: "STRING_VALUE",
84
+ * // EnvironmentName: "STRING_VALUE",
85
+ * // },
86
+ * // ],
87
+ * // EnvironmentArn: "STRING_VALUE",
88
+ * // OperationsRole: "STRING_VALUE",
89
+ * // },
90
+ * // ],
91
+ * // NextToken: "STRING_VALUE",
92
+ * // };
93
+ *
45
94
  * ```
46
95
  *
47
96
  * @param DescribeEnvironmentsCommandInput - {@link DescribeEnvironmentsCommandInput}
@@ -50,6 +99,8 @@ export interface DescribeEnvironmentsCommandOutput extends EnvironmentDescriptio
50
99
  * @see {@link DescribeEnvironmentsCommandOutput} for command's `response` shape.
51
100
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
52
101
  *
102
+ * @throws {@link ElasticBeanstalkServiceException}
103
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
53
104
  *
54
105
  * @example To view information about an environment
55
106
  * ```javascript
@@ -46,6 +46,23 @@ export interface DescribeEventsCommandOutput extends EventDescriptionsMessage, _
46
46
  * };
47
47
  * const command = new DescribeEventsCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // EventDescriptionsMessage
50
+ * // Events: [ // EventDescriptionList
51
+ * // { // EventDescription
52
+ * // EventDate: new Date("TIMESTAMP"),
53
+ * // Message: "STRING_VALUE",
54
+ * // ApplicationName: "STRING_VALUE",
55
+ * // VersionLabel: "STRING_VALUE",
56
+ * // TemplateName: "STRING_VALUE",
57
+ * // EnvironmentName: "STRING_VALUE",
58
+ * // PlatformArn: "STRING_VALUE",
59
+ * // RequestId: "STRING_VALUE",
60
+ * // Severity: "TRACE" || "DEBUG" || "INFO" || "WARN" || "ERROR" || "FATAL",
61
+ * // },
62
+ * // ],
63
+ * // NextToken: "STRING_VALUE",
64
+ * // };
65
+ *
49
66
  * ```
50
67
  *
51
68
  * @param DescribeEventsCommandInput - {@link DescribeEventsCommandInput}
@@ -54,6 +71,8 @@ export interface DescribeEventsCommandOutput extends EventDescriptionsMessage, _
54
71
  * @see {@link DescribeEventsCommandOutput} for command's `response` shape.
55
72
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
56
73
  *
74
+ * @throws {@link ElasticBeanstalkServiceException}
75
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
57
76
  *
58
77
  * @example To view events for an environment
59
78
  * ```javascript
@@ -38,6 +38,65 @@ export interface DescribeInstancesHealthCommandOutput extends DescribeInstancesH
38
38
  * };
39
39
  * const command = new DescribeInstancesHealthCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // DescribeInstancesHealthResult
42
+ * // InstanceHealthList: [ // InstanceHealthList
43
+ * // { // SingleInstanceHealth
44
+ * // InstanceId: "STRING_VALUE",
45
+ * // HealthStatus: "STRING_VALUE",
46
+ * // Color: "STRING_VALUE",
47
+ * // Causes: [ // Causes
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // LaunchedAt: new Date("TIMESTAMP"),
51
+ * // ApplicationMetrics: { // ApplicationMetrics
52
+ * // Duration: Number("int"),
53
+ * // RequestCount: Number("int"),
54
+ * // StatusCodes: { // StatusCodes
55
+ * // Status2xx: Number("int"),
56
+ * // Status3xx: Number("int"),
57
+ * // Status4xx: Number("int"),
58
+ * // Status5xx: Number("int"),
59
+ * // },
60
+ * // Latency: { // Latency
61
+ * // P999: Number("double"),
62
+ * // P99: Number("double"),
63
+ * // P95: Number("double"),
64
+ * // P90: Number("double"),
65
+ * // P85: Number("double"),
66
+ * // P75: Number("double"),
67
+ * // P50: Number("double"),
68
+ * // P10: Number("double"),
69
+ * // },
70
+ * // },
71
+ * // System: { // SystemStatus
72
+ * // CPUUtilization: { // CPUUtilization
73
+ * // User: Number("double"),
74
+ * // Nice: Number("double"),
75
+ * // System: Number("double"),
76
+ * // Idle: Number("double"),
77
+ * // IOWait: Number("double"),
78
+ * // IRQ: Number("double"),
79
+ * // SoftIRQ: Number("double"),
80
+ * // Privileged: Number("double"),
81
+ * // },
82
+ * // LoadAverage: [ // LoadAverage
83
+ * // Number("double"),
84
+ * // ],
85
+ * // },
86
+ * // Deployment: { // Deployment
87
+ * // VersionLabel: "STRING_VALUE",
88
+ * // DeploymentId: Number("long"),
89
+ * // Status: "STRING_VALUE",
90
+ * // DeploymentTime: new Date("TIMESTAMP"),
91
+ * // },
92
+ * // AvailabilityZone: "STRING_VALUE",
93
+ * // InstanceType: "STRING_VALUE",
94
+ * // },
95
+ * // ],
96
+ * // RefreshedAt: new Date("TIMESTAMP"),
97
+ * // NextToken: "STRING_VALUE",
98
+ * // };
99
+ *
41
100
  * ```
42
101
  *
43
102
  * @param DescribeInstancesHealthCommandInput - {@link DescribeInstancesHealthCommandInput}
@@ -53,6 +112,8 @@ export interface DescribeInstancesHealthCommandOutput extends DescribeInstancesH
53
112
  * <p>One or more input parameters is not valid. Please correct the input parameters and try
54
113
  * the operation again.</p>
55
114
  *
115
+ * @throws {@link ElasticBeanstalkServiceException}
116
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
56
117
  *
57
118
  * @example To view environment health
58
119
  * ```javascript
@@ -34,6 +34,51 @@ export interface DescribePlatformVersionCommandOutput extends DescribePlatformVe
34
34
  * };
35
35
  * const command = new DescribePlatformVersionCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribePlatformVersionResult
38
+ * // PlatformDescription: { // PlatformDescription
39
+ * // PlatformArn: "STRING_VALUE",
40
+ * // PlatformOwner: "STRING_VALUE",
41
+ * // PlatformName: "STRING_VALUE",
42
+ * // PlatformVersion: "STRING_VALUE",
43
+ * // SolutionStackName: "STRING_VALUE",
44
+ * // PlatformStatus: "Creating" || "Failed" || "Ready" || "Deleting" || "Deleted",
45
+ * // DateCreated: new Date("TIMESTAMP"),
46
+ * // DateUpdated: new Date("TIMESTAMP"),
47
+ * // PlatformCategory: "STRING_VALUE",
48
+ * // Description: "STRING_VALUE",
49
+ * // Maintainer: "STRING_VALUE",
50
+ * // OperatingSystemName: "STRING_VALUE",
51
+ * // OperatingSystemVersion: "STRING_VALUE",
52
+ * // ProgrammingLanguages: [ // PlatformProgrammingLanguages
53
+ * // { // PlatformProgrammingLanguage
54
+ * // Name: "STRING_VALUE",
55
+ * // Version: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // Frameworks: [ // PlatformFrameworks
59
+ * // { // PlatformFramework
60
+ * // Name: "STRING_VALUE",
61
+ * // Version: "STRING_VALUE",
62
+ * // },
63
+ * // ],
64
+ * // CustomAmiList: [ // CustomAmiList
65
+ * // { // CustomAmi
66
+ * // VirtualizationType: "STRING_VALUE",
67
+ * // ImageId: "STRING_VALUE",
68
+ * // },
69
+ * // ],
70
+ * // SupportedTierList: [ // SupportedTierList
71
+ * // "STRING_VALUE",
72
+ * // ],
73
+ * // SupportedAddonList: [ // SupportedAddonList
74
+ * // "STRING_VALUE",
75
+ * // ],
76
+ * // PlatformLifecycleState: "STRING_VALUE",
77
+ * // PlatformBranchName: "STRING_VALUE",
78
+ * // PlatformBranchLifecycleState: "STRING_VALUE",
79
+ * // },
80
+ * // };
81
+ *
37
82
  * ```
38
83
  *
39
84
  * @param DescribePlatformVersionCommandInput - {@link DescribePlatformVersionCommandInput}
@@ -49,6 +94,8 @@ export interface DescribePlatformVersionCommandOutput extends DescribePlatformVe
49
94
  * <p>The specified account does not have sufficient privileges for one or more AWS
50
95
  * services.</p>
51
96
  *
97
+ * @throws {@link ElasticBeanstalkServiceException}
98
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
52
99
  *
53
100
  */
54
101
  export declare class DescribePlatformVersionCommand extends $Command<DescribePlatformVersionCommandInput, DescribePlatformVersionCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DisassociateEnvironmentOperationsRoleCommandOutput extends __Me
34
34
  * };
35
35
  * const command = new DisassociateEnvironmentOperationsRoleCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DisassociateEnvironmentOperationsRoleCommandInput - {@link DisassociateEnvironmentOperationsRoleCommandInput}
@@ -46,6 +48,8 @@ export interface DisassociateEnvironmentOperationsRoleCommandOutput extends __Me
46
48
  * <p>The specified account does not have sufficient privileges for one or more AWS
47
49
  * services.</p>
48
50
  *
51
+ * @throws {@link ElasticBeanstalkServiceException}
52
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
49
53
  *
50
54
  */
51
55
  export declare class DisassociateEnvironmentOperationsRoleCommand extends $Command<DisassociateEnvironmentOperationsRoleCommandInput, DisassociateEnvironmentOperationsRoleCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -30,6 +30,20 @@ export interface ListAvailableSolutionStacksCommandOutput extends ListAvailableS
30
30
  * const input = {};
31
31
  * const command = new ListAvailableSolutionStacksCommand(input);
32
32
  * const response = await client.send(command);
33
+ * // { // ListAvailableSolutionStacksResultMessage
34
+ * // SolutionStacks: [ // AvailableSolutionStackNamesList
35
+ * // "STRING_VALUE",
36
+ * // ],
37
+ * // SolutionStackDetails: [ // AvailableSolutionStackDetailsList
38
+ * // { // SolutionStackDescription
39
+ * // SolutionStackName: "STRING_VALUE",
40
+ * // PermittedFileTypes: [ // SolutionStackFileTypeList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // },
44
+ * // ],
45
+ * // };
46
+ *
33
47
  * ```
34
48
  *
35
49
  * @param ListAvailableSolutionStacksCommandInput - {@link ListAvailableSolutionStacksCommandInput}
@@ -38,6 +52,8 @@ export interface ListAvailableSolutionStacksCommandOutput extends ListAvailableS
38
52
  * @see {@link ListAvailableSolutionStacksCommandOutput} for command's `response` shape.
39
53
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
40
54
  *
55
+ * @throws {@link ElasticBeanstalkServiceException}
56
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
41
57
  *
42
58
  * @example To view solution stacks
43
59
  * ```javascript
@@ -44,6 +44,21 @@ export interface ListPlatformBranchesCommandOutput extends ListPlatformBranchesR
44
44
  * };
45
45
  * const command = new ListPlatformBranchesCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // { // ListPlatformBranchesResult
48
+ * // PlatformBranchSummaryList: [ // PlatformBranchSummaryList
49
+ * // { // PlatformBranchSummary
50
+ * // PlatformName: "STRING_VALUE",
51
+ * // BranchName: "STRING_VALUE",
52
+ * // LifecycleState: "STRING_VALUE",
53
+ * // BranchOrder: Number("int"),
54
+ * // SupportedTierList: [ // SupportedTierList
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // },
58
+ * // ],
59
+ * // NextToken: "STRING_VALUE",
60
+ * // };
61
+ *
47
62
  * ```
48
63
  *
49
64
  * @param ListPlatformBranchesCommandInput - {@link ListPlatformBranchesCommandInput}
@@ -52,6 +67,8 @@ export interface ListPlatformBranchesCommandOutput extends ListPlatformBranchesR
52
67
  * @see {@link ListPlatformBranchesCommandOutput} for command's `response` shape.
53
68
  * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape.
54
69
  *
70
+ * @throws {@link ElasticBeanstalkServiceException}
71
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
55
72
  *
56
73
  */
57
74
  export declare class ListPlatformBranchesCommand extends $Command<ListPlatformBranchesCommandInput, ListPlatformBranchesCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -45,6 +45,30 @@ export interface ListPlatformVersionsCommandOutput extends ListPlatformVersionsR
45
45
  * };
46
46
  * const command = new ListPlatformVersionsCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // ListPlatformVersionsResult
49
+ * // PlatformSummaryList: [ // PlatformSummaryList
50
+ * // { // PlatformSummary
51
+ * // PlatformArn: "STRING_VALUE",
52
+ * // PlatformOwner: "STRING_VALUE",
53
+ * // PlatformStatus: "Creating" || "Failed" || "Ready" || "Deleting" || "Deleted",
54
+ * // PlatformCategory: "STRING_VALUE",
55
+ * // OperatingSystemName: "STRING_VALUE",
56
+ * // OperatingSystemVersion: "STRING_VALUE",
57
+ * // SupportedTierList: [ // SupportedTierList
58
+ * // "STRING_VALUE",
59
+ * // ],
60
+ * // SupportedAddonList: [ // SupportedAddonList
61
+ * // "STRING_VALUE",
62
+ * // ],
63
+ * // PlatformLifecycleState: "STRING_VALUE",
64
+ * // PlatformVersion: "STRING_VALUE",
65
+ * // PlatformBranchName: "STRING_VALUE",
66
+ * // PlatformBranchLifecycleState: "STRING_VALUE",
67
+ * // },
68
+ * // ],
69
+ * // NextToken: "STRING_VALUE",
70
+ * // };
71
+ *
48
72
  * ```
49
73
  *
50
74
  * @param ListPlatformVersionsCommandInput - {@link ListPlatformVersionsCommandInput}
@@ -60,6 +84,8 @@ export interface ListPlatformVersionsCommandOutput extends ListPlatformVersionsR
60
84
  * <p>The specified account does not have sufficient privileges for one or more AWS
61
85
  * services.</p>
62
86
  *
87
+ * @throws {@link ElasticBeanstalkServiceException}
88
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
63
89
  *
64
90
  */
65
91
  export declare class ListPlatformVersionsCommand extends $Command<ListPlatformVersionsCommandInput, ListPlatformVersionsCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -34,6 +34,16 @@ export interface ListTagsForResourceCommandOutput extends ResourceTagsDescriptio
34
34
  * };
35
35
  * const command = new ListTagsForResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ResourceTagsDescriptionMessage
38
+ * // ResourceArn: "STRING_VALUE",
39
+ * // ResourceTags: [ // TagList
40
+ * // { // Tag
41
+ * // Key: "STRING_VALUE",
42
+ * // Value: "STRING_VALUE",
43
+ * // },
44
+ * // ],
45
+ * // };
46
+ *
37
47
  * ```
38
48
  *
39
49
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -52,6 +62,8 @@ export interface ListTagsForResourceCommandOutput extends ResourceTagsDescriptio
52
62
  * @throws {@link ResourceTypeNotSupportedException} (client fault)
53
63
  * <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
54
64
  *
65
+ * @throws {@link ElasticBeanstalkServiceException}
66
+ * <p>Base exception class for all service exceptions from ElasticBeanstalk service.</p>
55
67
  *
56
68
  */
57
69
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ElasticBeanstalkClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface RebuildEnvironmentCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new RebuildEnvironmentCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param RebuildEnvironmentCommandInput - {@link RebuildEnvironmentCommandInput}
@@ -45,6 +47,8 @@ export interface RebuildEnvironmentCommandOutput 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 rebuild an environment
50
54
  * ```javascript