@aws-sdk/client-elastic-load-balancing-v2 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.
- package/dist-types/commands/AddListenerCertificatesCommand.d.ts +1 -0
- package/dist-types/commands/AddTagsCommand.d.ts +12 -9
- package/dist-types/commands/AddTrustStoreRevocationsCommand.d.ts +1 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +38 -39
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +44 -45
- package/dist-types/commands/CreateRuleCommand.d.ts +21 -21
- package/dist-types/commands/CreateTargetGroupCommand.d.ts +22 -22
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +1 -0
- package/dist-types/commands/DeleteListenerCommand.d.ts +7 -4
- package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +7 -4
- package/dist-types/commands/DeleteRuleCommand.d.ts +7 -4
- package/dist-types/commands/DeleteSharedTrustStoreAssociationCommand.d.ts +8 -5
- package/dist-types/commands/DeleteTargetGroupCommand.d.ts +7 -4
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterTargetsCommand.d.ts +9 -6
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeCapacityReservationCommand.d.ts +1 -0
- package/dist-types/commands/DescribeListenerAttributesCommand.d.ts +7 -4
- package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeListenersCommand.d.ts +12 -12
- package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +15 -15
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +21 -21
- package/dist-types/commands/DescribeRulesCommand.d.ts +14 -14
- package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +46 -46
- package/dist-types/commands/DescribeTagsCommand.d.ts +11 -11
- package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +13 -13
- package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +20 -20
- package/dist-types/commands/DescribeTargetHealthCommand.d.ts +30 -31
- package/dist-types/commands/DescribeTrustStoreAssociationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTrustStoreRevocationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeTrustStoresCommand.d.ts +1 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +7 -4
- package/dist-types/commands/GetTrustStoreCaCertificatesBundleCommand.d.ts +1 -0
- package/dist-types/commands/GetTrustStoreRevocationContentCommand.d.ts +1 -0
- package/dist-types/commands/ModifyCapacityReservationCommand.d.ts +1 -0
- package/dist-types/commands/ModifyIpPoolsCommand.d.ts +1 -0
- package/dist-types/commands/ModifyListenerAttributesCommand.d.ts +1 -0
- package/dist-types/commands/ModifyListenerCommand.d.ts +30 -31
- package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +54 -56
- package/dist-types/commands/ModifyRuleCommand.d.ts +17 -17
- package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +16 -16
- package/dist-types/commands/ModifyTargetGroupCommand.d.ts +21 -21
- package/dist-types/commands/ModifyTrustStoreCommand.d.ts +1 -0
- package/dist-types/commands/RegisterTargetsCommand.d.ts +20 -15
- package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +1 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +8 -5
- package/dist-types/commands/RemoveTrustStoreRevocationsCommand.d.ts +1 -0
- package/dist-types/commands/SetIpAddressTypeCommand.d.ts +1 -0
- package/dist-types/commands/SetRulePrioritiesCommand.d.ts +16 -16
- package/dist-types/commands/SetSecurityGroupsCommand.d.ts +6 -6
- package/dist-types/commands/SetSubnetsCommand.d.ts +10 -10
- package/package.json +5 -5
|
@@ -92,23 +92,26 @@ declare const DeregisterTargetsCommand_base: {
|
|
|
92
92
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
94
94
|
*
|
|
95
|
-
*
|
|
95
|
+
*
|
|
96
96
|
* @example To deregister a target from a target group
|
|
97
97
|
* ```javascript
|
|
98
98
|
* // This example deregisters the specified instance from the specified target group.
|
|
99
99
|
* const input = {
|
|
100
|
-
*
|
|
101
|
-
*
|
|
100
|
+
* TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067",
|
|
101
|
+
* Targets: [
|
|
102
102
|
* {
|
|
103
|
-
*
|
|
103
|
+
* Id: "i-0f76fade"
|
|
104
104
|
* }
|
|
105
105
|
* ]
|
|
106
106
|
* };
|
|
107
107
|
* const command = new DeregisterTargetsCommand(input);
|
|
108
|
-
* await client.send(command);
|
|
109
|
-
*
|
|
108
|
+
* const response = await client.send(command);
|
|
109
|
+
* /* response is
|
|
110
|
+
* { /* metadata only *\/ }
|
|
111
|
+
* *\/
|
|
110
112
|
* ```
|
|
111
113
|
*
|
|
114
|
+
* @public
|
|
112
115
|
*/
|
|
113
116
|
export declare class DeregisterTargetsCommand extends DeregisterTargetsCommand_base {
|
|
114
117
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -83,6 +83,7 @@ declare const DescribeAccountLimitsCommand_base: {
|
|
|
83
83
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
85
85
|
*
|
|
86
|
+
*
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class DescribeAccountLimitsCommand extends DescribeAccountLimitsCommand_base {
|
|
@@ -71,6 +71,7 @@ declare const DescribeCapacityReservationCommand_base: {
|
|
|
71
71
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
73
73
|
*
|
|
74
|
+
*
|
|
74
75
|
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class DescribeCapacityReservationCommand extends DescribeCapacityReservationCommand_base {
|
|
@@ -62,18 +62,21 @@ declare const DescribeListenerAttributesCommand_base: {
|
|
|
62
62
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
64
64
|
*
|
|
65
|
-
*
|
|
65
|
+
*
|
|
66
66
|
* @example Describe listener attributes
|
|
67
67
|
* ```javascript
|
|
68
68
|
* // This example describes the attributes of the specified listener.
|
|
69
69
|
* const input = {
|
|
70
|
-
*
|
|
70
|
+
* ListenerArn: "aws:elasticloadbalancing:us-east-1:123456789012:listener/net/my-listener/73e2d6bc24d8a067/d5dc06411fa5bcea"
|
|
71
71
|
* };
|
|
72
72
|
* const command = new DescribeListenerAttributesCommand(input);
|
|
73
|
-
* await client.send(command);
|
|
74
|
-
*
|
|
73
|
+
* const response = await client.send(command);
|
|
74
|
+
* /* response is
|
|
75
|
+
* { /* empty *\/ }
|
|
76
|
+
* *\/
|
|
75
77
|
* ```
|
|
76
78
|
*
|
|
79
|
+
* @public
|
|
77
80
|
*/
|
|
78
81
|
export declare class DescribeListenerAttributesCommand extends DescribeListenerAttributesCommand_base {
|
|
79
82
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -72,6 +72,7 @@ declare const DescribeListenerCertificatesCommand_base: {
|
|
|
72
72
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
74
74
|
*
|
|
75
|
+
*
|
|
75
76
|
* @public
|
|
76
77
|
*/
|
|
77
78
|
export declare class DescribeListenerCertificatesCommand extends DescribeListenerCertificatesCommand_base {
|
|
@@ -155,38 +155,38 @@ declare const DescribeListenersCommand_base: {
|
|
|
155
155
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
156
156
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
157
157
|
*
|
|
158
|
-
*
|
|
158
|
+
*
|
|
159
159
|
* @example To describe a listener
|
|
160
160
|
* ```javascript
|
|
161
161
|
* // This example describes the specified listener.
|
|
162
162
|
* const input = {
|
|
163
|
-
*
|
|
163
|
+
* ListenerArns: [
|
|
164
164
|
* "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2"
|
|
165
165
|
* ]
|
|
166
166
|
* };
|
|
167
167
|
* const command = new DescribeListenersCommand(input);
|
|
168
168
|
* const response = await client.send(command);
|
|
169
|
-
* /* response
|
|
169
|
+
* /* response is
|
|
170
170
|
* {
|
|
171
|
-
*
|
|
171
|
+
* Listeners: [
|
|
172
172
|
* {
|
|
173
|
-
*
|
|
173
|
+
* DefaultActions: [
|
|
174
174
|
* {
|
|
175
|
-
*
|
|
176
|
-
*
|
|
175
|
+
* TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067",
|
|
176
|
+
* Type: "forward"
|
|
177
177
|
* }
|
|
178
178
|
* ],
|
|
179
|
-
*
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
*
|
|
179
|
+
* ListenerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2",
|
|
180
|
+
* LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
|
|
181
|
+
* Port: 80,
|
|
182
|
+
* Protocol: "HTTP"
|
|
183
183
|
* }
|
|
184
184
|
* ]
|
|
185
185
|
* }
|
|
186
186
|
* *\/
|
|
187
|
-
* // example id: elbv2-describe-listeners-1
|
|
188
187
|
* ```
|
|
189
188
|
*
|
|
189
|
+
* @public
|
|
190
190
|
*/
|
|
191
191
|
export declare class DescribeListenersCommand extends DescribeListenersCommand_base {
|
|
192
192
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -84,44 +84,44 @@ declare const DescribeLoadBalancerAttributesCommand_base: {
|
|
|
84
84
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
86
86
|
*
|
|
87
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example To describe load balancer attributes
|
|
89
89
|
* ```javascript
|
|
90
90
|
* // This example describes the attributes of the specified load balancer.
|
|
91
91
|
* const input = {
|
|
92
|
-
*
|
|
92
|
+
* LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188"
|
|
93
93
|
* };
|
|
94
94
|
* const command = new DescribeLoadBalancerAttributesCommand(input);
|
|
95
95
|
* const response = await client.send(command);
|
|
96
|
-
* /* response
|
|
96
|
+
* /* response is
|
|
97
97
|
* {
|
|
98
|
-
*
|
|
98
|
+
* Attributes: [
|
|
99
99
|
* {
|
|
100
|
-
*
|
|
101
|
-
*
|
|
100
|
+
* Key: "access_logs.s3.enabled",
|
|
101
|
+
* Value: "false"
|
|
102
102
|
* },
|
|
103
103
|
* {
|
|
104
|
-
*
|
|
105
|
-
*
|
|
104
|
+
* Key: "idle_timeout.timeout_seconds",
|
|
105
|
+
* Value: "60"
|
|
106
106
|
* },
|
|
107
107
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
108
|
+
* Key: "access_logs.s3.prefix",
|
|
109
|
+
* Value: ""
|
|
110
110
|
* },
|
|
111
111
|
* {
|
|
112
|
-
*
|
|
113
|
-
*
|
|
112
|
+
* Key: "deletion_protection.enabled",
|
|
113
|
+
* Value: "false"
|
|
114
114
|
* },
|
|
115
115
|
* {
|
|
116
|
-
*
|
|
117
|
-
*
|
|
116
|
+
* Key: "access_logs.s3.bucket",
|
|
117
|
+
* Value: ""
|
|
118
118
|
* }
|
|
119
119
|
* ]
|
|
120
120
|
* }
|
|
121
121
|
* *\/
|
|
122
|
-
* // example id: elbv2-describe-load-balancer-attributes-1
|
|
123
122
|
* ```
|
|
124
123
|
*
|
|
124
|
+
* @public
|
|
125
125
|
*/
|
|
126
126
|
export declare class DescribeLoadBalancerAttributesCommand extends DescribeLoadBalancerAttributesCommand_base {
|
|
127
127
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -108,52 +108,52 @@ declare const DescribeLoadBalancersCommand_base: {
|
|
|
108
108
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
110
110
|
*
|
|
111
|
-
*
|
|
111
|
+
*
|
|
112
112
|
* @example To describe a load balancer
|
|
113
113
|
* ```javascript
|
|
114
114
|
* // This example describes the specified load balancer.
|
|
115
115
|
* const input = {
|
|
116
|
-
*
|
|
116
|
+
* LoadBalancerArns: [
|
|
117
117
|
* "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188"
|
|
118
118
|
* ]
|
|
119
119
|
* };
|
|
120
120
|
* const command = new DescribeLoadBalancersCommand(input);
|
|
121
121
|
* const response = await client.send(command);
|
|
122
|
-
* /* response
|
|
122
|
+
* /* response is
|
|
123
123
|
* {
|
|
124
|
-
*
|
|
124
|
+
* LoadBalancers: [
|
|
125
125
|
* {
|
|
126
|
-
*
|
|
126
|
+
* AvailabilityZones: [
|
|
127
127
|
* {
|
|
128
|
-
*
|
|
129
|
-
*
|
|
128
|
+
* SubnetId: "subnet-8360a9e7",
|
|
129
|
+
* ZoneName: "us-west-2a"
|
|
130
130
|
* },
|
|
131
131
|
* {
|
|
132
|
-
*
|
|
133
|
-
*
|
|
132
|
+
* SubnetId: "subnet-b7d581c0",
|
|
133
|
+
* ZoneName: "us-west-2b"
|
|
134
134
|
* }
|
|
135
135
|
* ],
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
*
|
|
141
|
-
*
|
|
142
|
-
*
|
|
136
|
+
* CanonicalHostedZoneId: "Z2P70J7EXAMPLE",
|
|
137
|
+
* CreatedTime: "2016-03-25T21:26:12.920Z",
|
|
138
|
+
* DNSName: "my-load-balancer-424835706.us-west-2.elb.amazonaws.com",
|
|
139
|
+
* LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
|
|
140
|
+
* LoadBalancerName: "my-load-balancer",
|
|
141
|
+
* Scheme: "internet-facing",
|
|
142
|
+
* SecurityGroups: [
|
|
143
143
|
* "sg-5943793c"
|
|
144
144
|
* ],
|
|
145
|
-
*
|
|
146
|
-
*
|
|
145
|
+
* State: {
|
|
146
|
+
* Code: "active"
|
|
147
147
|
* },
|
|
148
|
-
*
|
|
149
|
-
*
|
|
148
|
+
* Type: "application",
|
|
149
|
+
* VpcId: "vpc-3ac0fb5f"
|
|
150
150
|
* }
|
|
151
151
|
* ]
|
|
152
152
|
* }
|
|
153
153
|
* *\/
|
|
154
|
-
* // example id: elbv2-describe-load-balancers-1
|
|
155
154
|
* ```
|
|
156
155
|
*
|
|
156
|
+
* @public
|
|
157
157
|
*/
|
|
158
158
|
export declare class DescribeLoadBalancersCommand extends DescribeLoadBalancersCommand_base {
|
|
159
159
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -176,45 +176,45 @@ declare const DescribeRulesCommand_base: {
|
|
|
176
176
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
177
177
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
178
178
|
*
|
|
179
|
-
*
|
|
179
|
+
*
|
|
180
180
|
* @example To describe a rule
|
|
181
181
|
* ```javascript
|
|
182
182
|
* // This example describes the specified rule.
|
|
183
183
|
* const input = {
|
|
184
|
-
*
|
|
184
|
+
* RuleArns: [
|
|
185
185
|
* "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee"
|
|
186
186
|
* ]
|
|
187
187
|
* };
|
|
188
188
|
* const command = new DescribeRulesCommand(input);
|
|
189
189
|
* const response = await client.send(command);
|
|
190
|
-
* /* response
|
|
190
|
+
* /* response is
|
|
191
191
|
* {
|
|
192
|
-
*
|
|
192
|
+
* Rules: [
|
|
193
193
|
* {
|
|
194
|
-
*
|
|
194
|
+
* Actions: [
|
|
195
195
|
* {
|
|
196
|
-
*
|
|
197
|
-
*
|
|
196
|
+
* TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067",
|
|
197
|
+
* Type: "forward"
|
|
198
198
|
* }
|
|
199
199
|
* ],
|
|
200
|
-
*
|
|
200
|
+
* Conditions: [
|
|
201
201
|
* {
|
|
202
|
-
*
|
|
203
|
-
*
|
|
202
|
+
* Field: "path-pattern",
|
|
203
|
+
* Values: [
|
|
204
204
|
* "/img/*"
|
|
205
205
|
* ]
|
|
206
206
|
* }
|
|
207
207
|
* ],
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
*
|
|
208
|
+
* IsDefault: false,
|
|
209
|
+
* Priority: "10",
|
|
210
|
+
* RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/9683b2d02a6cabee"
|
|
211
211
|
* }
|
|
212
212
|
* ]
|
|
213
213
|
* }
|
|
214
214
|
* *\/
|
|
215
|
-
* // example id: elbv2-describe-rules-1
|
|
216
215
|
* ```
|
|
217
216
|
*
|
|
217
|
+
* @public
|
|
218
218
|
*/
|
|
219
219
|
export declare class DescribeRulesCommand extends DescribeRulesCommand_base {
|
|
220
220
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -81,101 +81,101 @@ declare const DescribeSSLPoliciesCommand_base: {
|
|
|
81
81
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
83
83
|
*
|
|
84
|
-
*
|
|
84
|
+
*
|
|
85
85
|
* @example To describe a policy used for SSL negotiation
|
|
86
86
|
* ```javascript
|
|
87
87
|
* // This example describes the specified policy used for SSL negotiation.
|
|
88
88
|
* const input = {
|
|
89
|
-
*
|
|
89
|
+
* Names: [
|
|
90
90
|
* "ELBSecurityPolicy-2015-05"
|
|
91
91
|
* ]
|
|
92
92
|
* };
|
|
93
93
|
* const command = new DescribeSSLPoliciesCommand(input);
|
|
94
94
|
* const response = await client.send(command);
|
|
95
|
-
* /* response
|
|
95
|
+
* /* response is
|
|
96
96
|
* {
|
|
97
|
-
*
|
|
97
|
+
* SslPolicies: [
|
|
98
98
|
* {
|
|
99
|
-
*
|
|
99
|
+
* Ciphers: [
|
|
100
100
|
* {
|
|
101
|
-
*
|
|
102
|
-
*
|
|
101
|
+
* Name: "ECDHE-ECDSA-AES128-GCM-SHA256",
|
|
102
|
+
* Priority: 1
|
|
103
103
|
* },
|
|
104
104
|
* {
|
|
105
|
-
*
|
|
106
|
-
*
|
|
105
|
+
* Name: "ECDHE-RSA-AES128-GCM-SHA256",
|
|
106
|
+
* Priority: 2
|
|
107
107
|
* },
|
|
108
108
|
* {
|
|
109
|
-
*
|
|
110
|
-
*
|
|
109
|
+
* Name: "ECDHE-ECDSA-AES128-SHA256",
|
|
110
|
+
* Priority: 3
|
|
111
111
|
* },
|
|
112
112
|
* {
|
|
113
|
-
*
|
|
114
|
-
*
|
|
113
|
+
* Name: "ECDHE-RSA-AES128-SHA256",
|
|
114
|
+
* Priority: 4
|
|
115
115
|
* },
|
|
116
116
|
* {
|
|
117
|
-
*
|
|
118
|
-
*
|
|
117
|
+
* Name: "ECDHE-ECDSA-AES128-SHA",
|
|
118
|
+
* Priority: 5
|
|
119
119
|
* },
|
|
120
120
|
* {
|
|
121
|
-
*
|
|
122
|
-
*
|
|
121
|
+
* Name: "ECDHE-RSA-AES128-SHA",
|
|
122
|
+
* Priority: 6
|
|
123
123
|
* },
|
|
124
124
|
* {
|
|
125
|
-
*
|
|
126
|
-
*
|
|
125
|
+
* Name: "DHE-RSA-AES128-SHA",
|
|
126
|
+
* Priority: 7
|
|
127
127
|
* },
|
|
128
128
|
* {
|
|
129
|
-
*
|
|
130
|
-
*
|
|
129
|
+
* Name: "ECDHE-ECDSA-AES256-GCM-SHA384",
|
|
130
|
+
* Priority: 8
|
|
131
131
|
* },
|
|
132
132
|
* {
|
|
133
|
-
*
|
|
134
|
-
*
|
|
133
|
+
* Name: "ECDHE-RSA-AES256-GCM-SHA384",
|
|
134
|
+
* Priority: 9
|
|
135
135
|
* },
|
|
136
136
|
* {
|
|
137
|
-
*
|
|
138
|
-
*
|
|
137
|
+
* Name: "ECDHE-ECDSA-AES256-SHA384",
|
|
138
|
+
* Priority: 10
|
|
139
139
|
* },
|
|
140
140
|
* {
|
|
141
|
-
*
|
|
142
|
-
*
|
|
141
|
+
* Name: "ECDHE-RSA-AES256-SHA384",
|
|
142
|
+
* Priority: 11
|
|
143
143
|
* },
|
|
144
144
|
* {
|
|
145
|
-
*
|
|
146
|
-
*
|
|
145
|
+
* Name: "ECDHE-RSA-AES256-SHA",
|
|
146
|
+
* Priority: 12
|
|
147
147
|
* },
|
|
148
148
|
* {
|
|
149
|
-
*
|
|
150
|
-
*
|
|
149
|
+
* Name: "ECDHE-ECDSA-AES256-SHA",
|
|
150
|
+
* Priority: 13
|
|
151
151
|
* },
|
|
152
152
|
* {
|
|
153
|
-
*
|
|
154
|
-
*
|
|
153
|
+
* Name: "AES128-GCM-SHA256",
|
|
154
|
+
* Priority: 14
|
|
155
155
|
* },
|
|
156
156
|
* {
|
|
157
|
-
*
|
|
158
|
-
*
|
|
157
|
+
* Name: "AES128-SHA256",
|
|
158
|
+
* Priority: 15
|
|
159
159
|
* },
|
|
160
160
|
* {
|
|
161
|
-
*
|
|
162
|
-
*
|
|
161
|
+
* Name: "AES128-SHA",
|
|
162
|
+
* Priority: 16
|
|
163
163
|
* },
|
|
164
164
|
* {
|
|
165
|
-
*
|
|
166
|
-
*
|
|
165
|
+
* Name: "AES256-GCM-SHA384",
|
|
166
|
+
* Priority: 17
|
|
167
167
|
* },
|
|
168
168
|
* {
|
|
169
|
-
*
|
|
170
|
-
*
|
|
169
|
+
* Name: "AES256-SHA256",
|
|
170
|
+
* Priority: 18
|
|
171
171
|
* },
|
|
172
172
|
* {
|
|
173
|
-
*
|
|
174
|
-
*
|
|
173
|
+
* Name: "AES256-SHA",
|
|
174
|
+
* Priority: 19
|
|
175
175
|
* }
|
|
176
176
|
* ],
|
|
177
|
-
*
|
|
178
|
-
*
|
|
177
|
+
* Name: "ELBSecurityPolicy-2015-05",
|
|
178
|
+
* SslProtocols: [
|
|
179
179
|
* "TLSv1",
|
|
180
180
|
* "TLSv1.1",
|
|
181
181
|
* "TLSv1.2"
|
|
@@ -184,9 +184,9 @@ declare const DescribeSSLPoliciesCommand_base: {
|
|
|
184
184
|
* ]
|
|
185
185
|
* }
|
|
186
186
|
* *\/
|
|
187
|
-
* // example id: elbv2-describe-ssl-policies-1
|
|
188
187
|
* ```
|
|
189
188
|
*
|
|
189
|
+
* @public
|
|
190
190
|
*/
|
|
191
191
|
export declare class DescribeSSLPoliciesCommand extends DescribeSSLPoliciesCommand_base {
|
|
192
192
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -83,39 +83,39 @@ declare const DescribeTagsCommand_base: {
|
|
|
83
83
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
85
85
|
*
|
|
86
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* @example To describe the tags assigned to a load balancer
|
|
88
88
|
* ```javascript
|
|
89
89
|
* // This example describes the tags assigned to the specified load balancer.
|
|
90
90
|
* const input = {
|
|
91
|
-
*
|
|
91
|
+
* ResourceArns: [
|
|
92
92
|
* "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188"
|
|
93
93
|
* ]
|
|
94
94
|
* };
|
|
95
95
|
* const command = new DescribeTagsCommand(input);
|
|
96
96
|
* const response = await client.send(command);
|
|
97
|
-
* /* response
|
|
97
|
+
* /* response is
|
|
98
98
|
* {
|
|
99
|
-
*
|
|
99
|
+
* TagDescriptions: [
|
|
100
100
|
* {
|
|
101
|
-
*
|
|
102
|
-
*
|
|
101
|
+
* ResourceArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188",
|
|
102
|
+
* Tags: [
|
|
103
103
|
* {
|
|
104
|
-
*
|
|
105
|
-
*
|
|
104
|
+
* Key: "project",
|
|
105
|
+
* Value: "lima"
|
|
106
106
|
* },
|
|
107
107
|
* {
|
|
108
|
-
*
|
|
109
|
-
*
|
|
108
|
+
* Key: "department",
|
|
109
|
+
* Value: "digital-media"
|
|
110
110
|
* }
|
|
111
111
|
* ]
|
|
112
112
|
* }
|
|
113
113
|
* ]
|
|
114
114
|
* }
|
|
115
115
|
* *\/
|
|
116
|
-
* // example id: elbv2-describe-tags-1
|
|
117
116
|
* ```
|
|
118
117
|
*
|
|
118
|
+
* @public
|
|
119
119
|
*/
|
|
120
120
|
export declare class DescribeTagsCommand extends DescribeTagsCommand_base {
|
|
121
121
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -83,40 +83,40 @@ declare const DescribeTargetGroupAttributesCommand_base: {
|
|
|
83
83
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
85
85
|
*
|
|
86
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* @example To describe target group attributes
|
|
88
88
|
* ```javascript
|
|
89
89
|
* // This example describes the attributes of the specified target group.
|
|
90
90
|
* const input = {
|
|
91
|
-
*
|
|
91
|
+
* TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"
|
|
92
92
|
* };
|
|
93
93
|
* const command = new DescribeTargetGroupAttributesCommand(input);
|
|
94
94
|
* const response = await client.send(command);
|
|
95
|
-
* /* response
|
|
95
|
+
* /* response is
|
|
96
96
|
* {
|
|
97
|
-
*
|
|
97
|
+
* Attributes: [
|
|
98
98
|
* {
|
|
99
|
-
*
|
|
100
|
-
*
|
|
99
|
+
* Key: "stickiness.enabled",
|
|
100
|
+
* Value: "false"
|
|
101
101
|
* },
|
|
102
102
|
* {
|
|
103
|
-
*
|
|
104
|
-
*
|
|
103
|
+
* Key: "deregistration_delay.timeout_seconds",
|
|
104
|
+
* Value: "300"
|
|
105
105
|
* },
|
|
106
106
|
* {
|
|
107
|
-
*
|
|
108
|
-
*
|
|
107
|
+
* Key: "stickiness.type",
|
|
108
|
+
* Value: "lb_cookie"
|
|
109
109
|
* },
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
112
|
-
*
|
|
111
|
+
* Key: "stickiness.lb_cookie.duration_seconds",
|
|
112
|
+
* Value: "86400"
|
|
113
113
|
* }
|
|
114
114
|
* ]
|
|
115
115
|
* }
|
|
116
116
|
* *\/
|
|
117
|
-
* // example id: elbv2-describe-target-group-attributes-1
|
|
118
117
|
* ```
|
|
119
118
|
*
|
|
119
|
+
* @public
|
|
120
120
|
*/
|
|
121
121
|
export declare class DescribeTargetGroupAttributesCommand extends DescribeTargetGroupAttributesCommand_base {
|
|
122
122
|
/** @internal type navigation helper, not in runtime. */
|