@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
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { DescribeAccessPointsInput, DescribeAccessPointsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeLoadBalancersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeLoadBalancersCommandInput extends DescribeAccessPointsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeLoadBalancersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeLoadBalancersCommandOutput extends DescribeAccessPointsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the specified the load balancers. If no load balancers are specified, the call describes all of your load balancers.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeAccessPoints
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeLoadBalancersCommandInput - {@link DescribeLoadBalancersCommandInput}
|
|
34
|
+
* @returns {@link DescribeLoadBalancersCommandOutput}
|
|
28
35
|
* @see {@link DescribeLoadBalancersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeLoadBalancersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -143,11 +150,20 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeAccessPoints
|
|
|
143
150
|
export declare class DescribeLoadBalancersCommand extends $Command<DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
144
151
|
readonly input: DescribeLoadBalancersCommandInput;
|
|
145
152
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
153
|
+
/**
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
146
156
|
constructor(input: DescribeLoadBalancersCommandInput);
|
|
147
157
|
/**
|
|
148
158
|
* @internal
|
|
149
159
|
*/
|
|
150
160
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLoadBalancersCommandInput, DescribeLoadBalancersCommandOutput>;
|
|
161
|
+
/**
|
|
162
|
+
* @internal
|
|
163
|
+
*/
|
|
151
164
|
private serialize;
|
|
165
|
+
/**
|
|
166
|
+
* @internal
|
|
167
|
+
*/
|
|
152
168
|
private deserialize;
|
|
153
169
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeTagsCommandInput extends DescribeTagsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes the tags associated with the specified load balancers.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeTagsCommandInput - {@link DescribeTagsCommandInput}
|
|
34
|
+
* @returns {@link DescribeTagsCommandOutput}
|
|
28
35
|
* @see {@link DescribeTagsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeTagsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
|
|
|
69
76
|
export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
70
77
|
readonly input: DescribeTagsCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: DescribeTagsCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { DetachLoadBalancerFromSubnetsInput, DetachLoadBalancerFromSubnetsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DetachLoadBalancerFromSubnetsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DetachLoadBalancerFromSubnetsCommandInput extends DetachLoadBalancerFromSubnetsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DetachLoadBalancerFromSubnetsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DetachLoadBalancerFromSubnetsCommandOutput extends DetachLoadBalancerFromSubnetsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified subnets from the set of configured subnets for the load balancer.</p>
|
|
18
23
|
* <p>After a subnet is removed, all EC2 instances registered with the load balancer
|
|
19
24
|
* in the removed subnet go into the <code>OutOfService</code> state. Then,
|
|
@@ -28,6 +33,8 @@ export interface DetachLoadBalancerFromSubnetsCommandOutput extends DetachLoadBa
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DetachLoadBalancerFromSubnetsCommandInput - {@link DetachLoadBalancerFromSubnetsCommandInput}
|
|
37
|
+
* @returns {@link DetachLoadBalancerFromSubnetsCommandOutput}
|
|
31
38
|
* @see {@link DetachLoadBalancerFromSubnetsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DetachLoadBalancerFromSubnetsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface DetachLoadBalancerFromSubnetsCommandOutput extends DetachLoadBa
|
|
|
64
71
|
export declare class DetachLoadBalancerFromSubnetsCommand extends $Command<DetachLoadBalancerFromSubnetsCommandInput, DetachLoadBalancerFromSubnetsCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
65
72
|
readonly input: DetachLoadBalancerFromSubnetsCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: DetachLoadBalancerFromSubnetsCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DetachLoadBalancerFromSubnetsCommandInput, DetachLoadBalancerFromSubnetsCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { RemoveAvailabilityZonesInput, RemoveAvailabilityZonesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisableAvailabilityZonesForLoadBalancerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisableAvailabilityZonesForLoadBalancerCommandInput extends RemoveAvailabilityZonesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisableAvailabilityZonesForLoadBalancerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisableAvailabilityZonesForLoadBalancerCommandOutput extends RemoveAvailabilityZonesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified Availability Zones from the set of Availability Zones for the specified load balancer
|
|
18
23
|
* in EC2-Classic or a default VPC.</p>
|
|
19
24
|
* <p>For load balancers in a non-default VPC, use <a>DetachLoadBalancerFromSubnets</a>.</p>
|
|
@@ -33,6 +38,8 @@ export interface DisableAvailabilityZonesForLoadBalancerCommandOutput extends Re
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param DisableAvailabilityZonesForLoadBalancerCommandInput - {@link DisableAvailabilityZonesForLoadBalancerCommandInput}
|
|
42
|
+
* @returns {@link DisableAvailabilityZonesForLoadBalancerCommandOutput}
|
|
36
43
|
* @see {@link DisableAvailabilityZonesForLoadBalancerCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link DisableAvailabilityZonesForLoadBalancerCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface DisableAvailabilityZonesForLoadBalancerCommandOutput extends Re
|
|
|
69
76
|
export declare class DisableAvailabilityZonesForLoadBalancerCommand extends $Command<DisableAvailabilityZonesForLoadBalancerCommandInput, DisableAvailabilityZonesForLoadBalancerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
70
77
|
readonly input: DisableAvailabilityZonesForLoadBalancerCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: DisableAvailabilityZonesForLoadBalancerCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableAvailabilityZonesForLoadBalancerCommandInput, DisableAvailabilityZonesForLoadBalancerCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { AddAvailabilityZonesInput, AddAvailabilityZonesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link EnableAvailabilityZonesForLoadBalancerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface EnableAvailabilityZonesForLoadBalancerCommandInput extends AddAvailabilityZonesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link EnableAvailabilityZonesForLoadBalancerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface EnableAvailabilityZonesForLoadBalancerCommandOutput extends AddAvailabilityZonesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds the specified Availability Zones to the set of Availability Zones for the specified load balancer
|
|
18
23
|
* in EC2-Classic or a default VPC.</p>
|
|
19
24
|
* <p>For load balancers in a non-default VPC, use <a>AttachLoadBalancerToSubnets</a>.</p>
|
|
@@ -30,6 +35,8 @@ export interface EnableAvailabilityZonesForLoadBalancerCommandOutput extends Add
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param EnableAvailabilityZonesForLoadBalancerCommandInput - {@link EnableAvailabilityZonesForLoadBalancerCommandInput}
|
|
39
|
+
* @returns {@link EnableAvailabilityZonesForLoadBalancerCommandOutput}
|
|
33
40
|
* @see {@link EnableAvailabilityZonesForLoadBalancerCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link EnableAvailabilityZonesForLoadBalancerCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface EnableAvailabilityZonesForLoadBalancerCommandOutput extends Add
|
|
|
64
71
|
export declare class EnableAvailabilityZonesForLoadBalancerCommand extends $Command<EnableAvailabilityZonesForLoadBalancerCommandInput, EnableAvailabilityZonesForLoadBalancerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
65
72
|
readonly input: EnableAvailabilityZonesForLoadBalancerCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: EnableAvailabilityZonesForLoadBalancerCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableAvailabilityZonesForLoadBalancerCommandInput, EnableAvailabilityZonesForLoadBalancerCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { ModifyLoadBalancerAttributesInput, ModifyLoadBalancerAttributesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ModifyLoadBalancerAttributesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ModifyLoadBalancerAttributesCommandInput extends ModifyLoadBalancerAttributesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ModifyLoadBalancerAttributesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ModifyLoadBalancerAttributesCommandOutput extends ModifyLoadBalancerAttributesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the attributes of the specified load balancer.</p>
|
|
18
23
|
* <p>You can modify the load balancer attributes, such as <code>AccessLogs</code>, <code>ConnectionDraining</code>, and
|
|
19
24
|
* <code>CrossZoneLoadBalancing</code> by either enabling or disabling them. Or, you can modify the load balancer attribute
|
|
@@ -51,6 +56,8 @@ export interface ModifyLoadBalancerAttributesCommandOutput extends ModifyLoadBal
|
|
|
51
56
|
* const response = await client.send(command);
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
59
|
+
* @param ModifyLoadBalancerAttributesCommandInput - {@link ModifyLoadBalancerAttributesCommandInput}
|
|
60
|
+
* @returns {@link ModifyLoadBalancerAttributesCommandOutput}
|
|
54
61
|
* @see {@link ModifyLoadBalancerAttributesCommandInput} for command's `input` shape.
|
|
55
62
|
* @see {@link ModifyLoadBalancerAttributesCommandOutput} for command's `response` shape.
|
|
56
63
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -123,11 +130,20 @@ export interface ModifyLoadBalancerAttributesCommandOutput extends ModifyLoadBal
|
|
|
123
130
|
export declare class ModifyLoadBalancerAttributesCommand extends $Command<ModifyLoadBalancerAttributesCommandInput, ModifyLoadBalancerAttributesCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
124
131
|
readonly input: ModifyLoadBalancerAttributesCommandInput;
|
|
125
132
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
126
136
|
constructor(input: ModifyLoadBalancerAttributesCommandInput);
|
|
127
137
|
/**
|
|
128
138
|
* @internal
|
|
129
139
|
*/
|
|
130
140
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ModifyLoadBalancerAttributesCommandInput, ModifyLoadBalancerAttributesCommandOutput>;
|
|
141
|
+
/**
|
|
142
|
+
* @internal
|
|
143
|
+
*/
|
|
131
144
|
private serialize;
|
|
145
|
+
/**
|
|
146
|
+
* @internal
|
|
147
|
+
*/
|
|
132
148
|
private deserialize;
|
|
133
149
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { RegisterEndPointsInput, RegisterEndPointsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterInstancesWithLoadBalancerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterInstancesWithLoadBalancerCommandInput extends RegisterEndPointsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterInstancesWithLoadBalancerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterInstancesWithLoadBalancerCommandOutput extends RegisterEndPointsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds the specified instances to the specified load balancer.</p>
|
|
18
23
|
*
|
|
19
24
|
* <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>
|
|
@@ -43,6 +48,8 @@ export interface RegisterInstancesWithLoadBalancerCommandOutput extends Register
|
|
|
43
48
|
* const response = await client.send(command);
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
51
|
+
* @param RegisterInstancesWithLoadBalancerCommandInput - {@link RegisterInstancesWithLoadBalancerCommandInput}
|
|
52
|
+
* @returns {@link RegisterInstancesWithLoadBalancerCommandOutput}
|
|
46
53
|
* @see {@link RegisterInstancesWithLoadBalancerCommandInput} for command's `input` shape.
|
|
47
54
|
* @see {@link RegisterInstancesWithLoadBalancerCommandOutput} for command's `response` shape.
|
|
48
55
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -89,11 +96,20 @@ export interface RegisterInstancesWithLoadBalancerCommandOutput extends Register
|
|
|
89
96
|
export declare class RegisterInstancesWithLoadBalancerCommand extends $Command<RegisterInstancesWithLoadBalancerCommandInput, RegisterInstancesWithLoadBalancerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
90
97
|
readonly input: RegisterInstancesWithLoadBalancerCommandInput;
|
|
91
98
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
92
102
|
constructor(input: RegisterInstancesWithLoadBalancerCommandInput);
|
|
93
103
|
/**
|
|
94
104
|
* @internal
|
|
95
105
|
*/
|
|
96
106
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterInstancesWithLoadBalancerCommandInput, RegisterInstancesWithLoadBalancerCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
97
110
|
private serialize;
|
|
111
|
+
/**
|
|
112
|
+
* @internal
|
|
113
|
+
*/
|
|
98
114
|
private deserialize;
|
|
99
115
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { RemoveTagsInput, RemoveTagsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemoveTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemoveTagsCommandInput extends RemoveTagsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemoveTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes one or more tags from the specified load balancer.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RemoveTagsCommandInput - {@link RemoveTagsCommandInput}
|
|
34
|
+
* @returns {@link RemoveTagsCommandOutput}
|
|
28
35
|
* @see {@link RemoveTagsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RemoveTagsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
55
62
|
export declare class RemoveTagsCommand extends $Command<RemoveTagsCommandInput, RemoveTagsCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
56
63
|
readonly input: RemoveTagsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: RemoveTagsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveTagsCommandInput, RemoveTagsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ElasticLoadBalancingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ElasticLoadBalancingClient";
|
|
5
5
|
import { SetLoadBalancerListenerSSLCertificateInput, SetLoadBalancerListenerSSLCertificateOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SetLoadBalancerListenerSSLCertificateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SetLoadBalancerListenerSSLCertificateCommandInput extends SetLoadBalancerListenerSSLCertificateInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SetLoadBalancerListenerSSLCertificateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SetLoadBalancerListenerSSLCertificateCommandOutput extends SetLoadBalancerListenerSSLCertificateOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <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>
|
|
18
23
|
*
|
|
19
24
|
* <p>For more information about updating your SSL certificate, see
|
|
@@ -29,6 +34,8 @@ export interface SetLoadBalancerListenerSSLCertificateCommandOutput extends SetL
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param SetLoadBalancerListenerSSLCertificateCommandInput - {@link SetLoadBalancerListenerSSLCertificateCommandInput}
|
|
38
|
+
* @returns {@link SetLoadBalancerListenerSSLCertificateCommandOutput}
|
|
32
39
|
* @see {@link SetLoadBalancerListenerSSLCertificateCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link SetLoadBalancerListenerSSLCertificateCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface SetLoadBalancerListenerSSLCertificateCommandOutput extends SetL
|
|
|
68
75
|
export declare class SetLoadBalancerListenerSSLCertificateCommand extends $Command<SetLoadBalancerListenerSSLCertificateCommandInput, SetLoadBalancerListenerSSLCertificateCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
69
76
|
readonly input: SetLoadBalancerListenerSSLCertificateCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: SetLoadBalancerListenerSSLCertificateCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetLoadBalancerListenerSSLCertificateCommandInput, SetLoadBalancerListenerSSLCertificateCommandOutput>;
|
|
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 { SetLoadBalancerPoliciesForBackendServerInput, SetLoadBalancerPoliciesForBackendServerOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SetLoadBalancerPoliciesForBackendServerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SetLoadBalancerPoliciesForBackendServerCommandInput extends SetLoadBalancerPoliciesForBackendServerInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SetLoadBalancerPoliciesForBackendServerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SetLoadBalancerPoliciesForBackendServerCommandOutput extends SetLoadBalancerPoliciesForBackendServerOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Replaces the set of policies associated with the specified port on which the EC2 instance is listening with a new set of policies.
|
|
18
23
|
* 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>
|
|
19
24
|
* <p>Each time you use <code>SetLoadBalancerPoliciesForBackendServer</code> to enable the policies,
|
|
@@ -35,6 +40,8 @@ export interface SetLoadBalancerPoliciesForBackendServerCommandOutput extends Se
|
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
43
|
+
* @param SetLoadBalancerPoliciesForBackendServerCommandInput - {@link SetLoadBalancerPoliciesForBackendServerCommandInput}
|
|
44
|
+
* @returns {@link SetLoadBalancerPoliciesForBackendServerCommandOutput}
|
|
38
45
|
* @see {@link SetLoadBalancerPoliciesForBackendServerCommandInput} for command's `input` shape.
|
|
39
46
|
* @see {@link SetLoadBalancerPoliciesForBackendServerCommandOutput} for command's `response` shape.
|
|
40
47
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface SetLoadBalancerPoliciesForBackendServerCommandOutput extends Se
|
|
|
68
75
|
export declare class SetLoadBalancerPoliciesForBackendServerCommand extends $Command<SetLoadBalancerPoliciesForBackendServerCommandInput, SetLoadBalancerPoliciesForBackendServerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
69
76
|
readonly input: SetLoadBalancerPoliciesForBackendServerCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: SetLoadBalancerPoliciesForBackendServerCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetLoadBalancerPoliciesForBackendServerCommandInput, SetLoadBalancerPoliciesForBackendServerCommandOutput>;
|
|
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 { SetLoadBalancerPoliciesOfListenerInput, SetLoadBalancerPoliciesOfListenerOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SetLoadBalancerPoliciesOfListenerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SetLoadBalancerPoliciesOfListenerCommandInput extends SetLoadBalancerPoliciesOfListenerInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SetLoadBalancerPoliciesOfListenerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SetLoadBalancerPoliciesOfListenerCommandOutput extends SetLoadBalancerPoliciesOfListenerOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Replaces the current set of policies for the specified load balancer port with the specified set of policies.</p>
|
|
18
23
|
* <p>To enable back-end server authentication, use <a>SetLoadBalancerPoliciesForBackendServer</a>.</p>
|
|
19
24
|
* <p>For more information about setting policies, see
|
|
@@ -31,6 +36,8 @@ export interface SetLoadBalancerPoliciesOfListenerCommandOutput extends SetLoadB
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param SetLoadBalancerPoliciesOfListenerCommandInput - {@link SetLoadBalancerPoliciesOfListenerCommandInput}
|
|
40
|
+
* @returns {@link SetLoadBalancerPoliciesOfListenerCommandOutput}
|
|
34
41
|
* @see {@link SetLoadBalancerPoliciesOfListenerCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link SetLoadBalancerPoliciesOfListenerCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface SetLoadBalancerPoliciesOfListenerCommandOutput extends SetLoadB
|
|
|
67
74
|
export declare class SetLoadBalancerPoliciesOfListenerCommand extends $Command<SetLoadBalancerPoliciesOfListenerCommandInput, SetLoadBalancerPoliciesOfListenerCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
|
|
68
75
|
readonly input: SetLoadBalancerPoliciesOfListenerCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: SetLoadBalancerPoliciesOfListenerCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ElasticLoadBalancingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SetLoadBalancerPoliciesOfListenerCommandInput, SetLoadBalancerPoliciesOfListenerCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from ElasticLoadBalancing service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class ElasticLoadBalancingServiceException extends __ServiceException {
|