@aws-sdk/client-elastic-load-balancing 3.295.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/protocols/Aws_query.js +63 -246
- package/dist-es/protocols/Aws_query.js +63 -246
- package/dist-types/ElasticLoadBalancing.d.ts +30 -0
- package/dist-types/ElasticLoadBalancingClient.d.ts +24 -4
- package/dist-types/commands/AddTagsCommand.d.ts +16 -0
- package/dist-types/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/AttachLoadBalancerToSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/ConfigureHealthCheckCommand.d.ts +16 -0
- package/dist-types/commands/CreateAppCookieStickinessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/CreateLBCookieStickinessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoadBalancerListenersCommand.d.ts +16 -0
- package/dist-types/commands/CreateLoadBalancerPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoadBalancerListenersCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLoadBalancerPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInstanceHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancerPoliciesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +16 -0
- package/dist-types/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +16 -0
- package/dist-types/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +16 -0
- package/dist-types/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +16 -0
- package/dist-types/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +16 -0
- package/dist-types/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +16 -0
- package/dist-types/models/ElasticLoadBalancingServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +110 -0
- package/dist-types/pagination/DescribeLoadBalancersPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +30 -30
|
@@ -30,6 +30,7 @@ import { SetLoadBalancerPoliciesForBackendServerCommandInput, SetLoadBalancerPol
|
|
|
30
30
|
import { SetLoadBalancerPoliciesOfListenerCommandInput, SetLoadBalancerPoliciesOfListenerCommandOutput } from "./commands/SetLoadBalancerPoliciesOfListenerCommand";
|
|
31
31
|
import { ElasticLoadBalancingClient } from "./ElasticLoadBalancingClient";
|
|
32
32
|
/**
|
|
33
|
+
* @public
|
|
33
34
|
* <fullname>Elastic Load Balancing</fullname>
|
|
34
35
|
*
|
|
35
36
|
* <p>A load balancer can distribute incoming traffic across your EC2 instances.
|
|
@@ -54,6 +55,7 @@ import { ElasticLoadBalancingClient } from "./ElasticLoadBalancingClient";
|
|
|
54
55
|
*/
|
|
55
56
|
export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
56
57
|
/**
|
|
58
|
+
* @public
|
|
57
59
|
* <p>Adds the specified tags to the specified load balancer. Each load balancer can have a maximum of 10 tags.</p>
|
|
58
60
|
*
|
|
59
61
|
* <p>Each tag consists of a key and an optional value. If a tag with the same key is already associated
|
|
@@ -66,6 +68,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
66
68
|
addTags(args: AddTagsCommandInput, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
67
69
|
addTags(args: AddTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddTagsCommandOutput) => void): void;
|
|
68
70
|
/**
|
|
71
|
+
* @public
|
|
69
72
|
* <p>Associates one or more security groups with your load balancer in a virtual private cloud (VPC). The specified security groups override the previously associated security groups.</p>
|
|
70
73
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-groups.html#elb-vpc-security-groups">Security Groups for Load Balancers in a VPC</a>
|
|
71
74
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
@@ -74,6 +77,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
74
77
|
applySecurityGroupsToLoadBalancer(args: ApplySecurityGroupsToLoadBalancerCommandInput, cb: (err: any, data?: ApplySecurityGroupsToLoadBalancerCommandOutput) => void): void;
|
|
75
78
|
applySecurityGroupsToLoadBalancer(args: ApplySecurityGroupsToLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ApplySecurityGroupsToLoadBalancerCommandOutput) => void): void;
|
|
76
79
|
/**
|
|
80
|
+
* @public
|
|
77
81
|
* <p>Adds one or more subnets to the set of configured subnets for the specified load balancer.</p>
|
|
78
82
|
* <p>The load balancer evenly distributes requests across all registered subnets.
|
|
79
83
|
* For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-manage-subnets.html">Add or Remove Subnets for Your Load Balancer in a VPC</a>
|
|
@@ -83,6 +87,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
83
87
|
attachLoadBalancerToSubnets(args: AttachLoadBalancerToSubnetsCommandInput, cb: (err: any, data?: AttachLoadBalancerToSubnetsCommandOutput) => void): void;
|
|
84
88
|
attachLoadBalancerToSubnets(args: AttachLoadBalancerToSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AttachLoadBalancerToSubnetsCommandOutput) => void): void;
|
|
85
89
|
/**
|
|
90
|
+
* @public
|
|
86
91
|
* <p>Specifies the health check settings to use when evaluating the health state of your EC2 instances.</p>
|
|
87
92
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-healthchecks.html">Configure Health Checks for Your Load Balancer</a>
|
|
88
93
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
@@ -91,6 +96,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
91
96
|
configureHealthCheck(args: ConfigureHealthCheckCommandInput, cb: (err: any, data?: ConfigureHealthCheckCommandOutput) => void): void;
|
|
92
97
|
configureHealthCheck(args: ConfigureHealthCheckCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureHealthCheckCommandOutput) => void): void;
|
|
93
98
|
/**
|
|
99
|
+
* @public
|
|
94
100
|
* <p>Generates a stickiness policy with sticky session lifetimes that follow that of an application-generated cookie. This policy can be associated only with HTTP/HTTPS listeners.</p>
|
|
95
101
|
* <p>This policy is similar to the policy created by <a>CreateLBCookieStickinessPolicy</a>,
|
|
96
102
|
* except that the lifetime of the special Elastic Load Balancing cookie, <code>AWSELB</code>,
|
|
@@ -105,6 +111,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
105
111
|
createAppCookieStickinessPolicy(args: CreateAppCookieStickinessPolicyCommandInput, cb: (err: any, data?: CreateAppCookieStickinessPolicyCommandOutput) => void): void;
|
|
106
112
|
createAppCookieStickinessPolicy(args: CreateAppCookieStickinessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppCookieStickinessPolicyCommandOutput) => void): void;
|
|
107
113
|
/**
|
|
114
|
+
* @public
|
|
108
115
|
* <p>Generates a stickiness policy with sticky session lifetimes controlled by the lifetime of the browser (user-agent) or a specified expiration period. This policy can be associated only with HTTP/HTTPS listeners.</p>
|
|
109
116
|
* <p>When a load balancer implements this policy, the load balancer uses a special cookie to track the instance for each request. When the load balancer receives a request, it first checks to see if this cookie is present in the request.
|
|
110
117
|
* If so, the load balancer sends the request to the application server specified in the cookie. If not, the load balancer sends the request to a server that is chosen based on the existing load-balancing algorithm.</p>
|
|
@@ -117,6 +124,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
117
124
|
createLBCookieStickinessPolicy(args: CreateLBCookieStickinessPolicyCommandInput, cb: (err: any, data?: CreateLBCookieStickinessPolicyCommandOutput) => void): void;
|
|
118
125
|
createLBCookieStickinessPolicy(args: CreateLBCookieStickinessPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLBCookieStickinessPolicyCommandOutput) => void): void;
|
|
119
126
|
/**
|
|
127
|
+
* @public
|
|
120
128
|
* <p>Creates a Classic Load Balancer.</p>
|
|
121
129
|
*
|
|
122
130
|
* <p>You can add listeners, security groups, subnets, and tags when you create your load balancer,
|
|
@@ -136,6 +144,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
136
144
|
createLoadBalancer(args: CreateLoadBalancerCommandInput, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
|
|
137
145
|
createLoadBalancer(args: CreateLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerCommandOutput) => void): void;
|
|
138
146
|
/**
|
|
147
|
+
* @public
|
|
139
148
|
* <p>Creates one or more listeners for the specified load balancer. If a listener with the specified port does not already exist, it is created; otherwise, the properties of the new listener must match the properties of the existing listener.</p>
|
|
140
149
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-listener-config.html">Listeners for Your Classic Load Balancer</a>
|
|
141
150
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
@@ -144,6 +153,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
144
153
|
createLoadBalancerListeners(args: CreateLoadBalancerListenersCommandInput, cb: (err: any, data?: CreateLoadBalancerListenersCommandOutput) => void): void;
|
|
145
154
|
createLoadBalancerListeners(args: CreateLoadBalancerListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerListenersCommandOutput) => void): void;
|
|
146
155
|
/**
|
|
156
|
+
* @public
|
|
147
157
|
* <p>Creates a policy with the specified attributes for the specified load balancer.</p>
|
|
148
158
|
* <p>Policies are settings that are saved for your load balancer and that can be applied to the listener or the application server, depending on the policy type.</p>
|
|
149
159
|
*/
|
|
@@ -151,6 +161,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
151
161
|
createLoadBalancerPolicy(args: CreateLoadBalancerPolicyCommandInput, cb: (err: any, data?: CreateLoadBalancerPolicyCommandOutput) => void): void;
|
|
152
162
|
createLoadBalancerPolicy(args: CreateLoadBalancerPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoadBalancerPolicyCommandOutput) => void): void;
|
|
153
163
|
/**
|
|
164
|
+
* @public
|
|
154
165
|
* <p>Deletes the specified load balancer.</p>
|
|
155
166
|
* <p>If you are attempting to recreate a load balancer, you must reconfigure all settings. The DNS name associated with a deleted load balancer are no longer usable. The name and associated DNS record of the deleted load balancer no longer exist and traffic sent to any of its IP addresses is no longer delivered to your instances.</p>
|
|
156
167
|
* <p>If the load balancer does not exist or has already been deleted, the call to
|
|
@@ -160,18 +171,21 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
160
171
|
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
|
|
161
172
|
deleteLoadBalancer(args: DeleteLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerCommandOutput) => void): void;
|
|
162
173
|
/**
|
|
174
|
+
* @public
|
|
163
175
|
* <p>Deletes the specified listeners from the specified load balancer.</p>
|
|
164
176
|
*/
|
|
165
177
|
deleteLoadBalancerListeners(args: DeleteLoadBalancerListenersCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoadBalancerListenersCommandOutput>;
|
|
166
178
|
deleteLoadBalancerListeners(args: DeleteLoadBalancerListenersCommandInput, cb: (err: any, data?: DeleteLoadBalancerListenersCommandOutput) => void): void;
|
|
167
179
|
deleteLoadBalancerListeners(args: DeleteLoadBalancerListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerListenersCommandOutput) => void): void;
|
|
168
180
|
/**
|
|
181
|
+
* @public
|
|
169
182
|
* <p>Deletes the specified policy from the specified load balancer. This policy must not be enabled for any listeners.</p>
|
|
170
183
|
*/
|
|
171
184
|
deleteLoadBalancerPolicy(args: DeleteLoadBalancerPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoadBalancerPolicyCommandOutput>;
|
|
172
185
|
deleteLoadBalancerPolicy(args: DeleteLoadBalancerPolicyCommandInput, cb: (err: any, data?: DeleteLoadBalancerPolicyCommandOutput) => void): void;
|
|
173
186
|
deleteLoadBalancerPolicy(args: DeleteLoadBalancerPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoadBalancerPolicyCommandOutput) => void): void;
|
|
174
187
|
/**
|
|
188
|
+
* @public
|
|
175
189
|
* <p>Deregisters the specified instances from the specified load balancer. After the instance is deregistered, it no longer receives traffic from the load balancer.</p>
|
|
176
190
|
*
|
|
177
191
|
* <p>You can use <a>DescribeLoadBalancers</a> to verify that the instance is deregistered from the load balancer.</p>
|
|
@@ -183,6 +197,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
183
197
|
deregisterInstancesFromLoadBalancer(args: DeregisterInstancesFromLoadBalancerCommandInput, cb: (err: any, data?: DeregisterInstancesFromLoadBalancerCommandOutput) => void): void;
|
|
184
198
|
deregisterInstancesFromLoadBalancer(args: DeregisterInstancesFromLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterInstancesFromLoadBalancerCommandOutput) => void): void;
|
|
185
199
|
/**
|
|
200
|
+
* @public
|
|
186
201
|
* <p>Describes the current Elastic Load Balancing resource limits for your AWS account.</p>
|
|
187
202
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-limits.html">Limits for Your Classic Load Balancer</a>
|
|
188
203
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
@@ -191,18 +206,21 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
191
206
|
describeAccountLimits(args: DescribeAccountLimitsCommandInput, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
|
|
192
207
|
describeAccountLimits(args: DescribeAccountLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccountLimitsCommandOutput) => void): void;
|
|
193
208
|
/**
|
|
209
|
+
* @public
|
|
194
210
|
* <p>Describes the state of the specified instances with respect to the specified load balancer. If no instances are specified, the call describes the state of all instances that are currently registered with the load balancer. If instances are specified, their state is returned even if they are no longer registered with the load balancer. The state of terminated instances is not returned.</p>
|
|
195
211
|
*/
|
|
196
212
|
describeInstanceHealth(args: DescribeInstanceHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeInstanceHealthCommandOutput>;
|
|
197
213
|
describeInstanceHealth(args: DescribeInstanceHealthCommandInput, cb: (err: any, data?: DescribeInstanceHealthCommandOutput) => void): void;
|
|
198
214
|
describeInstanceHealth(args: DescribeInstanceHealthCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeInstanceHealthCommandOutput) => void): void;
|
|
199
215
|
/**
|
|
216
|
+
* @public
|
|
200
217
|
* <p>Describes the attributes for the specified load balancer.</p>
|
|
201
218
|
*/
|
|
202
219
|
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancerAttributesCommandOutput>;
|
|
203
220
|
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
|
|
204
221
|
describeLoadBalancerAttributes(args: DescribeLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerAttributesCommandOutput) => void): void;
|
|
205
222
|
/**
|
|
223
|
+
* @public
|
|
206
224
|
* <p>Describes the specified policies.</p>
|
|
207
225
|
* <p>If you specify a load balancer name, the action returns the descriptions of all policies created for the load balancer.
|
|
208
226
|
* If you specify a policy name associated with your load balancer, the action returns the description of that policy.
|
|
@@ -213,6 +231,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
213
231
|
describeLoadBalancerPolicies(args: DescribeLoadBalancerPoliciesCommandInput, cb: (err: any, data?: DescribeLoadBalancerPoliciesCommandOutput) => void): void;
|
|
214
232
|
describeLoadBalancerPolicies(args: DescribeLoadBalancerPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerPoliciesCommandOutput) => void): void;
|
|
215
233
|
/**
|
|
234
|
+
* @public
|
|
216
235
|
* <p>Describes the specified load balancer policy types or all load balancer policy types.</p>
|
|
217
236
|
* <p>The description of each type indicates how it can be used. For example,
|
|
218
237
|
* some policies can be used only with layer 7 listeners,
|
|
@@ -226,18 +245,21 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
226
245
|
describeLoadBalancerPolicyTypes(args: DescribeLoadBalancerPolicyTypesCommandInput, cb: (err: any, data?: DescribeLoadBalancerPolicyTypesCommandOutput) => void): void;
|
|
227
246
|
describeLoadBalancerPolicyTypes(args: DescribeLoadBalancerPolicyTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancerPolicyTypesCommandOutput) => void): void;
|
|
228
247
|
/**
|
|
248
|
+
* @public
|
|
229
249
|
* <p>Describes the specified the load balancers. If no load balancers are specified, the call describes all of your load balancers.</p>
|
|
230
250
|
*/
|
|
231
251
|
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLoadBalancersCommandOutput>;
|
|
232
252
|
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
|
|
233
253
|
describeLoadBalancers(args: DescribeLoadBalancersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLoadBalancersCommandOutput) => void): void;
|
|
234
254
|
/**
|
|
255
|
+
* @public
|
|
235
256
|
* <p>Describes the tags associated with the specified load balancers.</p>
|
|
236
257
|
*/
|
|
237
258
|
describeTags(args: DescribeTagsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeTagsCommandOutput>;
|
|
238
259
|
describeTags(args: DescribeTagsCommandInput, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
239
260
|
describeTags(args: DescribeTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeTagsCommandOutput) => void): void;
|
|
240
261
|
/**
|
|
262
|
+
* @public
|
|
241
263
|
* <p>Removes the specified subnets from the set of configured subnets for the load balancer.</p>
|
|
242
264
|
* <p>After a subnet is removed, all EC2 instances registered with the load balancer
|
|
243
265
|
* in the removed subnet go into the <code>OutOfService</code> state. Then,
|
|
@@ -247,6 +269,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
247
269
|
detachLoadBalancerFromSubnets(args: DetachLoadBalancerFromSubnetsCommandInput, cb: (err: any, data?: DetachLoadBalancerFromSubnetsCommandOutput) => void): void;
|
|
248
270
|
detachLoadBalancerFromSubnets(args: DetachLoadBalancerFromSubnetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DetachLoadBalancerFromSubnetsCommandOutput) => void): void;
|
|
249
271
|
/**
|
|
272
|
+
* @public
|
|
250
273
|
* <p>Removes the specified Availability Zones from the set of Availability Zones for the specified load balancer
|
|
251
274
|
* in EC2-Classic or a default VPC.</p>
|
|
252
275
|
* <p>For load balancers in a non-default VPC, use <a>DetachLoadBalancerFromSubnets</a>.</p>
|
|
@@ -261,6 +284,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
261
284
|
disableAvailabilityZonesForLoadBalancer(args: DisableAvailabilityZonesForLoadBalancerCommandInput, cb: (err: any, data?: DisableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
262
285
|
disableAvailabilityZonesForLoadBalancer(args: DisableAvailabilityZonesForLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
263
286
|
/**
|
|
287
|
+
* @public
|
|
264
288
|
* <p>Adds the specified Availability Zones to the set of Availability Zones for the specified load balancer
|
|
265
289
|
* in EC2-Classic or a default VPC.</p>
|
|
266
290
|
* <p>For load balancers in a non-default VPC, use <a>AttachLoadBalancerToSubnets</a>.</p>
|
|
@@ -272,6 +296,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
272
296
|
enableAvailabilityZonesForLoadBalancer(args: EnableAvailabilityZonesForLoadBalancerCommandInput, cb: (err: any, data?: EnableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
273
297
|
enableAvailabilityZonesForLoadBalancer(args: EnableAvailabilityZonesForLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableAvailabilityZonesForLoadBalancerCommandOutput) => void): void;
|
|
274
298
|
/**
|
|
299
|
+
* @public
|
|
275
300
|
* <p>Modifies the attributes of the specified load balancer.</p>
|
|
276
301
|
* <p>You can modify the load balancer attributes, such as <code>AccessLogs</code>, <code>ConnectionDraining</code>, and
|
|
277
302
|
* <code>CrossZoneLoadBalancing</code> by either enabling or disabling them. Or, you can modify the load balancer attribute
|
|
@@ -304,6 +329,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
304
329
|
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
|
|
305
330
|
modifyLoadBalancerAttributes(args: ModifyLoadBalancerAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ModifyLoadBalancerAttributesCommandOutput) => void): void;
|
|
306
331
|
/**
|
|
332
|
+
* @public
|
|
307
333
|
* <p>Adds the specified instances to the specified load balancer.</p>
|
|
308
334
|
*
|
|
309
335
|
* <p>The instance must be a running instance in the same network as the load balancer (EC2-Classic or the same VPC). If you have EC2-Classic instances and a load balancer in a VPC with ClassicLink enabled, you can link the EC2-Classic instances to that VPC and then register the linked EC2-Classic instances with the load balancer in the VPC.</p>
|
|
@@ -328,12 +354,14 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
328
354
|
registerInstancesWithLoadBalancer(args: RegisterInstancesWithLoadBalancerCommandInput, cb: (err: any, data?: RegisterInstancesWithLoadBalancerCommandOutput) => void): void;
|
|
329
355
|
registerInstancesWithLoadBalancer(args: RegisterInstancesWithLoadBalancerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterInstancesWithLoadBalancerCommandOutput) => void): void;
|
|
330
356
|
/**
|
|
357
|
+
* @public
|
|
331
358
|
* <p>Removes one or more tags from the specified load balancer.</p>
|
|
332
359
|
*/
|
|
333
360
|
removeTags(args: RemoveTagsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveTagsCommandOutput>;
|
|
334
361
|
removeTags(args: RemoveTagsCommandInput, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
335
362
|
removeTags(args: RemoveTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveTagsCommandOutput) => void): void;
|
|
336
363
|
/**
|
|
364
|
+
* @public
|
|
337
365
|
* <p>Sets the certificate that terminates the specified listener's SSL connections. The specified certificate replaces any prior certificate that was used on the same load balancer and port.</p>
|
|
338
366
|
*
|
|
339
367
|
* <p>For more information about updating your SSL certificate, see
|
|
@@ -344,6 +372,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
344
372
|
setLoadBalancerListenerSSLCertificate(args: SetLoadBalancerListenerSSLCertificateCommandInput, cb: (err: any, data?: SetLoadBalancerListenerSSLCertificateCommandOutput) => void): void;
|
|
345
373
|
setLoadBalancerListenerSSLCertificate(args: SetLoadBalancerListenerSSLCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetLoadBalancerListenerSSLCertificateCommandOutput) => void): void;
|
|
346
374
|
/**
|
|
375
|
+
* @public
|
|
347
376
|
* <p>Replaces the set of policies associated with the specified port on which the EC2 instance is listening with a new set of policies.
|
|
348
377
|
* At this time, only the back-end server authentication policy type can be applied to the instance ports; this policy type is composed of multiple public key policies.</p>
|
|
349
378
|
* <p>Each time you use <code>SetLoadBalancerPoliciesForBackendServer</code> to enable the policies,
|
|
@@ -360,6 +389,7 @@ export declare class ElasticLoadBalancing extends ElasticLoadBalancingClient {
|
|
|
360
389
|
setLoadBalancerPoliciesForBackendServer(args: SetLoadBalancerPoliciesForBackendServerCommandInput, cb: (err: any, data?: SetLoadBalancerPoliciesForBackendServerCommandOutput) => void): void;
|
|
361
390
|
setLoadBalancerPoliciesForBackendServer(args: SetLoadBalancerPoliciesForBackendServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SetLoadBalancerPoliciesForBackendServerCommandOutput) => void): void;
|
|
362
391
|
/**
|
|
392
|
+
* @public
|
|
363
393
|
* <p>Replaces the current set of policies for the specified load balancer port with the specified set of policies.</p>
|
|
364
394
|
* <p>To enable back-end server authentication, use <a>SetLoadBalancerPoliciesForBackendServer</a>.</p>
|
|
365
395
|
* <p>For more information about setting policies, see
|
|
@@ -37,15 +37,24 @@ import { SetLoadBalancerListenerSSLCertificateCommandInput, SetLoadBalancerListe
|
|
|
37
37
|
import { SetLoadBalancerPoliciesForBackendServerCommandInput, SetLoadBalancerPoliciesForBackendServerCommandOutput } from "./commands/SetLoadBalancerPoliciesForBackendServerCommand";
|
|
38
38
|
import { SetLoadBalancerPoliciesOfListenerCommandInput, SetLoadBalancerPoliciesOfListenerCommandOutput } from "./commands/SetLoadBalancerPoliciesOfListenerCommand";
|
|
39
39
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
40
43
|
export type ServiceInputTypes = AddTagsCommandInput | ApplySecurityGroupsToLoadBalancerCommandInput | AttachLoadBalancerToSubnetsCommandInput | ConfigureHealthCheckCommandInput | CreateAppCookieStickinessPolicyCommandInput | CreateLBCookieStickinessPolicyCommandInput | CreateLoadBalancerCommandInput | CreateLoadBalancerListenersCommandInput | CreateLoadBalancerPolicyCommandInput | DeleteLoadBalancerCommandInput | DeleteLoadBalancerListenersCommandInput | DeleteLoadBalancerPolicyCommandInput | DeregisterInstancesFromLoadBalancerCommandInput | DescribeAccountLimitsCommandInput | DescribeInstanceHealthCommandInput | DescribeLoadBalancerAttributesCommandInput | DescribeLoadBalancerPoliciesCommandInput | DescribeLoadBalancerPolicyTypesCommandInput | DescribeLoadBalancersCommandInput | DescribeTagsCommandInput | DetachLoadBalancerFromSubnetsCommandInput | DisableAvailabilityZonesForLoadBalancerCommandInput | EnableAvailabilityZonesForLoadBalancerCommandInput | ModifyLoadBalancerAttributesCommandInput | RegisterInstancesWithLoadBalancerCommandInput | RemoveTagsCommandInput | SetLoadBalancerListenerSSLCertificateCommandInput | SetLoadBalancerPoliciesForBackendServerCommandInput | SetLoadBalancerPoliciesOfListenerCommandInput;
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
41
47
|
export type ServiceOutputTypes = AddTagsCommandOutput | ApplySecurityGroupsToLoadBalancerCommandOutput | AttachLoadBalancerToSubnetsCommandOutput | ConfigureHealthCheckCommandOutput | CreateAppCookieStickinessPolicyCommandOutput | CreateLBCookieStickinessPolicyCommandOutput | CreateLoadBalancerCommandOutput | CreateLoadBalancerListenersCommandOutput | CreateLoadBalancerPolicyCommandOutput | DeleteLoadBalancerCommandOutput | DeleteLoadBalancerListenersCommandOutput | DeleteLoadBalancerPolicyCommandOutput | DeregisterInstancesFromLoadBalancerCommandOutput | DescribeAccountLimitsCommandOutput | DescribeInstanceHealthCommandOutput | DescribeLoadBalancerAttributesCommandOutput | DescribeLoadBalancerPoliciesCommandOutput | DescribeLoadBalancerPolicyTypesCommandOutput | DescribeLoadBalancersCommandOutput | DescribeTagsCommandOutput | DetachLoadBalancerFromSubnetsCommandOutput | DisableAvailabilityZonesForLoadBalancerCommandOutput | EnableAvailabilityZonesForLoadBalancerCommandOutput | ModifyLoadBalancerAttributesCommandOutput | RegisterInstancesWithLoadBalancerCommandOutput | RemoveTagsCommandOutput | SetLoadBalancerListenerSSLCertificateCommandOutput | SetLoadBalancerPoliciesForBackendServerCommandOutput | SetLoadBalancerPoliciesOfListenerCommandOutput;
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
42
51
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
43
52
|
/**
|
|
44
53
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
45
54
|
*/
|
|
46
55
|
requestHandler?: __HttpHandler;
|
|
47
56
|
/**
|
|
48
|
-
* A constructor for a class implementing the {@link
|
|
57
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
49
58
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
50
59
|
* @internal
|
|
51
60
|
*/
|
|
@@ -135,23 +144,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
135
144
|
*/
|
|
136
145
|
logger?: __Logger;
|
|
137
146
|
/**
|
|
138
|
-
* The {@link
|
|
147
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
139
148
|
*/
|
|
140
149
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
141
150
|
}
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
*/
|
|
142
154
|
type ElasticLoadBalancingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
143
155
|
/**
|
|
144
|
-
*
|
|
156
|
+
* @public
|
|
157
|
+
*
|
|
158
|
+
* The configuration interface of ElasticLoadBalancingClient class constructor that set the region, credentials and other options.
|
|
145
159
|
*/
|
|
146
160
|
export interface ElasticLoadBalancingClientConfig extends ElasticLoadBalancingClientConfigType {
|
|
147
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
148
165
|
type ElasticLoadBalancingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
149
166
|
/**
|
|
150
|
-
*
|
|
167
|
+
* @public
|
|
168
|
+
*
|
|
169
|
+
* The resolved configuration interface of ElasticLoadBalancingClient class. This is resolved and normalized from the {@link ElasticLoadBalancingClientConfig | constructor configuration interface}.
|
|
151
170
|
*/
|
|
152
171
|
export interface ElasticLoadBalancingClientResolvedConfig extends ElasticLoadBalancingClientResolvedConfigType {
|
|
153
172
|
}
|
|
154
173
|
/**
|
|
174
|
+
* @public
|
|
155
175
|
* <fullname>Elastic Load Balancing</fullname>
|
|
156
176
|
*
|
|
157
177
|
* <p>A load balancer can distribute incoming traffic across your EC2 instances.
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { AddTagsInput, AddTagsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AddTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AddTagsCommandInput extends AddTagsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AddTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds the specified tags to the specified load balancer. Each load balancer can have a maximum of 10 tags.</p>
|
|
18
23
|
*
|
|
19
24
|
* <p>Each tag consists of a key and an optional value. If a tag with the same key is already associated
|
|
@@ -31,6 +36,8 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param AddTagsCommandInput - {@link AddTagsCommandInput}
|
|
40
|
+
* @returns {@link AddTagsCommandOutput}
|
|
34
41
|
* @see {@link AddTagsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link AddTagsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
72
79
|
export declare class AddTagsCommand extends $Command<AddTagsCommandInput, AddTagsCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
73
80
|
readonly input: AddTagsCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: AddTagsCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddTagsCommandInput, AddTagsCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { ApplySecurityGroupsToLoadBalancerInput, ApplySecurityGroupsToLoadBalancerOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ApplySecurityGroupsToLoadBalancerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ApplySecurityGroupsToLoadBalancerCommandInput extends ApplySecurityGroupsToLoadBalancerInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ApplySecurityGroupsToLoadBalancerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ApplySecurityGroupsToLoadBalancerCommandOutput extends ApplySecurityGroupsToLoadBalancerOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates one or more security groups with your load balancer in a virtual private cloud (VPC). The specified security groups override the previously associated security groups.</p>
|
|
18
23
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-security-groups.html#elb-vpc-security-groups">Security Groups for Load Balancers in a VPC</a>
|
|
19
24
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface ApplySecurityGroupsToLoadBalancerCommandOutput extends ApplySec
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ApplySecurityGroupsToLoadBalancerCommandInput - {@link ApplySecurityGroupsToLoadBalancerCommandInput}
|
|
36
|
+
* @returns {@link ApplySecurityGroupsToLoadBalancerCommandOutput}
|
|
30
37
|
* @see {@link ApplySecurityGroupsToLoadBalancerCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ApplySecurityGroupsToLoadBalancerCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface ApplySecurityGroupsToLoadBalancerCommandOutput extends ApplySec
|
|
|
66
73
|
export declare class ApplySecurityGroupsToLoadBalancerCommand extends $Command<ApplySecurityGroupsToLoadBalancerCommandInput, ApplySecurityGroupsToLoadBalancerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
67
74
|
readonly input: ApplySecurityGroupsToLoadBalancerCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: ApplySecurityGroupsToLoadBalancerCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ApplySecurityGroupsToLoadBalancerCommandInput, ApplySecurityGroupsToLoadBalancerCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { AttachLoadBalancerToSubnetsInput, AttachLoadBalancerToSubnetsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AttachLoadBalancerToSubnetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AttachLoadBalancerToSubnetsCommandInput extends AttachLoadBalancerToSubnetsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AttachLoadBalancerToSubnetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AttachLoadBalancerToSubnetsCommandOutput extends AttachLoadBalancerToSubnetsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds one or more subnets to the set of configured subnets for the specified load balancer.</p>
|
|
18
23
|
* <p>The load balancer evenly distributes requests across all registered subnets.
|
|
19
24
|
* For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-manage-subnets.html">Add or Remove Subnets for Your Load Balancer in a VPC</a>
|
|
@@ -28,6 +33,8 @@ export interface AttachLoadBalancerToSubnetsCommandOutput extends AttachLoadBala
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param AttachLoadBalancerToSubnetsCommandInput - {@link AttachLoadBalancerToSubnetsCommandInput}
|
|
37
|
+
* @returns {@link AttachLoadBalancerToSubnetsCommandOutput}
|
|
31
38
|
* @see {@link AttachLoadBalancerToSubnetsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link AttachLoadBalancerToSubnetsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface AttachLoadBalancerToSubnetsCommandOutput extends AttachLoadBala
|
|
|
71
78
|
export declare class AttachLoadBalancerToSubnetsCommand extends $Command<AttachLoadBalancerToSubnetsCommandInput, AttachLoadBalancerToSubnetsCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
72
79
|
readonly input: AttachLoadBalancerToSubnetsCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: AttachLoadBalancerToSubnetsCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AttachLoadBalancerToSubnetsCommandInput, AttachLoadBalancerToSubnetsCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { ConfigureHealthCheckInput, ConfigureHealthCheckOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ConfigureHealthCheckCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ConfigureHealthCheckCommandInput extends ConfigureHealthCheckInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ConfigureHealthCheckCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ConfigureHealthCheckCommandOutput extends ConfigureHealthCheckOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Specifies the health check settings to use when evaluating the health state of your EC2 instances.</p>
|
|
18
23
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/elb-healthchecks.html">Configure Health Checks for Your Load Balancer</a>
|
|
19
24
|
* in the <i>Classic Load Balancers Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface ConfigureHealthCheckCommandOutput extends ConfigureHealthCheckO
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ConfigureHealthCheckCommandInput - {@link ConfigureHealthCheckCommandInput}
|
|
36
|
+
* @returns {@link ConfigureHealthCheckCommandOutput}
|
|
30
37
|
* @see {@link ConfigureHealthCheckCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ConfigureHealthCheckCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface ConfigureHealthCheckCommandOutput extends ConfigureHealthCheckO
|
|
|
68
75
|
export declare class ConfigureHealthCheckCommand extends $Command<ConfigureHealthCheckCommandInput, ConfigureHealthCheckCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
69
76
|
readonly input: ConfigureHealthCheckCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: ConfigureHealthCheckCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ConfigureHealthCheckCommandInput, ConfigureHealthCheckCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { CreateAppCookieStickinessPolicyInput, CreateAppCookieStickinessPolicyOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateAppCookieStickinessPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateAppCookieStickinessPolicyCommandInput extends CreateAppCookieStickinessPolicyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateAppCookieStickinessPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateAppCookieStickinessPolicyCommandOutput extends CreateAppCookieStickinessPolicyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Generates a stickiness policy with sticky session lifetimes that follow that of an application-generated cookie. This policy can be associated only with HTTP/HTTPS listeners.</p>
|
|
18
23
|
* <p>This policy is similar to the policy created by <a>CreateLBCookieStickinessPolicy</a>,
|
|
19
24
|
* except that the lifetime of the special Elastic Load Balancing cookie, <code>AWSELB</code>,
|
|
@@ -33,6 +38,8 @@ export interface CreateAppCookieStickinessPolicyCommandOutput extends CreateAppC
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param CreateAppCookieStickinessPolicyCommandInput - {@link CreateAppCookieStickinessPolicyCommandInput}
|
|
42
|
+
* @returns {@link CreateAppCookieStickinessPolicyCommandOutput}
|
|
36
43
|
* @see {@link CreateAppCookieStickinessPolicyCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link CreateAppCookieStickinessPolicyCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface CreateAppCookieStickinessPolicyCommandOutput extends CreateAppC
|
|
|
67
74
|
export declare class CreateAppCookieStickinessPolicyCommand extends $Command<CreateAppCookieStickinessPolicyCommandInput, CreateAppCookieStickinessPolicyCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
68
75
|
readonly input: CreateAppCookieStickinessPolicyCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: CreateAppCookieStickinessPolicyCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAppCookieStickinessPolicyCommandInput, CreateAppCookieStickinessPolicyCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { CreateLBCookieStickinessPolicyInput, CreateLBCookieStickinessPolicyOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateLBCookieStickinessPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateLBCookieStickinessPolicyCommandInput extends CreateLBCookieStickinessPolicyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateLBCookieStickinessPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateLBCookieStickinessPolicyCommandOutput extends CreateLBCookieStickinessPolicyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Generates a stickiness policy with sticky session lifetimes controlled by the lifetime of the browser (user-agent) or a specified expiration period. This policy can be associated only with HTTP/HTTPS listeners.</p>
|
|
18
23
|
* <p>When a load balancer implements this policy, the load balancer uses a special cookie to track the instance for each request. When the load balancer receives a request, it first checks to see if this cookie is present in the request.
|
|
19
24
|
* If so, the load balancer sends the request to the application server specified in the cookie. If not, the load balancer sends the request to a server that is chosen based on the existing load-balancing algorithm.</p>
|
|
@@ -31,6 +36,8 @@ export interface CreateLBCookieStickinessPolicyCommandOutput extends CreateLBCoo
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param CreateLBCookieStickinessPolicyCommandInput - {@link CreateLBCookieStickinessPolicyCommandInput}
|
|
40
|
+
* @returns {@link CreateLBCookieStickinessPolicyCommandOutput}
|
|
34
41
|
* @see {@link CreateLBCookieStickinessPolicyCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link CreateLBCookieStickinessPolicyCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface CreateLBCookieStickinessPolicyCommandOutput extends CreateLBCoo
|
|
|
65
72
|
export declare class CreateLBCookieStickinessPolicyCommand extends $Command<CreateLBCookieStickinessPolicyCommandInput, CreateLBCookieStickinessPolicyCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
66
73
|
readonly input: CreateLBCookieStickinessPolicyCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: CreateLBCookieStickinessPolicyCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateLBCookieStickinessPolicyCommandInput, CreateLBCookieStickinessPolicyCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|