@aws-sdk/client-elastic-load-balancing 3.775.0 → 3.782.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 (30) hide show
  1. package/dist-types/commands/AddTagsCommand.d.ts +12 -9
  2. package/dist-types/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +6 -6
  3. package/dist-types/commands/AttachLoadBalancerToSubnetsCommand.d.ts +6 -6
  4. package/dist-types/commands/ConfigureHealthCheckCommand.d.ts +16 -16
  5. package/dist-types/commands/CreateAppCookieStickinessPolicyCommand.d.ts +9 -6
  6. package/dist-types/commands/CreateLBCookieStickinessPolicyCommand.d.ts +9 -6
  7. package/dist-types/commands/CreateLoadBalancerCommand.d.ts +61 -65
  8. package/dist-types/commands/CreateLoadBalancerListenersCommand.d.ts +23 -18
  9. package/dist-types/commands/CreateLoadBalancerPolicyCommand.d.ts +32 -25
  10. package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +7 -4
  11. package/dist-types/commands/DeleteLoadBalancerListenersCommand.d.ts +8 -5
  12. package/dist-types/commands/DeleteLoadBalancerPolicyCommand.d.ts +8 -5
  13. package/dist-types/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +9 -9
  14. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -0
  15. package/dist-types/commands/DescribeInstanceHealthCommand.d.ts +13 -13
  16. package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +14 -14
  17. package/dist-types/commands/DescribeLoadBalancerPoliciesCommand.d.ts +11 -11
  18. package/dist-types/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +11 -11
  19. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +50 -50
  20. package/dist-types/commands/DescribeTagsCommand.d.ts +11 -11
  21. package/dist-types/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +6 -6
  22. package/dist-types/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +6 -6
  23. package/dist-types/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +6 -6
  24. package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +22 -23
  25. package/dist-types/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +10 -10
  26. package/dist-types/commands/RemoveTagsCommand.d.ts +9 -6
  27. package/dist-types/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +9 -6
  28. package/dist-types/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +9 -6
  29. package/dist-types/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +9 -6
  30. package/package.json +5 -5
