@aws-sdk/client-elastic-load-balancing 3.170.0 → 3.171.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/ElasticLoadBalancing.d.ts +0 -29
- package/dist-types/ts3.4/ElasticLoadBalancingClient.d.ts +0 -25
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/AttachLoadBalancerToSubnetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ConfigureHealthCheckCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateAppCookieStickinessPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLBCookieStickinessPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLoadBalancerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLoadBalancerListenersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/CreateLoadBalancerPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLoadBalancerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLoadBalancerListenersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeleteLoadBalancerPolicyCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeAccountLimitsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeInstanceHealthCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLoadBalancerAttributesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPoliciesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeLoadBalancersCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/ModifyLoadBalancerAttributesCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +0 -2
- package/dist-types/ts3.4/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +0 -2
- package/dist-types/ts3.4/models/ElasticLoadBalancingServiceException.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -306
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
- package/dist-types/ts3.4/waiters/waitForAnyInstanceInService.d.ts +0 -2
- package/package.json +27 -27
|
@@ -1,97 +1,70 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ElasticLoadBalancingServiceException as __BaseException } from "./ElasticLoadBalancingServiceException";
|
|
3
|
-
|
|
4
3
|
export interface AccessLog {
|
|
5
4
|
Enabled: boolean | undefined;
|
|
6
|
-
|
|
7
5
|
S3BucketName?: string;
|
|
8
|
-
|
|
9
6
|
EmitInterval?: number;
|
|
10
|
-
|
|
11
7
|
S3BucketPrefix?: string;
|
|
12
8
|
}
|
|
13
|
-
|
|
14
9
|
export declare class AccessPointNotFoundException extends __BaseException {
|
|
15
10
|
readonly name: "AccessPointNotFoundException";
|
|
16
11
|
readonly $fault: "client";
|
|
17
12
|
Message?: string;
|
|
18
|
-
|
|
19
13
|
constructor(
|
|
20
14
|
opts: __ExceptionOptionType<AccessPointNotFoundException, __BaseException>
|
|
21
15
|
);
|
|
22
16
|
}
|
|
23
|
-
|
|
24
17
|
export interface AddAvailabilityZonesInput {
|
|
25
18
|
LoadBalancerName: string | undefined;
|
|
26
|
-
|
|
27
19
|
AvailabilityZones: string[] | undefined;
|
|
28
20
|
}
|
|
29
|
-
|
|
30
21
|
export interface AddAvailabilityZonesOutput {
|
|
31
22
|
AvailabilityZones?: string[];
|
|
32
23
|
}
|
|
33
|
-
|
|
34
24
|
export interface AdditionalAttribute {
|
|
35
25
|
Key?: string;
|
|
36
|
-
|
|
37
26
|
Value?: string;
|
|
38
27
|
}
|
|
39
|
-
|
|
40
28
|
export interface Tag {
|
|
41
29
|
Key: string | undefined;
|
|
42
|
-
|
|
43
30
|
Value?: string;
|
|
44
31
|
}
|
|
45
|
-
|
|
46
32
|
export interface AddTagsInput {
|
|
47
33
|
LoadBalancerNames: string[] | undefined;
|
|
48
|
-
|
|
49
34
|
Tags: Tag[] | undefined;
|
|
50
35
|
}
|
|
51
|
-
|
|
52
36
|
export interface AddTagsOutput {}
|
|
53
|
-
|
|
54
37
|
export declare class DuplicateTagKeysException extends __BaseException {
|
|
55
38
|
readonly name: "DuplicateTagKeysException";
|
|
56
39
|
readonly $fault: "client";
|
|
57
40
|
Message?: string;
|
|
58
|
-
|
|
59
41
|
constructor(
|
|
60
42
|
opts: __ExceptionOptionType<DuplicateTagKeysException, __BaseException>
|
|
61
43
|
);
|
|
62
44
|
}
|
|
63
|
-
|
|
64
45
|
export declare class TooManyTagsException extends __BaseException {
|
|
65
46
|
readonly name: "TooManyTagsException";
|
|
66
47
|
readonly $fault: "client";
|
|
67
48
|
Message?: string;
|
|
68
|
-
|
|
69
49
|
constructor(
|
|
70
50
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
71
51
|
);
|
|
72
52
|
}
|
|
73
|
-
|
|
74
53
|
export interface AppCookieStickinessPolicy {
|
|
75
54
|
PolicyName?: string;
|
|
76
|
-
|
|
77
55
|
CookieName?: string;
|
|
78
56
|
}
|
|
79
|
-
|
|
80
57
|
export interface ApplySecurityGroupsToLoadBalancerInput {
|
|
81
58
|
LoadBalancerName: string | undefined;
|
|
82
|
-
|
|
83
59
|
SecurityGroups: string[] | undefined;
|
|
84
60
|
}
|
|
85
|
-
|
|
86
61
|
export interface ApplySecurityGroupsToLoadBalancerOutput {
|
|
87
62
|
SecurityGroups?: string[];
|
|
88
63
|
}
|
|
89
|
-
|
|
90
64
|
export declare class InvalidConfigurationRequestException extends __BaseException {
|
|
91
65
|
readonly name: "InvalidConfigurationRequestException";
|
|
92
66
|
readonly $fault: "client";
|
|
93
67
|
Message?: string;
|
|
94
|
-
|
|
95
68
|
constructor(
|
|
96
69
|
opts: __ExceptionOptionType<
|
|
97
70
|
InvalidConfigurationRequestException,
|
|
@@ -99,172 +72,121 @@ export declare class InvalidConfigurationRequestException extends __BaseExceptio
|
|
|
99
72
|
>
|
|
100
73
|
);
|
|
101
74
|
}
|
|
102
|
-
|
|
103
75
|
export declare class InvalidSecurityGroupException extends __BaseException {
|
|
104
76
|
readonly name: "InvalidSecurityGroupException";
|
|
105
77
|
readonly $fault: "client";
|
|
106
78
|
Message?: string;
|
|
107
|
-
|
|
108
79
|
constructor(
|
|
109
80
|
opts: __ExceptionOptionType<InvalidSecurityGroupException, __BaseException>
|
|
110
81
|
);
|
|
111
82
|
}
|
|
112
|
-
|
|
113
83
|
export interface AttachLoadBalancerToSubnetsInput {
|
|
114
84
|
LoadBalancerName: string | undefined;
|
|
115
|
-
|
|
116
85
|
Subnets: string[] | undefined;
|
|
117
86
|
}
|
|
118
|
-
|
|
119
87
|
export interface AttachLoadBalancerToSubnetsOutput {
|
|
120
88
|
Subnets?: string[];
|
|
121
89
|
}
|
|
122
|
-
|
|
123
90
|
export declare class InvalidSubnetException extends __BaseException {
|
|
124
91
|
readonly name: "InvalidSubnetException";
|
|
125
92
|
readonly $fault: "client";
|
|
126
93
|
Message?: string;
|
|
127
|
-
|
|
128
94
|
constructor(
|
|
129
95
|
opts: __ExceptionOptionType<InvalidSubnetException, __BaseException>
|
|
130
96
|
);
|
|
131
97
|
}
|
|
132
|
-
|
|
133
98
|
export declare class SubnetNotFoundException extends __BaseException {
|
|
134
99
|
readonly name: "SubnetNotFoundException";
|
|
135
100
|
readonly $fault: "client";
|
|
136
101
|
Message?: string;
|
|
137
|
-
|
|
138
102
|
constructor(
|
|
139
103
|
opts: __ExceptionOptionType<SubnetNotFoundException, __BaseException>
|
|
140
104
|
);
|
|
141
105
|
}
|
|
142
|
-
|
|
143
106
|
export interface BackendServerDescription {
|
|
144
107
|
InstancePort?: number;
|
|
145
|
-
|
|
146
108
|
PolicyNames?: string[];
|
|
147
109
|
}
|
|
148
|
-
|
|
149
110
|
export declare class CertificateNotFoundException extends __BaseException {
|
|
150
111
|
readonly name: "CertificateNotFoundException";
|
|
151
112
|
readonly $fault: "client";
|
|
152
113
|
Message?: string;
|
|
153
|
-
|
|
154
114
|
constructor(
|
|
155
115
|
opts: __ExceptionOptionType<CertificateNotFoundException, __BaseException>
|
|
156
116
|
);
|
|
157
117
|
}
|
|
158
|
-
|
|
159
118
|
export interface HealthCheck {
|
|
160
119
|
Target: string | undefined;
|
|
161
|
-
|
|
162
120
|
Interval: number | undefined;
|
|
163
|
-
|
|
164
121
|
Timeout: number | undefined;
|
|
165
|
-
|
|
166
122
|
UnhealthyThreshold: number | undefined;
|
|
167
|
-
|
|
168
123
|
HealthyThreshold: number | undefined;
|
|
169
124
|
}
|
|
170
|
-
|
|
171
125
|
export interface ConfigureHealthCheckInput {
|
|
172
126
|
LoadBalancerName: string | undefined;
|
|
173
|
-
|
|
174
127
|
HealthCheck: HealthCheck | undefined;
|
|
175
128
|
}
|
|
176
|
-
|
|
177
129
|
export interface ConfigureHealthCheckOutput {
|
|
178
130
|
HealthCheck?: HealthCheck;
|
|
179
131
|
}
|
|
180
|
-
|
|
181
132
|
export interface ConnectionDraining {
|
|
182
133
|
Enabled: boolean | undefined;
|
|
183
|
-
|
|
184
134
|
Timeout?: number;
|
|
185
135
|
}
|
|
186
|
-
|
|
187
136
|
export interface ConnectionSettings {
|
|
188
137
|
IdleTimeout: number | undefined;
|
|
189
138
|
}
|
|
190
|
-
|
|
191
139
|
export interface Listener {
|
|
192
140
|
Protocol: string | undefined;
|
|
193
|
-
|
|
194
141
|
LoadBalancerPort: number | undefined;
|
|
195
|
-
|
|
196
142
|
InstanceProtocol?: string;
|
|
197
|
-
|
|
198
143
|
InstancePort: number | undefined;
|
|
199
|
-
|
|
200
144
|
SSLCertificateId?: string;
|
|
201
145
|
}
|
|
202
|
-
|
|
203
146
|
export interface CreateAccessPointInput {
|
|
204
147
|
LoadBalancerName: string | undefined;
|
|
205
|
-
|
|
206
148
|
Listeners: Listener[] | undefined;
|
|
207
|
-
|
|
208
149
|
AvailabilityZones?: string[];
|
|
209
|
-
|
|
210
150
|
Subnets?: string[];
|
|
211
|
-
|
|
212
151
|
SecurityGroups?: string[];
|
|
213
|
-
|
|
214
152
|
Scheme?: string;
|
|
215
|
-
|
|
216
153
|
Tags?: Tag[];
|
|
217
154
|
}
|
|
218
|
-
|
|
219
155
|
export interface CreateAccessPointOutput {
|
|
220
156
|
DNSName?: string;
|
|
221
157
|
}
|
|
222
|
-
|
|
223
158
|
export interface CreateAppCookieStickinessPolicyInput {
|
|
224
159
|
LoadBalancerName: string | undefined;
|
|
225
|
-
|
|
226
160
|
PolicyName: string | undefined;
|
|
227
|
-
|
|
228
161
|
CookieName: string | undefined;
|
|
229
162
|
}
|
|
230
|
-
|
|
231
163
|
export interface CreateAppCookieStickinessPolicyOutput {}
|
|
232
|
-
|
|
233
164
|
export declare class DuplicatePolicyNameException extends __BaseException {
|
|
234
165
|
readonly name: "DuplicatePolicyNameException";
|
|
235
166
|
readonly $fault: "client";
|
|
236
167
|
Message?: string;
|
|
237
|
-
|
|
238
168
|
constructor(
|
|
239
169
|
opts: __ExceptionOptionType<DuplicatePolicyNameException, __BaseException>
|
|
240
170
|
);
|
|
241
171
|
}
|
|
242
|
-
|
|
243
172
|
export declare class TooManyPoliciesException extends __BaseException {
|
|
244
173
|
readonly name: "TooManyPoliciesException";
|
|
245
174
|
readonly $fault: "client";
|
|
246
175
|
Message?: string;
|
|
247
|
-
|
|
248
176
|
constructor(
|
|
249
177
|
opts: __ExceptionOptionType<TooManyPoliciesException, __BaseException>
|
|
250
178
|
);
|
|
251
179
|
}
|
|
252
|
-
|
|
253
180
|
export interface CreateLBCookieStickinessPolicyInput {
|
|
254
181
|
LoadBalancerName: string | undefined;
|
|
255
|
-
|
|
256
182
|
PolicyName: string | undefined;
|
|
257
|
-
|
|
258
183
|
CookieExpirationPeriod?: number;
|
|
259
184
|
}
|
|
260
|
-
|
|
261
185
|
export interface CreateLBCookieStickinessPolicyOutput {}
|
|
262
|
-
|
|
263
186
|
export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
264
187
|
readonly name: "DuplicateAccessPointNameException";
|
|
265
188
|
readonly $fault: "client";
|
|
266
189
|
Message?: string;
|
|
267
|
-
|
|
268
190
|
constructor(
|
|
269
191
|
opts: __ExceptionOptionType<
|
|
270
192
|
DuplicateAccessPointNameException,
|
|
@@ -272,288 +194,199 @@ export declare class DuplicateAccessPointNameException extends __BaseException {
|
|
|
272
194
|
>
|
|
273
195
|
);
|
|
274
196
|
}
|
|
275
|
-
|
|
276
197
|
export declare class InvalidSchemeException extends __BaseException {
|
|
277
198
|
readonly name: "InvalidSchemeException";
|
|
278
199
|
readonly $fault: "client";
|
|
279
200
|
Message?: string;
|
|
280
|
-
|
|
281
201
|
constructor(
|
|
282
202
|
opts: __ExceptionOptionType<InvalidSchemeException, __BaseException>
|
|
283
203
|
);
|
|
284
204
|
}
|
|
285
|
-
|
|
286
205
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
287
206
|
readonly name: "OperationNotPermittedException";
|
|
288
207
|
readonly $fault: "client";
|
|
289
208
|
Message?: string;
|
|
290
|
-
|
|
291
209
|
constructor(
|
|
292
210
|
opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
|
|
293
211
|
);
|
|
294
212
|
}
|
|
295
|
-
|
|
296
213
|
export declare class TooManyAccessPointsException extends __BaseException {
|
|
297
214
|
readonly name: "TooManyAccessPointsException";
|
|
298
215
|
readonly $fault: "client";
|
|
299
216
|
Message?: string;
|
|
300
|
-
|
|
301
217
|
constructor(
|
|
302
218
|
opts: __ExceptionOptionType<TooManyAccessPointsException, __BaseException>
|
|
303
219
|
);
|
|
304
220
|
}
|
|
305
|
-
|
|
306
221
|
export declare class UnsupportedProtocolException extends __BaseException {
|
|
307
222
|
readonly name: "UnsupportedProtocolException";
|
|
308
223
|
readonly $fault: "client";
|
|
309
224
|
Message?: string;
|
|
310
|
-
|
|
311
225
|
constructor(
|
|
312
226
|
opts: __ExceptionOptionType<UnsupportedProtocolException, __BaseException>
|
|
313
227
|
);
|
|
314
228
|
}
|
|
315
|
-
|
|
316
229
|
export interface CreateLoadBalancerListenerInput {
|
|
317
230
|
LoadBalancerName: string | undefined;
|
|
318
|
-
|
|
319
231
|
Listeners: Listener[] | undefined;
|
|
320
232
|
}
|
|
321
|
-
|
|
322
233
|
export interface CreateLoadBalancerListenerOutput {}
|
|
323
|
-
|
|
324
234
|
export declare class DuplicateListenerException extends __BaseException {
|
|
325
235
|
readonly name: "DuplicateListenerException";
|
|
326
236
|
readonly $fault: "client";
|
|
327
237
|
Message?: string;
|
|
328
|
-
|
|
329
238
|
constructor(
|
|
330
239
|
opts: __ExceptionOptionType<DuplicateListenerException, __BaseException>
|
|
331
240
|
);
|
|
332
241
|
}
|
|
333
|
-
|
|
334
242
|
export interface PolicyAttribute {
|
|
335
243
|
AttributeName?: string;
|
|
336
|
-
|
|
337
244
|
AttributeValue?: string;
|
|
338
245
|
}
|
|
339
|
-
|
|
340
246
|
export interface CreateLoadBalancerPolicyInput {
|
|
341
247
|
LoadBalancerName: string | undefined;
|
|
342
|
-
|
|
343
248
|
PolicyName: string | undefined;
|
|
344
|
-
|
|
345
249
|
PolicyTypeName: string | undefined;
|
|
346
|
-
|
|
347
250
|
PolicyAttributes?: PolicyAttribute[];
|
|
348
251
|
}
|
|
349
|
-
|
|
350
252
|
export interface CreateLoadBalancerPolicyOutput {}
|
|
351
|
-
|
|
352
253
|
export declare class PolicyTypeNotFoundException extends __BaseException {
|
|
353
254
|
readonly name: "PolicyTypeNotFoundException";
|
|
354
255
|
readonly $fault: "client";
|
|
355
256
|
Message?: string;
|
|
356
|
-
|
|
357
257
|
constructor(
|
|
358
258
|
opts: __ExceptionOptionType<PolicyTypeNotFoundException, __BaseException>
|
|
359
259
|
);
|
|
360
260
|
}
|
|
361
|
-
|
|
362
261
|
export interface CrossZoneLoadBalancing {
|
|
363
262
|
Enabled: boolean | undefined;
|
|
364
263
|
}
|
|
365
|
-
|
|
366
264
|
export interface DeleteAccessPointInput {
|
|
367
265
|
LoadBalancerName: string | undefined;
|
|
368
266
|
}
|
|
369
|
-
|
|
370
267
|
export interface DeleteAccessPointOutput {}
|
|
371
|
-
|
|
372
268
|
export interface DeleteLoadBalancerListenerInput {
|
|
373
269
|
LoadBalancerName: string | undefined;
|
|
374
|
-
|
|
375
270
|
LoadBalancerPorts: number[] | undefined;
|
|
376
271
|
}
|
|
377
|
-
|
|
378
272
|
export interface DeleteLoadBalancerListenerOutput {}
|
|
379
|
-
|
|
380
273
|
export interface DeleteLoadBalancerPolicyInput {
|
|
381
274
|
LoadBalancerName: string | undefined;
|
|
382
|
-
|
|
383
275
|
PolicyName: string | undefined;
|
|
384
276
|
}
|
|
385
|
-
|
|
386
277
|
export interface DeleteLoadBalancerPolicyOutput {}
|
|
387
|
-
|
|
388
278
|
export declare class DependencyThrottleException extends __BaseException {
|
|
389
279
|
readonly name: "DependencyThrottleException";
|
|
390
280
|
readonly $fault: "client";
|
|
391
281
|
Message?: string;
|
|
392
|
-
|
|
393
282
|
constructor(
|
|
394
283
|
opts: __ExceptionOptionType<DependencyThrottleException, __BaseException>
|
|
395
284
|
);
|
|
396
285
|
}
|
|
397
|
-
|
|
398
286
|
export interface Instance {
|
|
399
287
|
InstanceId?: string;
|
|
400
288
|
}
|
|
401
|
-
|
|
402
289
|
export interface DeregisterEndPointsInput {
|
|
403
290
|
LoadBalancerName: string | undefined;
|
|
404
|
-
|
|
405
291
|
Instances: Instance[] | undefined;
|
|
406
292
|
}
|
|
407
|
-
|
|
408
293
|
export interface DeregisterEndPointsOutput {
|
|
409
294
|
Instances?: Instance[];
|
|
410
295
|
}
|
|
411
|
-
|
|
412
296
|
export declare class InvalidEndPointException extends __BaseException {
|
|
413
297
|
readonly name: "InvalidEndPointException";
|
|
414
298
|
readonly $fault: "client";
|
|
415
299
|
Message?: string;
|
|
416
|
-
|
|
417
300
|
constructor(
|
|
418
301
|
opts: __ExceptionOptionType<InvalidEndPointException, __BaseException>
|
|
419
302
|
);
|
|
420
303
|
}
|
|
421
|
-
|
|
422
304
|
export interface DescribeAccessPointsInput {
|
|
423
305
|
LoadBalancerNames?: string[];
|
|
424
|
-
|
|
425
306
|
Marker?: string;
|
|
426
|
-
|
|
427
307
|
PageSize?: number;
|
|
428
308
|
}
|
|
429
|
-
|
|
430
309
|
export interface ListenerDescription {
|
|
431
310
|
Listener?: Listener;
|
|
432
|
-
|
|
433
311
|
PolicyNames?: string[];
|
|
434
312
|
}
|
|
435
|
-
|
|
436
313
|
export interface LBCookieStickinessPolicy {
|
|
437
314
|
PolicyName?: string;
|
|
438
|
-
|
|
439
315
|
CookieExpirationPeriod?: number;
|
|
440
316
|
}
|
|
441
|
-
|
|
442
317
|
export interface Policies {
|
|
443
318
|
AppCookieStickinessPolicies?: AppCookieStickinessPolicy[];
|
|
444
|
-
|
|
445
319
|
LBCookieStickinessPolicies?: LBCookieStickinessPolicy[];
|
|
446
|
-
|
|
447
320
|
OtherPolicies?: string[];
|
|
448
321
|
}
|
|
449
|
-
|
|
450
322
|
export interface SourceSecurityGroup {
|
|
451
323
|
OwnerAlias?: string;
|
|
452
|
-
|
|
453
324
|
GroupName?: string;
|
|
454
325
|
}
|
|
455
|
-
|
|
456
326
|
export interface LoadBalancerDescription {
|
|
457
327
|
LoadBalancerName?: string;
|
|
458
|
-
|
|
459
328
|
DNSName?: string;
|
|
460
|
-
|
|
461
329
|
CanonicalHostedZoneName?: string;
|
|
462
|
-
|
|
463
330
|
CanonicalHostedZoneNameID?: string;
|
|
464
|
-
|
|
465
331
|
ListenerDescriptions?: ListenerDescription[];
|
|
466
|
-
|
|
467
332
|
Policies?: Policies;
|
|
468
|
-
|
|
469
333
|
BackendServerDescriptions?: BackendServerDescription[];
|
|
470
|
-
|
|
471
334
|
AvailabilityZones?: string[];
|
|
472
|
-
|
|
473
335
|
Subnets?: string[];
|
|
474
|
-
|
|
475
336
|
VPCId?: string;
|
|
476
|
-
|
|
477
337
|
Instances?: Instance[];
|
|
478
|
-
|
|
479
338
|
HealthCheck?: HealthCheck;
|
|
480
|
-
|
|
481
339
|
SourceSecurityGroup?: SourceSecurityGroup;
|
|
482
|
-
|
|
483
340
|
SecurityGroups?: string[];
|
|
484
|
-
|
|
485
341
|
CreatedTime?: Date;
|
|
486
|
-
|
|
487
342
|
Scheme?: string;
|
|
488
343
|
}
|
|
489
|
-
|
|
490
344
|
export interface DescribeAccessPointsOutput {
|
|
491
345
|
LoadBalancerDescriptions?: LoadBalancerDescription[];
|
|
492
|
-
|
|
493
346
|
NextMarker?: string;
|
|
494
347
|
}
|
|
495
348
|
export interface DescribeAccountLimitsInput {
|
|
496
349
|
Marker?: string;
|
|
497
|
-
|
|
498
350
|
PageSize?: number;
|
|
499
351
|
}
|
|
500
|
-
|
|
501
352
|
export interface Limit {
|
|
502
353
|
Name?: string;
|
|
503
|
-
|
|
504
354
|
Max?: string;
|
|
505
355
|
}
|
|
506
356
|
export interface DescribeAccountLimitsOutput {
|
|
507
357
|
Limits?: Limit[];
|
|
508
|
-
|
|
509
358
|
NextMarker?: string;
|
|
510
359
|
}
|
|
511
|
-
|
|
512
360
|
export interface DescribeEndPointStateInput {
|
|
513
361
|
LoadBalancerName: string | undefined;
|
|
514
|
-
|
|
515
362
|
Instances?: Instance[];
|
|
516
363
|
}
|
|
517
|
-
|
|
518
364
|
export interface InstanceState {
|
|
519
365
|
InstanceId?: string;
|
|
520
|
-
|
|
521
366
|
State?: string;
|
|
522
|
-
|
|
523
367
|
ReasonCode?: string;
|
|
524
|
-
|
|
525
368
|
Description?: string;
|
|
526
369
|
}
|
|
527
|
-
|
|
528
370
|
export interface DescribeEndPointStateOutput {
|
|
529
371
|
InstanceStates?: InstanceState[];
|
|
530
372
|
}
|
|
531
|
-
|
|
532
373
|
export interface DescribeLoadBalancerAttributesInput {
|
|
533
374
|
LoadBalancerName: string | undefined;
|
|
534
375
|
}
|
|
535
|
-
|
|
536
376
|
export interface LoadBalancerAttributes {
|
|
537
377
|
CrossZoneLoadBalancing?: CrossZoneLoadBalancing;
|
|
538
|
-
|
|
539
378
|
AccessLog?: AccessLog;
|
|
540
|
-
|
|
541
379
|
ConnectionDraining?: ConnectionDraining;
|
|
542
|
-
|
|
543
380
|
ConnectionSettings?: ConnectionSettings;
|
|
544
|
-
|
|
545
381
|
AdditionalAttributes?: AdditionalAttribute[];
|
|
546
382
|
}
|
|
547
|
-
|
|
548
383
|
export interface DescribeLoadBalancerAttributesOutput {
|
|
549
384
|
LoadBalancerAttributes?: LoadBalancerAttributes;
|
|
550
385
|
}
|
|
551
|
-
|
|
552
386
|
export declare class LoadBalancerAttributeNotFoundException extends __BaseException {
|
|
553
387
|
readonly name: "LoadBalancerAttributeNotFoundException";
|
|
554
388
|
readonly $fault: "client";
|
|
555
389
|
Message?: string;
|
|
556
|
-
|
|
557
390
|
constructor(
|
|
558
391
|
opts: __ExceptionOptionType<
|
|
559
392
|
LoadBalancerAttributeNotFoundException,
|
|
@@ -561,491 +394,352 @@ export declare class LoadBalancerAttributeNotFoundException extends __BaseExcept
|
|
|
561
394
|
>
|
|
562
395
|
);
|
|
563
396
|
}
|
|
564
|
-
|
|
565
397
|
export interface DescribeLoadBalancerPoliciesInput {
|
|
566
398
|
LoadBalancerName?: string;
|
|
567
|
-
|
|
568
399
|
PolicyNames?: string[];
|
|
569
400
|
}
|
|
570
|
-
|
|
571
401
|
export interface PolicyAttributeDescription {
|
|
572
402
|
AttributeName?: string;
|
|
573
|
-
|
|
574
403
|
AttributeValue?: string;
|
|
575
404
|
}
|
|
576
|
-
|
|
577
405
|
export interface PolicyDescription {
|
|
578
406
|
PolicyName?: string;
|
|
579
|
-
|
|
580
407
|
PolicyTypeName?: string;
|
|
581
|
-
|
|
582
408
|
PolicyAttributeDescriptions?: PolicyAttributeDescription[];
|
|
583
409
|
}
|
|
584
|
-
|
|
585
410
|
export interface DescribeLoadBalancerPoliciesOutput {
|
|
586
411
|
PolicyDescriptions?: PolicyDescription[];
|
|
587
412
|
}
|
|
588
|
-
|
|
589
413
|
export declare class PolicyNotFoundException extends __BaseException {
|
|
590
414
|
readonly name: "PolicyNotFoundException";
|
|
591
415
|
readonly $fault: "client";
|
|
592
416
|
Message?: string;
|
|
593
|
-
|
|
594
417
|
constructor(
|
|
595
418
|
opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>
|
|
596
419
|
);
|
|
597
420
|
}
|
|
598
|
-
|
|
599
421
|
export interface DescribeLoadBalancerPolicyTypesInput {
|
|
600
422
|
PolicyTypeNames?: string[];
|
|
601
423
|
}
|
|
602
|
-
|
|
603
424
|
export interface PolicyAttributeTypeDescription {
|
|
604
425
|
AttributeName?: string;
|
|
605
|
-
|
|
606
426
|
AttributeType?: string;
|
|
607
|
-
|
|
608
427
|
Description?: string;
|
|
609
|
-
|
|
610
428
|
DefaultValue?: string;
|
|
611
|
-
|
|
612
429
|
Cardinality?: string;
|
|
613
430
|
}
|
|
614
|
-
|
|
615
431
|
export interface PolicyTypeDescription {
|
|
616
432
|
PolicyTypeName?: string;
|
|
617
|
-
|
|
618
433
|
Description?: string;
|
|
619
|
-
|
|
620
434
|
PolicyAttributeTypeDescriptions?: PolicyAttributeTypeDescription[];
|
|
621
435
|
}
|
|
622
|
-
|
|
623
436
|
export interface DescribeLoadBalancerPolicyTypesOutput {
|
|
624
437
|
PolicyTypeDescriptions?: PolicyTypeDescription[];
|
|
625
438
|
}
|
|
626
|
-
|
|
627
439
|
export interface DescribeTagsInput {
|
|
628
440
|
LoadBalancerNames: string[] | undefined;
|
|
629
441
|
}
|
|
630
|
-
|
|
631
442
|
export interface TagDescription {
|
|
632
443
|
LoadBalancerName?: string;
|
|
633
|
-
|
|
634
444
|
Tags?: Tag[];
|
|
635
445
|
}
|
|
636
|
-
|
|
637
446
|
export interface DescribeTagsOutput {
|
|
638
447
|
TagDescriptions?: TagDescription[];
|
|
639
448
|
}
|
|
640
|
-
|
|
641
449
|
export interface DetachLoadBalancerFromSubnetsInput {
|
|
642
450
|
LoadBalancerName: string | undefined;
|
|
643
|
-
|
|
644
451
|
Subnets: string[] | undefined;
|
|
645
452
|
}
|
|
646
|
-
|
|
647
453
|
export interface DetachLoadBalancerFromSubnetsOutput {
|
|
648
454
|
Subnets?: string[];
|
|
649
455
|
}
|
|
650
|
-
|
|
651
456
|
export interface RemoveAvailabilityZonesInput {
|
|
652
457
|
LoadBalancerName: string | undefined;
|
|
653
|
-
|
|
654
458
|
AvailabilityZones: string[] | undefined;
|
|
655
459
|
}
|
|
656
|
-
|
|
657
460
|
export interface RemoveAvailabilityZonesOutput {
|
|
658
461
|
AvailabilityZones?: string[];
|
|
659
462
|
}
|
|
660
|
-
|
|
661
463
|
export interface ModifyLoadBalancerAttributesInput {
|
|
662
464
|
LoadBalancerName: string | undefined;
|
|
663
|
-
|
|
664
465
|
LoadBalancerAttributes: LoadBalancerAttributes | undefined;
|
|
665
466
|
}
|
|
666
|
-
|
|
667
467
|
export interface ModifyLoadBalancerAttributesOutput {
|
|
668
468
|
LoadBalancerName?: string;
|
|
669
|
-
|
|
670
469
|
LoadBalancerAttributes?: LoadBalancerAttributes;
|
|
671
470
|
}
|
|
672
|
-
|
|
673
471
|
export interface RegisterEndPointsInput {
|
|
674
472
|
LoadBalancerName: string | undefined;
|
|
675
|
-
|
|
676
473
|
Instances: Instance[] | undefined;
|
|
677
474
|
}
|
|
678
|
-
|
|
679
475
|
export interface RegisterEndPointsOutput {
|
|
680
476
|
Instances?: Instance[];
|
|
681
477
|
}
|
|
682
|
-
|
|
683
478
|
export interface TagKeyOnly {
|
|
684
479
|
Key?: string;
|
|
685
480
|
}
|
|
686
|
-
|
|
687
481
|
export interface RemoveTagsInput {
|
|
688
482
|
LoadBalancerNames: string[] | undefined;
|
|
689
|
-
|
|
690
483
|
Tags: TagKeyOnly[] | undefined;
|
|
691
484
|
}
|
|
692
|
-
|
|
693
485
|
export interface RemoveTagsOutput {}
|
|
694
|
-
|
|
695
486
|
export declare class ListenerNotFoundException extends __BaseException {
|
|
696
487
|
readonly name: "ListenerNotFoundException";
|
|
697
488
|
readonly $fault: "client";
|
|
698
489
|
Message?: string;
|
|
699
|
-
|
|
700
490
|
constructor(
|
|
701
491
|
opts: __ExceptionOptionType<ListenerNotFoundException, __BaseException>
|
|
702
492
|
);
|
|
703
493
|
}
|
|
704
|
-
|
|
705
494
|
export interface SetLoadBalancerListenerSSLCertificateInput {
|
|
706
495
|
LoadBalancerName: string | undefined;
|
|
707
|
-
|
|
708
496
|
LoadBalancerPort: number | undefined;
|
|
709
|
-
|
|
710
497
|
SSLCertificateId: string | undefined;
|
|
711
498
|
}
|
|
712
|
-
|
|
713
499
|
export interface SetLoadBalancerListenerSSLCertificateOutput {}
|
|
714
|
-
|
|
715
500
|
export interface SetLoadBalancerPoliciesForBackendServerInput {
|
|
716
501
|
LoadBalancerName: string | undefined;
|
|
717
|
-
|
|
718
502
|
InstancePort: number | undefined;
|
|
719
|
-
|
|
720
503
|
PolicyNames: string[] | undefined;
|
|
721
504
|
}
|
|
722
|
-
|
|
723
505
|
export interface SetLoadBalancerPoliciesForBackendServerOutput {}
|
|
724
|
-
|
|
725
506
|
export interface SetLoadBalancerPoliciesOfListenerInput {
|
|
726
507
|
LoadBalancerName: string | undefined;
|
|
727
|
-
|
|
728
508
|
LoadBalancerPort: number | undefined;
|
|
729
|
-
|
|
730
509
|
PolicyNames: string[] | undefined;
|
|
731
510
|
}
|
|
732
|
-
|
|
733
511
|
export interface SetLoadBalancerPoliciesOfListenerOutput {}
|
|
734
|
-
|
|
735
512
|
export declare const AccessLogFilterSensitiveLog: (obj: AccessLog) => any;
|
|
736
|
-
|
|
737
513
|
export declare const AddAvailabilityZonesInputFilterSensitiveLog: (
|
|
738
514
|
obj: AddAvailabilityZonesInput
|
|
739
515
|
) => any;
|
|
740
|
-
|
|
741
516
|
export declare const AddAvailabilityZonesOutputFilterSensitiveLog: (
|
|
742
517
|
obj: AddAvailabilityZonesOutput
|
|
743
518
|
) => any;
|
|
744
|
-
|
|
745
519
|
export declare const AdditionalAttributeFilterSensitiveLog: (
|
|
746
520
|
obj: AdditionalAttribute
|
|
747
521
|
) => any;
|
|
748
|
-
|
|
749
522
|
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
750
|
-
|
|
751
523
|
export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
|
|
752
|
-
|
|
753
524
|
export declare const AddTagsOutputFilterSensitiveLog: (
|
|
754
525
|
obj: AddTagsOutput
|
|
755
526
|
) => any;
|
|
756
|
-
|
|
757
527
|
export declare const AppCookieStickinessPolicyFilterSensitiveLog: (
|
|
758
528
|
obj: AppCookieStickinessPolicy
|
|
759
529
|
) => any;
|
|
760
|
-
|
|
761
530
|
export declare const ApplySecurityGroupsToLoadBalancerInputFilterSensitiveLog: (
|
|
762
531
|
obj: ApplySecurityGroupsToLoadBalancerInput
|
|
763
532
|
) => any;
|
|
764
|
-
|
|
765
533
|
export declare const ApplySecurityGroupsToLoadBalancerOutputFilterSensitiveLog: (
|
|
766
534
|
obj: ApplySecurityGroupsToLoadBalancerOutput
|
|
767
535
|
) => any;
|
|
768
|
-
|
|
769
536
|
export declare const AttachLoadBalancerToSubnetsInputFilterSensitiveLog: (
|
|
770
537
|
obj: AttachLoadBalancerToSubnetsInput
|
|
771
538
|
) => any;
|
|
772
|
-
|
|
773
539
|
export declare const AttachLoadBalancerToSubnetsOutputFilterSensitiveLog: (
|
|
774
540
|
obj: AttachLoadBalancerToSubnetsOutput
|
|
775
541
|
) => any;
|
|
776
|
-
|
|
777
542
|
export declare const BackendServerDescriptionFilterSensitiveLog: (
|
|
778
543
|
obj: BackendServerDescription
|
|
779
544
|
) => any;
|
|
780
|
-
|
|
781
545
|
export declare const HealthCheckFilterSensitiveLog: (obj: HealthCheck) => any;
|
|
782
|
-
|
|
783
546
|
export declare const ConfigureHealthCheckInputFilterSensitiveLog: (
|
|
784
547
|
obj: ConfigureHealthCheckInput
|
|
785
548
|
) => any;
|
|
786
|
-
|
|
787
549
|
export declare const ConfigureHealthCheckOutputFilterSensitiveLog: (
|
|
788
550
|
obj: ConfigureHealthCheckOutput
|
|
789
551
|
) => any;
|
|
790
|
-
|
|
791
552
|
export declare const ConnectionDrainingFilterSensitiveLog: (
|
|
792
553
|
obj: ConnectionDraining
|
|
793
554
|
) => any;
|
|
794
|
-
|
|
795
555
|
export declare const ConnectionSettingsFilterSensitiveLog: (
|
|
796
556
|
obj: ConnectionSettings
|
|
797
557
|
) => any;
|
|
798
|
-
|
|
799
558
|
export declare const ListenerFilterSensitiveLog: (obj: Listener) => any;
|
|
800
|
-
|
|
801
559
|
export declare const CreateAccessPointInputFilterSensitiveLog: (
|
|
802
560
|
obj: CreateAccessPointInput
|
|
803
561
|
) => any;
|
|
804
|
-
|
|
805
562
|
export declare const CreateAccessPointOutputFilterSensitiveLog: (
|
|
806
563
|
obj: CreateAccessPointOutput
|
|
807
564
|
) => any;
|
|
808
|
-
|
|
809
565
|
export declare const CreateAppCookieStickinessPolicyInputFilterSensitiveLog: (
|
|
810
566
|
obj: CreateAppCookieStickinessPolicyInput
|
|
811
567
|
) => any;
|
|
812
|
-
|
|
813
568
|
export declare const CreateAppCookieStickinessPolicyOutputFilterSensitiveLog: (
|
|
814
569
|
obj: CreateAppCookieStickinessPolicyOutput
|
|
815
570
|
) => any;
|
|
816
|
-
|
|
817
571
|
export declare const CreateLBCookieStickinessPolicyInputFilterSensitiveLog: (
|
|
818
572
|
obj: CreateLBCookieStickinessPolicyInput
|
|
819
573
|
) => any;
|
|
820
|
-
|
|
821
574
|
export declare const CreateLBCookieStickinessPolicyOutputFilterSensitiveLog: (
|
|
822
575
|
obj: CreateLBCookieStickinessPolicyOutput
|
|
823
576
|
) => any;
|
|
824
|
-
|
|
825
577
|
export declare const CreateLoadBalancerListenerInputFilterSensitiveLog: (
|
|
826
578
|
obj: CreateLoadBalancerListenerInput
|
|
827
579
|
) => any;
|
|
828
|
-
|
|
829
580
|
export declare const CreateLoadBalancerListenerOutputFilterSensitiveLog: (
|
|
830
581
|
obj: CreateLoadBalancerListenerOutput
|
|
831
582
|
) => any;
|
|
832
|
-
|
|
833
583
|
export declare const PolicyAttributeFilterSensitiveLog: (
|
|
834
584
|
obj: PolicyAttribute
|
|
835
585
|
) => any;
|
|
836
|
-
|
|
837
586
|
export declare const CreateLoadBalancerPolicyInputFilterSensitiveLog: (
|
|
838
587
|
obj: CreateLoadBalancerPolicyInput
|
|
839
588
|
) => any;
|
|
840
|
-
|
|
841
589
|
export declare const CreateLoadBalancerPolicyOutputFilterSensitiveLog: (
|
|
842
590
|
obj: CreateLoadBalancerPolicyOutput
|
|
843
591
|
) => any;
|
|
844
|
-
|
|
845
592
|
export declare const CrossZoneLoadBalancingFilterSensitiveLog: (
|
|
846
593
|
obj: CrossZoneLoadBalancing
|
|
847
594
|
) => any;
|
|
848
|
-
|
|
849
595
|
export declare const DeleteAccessPointInputFilterSensitiveLog: (
|
|
850
596
|
obj: DeleteAccessPointInput
|
|
851
597
|
) => any;
|
|
852
|
-
|
|
853
598
|
export declare const DeleteAccessPointOutputFilterSensitiveLog: (
|
|
854
599
|
obj: DeleteAccessPointOutput
|
|
855
600
|
) => any;
|
|
856
|
-
|
|
857
601
|
export declare const DeleteLoadBalancerListenerInputFilterSensitiveLog: (
|
|
858
602
|
obj: DeleteLoadBalancerListenerInput
|
|
859
603
|
) => any;
|
|
860
|
-
|
|
861
604
|
export declare const DeleteLoadBalancerListenerOutputFilterSensitiveLog: (
|
|
862
605
|
obj: DeleteLoadBalancerListenerOutput
|
|
863
606
|
) => any;
|
|
864
|
-
|
|
865
607
|
export declare const DeleteLoadBalancerPolicyInputFilterSensitiveLog: (
|
|
866
608
|
obj: DeleteLoadBalancerPolicyInput
|
|
867
609
|
) => any;
|
|
868
|
-
|
|
869
610
|
export declare const DeleteLoadBalancerPolicyOutputFilterSensitiveLog: (
|
|
870
611
|
obj: DeleteLoadBalancerPolicyOutput
|
|
871
612
|
) => any;
|
|
872
|
-
|
|
873
613
|
export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
|
|
874
|
-
|
|
875
614
|
export declare const DeregisterEndPointsInputFilterSensitiveLog: (
|
|
876
615
|
obj: DeregisterEndPointsInput
|
|
877
616
|
) => any;
|
|
878
|
-
|
|
879
617
|
export declare const DeregisterEndPointsOutputFilterSensitiveLog: (
|
|
880
618
|
obj: DeregisterEndPointsOutput
|
|
881
619
|
) => any;
|
|
882
|
-
|
|
883
620
|
export declare const DescribeAccessPointsInputFilterSensitiveLog: (
|
|
884
621
|
obj: DescribeAccessPointsInput
|
|
885
622
|
) => any;
|
|
886
|
-
|
|
887
623
|
export declare const ListenerDescriptionFilterSensitiveLog: (
|
|
888
624
|
obj: ListenerDescription
|
|
889
625
|
) => any;
|
|
890
|
-
|
|
891
626
|
export declare const LBCookieStickinessPolicyFilterSensitiveLog: (
|
|
892
627
|
obj: LBCookieStickinessPolicy
|
|
893
628
|
) => any;
|
|
894
|
-
|
|
895
629
|
export declare const PoliciesFilterSensitiveLog: (obj: Policies) => any;
|
|
896
|
-
|
|
897
630
|
export declare const SourceSecurityGroupFilterSensitiveLog: (
|
|
898
631
|
obj: SourceSecurityGroup
|
|
899
632
|
) => any;
|
|
900
|
-
|
|
901
633
|
export declare const LoadBalancerDescriptionFilterSensitiveLog: (
|
|
902
634
|
obj: LoadBalancerDescription
|
|
903
635
|
) => any;
|
|
904
|
-
|
|
905
636
|
export declare const DescribeAccessPointsOutputFilterSensitiveLog: (
|
|
906
637
|
obj: DescribeAccessPointsOutput
|
|
907
638
|
) => any;
|
|
908
|
-
|
|
909
639
|
export declare const DescribeAccountLimitsInputFilterSensitiveLog: (
|
|
910
640
|
obj: DescribeAccountLimitsInput
|
|
911
641
|
) => any;
|
|
912
|
-
|
|
913
642
|
export declare const LimitFilterSensitiveLog: (obj: Limit) => any;
|
|
914
|
-
|
|
915
643
|
export declare const DescribeAccountLimitsOutputFilterSensitiveLog: (
|
|
916
644
|
obj: DescribeAccountLimitsOutput
|
|
917
645
|
) => any;
|
|
918
|
-
|
|
919
646
|
export declare const DescribeEndPointStateInputFilterSensitiveLog: (
|
|
920
647
|
obj: DescribeEndPointStateInput
|
|
921
648
|
) => any;
|
|
922
|
-
|
|
923
649
|
export declare const InstanceStateFilterSensitiveLog: (
|
|
924
650
|
obj: InstanceState
|
|
925
651
|
) => any;
|
|
926
|
-
|
|
927
652
|
export declare const DescribeEndPointStateOutputFilterSensitiveLog: (
|
|
928
653
|
obj: DescribeEndPointStateOutput
|
|
929
654
|
) => any;
|
|
930
|
-
|
|
931
655
|
export declare const DescribeLoadBalancerAttributesInputFilterSensitiveLog: (
|
|
932
656
|
obj: DescribeLoadBalancerAttributesInput
|
|
933
657
|
) => any;
|
|
934
|
-
|
|
935
658
|
export declare const LoadBalancerAttributesFilterSensitiveLog: (
|
|
936
659
|
obj: LoadBalancerAttributes
|
|
937
660
|
) => any;
|
|
938
|
-
|
|
939
661
|
export declare const DescribeLoadBalancerAttributesOutputFilterSensitiveLog: (
|
|
940
662
|
obj: DescribeLoadBalancerAttributesOutput
|
|
941
663
|
) => any;
|
|
942
|
-
|
|
943
664
|
export declare const DescribeLoadBalancerPoliciesInputFilterSensitiveLog: (
|
|
944
665
|
obj: DescribeLoadBalancerPoliciesInput
|
|
945
666
|
) => any;
|
|
946
|
-
|
|
947
667
|
export declare const PolicyAttributeDescriptionFilterSensitiveLog: (
|
|
948
668
|
obj: PolicyAttributeDescription
|
|
949
669
|
) => any;
|
|
950
|
-
|
|
951
670
|
export declare const PolicyDescriptionFilterSensitiveLog: (
|
|
952
671
|
obj: PolicyDescription
|
|
953
672
|
) => any;
|
|
954
|
-
|
|
955
673
|
export declare const DescribeLoadBalancerPoliciesOutputFilterSensitiveLog: (
|
|
956
674
|
obj: DescribeLoadBalancerPoliciesOutput
|
|
957
675
|
) => any;
|
|
958
|
-
|
|
959
676
|
export declare const DescribeLoadBalancerPolicyTypesInputFilterSensitiveLog: (
|
|
960
677
|
obj: DescribeLoadBalancerPolicyTypesInput
|
|
961
678
|
) => any;
|
|
962
|
-
|
|
963
679
|
export declare const PolicyAttributeTypeDescriptionFilterSensitiveLog: (
|
|
964
680
|
obj: PolicyAttributeTypeDescription
|
|
965
681
|
) => any;
|
|
966
|
-
|
|
967
682
|
export declare const PolicyTypeDescriptionFilterSensitiveLog: (
|
|
968
683
|
obj: PolicyTypeDescription
|
|
969
684
|
) => any;
|
|
970
|
-
|
|
971
685
|
export declare const DescribeLoadBalancerPolicyTypesOutputFilterSensitiveLog: (
|
|
972
686
|
obj: DescribeLoadBalancerPolicyTypesOutput
|
|
973
687
|
) => any;
|
|
974
|
-
|
|
975
688
|
export declare const DescribeTagsInputFilterSensitiveLog: (
|
|
976
689
|
obj: DescribeTagsInput
|
|
977
690
|
) => any;
|
|
978
|
-
|
|
979
691
|
export declare const TagDescriptionFilterSensitiveLog: (
|
|
980
692
|
obj: TagDescription
|
|
981
693
|
) => any;
|
|
982
|
-
|
|
983
694
|
export declare const DescribeTagsOutputFilterSensitiveLog: (
|
|
984
695
|
obj: DescribeTagsOutput
|
|
985
696
|
) => any;
|
|
986
|
-
|
|
987
697
|
export declare const DetachLoadBalancerFromSubnetsInputFilterSensitiveLog: (
|
|
988
698
|
obj: DetachLoadBalancerFromSubnetsInput
|
|
989
699
|
) => any;
|
|
990
|
-
|
|
991
700
|
export declare const DetachLoadBalancerFromSubnetsOutputFilterSensitiveLog: (
|
|
992
701
|
obj: DetachLoadBalancerFromSubnetsOutput
|
|
993
702
|
) => any;
|
|
994
|
-
|
|
995
703
|
export declare const RemoveAvailabilityZonesInputFilterSensitiveLog: (
|
|
996
704
|
obj: RemoveAvailabilityZonesInput
|
|
997
705
|
) => any;
|
|
998
|
-
|
|
999
706
|
export declare const RemoveAvailabilityZonesOutputFilterSensitiveLog: (
|
|
1000
707
|
obj: RemoveAvailabilityZonesOutput
|
|
1001
708
|
) => any;
|
|
1002
|
-
|
|
1003
709
|
export declare const ModifyLoadBalancerAttributesInputFilterSensitiveLog: (
|
|
1004
710
|
obj: ModifyLoadBalancerAttributesInput
|
|
1005
711
|
) => any;
|
|
1006
|
-
|
|
1007
712
|
export declare const ModifyLoadBalancerAttributesOutputFilterSensitiveLog: (
|
|
1008
713
|
obj: ModifyLoadBalancerAttributesOutput
|
|
1009
714
|
) => any;
|
|
1010
|
-
|
|
1011
715
|
export declare const RegisterEndPointsInputFilterSensitiveLog: (
|
|
1012
716
|
obj: RegisterEndPointsInput
|
|
1013
717
|
) => any;
|
|
1014
|
-
|
|
1015
718
|
export declare const RegisterEndPointsOutputFilterSensitiveLog: (
|
|
1016
719
|
obj: RegisterEndPointsOutput
|
|
1017
720
|
) => any;
|
|
1018
|
-
|
|
1019
721
|
export declare const TagKeyOnlyFilterSensitiveLog: (obj: TagKeyOnly) => any;
|
|
1020
|
-
|
|
1021
722
|
export declare const RemoveTagsInputFilterSensitiveLog: (
|
|
1022
723
|
obj: RemoveTagsInput
|
|
1023
724
|
) => any;
|
|
1024
|
-
|
|
1025
725
|
export declare const RemoveTagsOutputFilterSensitiveLog: (
|
|
1026
726
|
obj: RemoveTagsOutput
|
|
1027
727
|
) => any;
|
|
1028
|
-
|
|
1029
728
|
export declare const SetLoadBalancerListenerSSLCertificateInputFilterSensitiveLog: (
|
|
1030
729
|
obj: SetLoadBalancerListenerSSLCertificateInput
|
|
1031
730
|
) => any;
|
|
1032
|
-
|
|
1033
731
|
export declare const SetLoadBalancerListenerSSLCertificateOutputFilterSensitiveLog: (
|
|
1034
732
|
obj: SetLoadBalancerListenerSSLCertificateOutput
|
|
1035
733
|
) => any;
|
|
1036
|
-
|
|
1037
734
|
export declare const SetLoadBalancerPoliciesForBackendServerInputFilterSensitiveLog: (
|
|
1038
735
|
obj: SetLoadBalancerPoliciesForBackendServerInput
|
|
1039
736
|
) => any;
|
|
1040
|
-
|
|
1041
737
|
export declare const SetLoadBalancerPoliciesForBackendServerOutputFilterSensitiveLog: (
|
|
1042
738
|
obj: SetLoadBalancerPoliciesForBackendServerOutput
|
|
1043
739
|
) => any;
|
|
1044
|
-
|
|
1045
740
|
export declare const SetLoadBalancerPoliciesOfListenerInputFilterSensitiveLog: (
|
|
1046
741
|
obj: SetLoadBalancerPoliciesOfListenerInput
|
|
1047
742
|
) => any;
|
|
1048
|
-
|
|
1049
743
|
export declare const SetLoadBalancerPoliciesOfListenerOutputFilterSensitiveLog: (
|
|
1050
744
|
obj: SetLoadBalancerPoliciesOfListenerOutput
|
|
1051
745
|
) => any;
|