@aws-sdk/client-elastic-load-balancing-v2 3.325.0 → 3.326.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 +11 -0
- package/dist-types/commands/AddTagsCommand.d.ts +4 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +83 -0
- package/dist-types/commands/CreateLoadBalancerCommand.d.ts +41 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +112 -0
- package/dist-types/commands/CreateTargetGroupCommand.d.ts +32 -0
- package/dist-types/commands/DeleteListenerCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRuleCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTargetGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterTargetsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +12 -0
- package/dist-types/commands/DescribeListenerCertificatesCommand.d.ts +12 -0
- package/dist-types/commands/DescribeListenersCommand.d.ts +84 -0
- package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +11 -0
- package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +42 -0
- package/dist-types/commands/DescribeRulesCommand.d.ts +113 -0
- package/dist-types/commands/DescribeSSLPoliciesCommand.d.ts +23 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTargetGroupAttributesCommand.d.ts +11 -0
- package/dist-types/commands/DescribeTargetGroupsCommand.d.ts +33 -0
- package/dist-types/commands/DescribeTargetHealthCommand.d.ts +20 -0
- package/dist-types/commands/ModifyListenerCommand.d.ts +83 -0
- package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +11 -0
- package/dist-types/commands/ModifyRuleCommand.d.ts +112 -0
- package/dist-types/commands/ModifyTargetGroupAttributesCommand.d.ts +11 -0
- package/dist-types/commands/ModifyTargetGroupCommand.d.ts +32 -0
- package/dist-types/commands/RegisterTargetsCommand.d.ts +4 -0
- package/dist-types/commands/RemoveListenerCertificatesCommand.d.ts +4 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +4 -0
- package/dist-types/commands/SetIpAddressTypeCommand.d.ts +6 -0
- package/dist-types/commands/SetRulePrioritiesCommand.d.ts +112 -0
- package/dist-types/commands/SetSecurityGroupsCommand.d.ts +8 -0
- package/dist-types/commands/SetSubnetsCommand.d.ts +21 -0
- package/package.json +3 -3
|
@@ -43,6 +43,15 @@ export interface AddListenerCertificatesCommandOutput extends AddListenerCertifi
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new AddListenerCertificatesCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // AddListenerCertificatesOutput
|
|
47
|
+
* // Certificates: [ // CertificateList
|
|
48
|
+
* // { // Certificate
|
|
49
|
+
* // CertificateArn: "STRING_VALUE",
|
|
50
|
+
* // IsDefault: true || false,
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
46
55
|
* ```
|
|
47
56
|
*
|
|
48
57
|
* @param AddListenerCertificatesCommandInput - {@link AddListenerCertificatesCommandInput}
|
|
@@ -60,6 +69,8 @@ export interface AddListenerCertificatesCommandOutput extends AddListenerCertifi
|
|
|
60
69
|
* @throws {@link TooManyCertificatesException} (client fault)
|
|
61
70
|
* <p>You've reached the limit on the number of certificates per load balancer.</p>
|
|
62
71
|
*
|
|
72
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
63
74
|
*
|
|
64
75
|
*/
|
|
65
76
|
export declare class AddListenerCertificatesCommand extends $Command<AddListenerCertificatesCommandInput, AddListenerCertificatesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
@@ -43,6 +43,8 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new AddTagsCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
46
48
|
* ```
|
|
47
49
|
*
|
|
48
50
|
* @param AddTagsCommandInput - {@link AddTagsCommandInput}
|
|
@@ -69,6 +71,8 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
69
71
|
* @throws {@link TooManyTagsException} (client fault)
|
|
70
72
|
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
71
73
|
*
|
|
74
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
72
76
|
*
|
|
73
77
|
* @example To add tags to a load balancer
|
|
74
78
|
* ```javascript
|
|
@@ -133,6 +133,87 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
|
|
|
133
133
|
* };
|
|
134
134
|
* const command = new CreateListenerCommand(input);
|
|
135
135
|
* const response = await client.send(command);
|
|
136
|
+
* // { // CreateListenerOutput
|
|
137
|
+
* // Listeners: [ // Listeners
|
|
138
|
+
* // { // Listener
|
|
139
|
+
* // ListenerArn: "STRING_VALUE",
|
|
140
|
+
* // LoadBalancerArn: "STRING_VALUE",
|
|
141
|
+
* // Port: Number("int"),
|
|
142
|
+
* // Protocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
|
|
143
|
+
* // Certificates: [ // CertificateList
|
|
144
|
+
* // { // Certificate
|
|
145
|
+
* // CertificateArn: "STRING_VALUE",
|
|
146
|
+
* // IsDefault: true || false,
|
|
147
|
+
* // },
|
|
148
|
+
* // ],
|
|
149
|
+
* // SslPolicy: "STRING_VALUE",
|
|
150
|
+
* // DefaultActions: [ // Actions
|
|
151
|
+
* // { // Action
|
|
152
|
+
* // Type: "forward" || "authenticate-oidc" || "authenticate-cognito" || "redirect" || "fixed-response", // required
|
|
153
|
+
* // TargetGroupArn: "STRING_VALUE",
|
|
154
|
+
* // AuthenticateOidcConfig: { // AuthenticateOidcActionConfig
|
|
155
|
+
* // Issuer: "STRING_VALUE", // required
|
|
156
|
+
* // AuthorizationEndpoint: "STRING_VALUE", // required
|
|
157
|
+
* // TokenEndpoint: "STRING_VALUE", // required
|
|
158
|
+
* // UserInfoEndpoint: "STRING_VALUE", // required
|
|
159
|
+
* // ClientId: "STRING_VALUE", // required
|
|
160
|
+
* // ClientSecret: "STRING_VALUE",
|
|
161
|
+
* // SessionCookieName: "STRING_VALUE",
|
|
162
|
+
* // Scope: "STRING_VALUE",
|
|
163
|
+
* // SessionTimeout: Number("long"),
|
|
164
|
+
* // AuthenticationRequestExtraParams: { // AuthenticateOidcActionAuthenticationRequestExtraParams
|
|
165
|
+
* // "<keys>": "STRING_VALUE",
|
|
166
|
+
* // },
|
|
167
|
+
* // OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
168
|
+
* // UseExistingClientSecret: true || false,
|
|
169
|
+
* // },
|
|
170
|
+
* // AuthenticateCognitoConfig: { // AuthenticateCognitoActionConfig
|
|
171
|
+
* // UserPoolArn: "STRING_VALUE", // required
|
|
172
|
+
* // UserPoolClientId: "STRING_VALUE", // required
|
|
173
|
+
* // UserPoolDomain: "STRING_VALUE", // required
|
|
174
|
+
* // SessionCookieName: "STRING_VALUE",
|
|
175
|
+
* // Scope: "STRING_VALUE",
|
|
176
|
+
* // SessionTimeout: Number("long"),
|
|
177
|
+
* // AuthenticationRequestExtraParams: { // AuthenticateCognitoActionAuthenticationRequestExtraParams
|
|
178
|
+
* // "<keys>": "STRING_VALUE",
|
|
179
|
+
* // },
|
|
180
|
+
* // OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
181
|
+
* // },
|
|
182
|
+
* // Order: Number("int"),
|
|
183
|
+
* // RedirectConfig: { // RedirectActionConfig
|
|
184
|
+
* // Protocol: "STRING_VALUE",
|
|
185
|
+
* // Port: "STRING_VALUE",
|
|
186
|
+
* // Host: "STRING_VALUE",
|
|
187
|
+
* // Path: "STRING_VALUE",
|
|
188
|
+
* // Query: "STRING_VALUE",
|
|
189
|
+
* // StatusCode: "HTTP_301" || "HTTP_302", // required
|
|
190
|
+
* // },
|
|
191
|
+
* // FixedResponseConfig: { // FixedResponseActionConfig
|
|
192
|
+
* // MessageBody: "STRING_VALUE",
|
|
193
|
+
* // StatusCode: "STRING_VALUE", // required
|
|
194
|
+
* // ContentType: "STRING_VALUE",
|
|
195
|
+
* // },
|
|
196
|
+
* // ForwardConfig: { // ForwardActionConfig
|
|
197
|
+
* // TargetGroups: [ // TargetGroupList
|
|
198
|
+
* // { // TargetGroupTuple
|
|
199
|
+
* // TargetGroupArn: "STRING_VALUE",
|
|
200
|
+
* // Weight: Number("int"),
|
|
201
|
+
* // },
|
|
202
|
+
* // ],
|
|
203
|
+
* // TargetGroupStickinessConfig: { // TargetGroupStickinessConfig
|
|
204
|
+
* // Enabled: true || false,
|
|
205
|
+
* // DurationSeconds: Number("int"),
|
|
206
|
+
* // },
|
|
207
|
+
* // },
|
|
208
|
+
* // },
|
|
209
|
+
* // ],
|
|
210
|
+
* // AlpnPolicy: [ // AlpnPolicyName
|
|
211
|
+
* // "STRING_VALUE",
|
|
212
|
+
* // ],
|
|
213
|
+
* // },
|
|
214
|
+
* // ],
|
|
215
|
+
* // };
|
|
216
|
+
*
|
|
136
217
|
* ```
|
|
137
218
|
*
|
|
138
219
|
* @param CreateListenerCommandInput - {@link CreateListenerCommandInput}
|
|
@@ -198,6 +279,8 @@ export interface CreateListenerCommandOutput extends CreateListenerOutput, __Met
|
|
|
198
279
|
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
199
280
|
* <p>The specified protocol is not supported.</p>
|
|
200
281
|
*
|
|
282
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
283
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
201
284
|
*
|
|
202
285
|
* @example To create an HTTP listener
|
|
203
286
|
* ```javascript
|
|
@@ -78,6 +78,45 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutpu
|
|
|
78
78
|
* };
|
|
79
79
|
* const command = new CreateLoadBalancerCommand(input);
|
|
80
80
|
* const response = await client.send(command);
|
|
81
|
+
* // { // CreateLoadBalancerOutput
|
|
82
|
+
* // LoadBalancers: [ // LoadBalancers
|
|
83
|
+
* // { // LoadBalancer
|
|
84
|
+
* // LoadBalancerArn: "STRING_VALUE",
|
|
85
|
+
* // DNSName: "STRING_VALUE",
|
|
86
|
+
* // CanonicalHostedZoneId: "STRING_VALUE",
|
|
87
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
88
|
+
* // LoadBalancerName: "STRING_VALUE",
|
|
89
|
+
* // Scheme: "internet-facing" || "internal",
|
|
90
|
+
* // VpcId: "STRING_VALUE",
|
|
91
|
+
* // State: { // LoadBalancerState
|
|
92
|
+
* // Code: "active" || "provisioning" || "active_impaired" || "failed",
|
|
93
|
+
* // Reason: "STRING_VALUE",
|
|
94
|
+
* // },
|
|
95
|
+
* // Type: "application" || "network" || "gateway",
|
|
96
|
+
* // AvailabilityZones: [ // AvailabilityZones
|
|
97
|
+
* // { // AvailabilityZone
|
|
98
|
+
* // ZoneName: "STRING_VALUE",
|
|
99
|
+
* // SubnetId: "STRING_VALUE",
|
|
100
|
+
* // OutpostId: "STRING_VALUE",
|
|
101
|
+
* // LoadBalancerAddresses: [ // LoadBalancerAddresses
|
|
102
|
+
* // { // LoadBalancerAddress
|
|
103
|
+
* // IpAddress: "STRING_VALUE",
|
|
104
|
+
* // AllocationId: "STRING_VALUE",
|
|
105
|
+
* // PrivateIPv4Address: "STRING_VALUE",
|
|
106
|
+
* // IPv6Address: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // SecurityGroups: [ // SecurityGroups
|
|
112
|
+
* // "STRING_VALUE",
|
|
113
|
+
* // ],
|
|
114
|
+
* // IpAddressType: "ipv4" || "dualstack",
|
|
115
|
+
* // CustomerOwnedIpv4Pool: "STRING_VALUE",
|
|
116
|
+
* // },
|
|
117
|
+
* // ],
|
|
118
|
+
* // };
|
|
119
|
+
*
|
|
81
120
|
* ```
|
|
82
121
|
*
|
|
83
122
|
* @param CreateLoadBalancerCommandInput - {@link CreateLoadBalancerCommandInput}
|
|
@@ -126,6 +165,8 @@ export interface CreateLoadBalancerCommandOutput extends CreateLoadBalancerOutpu
|
|
|
126
165
|
* @throws {@link TooManyTagsException} (client fault)
|
|
127
166
|
* <p>You've reached the limit on the number of tags per load balancer.</p>
|
|
128
167
|
*
|
|
168
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
169
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
129
170
|
*
|
|
130
171
|
* @example To create an Internet-facing load balancer
|
|
131
172
|
* ```javascript
|
|
@@ -143,6 +143,116 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
|
|
|
143
143
|
* };
|
|
144
144
|
* const command = new CreateRuleCommand(input);
|
|
145
145
|
* const response = await client.send(command);
|
|
146
|
+
* // { // CreateRuleOutput
|
|
147
|
+
* // Rules: [ // Rules
|
|
148
|
+
* // { // Rule
|
|
149
|
+
* // RuleArn: "STRING_VALUE",
|
|
150
|
+
* // Priority: "STRING_VALUE",
|
|
151
|
+
* // Conditions: [ // RuleConditionList
|
|
152
|
+
* // { // RuleCondition
|
|
153
|
+
* // Field: "STRING_VALUE",
|
|
154
|
+
* // Values: [ // ListOfString
|
|
155
|
+
* // "STRING_VALUE",
|
|
156
|
+
* // ],
|
|
157
|
+
* // HostHeaderConfig: { // HostHeaderConditionConfig
|
|
158
|
+
* // Values: [
|
|
159
|
+
* // "STRING_VALUE",
|
|
160
|
+
* // ],
|
|
161
|
+
* // },
|
|
162
|
+
* // PathPatternConfig: { // PathPatternConditionConfig
|
|
163
|
+
* // Values: [
|
|
164
|
+
* // "STRING_VALUE",
|
|
165
|
+
* // ],
|
|
166
|
+
* // },
|
|
167
|
+
* // HttpHeaderConfig: { // HttpHeaderConditionConfig
|
|
168
|
+
* // HttpHeaderName: "STRING_VALUE",
|
|
169
|
+
* // Values: [
|
|
170
|
+
* // "STRING_VALUE",
|
|
171
|
+
* // ],
|
|
172
|
+
* // },
|
|
173
|
+
* // QueryStringConfig: { // QueryStringConditionConfig
|
|
174
|
+
* // Values: [ // QueryStringKeyValuePairList
|
|
175
|
+
* // { // QueryStringKeyValuePair
|
|
176
|
+
* // Key: "STRING_VALUE",
|
|
177
|
+
* // Value: "STRING_VALUE",
|
|
178
|
+
* // },
|
|
179
|
+
* // ],
|
|
180
|
+
* // },
|
|
181
|
+
* // HttpRequestMethodConfig: { // HttpRequestMethodConditionConfig
|
|
182
|
+
* // Values: [
|
|
183
|
+
* // "STRING_VALUE",
|
|
184
|
+
* // ],
|
|
185
|
+
* // },
|
|
186
|
+
* // SourceIpConfig: { // SourceIpConditionConfig
|
|
187
|
+
* // Values: "<ListOfString>",
|
|
188
|
+
* // },
|
|
189
|
+
* // },
|
|
190
|
+
* // ],
|
|
191
|
+
* // Actions: [ // Actions
|
|
192
|
+
* // { // Action
|
|
193
|
+
* // Type: "forward" || "authenticate-oidc" || "authenticate-cognito" || "redirect" || "fixed-response", // required
|
|
194
|
+
* // TargetGroupArn: "STRING_VALUE",
|
|
195
|
+
* // AuthenticateOidcConfig: { // AuthenticateOidcActionConfig
|
|
196
|
+
* // Issuer: "STRING_VALUE", // required
|
|
197
|
+
* // AuthorizationEndpoint: "STRING_VALUE", // required
|
|
198
|
+
* // TokenEndpoint: "STRING_VALUE", // required
|
|
199
|
+
* // UserInfoEndpoint: "STRING_VALUE", // required
|
|
200
|
+
* // ClientId: "STRING_VALUE", // required
|
|
201
|
+
* // ClientSecret: "STRING_VALUE",
|
|
202
|
+
* // SessionCookieName: "STRING_VALUE",
|
|
203
|
+
* // Scope: "STRING_VALUE",
|
|
204
|
+
* // SessionTimeout: Number("long"),
|
|
205
|
+
* // AuthenticationRequestExtraParams: { // AuthenticateOidcActionAuthenticationRequestExtraParams
|
|
206
|
+
* // "<keys>": "STRING_VALUE",
|
|
207
|
+
* // },
|
|
208
|
+
* // OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
209
|
+
* // UseExistingClientSecret: true || false,
|
|
210
|
+
* // },
|
|
211
|
+
* // AuthenticateCognitoConfig: { // AuthenticateCognitoActionConfig
|
|
212
|
+
* // UserPoolArn: "STRING_VALUE", // required
|
|
213
|
+
* // UserPoolClientId: "STRING_VALUE", // required
|
|
214
|
+
* // UserPoolDomain: "STRING_VALUE", // required
|
|
215
|
+
* // SessionCookieName: "STRING_VALUE",
|
|
216
|
+
* // Scope: "STRING_VALUE",
|
|
217
|
+
* // SessionTimeout: Number("long"),
|
|
218
|
+
* // AuthenticationRequestExtraParams: { // AuthenticateCognitoActionAuthenticationRequestExtraParams
|
|
219
|
+
* // "<keys>": "STRING_VALUE",
|
|
220
|
+
* // },
|
|
221
|
+
* // OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
222
|
+
* // },
|
|
223
|
+
* // Order: Number("int"),
|
|
224
|
+
* // RedirectConfig: { // RedirectActionConfig
|
|
225
|
+
* // Protocol: "STRING_VALUE",
|
|
226
|
+
* // Port: "STRING_VALUE",
|
|
227
|
+
* // Host: "STRING_VALUE",
|
|
228
|
+
* // Path: "STRING_VALUE",
|
|
229
|
+
* // Query: "STRING_VALUE",
|
|
230
|
+
* // StatusCode: "HTTP_301" || "HTTP_302", // required
|
|
231
|
+
* // },
|
|
232
|
+
* // FixedResponseConfig: { // FixedResponseActionConfig
|
|
233
|
+
* // MessageBody: "STRING_VALUE",
|
|
234
|
+
* // StatusCode: "STRING_VALUE", // required
|
|
235
|
+
* // ContentType: "STRING_VALUE",
|
|
236
|
+
* // },
|
|
237
|
+
* // ForwardConfig: { // ForwardActionConfig
|
|
238
|
+
* // TargetGroups: [ // TargetGroupList
|
|
239
|
+
* // { // TargetGroupTuple
|
|
240
|
+
* // TargetGroupArn: "STRING_VALUE",
|
|
241
|
+
* // Weight: Number("int"),
|
|
242
|
+
* // },
|
|
243
|
+
* // ],
|
|
244
|
+
* // TargetGroupStickinessConfig: { // TargetGroupStickinessConfig
|
|
245
|
+
* // Enabled: true || false,
|
|
246
|
+
* // DurationSeconds: Number("int"),
|
|
247
|
+
* // },
|
|
248
|
+
* // },
|
|
249
|
+
* // },
|
|
250
|
+
* // ],
|
|
251
|
+
* // IsDefault: true || false,
|
|
252
|
+
* // },
|
|
253
|
+
* // ],
|
|
254
|
+
* // };
|
|
255
|
+
*
|
|
146
256
|
* ```
|
|
147
257
|
*
|
|
148
258
|
* @param CreateRuleCommandInput - {@link CreateRuleCommandInput}
|
|
@@ -200,6 +310,8 @@ export interface CreateRuleCommandOutput extends CreateRuleOutput, __MetadataBea
|
|
|
200
310
|
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
201
311
|
* <p>The specified protocol is not supported.</p>
|
|
202
312
|
*
|
|
313
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
314
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
203
315
|
*
|
|
204
316
|
* @example To create a rule
|
|
205
317
|
* ```javascript
|
|
@@ -78,6 +78,36 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput,
|
|
|
78
78
|
* };
|
|
79
79
|
* const command = new CreateTargetGroupCommand(input);
|
|
80
80
|
* const response = await client.send(command);
|
|
81
|
+
* // { // CreateTargetGroupOutput
|
|
82
|
+
* // TargetGroups: [ // TargetGroups
|
|
83
|
+
* // { // TargetGroup
|
|
84
|
+
* // TargetGroupArn: "STRING_VALUE",
|
|
85
|
+
* // TargetGroupName: "STRING_VALUE",
|
|
86
|
+
* // Protocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
|
|
87
|
+
* // Port: Number("int"),
|
|
88
|
+
* // VpcId: "STRING_VALUE",
|
|
89
|
+
* // HealthCheckProtocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
|
|
90
|
+
* // HealthCheckPort: "STRING_VALUE",
|
|
91
|
+
* // HealthCheckEnabled: true || false,
|
|
92
|
+
* // HealthCheckIntervalSeconds: Number("int"),
|
|
93
|
+
* // HealthCheckTimeoutSeconds: Number("int"),
|
|
94
|
+
* // HealthyThresholdCount: Number("int"),
|
|
95
|
+
* // UnhealthyThresholdCount: Number("int"),
|
|
96
|
+
* // HealthCheckPath: "STRING_VALUE",
|
|
97
|
+
* // Matcher: { // Matcher
|
|
98
|
+
* // HttpCode: "STRING_VALUE",
|
|
99
|
+
* // GrpcCode: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // LoadBalancerArns: [ // LoadBalancerArns
|
|
102
|
+
* // "STRING_VALUE",
|
|
103
|
+
* // ],
|
|
104
|
+
* // TargetType: "instance" || "ip" || "lambda" || "alb",
|
|
105
|
+
* // ProtocolVersion: "STRING_VALUE",
|
|
106
|
+
* // IpAddressType: "ipv4" || "ipv6",
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // };
|
|
110
|
+
*
|
|
81
111
|
* ```
|
|
82
112
|
*
|
|
83
113
|
* @param CreateTargetGroupCommandInput - {@link CreateTargetGroupCommandInput}
|
|
@@ -99,6 +129,8 @@ export interface CreateTargetGroupCommandOutput extends CreateTargetGroupOutput,
|
|
|
99
129
|
* <p>You've reached the limit on the number of target groups for your Amazon Web Services
|
|
100
130
|
* account.</p>
|
|
101
131
|
*
|
|
132
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
102
134
|
*
|
|
103
135
|
* @example To create a target group
|
|
104
136
|
* ```javascript
|
|
@@ -33,6 +33,8 @@ export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteListenerCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteListenerCommandInput - {@link DeleteListenerCommandInput}
|
|
@@ -47,6 +49,8 @@ export interface DeleteListenerCommandOutput extends DeleteListenerOutput, __Met
|
|
|
47
49
|
* @throws {@link ResourceInUseException} (client fault)
|
|
48
50
|
* <p>A specified resource is in use.</p>
|
|
49
51
|
*
|
|
52
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
50
54
|
*
|
|
51
55
|
* @example To delete a listener
|
|
52
56
|
* ```javascript
|
|
@@ -37,6 +37,8 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutpu
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeleteLoadBalancerCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param DeleteLoadBalancerCommandInput - {@link DeleteLoadBalancerCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteLoadBalancerOutpu
|
|
|
54
56
|
* @throws {@link ResourceInUseException} (client fault)
|
|
55
57
|
* <p>A specified resource is in use.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
57
61
|
*
|
|
58
62
|
* @example To delete a load balancer
|
|
59
63
|
* ```javascript
|
|
@@ -32,6 +32,8 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteRuleCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteRuleCommandInput - {@link DeleteRuleCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteRuleCommandOutput extends DeleteRuleOutput, __MetadataBea
|
|
|
46
48
|
* @throws {@link RuleNotFoundException} (client fault)
|
|
47
49
|
* <p>The specified rule does not exist.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
* @example To delete a rule
|
|
51
55
|
* ```javascript
|
|
@@ -35,6 +35,8 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput,
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DeleteTargetGroupCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param DeleteTargetGroupCommandInput - {@link DeleteTargetGroupCommandInput}
|
|
@@ -46,6 +48,8 @@ export interface DeleteTargetGroupCommandOutput extends DeleteTargetGroupOutput,
|
|
|
46
48
|
* @throws {@link ResourceInUseException} (client fault)
|
|
47
49
|
* <p>A specified resource is in use.</p>
|
|
48
50
|
*
|
|
51
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
52
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
49
53
|
*
|
|
50
54
|
* @example To delete a target group
|
|
51
55
|
* ```javascript
|
|
@@ -39,6 +39,8 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput,
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DeregisterTargetsCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param DeregisterTargetsCommandInput - {@link DeregisterTargetsCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeregisterTargetsCommandOutput extends DeregisterTargetsOutput,
|
|
|
54
56
|
* @throws {@link TargetGroupNotFoundException} (client fault)
|
|
55
57
|
* <p>The specified target group does not exist.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
57
61
|
*
|
|
58
62
|
* @example To deregister a target from a target group
|
|
59
63
|
* ```javascript
|
|
@@ -54,6 +54,16 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new DescribeAccountLimitsCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // { // DescribeAccountLimitsOutput
|
|
58
|
+
* // Limits: [ // Limits
|
|
59
|
+
* // { // Limit
|
|
60
|
+
* // Name: "STRING_VALUE",
|
|
61
|
+
* // Max: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // NextMarker: "STRING_VALUE",
|
|
65
|
+
* // };
|
|
66
|
+
*
|
|
57
67
|
* ```
|
|
58
68
|
*
|
|
59
69
|
* @param DescribeAccountLimitsCommandInput - {@link DescribeAccountLimitsCommandInput}
|
|
@@ -62,6 +72,8 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
62
72
|
* @see {@link DescribeAccountLimitsCommandOutput} for command's `response` shape.
|
|
63
73
|
* @see {@link ElasticLoadBalancingV2ClientResolvedConfig | config} for ElasticLoadBalancingV2Client's `config` shape.
|
|
64
74
|
*
|
|
75
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
65
77
|
*
|
|
66
78
|
*/
|
|
67
79
|
export declare class DescribeAccountLimitsCommand extends $Command<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
@@ -40,6 +40,16 @@ export interface DescribeListenerCertificatesCommandOutput extends DescribeListe
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new DescribeListenerCertificatesCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // { // DescribeListenerCertificatesOutput
|
|
44
|
+
* // Certificates: [ // CertificateList
|
|
45
|
+
* // { // Certificate
|
|
46
|
+
* // CertificateArn: "STRING_VALUE",
|
|
47
|
+
* // IsDefault: true || false,
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // NextMarker: "STRING_VALUE",
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
43
53
|
* ```
|
|
44
54
|
*
|
|
45
55
|
* @param DescribeListenerCertificatesCommandInput - {@link DescribeListenerCertificatesCommandInput}
|
|
@@ -51,6 +61,8 @@ export interface DescribeListenerCertificatesCommandOutput extends DescribeListe
|
|
|
51
61
|
* @throws {@link ListenerNotFoundException} (client fault)
|
|
52
62
|
* <p>The specified listener does not exist.</p>
|
|
53
63
|
*
|
|
64
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
54
66
|
*
|
|
55
67
|
*/
|
|
56
68
|
export declare class DescribeListenerCertificatesCommand extends $Command<DescribeListenerCertificatesCommandInput, DescribeListenerCertificatesCommandOutput, ElasticLoadBalancingV2ClientResolvedConfig> {
|
|
@@ -38,6 +38,88 @@ export interface DescribeListenersCommandOutput extends DescribeListenersOutput,
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DescribeListenersCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // DescribeListenersOutput
|
|
42
|
+
* // Listeners: [ // Listeners
|
|
43
|
+
* // { // Listener
|
|
44
|
+
* // ListenerArn: "STRING_VALUE",
|
|
45
|
+
* // LoadBalancerArn: "STRING_VALUE",
|
|
46
|
+
* // Port: Number("int"),
|
|
47
|
+
* // Protocol: "HTTP" || "HTTPS" || "TCP" || "TLS" || "UDP" || "TCP_UDP" || "GENEVE",
|
|
48
|
+
* // Certificates: [ // CertificateList
|
|
49
|
+
* // { // Certificate
|
|
50
|
+
* // CertificateArn: "STRING_VALUE",
|
|
51
|
+
* // IsDefault: true || false,
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // SslPolicy: "STRING_VALUE",
|
|
55
|
+
* // DefaultActions: [ // Actions
|
|
56
|
+
* // { // Action
|
|
57
|
+
* // Type: "forward" || "authenticate-oidc" || "authenticate-cognito" || "redirect" || "fixed-response", // required
|
|
58
|
+
* // TargetGroupArn: "STRING_VALUE",
|
|
59
|
+
* // AuthenticateOidcConfig: { // AuthenticateOidcActionConfig
|
|
60
|
+
* // Issuer: "STRING_VALUE", // required
|
|
61
|
+
* // AuthorizationEndpoint: "STRING_VALUE", // required
|
|
62
|
+
* // TokenEndpoint: "STRING_VALUE", // required
|
|
63
|
+
* // UserInfoEndpoint: "STRING_VALUE", // required
|
|
64
|
+
* // ClientId: "STRING_VALUE", // required
|
|
65
|
+
* // ClientSecret: "STRING_VALUE",
|
|
66
|
+
* // SessionCookieName: "STRING_VALUE",
|
|
67
|
+
* // Scope: "STRING_VALUE",
|
|
68
|
+
* // SessionTimeout: Number("long"),
|
|
69
|
+
* // AuthenticationRequestExtraParams: { // AuthenticateOidcActionAuthenticationRequestExtraParams
|
|
70
|
+
* // "<keys>": "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
73
|
+
* // UseExistingClientSecret: true || false,
|
|
74
|
+
* // },
|
|
75
|
+
* // AuthenticateCognitoConfig: { // AuthenticateCognitoActionConfig
|
|
76
|
+
* // UserPoolArn: "STRING_VALUE", // required
|
|
77
|
+
* // UserPoolClientId: "STRING_VALUE", // required
|
|
78
|
+
* // UserPoolDomain: "STRING_VALUE", // required
|
|
79
|
+
* // SessionCookieName: "STRING_VALUE",
|
|
80
|
+
* // Scope: "STRING_VALUE",
|
|
81
|
+
* // SessionTimeout: Number("long"),
|
|
82
|
+
* // AuthenticationRequestExtraParams: { // AuthenticateCognitoActionAuthenticationRequestExtraParams
|
|
83
|
+
* // "<keys>": "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // OnUnauthenticatedRequest: "deny" || "allow" || "authenticate",
|
|
86
|
+
* // },
|
|
87
|
+
* // Order: Number("int"),
|
|
88
|
+
* // RedirectConfig: { // RedirectActionConfig
|
|
89
|
+
* // Protocol: "STRING_VALUE",
|
|
90
|
+
* // Port: "STRING_VALUE",
|
|
91
|
+
* // Host: "STRING_VALUE",
|
|
92
|
+
* // Path: "STRING_VALUE",
|
|
93
|
+
* // Query: "STRING_VALUE",
|
|
94
|
+
* // StatusCode: "HTTP_301" || "HTTP_302", // required
|
|
95
|
+
* // },
|
|
96
|
+
* // FixedResponseConfig: { // FixedResponseActionConfig
|
|
97
|
+
* // MessageBody: "STRING_VALUE",
|
|
98
|
+
* // StatusCode: "STRING_VALUE", // required
|
|
99
|
+
* // ContentType: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // ForwardConfig: { // ForwardActionConfig
|
|
102
|
+
* // TargetGroups: [ // TargetGroupList
|
|
103
|
+
* // { // TargetGroupTuple
|
|
104
|
+
* // TargetGroupArn: "STRING_VALUE",
|
|
105
|
+
* // Weight: Number("int"),
|
|
106
|
+
* // },
|
|
107
|
+
* // ],
|
|
108
|
+
* // TargetGroupStickinessConfig: { // TargetGroupStickinessConfig
|
|
109
|
+
* // Enabled: true || false,
|
|
110
|
+
* // DurationSeconds: Number("int"),
|
|
111
|
+
* // },
|
|
112
|
+
* // },
|
|
113
|
+
* // },
|
|
114
|
+
* // ],
|
|
115
|
+
* // AlpnPolicy: [ // AlpnPolicyName
|
|
116
|
+
* // "STRING_VALUE",
|
|
117
|
+
* // ],
|
|
118
|
+
* // },
|
|
119
|
+
* // ],
|
|
120
|
+
* // NextMarker: "STRING_VALUE",
|
|
121
|
+
* // };
|
|
122
|
+
*
|
|
41
123
|
* ```
|
|
42
124
|
*
|
|
43
125
|
* @param DescribeListenersCommandInput - {@link DescribeListenersCommandInput}
|
|
@@ -55,6 +137,8 @@ export interface DescribeListenersCommandOutput extends DescribeListenersOutput,
|
|
|
55
137
|
* @throws {@link UnsupportedProtocolException} (client fault)
|
|
56
138
|
* <p>The specified protocol is not supported.</p>
|
|
57
139
|
*
|
|
140
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
141
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
58
142
|
*
|
|
59
143
|
* @example To describe a listener
|
|
60
144
|
* ```javascript
|
|
@@ -53,6 +53,15 @@ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoa
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new DescribeLoadBalancerAttributesCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // DescribeLoadBalancerAttributesOutput
|
|
57
|
+
* // Attributes: [ // LoadBalancerAttributes
|
|
58
|
+
* // { // LoadBalancerAttribute
|
|
59
|
+
* // Key: "STRING_VALUE",
|
|
60
|
+
* // Value: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
56
65
|
* ```
|
|
57
66
|
*
|
|
58
67
|
* @param DescribeLoadBalancerAttributesCommandInput - {@link DescribeLoadBalancerAttributesCommandInput}
|
|
@@ -64,6 +73,8 @@ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoa
|
|
|
64
73
|
* @throws {@link LoadBalancerNotFoundException} (client fault)
|
|
65
74
|
* <p>The specified load balancer does not exist.</p>
|
|
66
75
|
*
|
|
76
|
+
* @throws {@link ElasticLoadBalancingV2ServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from ElasticLoadBalancingV2 service.</p>
|
|
67
78
|
*
|
|
68
79
|
* @example To describe load balancer attributes
|
|
69
80
|
* ```javascript
|