@aws-sdk/client-elastic-load-balancing-v2 3.774.0 → 3.777.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/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/ElasticLoadBalancingV2Client.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- 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 +34 -34
|
@@ -60,18 +60,21 @@ declare const DeleteListenerCommand_base: {
|
|
|
60
60
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
61
61
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
62
62
|
*
|
|
63
|
-
*
|
|
63
|
+
*
|
|
64
64
|
* @example To delete a listener
|
|
65
65
|
* ```javascript
|
|
66
66
|
* // This example deletes the specified listener.
|
|
67
67
|
* const input = {
|
|
68
|
-
*
|
|
68
|
+
* ListenerArn: "arn:aws:elasticloadbalancing:ua-west-2:123456789012:listener/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2"
|
|
69
69
|
* };
|
|
70
70
|
* const command = new DeleteListenerCommand(input);
|
|
71
|
-
* await client.send(command);
|
|
72
|
-
*
|
|
71
|
+
* const response = await client.send(command);
|
|
72
|
+
* /* response is
|
|
73
|
+
* { /* metadata only *\/ }
|
|
74
|
+
* *\/
|
|
73
75
|
* ```
|
|
74
76
|
*
|
|
77
|
+
* @public
|
|
75
78
|
*/
|
|
76
79
|
export declare class DeleteListenerCommand extends DeleteListenerCommand_base {
|
|
77
80
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -67,18 +67,21 @@ declare const DeleteLoadBalancerCommand_base: {
|
|
|
67
67
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
69
69
|
*
|
|
70
|
-
*
|
|
70
|
+
*
|
|
71
71
|
* @example To delete a load balancer
|
|
72
72
|
* ```javascript
|
|
73
73
|
* // This example deletes the specified load balancer.
|
|
74
74
|
* const input = {
|
|
75
|
-
*
|
|
75
|
+
* LoadBalancerArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:loadbalancer/app/my-load-balancer/50dc6c495c0c9188"
|
|
76
76
|
* };
|
|
77
77
|
* const command = new DeleteLoadBalancerCommand(input);
|
|
78
|
-
* await client.send(command);
|
|
79
|
-
*
|
|
78
|
+
* const response = await client.send(command);
|
|
79
|
+
* /* response is
|
|
80
|
+
* { /* metadata only *\/ }
|
|
81
|
+
* *\/
|
|
80
82
|
* ```
|
|
81
83
|
*
|
|
84
|
+
* @public
|
|
82
85
|
*/
|
|
83
86
|
export declare class DeleteLoadBalancerCommand extends DeleteLoadBalancerCommand_base {
|
|
84
87
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -59,18 +59,21 @@ declare const DeleteRuleCommand_base: {
|
|
|
59
59
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
60
60
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
61
61
|
*
|
|
62
|
-
*
|
|
62
|
+
*
|
|
63
63
|
* @example To delete a rule
|
|
64
64
|
* ```javascript
|
|
65
65
|
* // This example deletes the specified rule.
|
|
66
66
|
* const input = {
|
|
67
|
-
*
|
|
67
|
+
* RuleArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-load-balancer/50dc6c495c0c9188/f2f7dc8efc522ab2/1291d13826f405c3"
|
|
68
68
|
* };
|
|
69
69
|
* const command = new DeleteRuleCommand(input);
|
|
70
|
-
* await client.send(command);
|
|
71
|
-
*
|
|
70
|
+
* const response = await client.send(command);
|
|
71
|
+
* /* response is
|
|
72
|
+
* { /* metadata only *\/ }
|
|
73
|
+
* *\/
|
|
72
74
|
* ```
|
|
73
75
|
*
|
|
76
|
+
* @public
|
|
74
77
|
*/
|
|
75
78
|
export declare class DeleteRuleCommand extends DeleteRuleCommand_base {
|
|
76
79
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -62,19 +62,22 @@ declare const DeleteSharedTrustStoreAssociationCommand_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 Delete a shared trust store association
|
|
67
67
|
* ```javascript
|
|
68
68
|
* // This example deletes the association between the specified trust store and the specified load balancer.
|
|
69
69
|
* const input = {
|
|
70
|
-
*
|
|
71
|
-
*
|
|
70
|
+
* ResourceArn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/my-load-balancer/80233fa81d678c2c",
|
|
71
|
+
* TrustStoreArn: "arn:aws:elasticloadbalancing:us-east-1:123456789012:truststore/my-trust-store/73e2d6bc24d8a063"
|
|
72
72
|
* };
|
|
73
73
|
* const command = new DeleteSharedTrustStoreAssociationCommand(input);
|
|
74
|
-
* await client.send(command);
|
|
75
|
-
*
|
|
74
|
+
* const response = await client.send(command);
|
|
75
|
+
* /* response is
|
|
76
|
+
* { /* metadata only *\/ }
|
|
77
|
+
* *\/
|
|
76
78
|
* ```
|
|
77
79
|
*
|
|
80
|
+
* @public
|
|
78
81
|
*/
|
|
79
82
|
export declare class DeleteSharedTrustStoreAssociationCommand extends DeleteSharedTrustStoreAssociationCommand_base {
|
|
80
83
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -59,18 +59,21 @@ declare const DeleteTargetGroupCommand_base: {
|
|
|
59
59
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
60
60
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
61
61
|
*
|
|
62
|
-
*
|
|
62
|
+
*
|
|
63
63
|
* @example To delete a target group
|
|
64
64
|
* ```javascript
|
|
65
65
|
* // This example deletes the specified target group.
|
|
66
66
|
* const input = {
|
|
67
|
-
*
|
|
67
|
+
* TargetGroupArn: "arn:aws:elasticloadbalancing:us-west-2:123456789012:targetgroup/my-targets/73e2d6bc24d8a067"
|
|
68
68
|
* };
|
|
69
69
|
* const command = new DeleteTargetGroupCommand(input);
|
|
70
|
-
* await client.send(command);
|
|
71
|
-
*
|
|
70
|
+
* const response = await client.send(command);
|
|
71
|
+
* /* response is
|
|
72
|
+
* { /* metadata only *\/ }
|
|
73
|
+
* *\/
|
|
72
74
|
* ```
|
|
73
75
|
*
|
|
76
|
+
* @public
|
|
74
77
|
*/
|
|
75
78
|
export declare class DeleteTargetGroupCommand extends DeleteTargetGroupCommand_base {
|
|
76
79
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -58,6 +58,7 @@ declare const DeleteTrustStoreCommand_base: {
|
|
|
58
58
|
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
59
59
|
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
60
60
|
*
|
|
61
|
+
*
|
|
61
62
|
* @public
|
|
62
63
|
*/
|
|
63
64
|
export declare class DeleteTrustStoreCommand extends DeleteTrustStoreCommand_base {
|
|
@@ -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. */
|