@@ -58,21 +58,24 @@ declare const DeleteLoadBalancerListenersCommand_base: {
58
58
  * @throws {@link ElasticLoadBalancingServiceException}
59
59
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
60
60
  *
61
- * @public
61
+ *
62
62
  * @example To delete a listener from your load balancer
63
63
  * ```javascript
64
64
  * // This example deletes the listener for the specified port from the specified load balancer.
65
65
  * const input = {
66
- * "LoadBalancerName": "my-load-balancer",
67
- * "LoadBalancerPorts": [
66
+ * LoadBalancerName: "my-load-balancer",
67
+ * LoadBalancerPorts: [
68
68
  * 80
69
69
  * ]
70
70
  * };
71
71
  * const command = new DeleteLoadBalancerListenersCommand(input);
72
- * await client.send(command);
73
- * // example id: elb-delete-load-balancer-listeners-1
72
+ * const response = await client.send(command);
73
+ * /* response is
74
+ * { /* metadata only *\/ }
75
+ * *\/
74
76
  * ```
75
77
  *
78
+ * @public
76
79
  */
77
80
  export declare class DeleteLoadBalancerListenersCommand extends DeleteLoadBalancerListenersCommand_base {
78
81
  /** @internal type navigation helper, not in runtime. */
@@ -59,19 +59,22 @@ declare const DeleteLoadBalancerPolicyCommand_base: {
59
59
  * @throws {@link ElasticLoadBalancingServiceException}
60
60
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
61
61
  *
62
- * @public
62
+ *
63
63
  * @example To delete a policy from your load balancer
64
64
  * ```javascript
65
65
  * // This example deletes the specified policy from the specified load balancer. The policy must not be enabled on any listener.
66
66
  * const input = {
67
- * "LoadBalancerName": "my-load-balancer",
68
- * "PolicyName": "my-duration-cookie-policy"
67
+ * LoadBalancerName: "my-load-balancer",
68
+ * PolicyName: "my-duration-cookie-policy"
69
69
  * };
70
70
  * const command = new DeleteLoadBalancerPolicyCommand(input);
71
- * await client.send(command);
72
- * // example id: elb-delete-load-balancer-policy-1
71
+ * const response = await client.send(command);
72
+ * /* response is
73
+ * { /* metadata only *\/ }
74
+ * *\/
73
75
  * ```
74
76
  *
77
+ * @public
75
78
  */
76
79
  export declare class DeleteLoadBalancerPolicyCommand extends DeleteLoadBalancerPolicyCommand_base {
77
80
  /** @internal type navigation helper, not in runtime. */
@@ -74,35 +74,35 @@ declare const DeregisterInstancesFromLoadBalancerCommand_base: {
74
74
  * @throws {@link ElasticLoadBalancingServiceException}
75
75
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
76
76
  *
77
- * @public
77
+ *
78
78
  * @example To deregister instances from a load balancer
79
79
  * ```javascript
80
80
  * // This example deregisters the specified instance from the specified load balancer.
81
81
  * const input = {
82
- * "Instances": [
82
+ * Instances: [
83
83
  * {
84
- * "InstanceId": "i-d6f6fae3"
84
+ * InstanceId: "i-d6f6fae3"
85
85
  * }
86
86
  * ],
87
- * "LoadBalancerName": "my-load-balancer"
87
+ * LoadBalancerName: "my-load-balancer"
88
88
  * };
89
89
  * const command = new DeregisterInstancesFromLoadBalancerCommand(input);
90
90
  * const response = await client.send(command);
91
- * /* response ==
91
+ * /* response is
92
92
  * {
93
- * "Instances": [
93
+ * Instances: [
94
94
  * {
95
- * "InstanceId": "i-207d9717"
95
+ * InstanceId: "i-207d9717"
96
96
  * },
97
97
  * {
98
- * "InstanceId": "i-afefb49b"
98
+ * InstanceId: "i-afefb49b"
99
99
  * }
100
100
  * ]
101
101
  * }
102
102
  * *\/
103
- * // example id: elb-deregister-instances-from-load-balancer-1
104
103
  * ```
105
104
  *
105
+ * @public
106
106
  */
107
107
  export declare class DeregisterInstancesFromLoadBalancerCommand extends DeregisterInstancesFromLoadBalancerCommand_base {
108
108
  /** @internal type navigation helper, not in runtime. */
@@ -63,6 +63,7 @@ declare const DescribeAccountLimitsCommand_base: {
63
63
  * @throws {@link ElasticLoadBalancingServiceException}
64
64
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
65
65
  *
66
+ *
66
67
  * @public
67
68
  */
68
69
  export declare class DescribeAccountLimitsCommand extends DescribeAccountLimitsCommand_base {
@@ -72,36 +72,36 @@ declare const DescribeInstanceHealthCommand_base: {
72
72
  * @throws {@link ElasticLoadBalancingServiceException}
73
73
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
74
74
  *
75
- * @public
75
+ *
76
76
  * @example To describe the health of the instances for a load balancer
77
77
  * ```javascript
78
78
  * // This example describes the health of the instances for the specified load balancer.
79
79
  * const input = {
80
- * "LoadBalancerName": "my-load-balancer"
80
+ * LoadBalancerName: "my-load-balancer"
81
81
  * };
82
82
  * const command = new DescribeInstanceHealthCommand(input);
83
83
  * const response = await client.send(command);
84
- * /* response ==
84
+ * /* response is
85
85
  * {
86
- * "InstanceStates": [
86
+ * InstanceStates: [
87
87
  * {
88
- * "Description": "N/A",
89
- * "InstanceId": "i-207d9717",
90
- * "ReasonCode": "N/A",
91
- * "State": "InService"
88
+ * Description: "N/A",
89
+ * InstanceId: "i-207d9717",
90
+ * ReasonCode: "N/A",
91
+ * State: "InService"
92
92
  * },
93
93
  * {
94
- * "Description": "N/A",
95
- * "InstanceId": "i-afefb49b",
96
- * "ReasonCode": "N/A",
97
- * "State": "InService"
94
+ * Description: "N/A",
95
+ * InstanceId: "i-afefb49b",
96
+ * ReasonCode: "N/A",
97
+ * State: "InService"
98
98
  * }
99
99
  * ]
100
100
  * }
101
101
  * *\/
102
- * // example id: elb-describe-instance-health-1
103
102
  * ```
104
103
  *
104
+ * @public
105
105
  */
106
106
  export declare class DescribeInstanceHealthCommand extends DescribeInstanceHealthCommand_base {
107
107
  /** @internal type navigation helper, not in runtime. */
@@ -83,37 +83,37 @@ declare const DescribeLoadBalancerAttributesCommand_base: {
83
83
  * @throws {@link ElasticLoadBalancingServiceException}
84
84
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
85
85
  *
86
- * @public
86
+ *
87
87
  * @example To describe the attributes of a load balancer
88
88
  * ```javascript
89
89
  * // This example describes the attributes of the specified load balancer.
90
90
  * const input = {
91
- * "LoadBalancerName": "my-load-balancer"
91
+ * LoadBalancerName: "my-load-balancer"
92
92
  * };
93
93
  * const command = new DescribeLoadBalancerAttributesCommand(input);
94
94
  * const response = await client.send(command);
95
- * /* response ==
95
+ * /* response is
96
96
  * {
97
- * "LoadBalancerAttributes": {
98
- * "AccessLog": {
99
- * "Enabled": false
97
+ * LoadBalancerAttributes: {
98
+ * AccessLog: {
99
+ * Enabled: false
100
100
  * },
101
- * "ConnectionDraining": {
102
- * "Enabled": false,
103
- * "Timeout": 300
101
+ * ConnectionDraining: {
102
+ * Enabled: false,
103
+ * Timeout: 300
104
104
  * },
105
- * "ConnectionSettings": {
106
- * "IdleTimeout": 60
105
+ * ConnectionSettings: {
106
+ * IdleTimeout: 60
107
107
  * },
108
- * "CrossZoneLoadBalancing": {
109
- * "Enabled": false
108
+ * CrossZoneLoadBalancing: {
109
+ * Enabled: false
110
110
  * }
111
111
  * }
112
112
  * }
113
113
  * *\/
114
- * // example id: elb-describe-load-balancer-attributes-1
115
114
  * ```
116
115
  *
116
+ * @public
117
117
  */
118
118
  export declare class DescribeLoadBalancerAttributesCommand extends DescribeLoadBalancerAttributesCommand_base {
119
119
  /** @internal type navigation helper, not in runtime. */
@@ -78,37 +78,37 @@ declare const DescribeLoadBalancerPoliciesCommand_base: {
78
78
  * @throws {@link ElasticLoadBalancingServiceException}
79
79
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
80
80
  *
81
- * @public
81
+ *
82
82
  * @example To describe a policy associated with a load balancer
83
83
  * ```javascript
84
84
  * // This example describes the specified policy associated with the specified load balancer.
85
85
  * const input = {
86
- * "LoadBalancerName": "my-load-balancer",
87
- * "PolicyNames": [
86
+ * LoadBalancerName: "my-load-balancer",
87
+ * PolicyNames: [
88
88
  * "my-authentication-policy"
89
89
  * ]
90
90
  * };
91
91
  * const command = new DescribeLoadBalancerPoliciesCommand(input);
92
92
  * const response = await client.send(command);
93
- * /* response ==
93
+ * /* response is
94
94
  * {
95
- * "PolicyDescriptions": [
95
+ * PolicyDescriptions: [
96
96
  * {
97
- * "PolicyAttributeDescriptions": [
97
+ * PolicyAttributeDescriptions: [
98
98
  * {
99
- * "AttributeName": "PublicKeyPolicyName",
100
- * "AttributeValue": "my-PublicKey-policy"
99
+ * AttributeName: "PublicKeyPolicyName",
100
+ * AttributeValue: "my-PublicKey-policy"
101
101
  * }
102
102
  * ],
103
- * "PolicyName": "my-authentication-policy",
104
- * "PolicyTypeName": "BackendServerAuthenticationPolicyType"
103
+ * PolicyName: "my-authentication-policy",
104
+ * PolicyTypeName: "BackendServerAuthenticationPolicyType"
105
105
  * }
106
106
  * ]
107
107
  * }
108
108
  * *\/
109
- * // example id: elb-describe-load-balancer-policies-1
110
109
  * ```
111
110
  *
111
+ * @public
112
112
  */
113
113
  export declare class DescribeLoadBalancerPoliciesCommand extends DescribeLoadBalancerPoliciesCommand_base {
114
114
  /** @internal type navigation helper, not in runtime. */
@@ -80,37 +80,37 @@ declare const DescribeLoadBalancerPolicyTypesCommand_base: {
80
80
  * @throws {@link ElasticLoadBalancingServiceException}
81
81
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
82
82
  *
83
- * @public
83
+ *
84
84
  * @example To describe a load balancer policy type defined by Elastic Load Balancing
85
85
  * ```javascript
86
86
  * // This example describes the specified load balancer policy type.
87
87
  * const input = {
88
- * "PolicyTypeNames": [
88
+ * PolicyTypeNames: [
89
89
  * "ProxyProtocolPolicyType"
90
90
  * ]
91
91
  * };
92
92
  * const command = new DescribeLoadBalancerPolicyTypesCommand(input);
93
93
  * const response = await client.send(command);
94
- * /* response ==
94
+ * /* response is
95
95
  * {
96
- * "PolicyTypeDescriptions": [
96
+ * PolicyTypeDescriptions: [
97
97
  * {
98
- * "Description": "Policy that controls whether to include the IP address and port of the originating request for TCP messages. This policy operates on TCP listeners only.",
99
- * "PolicyAttributeTypeDescriptions": [
98
+ * Description: "Policy that controls whether to include the IP address and port of the originating request for TCP messages. This policy operates on TCP listeners only.",
99
+ * PolicyAttributeTypeDescriptions: [
100
100
  * {
101
- * "AttributeName": "ProxyProtocol",
102
- * "AttributeType": "Boolean",
103
- * "Cardinality": "ONE"
101
+ * AttributeName: "ProxyProtocol",
102
+ * AttributeType: "Boolean",
103
+ * Cardinality: "ONE"
104
104
  * }
105
105
  * ],
106
- * "PolicyTypeName": "ProxyProtocolPolicyType"
106
+ * PolicyTypeName: "ProxyProtocolPolicyType"
107
107
  * }
108
108
  * ]
109
109
  * }
110
110
  * *\/
111
- * // example id: elb-describe-load-balancer-policy-types-1
112
111
  * ```
113
112
  *
113
+ * @public
114
114
  */
115
115
  export declare class DescribeLoadBalancerPolicyTypesCommand extends DescribeLoadBalancerPolicyTypesCommand_base {
116
116
  /** @internal type navigation helper, not in runtime. */
@@ -139,84 +139,84 @@ declare const DescribeLoadBalancersCommand_base: {
139
139
  * @throws {@link ElasticLoadBalancingServiceException}
140
140
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
141
141
  *
142
- * @public
142
+ *
143
143
  * @example To describe one of your load balancers
144
144
  * ```javascript
145
145
  * // This example describes the specified load balancer.
146
146
  * const input = {
147
- * "LoadBalancerNames": [
147
+ * LoadBalancerNames: [
148
148
  * "my-load-balancer"
149
149
  * ]
150
150
  * };
151
151
  * const command = new DescribeLoadBalancersCommand(input);
152
152
  * const response = await client.send(command);
153
- * /* response ==
153
+ * /* response is
154
154
  * {
155
- * "LoadBalancerDescriptions": [
155
+ * LoadBalancerDescriptions: [
156
156
  * {
157
- * "AvailabilityZones": [
157
+ * AvailabilityZones: [
158
158
  * "us-west-2a"
159
159
  * ],
160
- * "BackendServerDescriptions": [
160
+ * BackendServerDescriptions: [
161
161
  * {
162
- * "InstancePort": 80,
163
- * "PolicyNames": [
162
+ * InstancePort: 80,
163
+ * PolicyNames: [
164
164
  * "my-ProxyProtocol-policy"
165
165
  * ]
166
166
  * }
167
167
  * ],
168
- * "CanonicalHostedZoneName": "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com",
169
- * "CanonicalHostedZoneNameID": "Z3DZXE0EXAMPLE",
170
- * "CreatedTime": "2015-03-19T03:24:02.650Z",
171
- * "DNSName": "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com",
172
- * "HealthCheck": {
173
- * "HealthyThreshold": 2,
174
- * "Interval": 30,
175
- * "Target": "HTTP:80/png",
176
- * "Timeout": 3,
177
- * "UnhealthyThreshold": 2
168
+ * CanonicalHostedZoneName: "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com",
169
+ * CanonicalHostedZoneNameID: "Z3DZXE0EXAMPLE",
170
+ * CreatedTime: "2015-03-19T03:24:02.650Z",
171
+ * DNSName: "my-load-balancer-1234567890.us-west-2.elb.amazonaws.com",
172
+ * HealthCheck: {
173
+ * HealthyThreshold: 2,
174
+ * Interval: 30,
175
+ * Target: "HTTP:80/png",
176
+ * Timeout: 3,
177
+ * UnhealthyThreshold: 2
178
178
  * },
179
- * "Instances": [
179
+ * Instances: [
180
180
  * {
181
- * "InstanceId": "i-207d9717"
181
+ * InstanceId: "i-207d9717"
182
182
  * },
183
183
  * {
184
- * "InstanceId": "i-afefb49b"
184
+ * InstanceId: "i-afefb49b"
185
185
  * }
186
186
  * ],
187
- * "ListenerDescriptions": [
187
+ * ListenerDescriptions: [
188
188
  * {
189
- * "Listener": {
190
- * "InstancePort": 80,
191
- * "InstanceProtocol": "HTTP",
192
- * "LoadBalancerPort": 80,
193
- * "Protocol": "HTTP"
189
+ * Listener: {
190
+ * InstancePort: 80,
191
+ * InstanceProtocol: "HTTP",
192
+ * LoadBalancerPort: 80,
193
+ * Protocol: "HTTP"
194
194
  * },
195
- * "PolicyNames": []
195
+ * PolicyNames: []
196
196
  * },
197
197
  * {
198
- * "Listener": {
199
- * "InstancePort": 443,
200
- * "InstanceProtocol": "HTTPS",
201
- * "LoadBalancerPort": 443,
202
- * "Protocol": "HTTPS",
203
- * "SSLCertificateId": "arn:aws:iam::123456789012:server-certificate/my-server-cert"
198
+ * Listener: {
199
+ * InstancePort: 443,
200
+ * InstanceProtocol: "HTTPS",
201
+ * LoadBalancerPort: 443,
202
+ * Protocol: "HTTPS",
203
+ * SSLCertificateId: "arn:aws:iam::123456789012:server-certificate/my-server-cert"
204
204
  * },
205
- * "PolicyNames": [
205
+ * PolicyNames: [
206
206
  * "ELBSecurityPolicy-2015-03"
207
207
  * ]
208
208
  * }
209
209
  * ],
210
- * "LoadBalancerName": "my-load-balancer",
211
- * "Policies": {
212
- * "AppCookieStickinessPolicies": [],
213
- * "LBCookieStickinessPolicies": [
210
+ * LoadBalancerName: "my-load-balancer",
211
+ * Policies: {
212
+ * AppCookieStickinessPolicies: [],
213
+ * LBCookieStickinessPolicies: [
214
214
  * {
215
- * "CookieExpirationPeriod": 60,
216
- * "PolicyName": "my-duration-cookie-policy"
215
+ * CookieExpirationPeriod: 60,
216
+ * PolicyName: "my-duration-cookie-policy"
217
217
  * }
218
218
  * ],
219
- * "OtherPolicies": [
219
+ * OtherPolicies: [
220
220
  * "my-PublicKey-policy",
221
221
  * "my-authentication-policy",
222
222
  * "my-SSLNegotiation-policy",
@@ -224,25 +224,25 @@ declare const DescribeLoadBalancersCommand_base: {
224
224
  * "ELBSecurityPolicy-2015-03"
225
225
  * ]
226
226
  * },
227
- * "Scheme": "internet-facing",
228
- * "SecurityGroups": [
227
+ * Scheme: "internet-facing",
228
+ * SecurityGroups: [
229
229
  * "sg-a61988c3"
230
230
  * ],
231
- * "SourceSecurityGroup": {
232
- * "GroupName": "my-elb-sg",
233
- * "OwnerAlias": "123456789012"
231
+ * SourceSecurityGroup: {
232
+ * GroupName: "my-elb-sg",
233
+ * OwnerAlias: "123456789012"
234
234
  * },
235
- * "Subnets": [
235
+ * Subnets: [
236
236
  * "subnet-15aaab61"
237
237
  * ],
238
- * "VPCId": "vpc-a01106c2"
238
+ * VPCId: "vpc-a01106c2"
239
239
  * }
240
240
  * ]
241
241
  * }
242
242
  * *\/
243
- * // example id: elb-describe-load-balancers-1
244
243
  * ```
245
244
  *
245
+ * @public
246
246
  */
247
247
  export declare class DescribeLoadBalancersCommand extends DescribeLoadBalancersCommand_base {
248
248
  /** @internal type navigation helper, not in runtime. */
@@ -69,39 +69,39 @@ declare const DescribeTagsCommand_base: {
69
69
  * @throws {@link ElasticLoadBalancingServiceException}
70
70
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
71
71
  *
72
- * @public
72
+ *
73
73
  * @example To describe the tags for a load balancer
74
74
  * ```javascript
75
75
  * // This example describes the tags for the specified load balancer.
76
76
  * const input = {
77
- * "LoadBalancerNames": [
77
+ * LoadBalancerNames: [
78
78
  * "my-load-balancer"
79
79
  * ]
80
80
  * };
81
81
  * const command = new DescribeTagsCommand(input);
82
82
  * const response = await client.send(command);
83
- * /* response ==
83
+ * /* response is
84
84
  * {
85
- * "TagDescriptions": [
85
+ * TagDescriptions: [
86
86
  * {
87
- * "LoadBalancerName": "my-load-balancer",
88
- * "Tags": [
87
+ * LoadBalancerName: "my-load-balancer",
88
+ * Tags: [
89
89
  * {
90
- * "Key": "project",
91
- * "Value": "lima"
90
+ * Key: "project",
91
+ * Value: "lima"
92
92
  * },
93
93
  * {
94
- * "Key": "department",
95
- * "Value": "digital-media"
94
+ * Key: "department",
95
+ * Value: "digital-media"
96
96
  * }
97
97
  * ]
98
98
  * }
99
99
  * ]
100
100
  * }
101
101
  * *\/
102
- * // example id: elb-describe-tags-1
103
102
  * ```
104
103
  *
104
+ * @public
105
105
  */
106
106
  export declare class DescribeTagsCommand extends DescribeTagsCommand_base {
107
107
  /** @internal type navigation helper, not in runtime. */
@@ -68,28 +68,28 @@ declare const DetachLoadBalancerFromSubnetsCommand_base: {
68
68
  * @throws {@link ElasticLoadBalancingServiceException}
69
69
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
70
70
  *
71
- * @public
71
+ *
72
72
  * @example To detach a load balancer from a subnet
73
73
  * ```javascript
74
74
  * // This example detaches the specified load balancer from the specified subnet.
75
75
  * const input = {
76
- * "LoadBalancerName": "my-load-balancer",
77
- * "Subnets": [
76
+ * LoadBalancerName: "my-load-balancer",
77
+ * Subnets: [
78
78
  * "subnet-0ecac448"
79
79
  * ]
80
80
  * };
81
81
  * const command = new DetachLoadBalancerFromSubnetsCommand(input);
82
82
  * const response = await client.send(command);
83
- * /* response ==
83
+ * /* response is
84
84
  * {
85
- * "Subnets": [
85
+ * Subnets: [
86
86
  * "subnet-15aaab61"
87
87
  * ]
88
88
  * }
89
89
  * *\/
90
- * // example id: elb-detach-load-balancer-from-subnets-1
91
90
  * ```
92
91
  *
92
+ * @public
93
93
  */
94
94
  export declare class DetachLoadBalancerFromSubnetsCommand extends DetachLoadBalancerFromSubnetsCommand_base {
95
95
  /** @internal type navigation helper, not in runtime. */
@@ -73,28 +73,28 @@ declare const DisableAvailabilityZonesForLoadBalancerCommand_base: {
73
73
  * @throws {@link ElasticLoadBalancingServiceException}
74
74
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
75
75
  *
76
- * @public
76
+ *
77
77
  * @example To disable an Availability Zone for a load balancer
78
78
  * ```javascript
79
79
  * // This example removes the specified Availability Zone from the set of Availability Zones for the specified load balancer.
80
80
  * const input = {
81
- * "AvailabilityZones": [
81
+ * AvailabilityZones: [
82
82
  * "us-west-2a"
83
83
  * ],
84
- * "LoadBalancerName": "my-load-balancer"
84
+ * LoadBalancerName: "my-load-balancer"
85
85
  * };
86
86
  * const command = new DisableAvailabilityZonesForLoadBalancerCommand(input);
87
87
  * const response = await client.send(command);
88
- * /* response ==
88
+ * /* response is
89
89
  * {
90
- * "AvailabilityZones": [
90
+ * AvailabilityZones: [
91
91
  * "us-west-2b"
92
92
  * ]
93
93
  * }
94
94
  * *\/
95
- * // example id: elb-disable-availability-zones-for-load-balancer-1
96
95
  * ```
97
96
  *
97
+ * @public
98
98
  */
99
99
  export declare class DisableAvailabilityZonesForLoadBalancerCommand extends DisableAvailabilityZonesForLoadBalancerCommand_base {
100
100
  /** @internal type navigation helper, not in runtime. */
@@ -67,29 +67,29 @@ declare const EnableAvailabilityZonesForLoadBalancerCommand_base: {
67
67
  * @throws {@link ElasticLoadBalancingServiceException}
68
68
  * <p>Base exception class for all service exceptions from ElasticLoadBalancing service.</p>
69
69
  *
70
- * @public
70
+ *
71
71
  * @example To enable an Availability Zone for a load balancer
72
72
  * ```javascript
73
73
  * // This example adds the specified Availability Zone to the specified load balancer.
74
74
  * const input = {
75
- * "AvailabilityZones": [
75
+ * AvailabilityZones: [
76
76
  * "us-west-2b"
77
77
  * ],
78
- * "LoadBalancerName": "my-load-balancer"
78
+ * LoadBalancerName: "my-load-balancer"
79
79
  * };
80
80
  * const command = new EnableAvailabilityZonesForLoadBalancerCommand(input);
81
81
  * const response = await client.send(command);
82
- * /* response ==
82
+ * /* response is
83
83
  * {
84
- * "AvailabilityZones": [
84
+ * AvailabilityZones: [
85
85
  * "us-west-2a",
86
86
  * "us-west-2b"
87
87
  * ]
88
88
  * }
89
89
  * *\/
90
- * // example id: elb-enable-availability-zones-for-load-balancer-1
91
90
  * ```
92
91
  *
92
+ * @public
93
93
  */
94
94
  export declare class EnableAvailabilityZonesForLoadBalancerCommand extends EnableAvailabilityZonesForLoadBalancerCommand_base {
95
95
  /** @internal type navigation helper, not in runtime. */