@aws-sdk/client-elastic-load-balancing-v2 3.186.0 → 3.188.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 +16 -0
- package/dist-cjs/models/models_0.js +14 -4
- package/dist-cjs/protocols/Aws_query.js +8 -4
- package/dist-es/ElasticLoadBalancingV2.js +138 -145
- package/dist-es/ElasticLoadBalancingV2Client.js +22 -28
- package/dist-es/commands/AddListenerCertificatesCommand.js +21 -28
- package/dist-es/commands/AddTagsCommand.js +21 -28
- package/dist-es/commands/CreateListenerCommand.js +21 -28
- package/dist-es/commands/CreateLoadBalancerCommand.js +21 -28
- package/dist-es/commands/CreateRuleCommand.js +21 -28
- package/dist-es/commands/CreateTargetGroupCommand.js +21 -28
- package/dist-es/commands/DeleteListenerCommand.js +21 -28
- package/dist-es/commands/DeleteLoadBalancerCommand.js +21 -28
- package/dist-es/commands/DeleteRuleCommand.js +21 -28
- package/dist-es/commands/DeleteTargetGroupCommand.js +21 -28
- package/dist-es/commands/DeregisterTargetsCommand.js +21 -28
- package/dist-es/commands/DescribeAccountLimitsCommand.js +21 -28
- package/dist-es/commands/DescribeListenerCertificatesCommand.js +21 -28
- package/dist-es/commands/DescribeListenersCommand.js +21 -28
- package/dist-es/commands/DescribeLoadBalancerAttributesCommand.js +21 -28
- package/dist-es/commands/DescribeLoadBalancersCommand.js +21 -28
- package/dist-es/commands/DescribeRulesCommand.js +21 -28
- package/dist-es/commands/DescribeSSLPoliciesCommand.js +21 -28
- package/dist-es/commands/DescribeTagsCommand.js +21 -28
- package/dist-es/commands/DescribeTargetGroupAttributesCommand.js +21 -28
- package/dist-es/commands/DescribeTargetGroupsCommand.js +21 -28
- package/dist-es/commands/DescribeTargetHealthCommand.js +21 -28
- package/dist-es/commands/ModifyListenerCommand.js +21 -28
- package/dist-es/commands/ModifyLoadBalancerAttributesCommand.js +21 -28
- package/dist-es/commands/ModifyRuleCommand.js +21 -28
- package/dist-es/commands/ModifyTargetGroupAttributesCommand.js +21 -28
- package/dist-es/commands/ModifyTargetGroupCommand.js +21 -28
- package/dist-es/commands/RegisterTargetsCommand.js +21 -28
- package/dist-es/commands/RemoveListenerCertificatesCommand.js +21 -28
- package/dist-es/commands/RemoveTagsCommand.js +21 -28
- package/dist-es/commands/SetIpAddressTypeCommand.js +21 -28
- package/dist-es/commands/SetRulePrioritiesCommand.js +21 -28
- package/dist-es/commands/SetSecurityGroupsCommand.js +21 -28
- package/dist-es/commands/SetSubnetsCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ElasticLoadBalancingV2ServiceException.js +5 -10
- package/dist-es/models/models_0.js +806 -587
- package/dist-es/pagination/DescribeListenersPaginator.js +24 -67
- package/dist-es/pagination/DescribeLoadBalancersPaginator.js +24 -67
- package/dist-es/pagination/DescribeTargetGroupsPaginator.js +24 -67
- package/dist-es/protocols/Aws_query.js +3076 -4092
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForLoadBalancerAvailable.js +52 -93
- package/dist-es/waiters/waitForLoadBalancerExists.js +23 -42
- package/dist-es/waiters/waitForLoadBalancersDeleted.js +38 -69
- package/dist-es/waiters/waitForTargetDeregistered.js +38 -69
- package/dist-es/waiters/waitForTargetInService.js +38 -69
- package/dist-types/ElasticLoadBalancingV2.d.ts +1 -2
- package/dist-types/commands/SetIpAddressTypeCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +37 -6
- package/dist-types/ts3.4/models/models_0.d.ts +9 -8
- package/package.json +35 -36
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ElasticLoadBalancingV2ServiceException as __BaseException } from "./ElasticLoadBalancingV2ServiceException";
|
|
3
2
|
export var AuthenticateCognitoActionConditionalBehaviorEnum;
|
|
4
3
|
(function (AuthenticateCognitoActionConditionalBehaviorEnum) {
|
|
@@ -25,305 +24,315 @@ export var ActionTypeEnum;
|
|
|
25
24
|
ActionTypeEnum["FORWARD"] = "forward";
|
|
26
25
|
ActionTypeEnum["REDIRECT"] = "redirect";
|
|
27
26
|
})(ActionTypeEnum || (ActionTypeEnum = {}));
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
var
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
Object.setPrototypeOf(
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
Object.setPrototypeOf(
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
Object.setPrototypeOf(
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
Object.setPrototypeOf(
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
Object.setPrototypeOf(
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
Object.setPrototypeOf(
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
Object.setPrototypeOf(
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
Object.setPrototypeOf(
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
Object.setPrototypeOf(
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
Object.setPrototypeOf(
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
Object.setPrototypeOf(
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
27
|
+
export class CertificateNotFoundException extends __BaseException {
|
|
28
|
+
constructor(opts) {
|
|
29
|
+
super({
|
|
30
|
+
name: "CertificateNotFoundException",
|
|
31
|
+
$fault: "client",
|
|
32
|
+
...opts,
|
|
33
|
+
});
|
|
34
|
+
this.name = "CertificateNotFoundException";
|
|
35
|
+
this.$fault = "client";
|
|
36
|
+
Object.setPrototypeOf(this, CertificateNotFoundException.prototype);
|
|
37
|
+
this.Message = opts.Message;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
export class ListenerNotFoundException extends __BaseException {
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ListenerNotFoundException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
this.name = "ListenerNotFoundException";
|
|
48
|
+
this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
|
|
50
|
+
this.Message = opts.Message;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
export class TooManyCertificatesException extends __BaseException {
|
|
54
|
+
constructor(opts) {
|
|
55
|
+
super({
|
|
56
|
+
name: "TooManyCertificatesException",
|
|
57
|
+
$fault: "client",
|
|
58
|
+
...opts,
|
|
59
|
+
});
|
|
60
|
+
this.name = "TooManyCertificatesException";
|
|
61
|
+
this.$fault = "client";
|
|
62
|
+
Object.setPrototypeOf(this, TooManyCertificatesException.prototype);
|
|
63
|
+
this.Message = opts.Message;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
export class DuplicateTagKeysException extends __BaseException {
|
|
67
|
+
constructor(opts) {
|
|
68
|
+
super({
|
|
69
|
+
name: "DuplicateTagKeysException",
|
|
70
|
+
$fault: "client",
|
|
71
|
+
...opts,
|
|
72
|
+
});
|
|
73
|
+
this.name = "DuplicateTagKeysException";
|
|
74
|
+
this.$fault = "client";
|
|
75
|
+
Object.setPrototypeOf(this, DuplicateTagKeysException.prototype);
|
|
76
|
+
this.Message = opts.Message;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
export class LoadBalancerNotFoundException extends __BaseException {
|
|
80
|
+
constructor(opts) {
|
|
81
|
+
super({
|
|
82
|
+
name: "LoadBalancerNotFoundException",
|
|
83
|
+
$fault: "client",
|
|
84
|
+
...opts,
|
|
85
|
+
});
|
|
86
|
+
this.name = "LoadBalancerNotFoundException";
|
|
87
|
+
this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(this, LoadBalancerNotFoundException.prototype);
|
|
89
|
+
this.Message = opts.Message;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
export class RuleNotFoundException extends __BaseException {
|
|
93
|
+
constructor(opts) {
|
|
94
|
+
super({
|
|
95
|
+
name: "RuleNotFoundException",
|
|
96
|
+
$fault: "client",
|
|
97
|
+
...opts,
|
|
98
|
+
});
|
|
99
|
+
this.name = "RuleNotFoundException";
|
|
100
|
+
this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(this, RuleNotFoundException.prototype);
|
|
102
|
+
this.Message = opts.Message;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
export class TargetGroupNotFoundException extends __BaseException {
|
|
106
|
+
constructor(opts) {
|
|
107
|
+
super({
|
|
108
|
+
name: "TargetGroupNotFoundException",
|
|
109
|
+
$fault: "client",
|
|
110
|
+
...opts,
|
|
111
|
+
});
|
|
112
|
+
this.name = "TargetGroupNotFoundException";
|
|
113
|
+
this.$fault = "client";
|
|
114
|
+
Object.setPrototypeOf(this, TargetGroupNotFoundException.prototype);
|
|
115
|
+
this.Message = opts.Message;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
export class TooManyTagsException extends __BaseException {
|
|
119
|
+
constructor(opts) {
|
|
120
|
+
super({
|
|
121
|
+
name: "TooManyTagsException",
|
|
122
|
+
$fault: "client",
|
|
123
|
+
...opts,
|
|
124
|
+
});
|
|
125
|
+
this.name = "TooManyTagsException";
|
|
126
|
+
this.$fault = "client";
|
|
127
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
128
|
+
this.Message = opts.Message;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
export class AllocationIdNotFoundException extends __BaseException {
|
|
132
|
+
constructor(opts) {
|
|
133
|
+
super({
|
|
134
|
+
name: "AllocationIdNotFoundException",
|
|
135
|
+
$fault: "client",
|
|
136
|
+
...opts,
|
|
137
|
+
});
|
|
138
|
+
this.name = "AllocationIdNotFoundException";
|
|
139
|
+
this.$fault = "client";
|
|
140
|
+
Object.setPrototypeOf(this, AllocationIdNotFoundException.prototype);
|
|
141
|
+
this.Message = opts.Message;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
export class ALPNPolicyNotSupportedException extends __BaseException {
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "ALPNPolicyNotSupportedException",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
this.name = "ALPNPolicyNotSupportedException";
|
|
152
|
+
this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(this, ALPNPolicyNotSupportedException.prototype);
|
|
154
|
+
this.Message = opts.Message;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
export class AvailabilityZoneNotSupportedException extends __BaseException {
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "AvailabilityZoneNotSupportedException",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
this.name = "AvailabilityZoneNotSupportedException";
|
|
165
|
+
this.$fault = "client";
|
|
166
|
+
Object.setPrototypeOf(this, AvailabilityZoneNotSupportedException.prototype);
|
|
167
|
+
this.Message = opts.Message;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
export var ProtocolEnum;
|
|
171
|
+
(function (ProtocolEnum) {
|
|
172
|
+
ProtocolEnum["GENEVE"] = "GENEVE";
|
|
173
|
+
ProtocolEnum["HTTP"] = "HTTP";
|
|
174
|
+
ProtocolEnum["HTTPS"] = "HTTPS";
|
|
175
|
+
ProtocolEnum["TCP"] = "TCP";
|
|
176
|
+
ProtocolEnum["TCP_UDP"] = "TCP_UDP";
|
|
177
|
+
ProtocolEnum["TLS"] = "TLS";
|
|
178
|
+
ProtocolEnum["UDP"] = "UDP";
|
|
179
|
+
})(ProtocolEnum || (ProtocolEnum = {}));
|
|
180
|
+
export class DuplicateListenerException extends __BaseException {
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "DuplicateListenerException",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
this.name = "DuplicateListenerException";
|
|
188
|
+
this.$fault = "client";
|
|
189
|
+
Object.setPrototypeOf(this, DuplicateListenerException.prototype);
|
|
190
|
+
this.Message = opts.Message;
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
export class IncompatibleProtocolsException extends __BaseException {
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "IncompatibleProtocolsException",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
this.name = "IncompatibleProtocolsException";
|
|
201
|
+
this.$fault = "client";
|
|
202
|
+
Object.setPrototypeOf(this, IncompatibleProtocolsException.prototype);
|
|
203
|
+
this.Message = opts.Message;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
export class InvalidConfigurationRequestException extends __BaseException {
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "InvalidConfigurationRequestException",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
this.name = "InvalidConfigurationRequestException";
|
|
214
|
+
this.$fault = "client";
|
|
215
|
+
Object.setPrototypeOf(this, InvalidConfigurationRequestException.prototype);
|
|
216
|
+
this.Message = opts.Message;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
export class InvalidLoadBalancerActionException extends __BaseException {
|
|
220
|
+
constructor(opts) {
|
|
221
|
+
super({
|
|
222
|
+
name: "InvalidLoadBalancerActionException",
|
|
223
|
+
$fault: "client",
|
|
224
|
+
...opts,
|
|
225
|
+
});
|
|
226
|
+
this.name = "InvalidLoadBalancerActionException";
|
|
227
|
+
this.$fault = "client";
|
|
228
|
+
Object.setPrototypeOf(this, InvalidLoadBalancerActionException.prototype);
|
|
229
|
+
this.Message = opts.Message;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
export class SSLPolicyNotFoundException extends __BaseException {
|
|
233
|
+
constructor(opts) {
|
|
234
|
+
super({
|
|
235
|
+
name: "SSLPolicyNotFoundException",
|
|
236
|
+
$fault: "client",
|
|
237
|
+
...opts,
|
|
238
|
+
});
|
|
239
|
+
this.name = "SSLPolicyNotFoundException";
|
|
240
|
+
this.$fault = "client";
|
|
241
|
+
Object.setPrototypeOf(this, SSLPolicyNotFoundException.prototype);
|
|
242
|
+
this.Message = opts.Message;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
export class TargetGroupAssociationLimitException extends __BaseException {
|
|
246
|
+
constructor(opts) {
|
|
247
|
+
super({
|
|
248
|
+
name: "TargetGroupAssociationLimitException",
|
|
249
|
+
$fault: "client",
|
|
250
|
+
...opts,
|
|
251
|
+
});
|
|
252
|
+
this.name = "TargetGroupAssociationLimitException";
|
|
253
|
+
this.$fault = "client";
|
|
254
|
+
Object.setPrototypeOf(this, TargetGroupAssociationLimitException.prototype);
|
|
255
|
+
this.Message = opts.Message;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
export class TooManyActionsException extends __BaseException {
|
|
259
|
+
constructor(opts) {
|
|
260
|
+
super({
|
|
261
|
+
name: "TooManyActionsException",
|
|
262
|
+
$fault: "client",
|
|
263
|
+
...opts,
|
|
264
|
+
});
|
|
265
|
+
this.name = "TooManyActionsException";
|
|
266
|
+
this.$fault = "client";
|
|
267
|
+
Object.setPrototypeOf(this, TooManyActionsException.prototype);
|
|
268
|
+
this.Message = opts.Message;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
export class TooManyListenersException extends __BaseException {
|
|
272
|
+
constructor(opts) {
|
|
273
|
+
super({
|
|
274
|
+
name: "TooManyListenersException",
|
|
275
|
+
$fault: "client",
|
|
276
|
+
...opts,
|
|
277
|
+
});
|
|
278
|
+
this.name = "TooManyListenersException";
|
|
279
|
+
this.$fault = "client";
|
|
280
|
+
Object.setPrototypeOf(this, TooManyListenersException.prototype);
|
|
281
|
+
this.Message = opts.Message;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
export class TooManyRegistrationsForTargetIdException extends __BaseException {
|
|
285
|
+
constructor(opts) {
|
|
286
|
+
super({
|
|
287
|
+
name: "TooManyRegistrationsForTargetIdException",
|
|
288
|
+
$fault: "client",
|
|
289
|
+
...opts,
|
|
290
|
+
});
|
|
291
|
+
this.name = "TooManyRegistrationsForTargetIdException";
|
|
292
|
+
this.$fault = "client";
|
|
293
|
+
Object.setPrototypeOf(this, TooManyRegistrationsForTargetIdException.prototype);
|
|
294
|
+
this.Message = opts.Message;
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
export class TooManyTargetsException extends __BaseException {
|
|
298
|
+
constructor(opts) {
|
|
299
|
+
super({
|
|
300
|
+
name: "TooManyTargetsException",
|
|
301
|
+
$fault: "client",
|
|
302
|
+
...opts,
|
|
303
|
+
});
|
|
304
|
+
this.name = "TooManyTargetsException";
|
|
305
|
+
this.$fault = "client";
|
|
306
|
+
Object.setPrototypeOf(this, TooManyTargetsException.prototype);
|
|
307
|
+
this.Message = opts.Message;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
export class TooManyUniqueTargetGroupsPerLoadBalancerException extends __BaseException {
|
|
311
|
+
constructor(opts) {
|
|
312
|
+
super({
|
|
313
|
+
name: "TooManyUniqueTargetGroupsPerLoadBalancerException",
|
|
314
|
+
$fault: "client",
|
|
315
|
+
...opts,
|
|
316
|
+
});
|
|
317
|
+
this.name = "TooManyUniqueTargetGroupsPerLoadBalancerException";
|
|
318
|
+
this.$fault = "client";
|
|
319
|
+
Object.setPrototypeOf(this, TooManyUniqueTargetGroupsPerLoadBalancerException.prototype);
|
|
320
|
+
this.Message = opts.Message;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
export class UnsupportedProtocolException extends __BaseException {
|
|
324
|
+
constructor(opts) {
|
|
325
|
+
super({
|
|
326
|
+
name: "UnsupportedProtocolException",
|
|
327
|
+
$fault: "client",
|
|
328
|
+
...opts,
|
|
329
|
+
});
|
|
330
|
+
this.name = "UnsupportedProtocolException";
|
|
331
|
+
this.$fault = "client";
|
|
332
|
+
Object.setPrototypeOf(this, UnsupportedProtocolException.prototype);
|
|
333
|
+
this.Message = opts.Message;
|
|
334
|
+
}
|
|
335
|
+
}
|
|
327
336
|
export var IpAddressType;
|
|
328
337
|
(function (IpAddressType) {
|
|
329
338
|
IpAddressType["DUALSTACK"] = "dualstack";
|
|
@@ -347,149 +356,149 @@ export var LoadBalancerStateEnum;
|
|
|
347
356
|
LoadBalancerStateEnum["FAILED"] = "failed";
|
|
348
357
|
LoadBalancerStateEnum["PROVISIONING"] = "provisioning";
|
|
349
358
|
})(LoadBalancerStateEnum || (LoadBalancerStateEnum = {}));
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
}
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
}
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
}
|
|
492
|
-
|
|
359
|
+
export class DuplicateLoadBalancerNameException extends __BaseException {
|
|
360
|
+
constructor(opts) {
|
|
361
|
+
super({
|
|
362
|
+
name: "DuplicateLoadBalancerNameException",
|
|
363
|
+
$fault: "client",
|
|
364
|
+
...opts,
|
|
365
|
+
});
|
|
366
|
+
this.name = "DuplicateLoadBalancerNameException";
|
|
367
|
+
this.$fault = "client";
|
|
368
|
+
Object.setPrototypeOf(this, DuplicateLoadBalancerNameException.prototype);
|
|
369
|
+
this.Message = opts.Message;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
export class InvalidSchemeException extends __BaseException {
|
|
373
|
+
constructor(opts) {
|
|
374
|
+
super({
|
|
375
|
+
name: "InvalidSchemeException",
|
|
376
|
+
$fault: "client",
|
|
377
|
+
...opts,
|
|
378
|
+
});
|
|
379
|
+
this.name = "InvalidSchemeException";
|
|
380
|
+
this.$fault = "client";
|
|
381
|
+
Object.setPrototypeOf(this, InvalidSchemeException.prototype);
|
|
382
|
+
this.Message = opts.Message;
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
export class InvalidSecurityGroupException extends __BaseException {
|
|
386
|
+
constructor(opts) {
|
|
387
|
+
super({
|
|
388
|
+
name: "InvalidSecurityGroupException",
|
|
389
|
+
$fault: "client",
|
|
390
|
+
...opts,
|
|
391
|
+
});
|
|
392
|
+
this.name = "InvalidSecurityGroupException";
|
|
393
|
+
this.$fault = "client";
|
|
394
|
+
Object.setPrototypeOf(this, InvalidSecurityGroupException.prototype);
|
|
395
|
+
this.Message = opts.Message;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
export class InvalidSubnetException extends __BaseException {
|
|
399
|
+
constructor(opts) {
|
|
400
|
+
super({
|
|
401
|
+
name: "InvalidSubnetException",
|
|
402
|
+
$fault: "client",
|
|
403
|
+
...opts,
|
|
404
|
+
});
|
|
405
|
+
this.name = "InvalidSubnetException";
|
|
406
|
+
this.$fault = "client";
|
|
407
|
+
Object.setPrototypeOf(this, InvalidSubnetException.prototype);
|
|
408
|
+
this.Message = opts.Message;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
export class OperationNotPermittedException extends __BaseException {
|
|
412
|
+
constructor(opts) {
|
|
413
|
+
super({
|
|
414
|
+
name: "OperationNotPermittedException",
|
|
415
|
+
$fault: "client",
|
|
416
|
+
...opts,
|
|
417
|
+
});
|
|
418
|
+
this.name = "OperationNotPermittedException";
|
|
419
|
+
this.$fault = "client";
|
|
420
|
+
Object.setPrototypeOf(this, OperationNotPermittedException.prototype);
|
|
421
|
+
this.Message = opts.Message;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
export class ResourceInUseException extends __BaseException {
|
|
425
|
+
constructor(opts) {
|
|
426
|
+
super({
|
|
427
|
+
name: "ResourceInUseException",
|
|
428
|
+
$fault: "client",
|
|
429
|
+
...opts,
|
|
430
|
+
});
|
|
431
|
+
this.name = "ResourceInUseException";
|
|
432
|
+
this.$fault = "client";
|
|
433
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
434
|
+
this.Message = opts.Message;
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
export class SubnetNotFoundException extends __BaseException {
|
|
438
|
+
constructor(opts) {
|
|
439
|
+
super({
|
|
440
|
+
name: "SubnetNotFoundException",
|
|
441
|
+
$fault: "client",
|
|
442
|
+
...opts,
|
|
443
|
+
});
|
|
444
|
+
this.name = "SubnetNotFoundException";
|
|
445
|
+
this.$fault = "client";
|
|
446
|
+
Object.setPrototypeOf(this, SubnetNotFoundException.prototype);
|
|
447
|
+
this.Message = opts.Message;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
export class TooManyLoadBalancersException extends __BaseException {
|
|
451
|
+
constructor(opts) {
|
|
452
|
+
super({
|
|
453
|
+
name: "TooManyLoadBalancersException",
|
|
454
|
+
$fault: "client",
|
|
455
|
+
...opts,
|
|
456
|
+
});
|
|
457
|
+
this.name = "TooManyLoadBalancersException";
|
|
458
|
+
this.$fault = "client";
|
|
459
|
+
Object.setPrototypeOf(this, TooManyLoadBalancersException.prototype);
|
|
460
|
+
this.Message = opts.Message;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
export class PriorityInUseException extends __BaseException {
|
|
464
|
+
constructor(opts) {
|
|
465
|
+
super({
|
|
466
|
+
name: "PriorityInUseException",
|
|
467
|
+
$fault: "client",
|
|
468
|
+
...opts,
|
|
469
|
+
});
|
|
470
|
+
this.name = "PriorityInUseException";
|
|
471
|
+
this.$fault = "client";
|
|
472
|
+
Object.setPrototypeOf(this, PriorityInUseException.prototype);
|
|
473
|
+
this.Message = opts.Message;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
export class TooManyRulesException extends __BaseException {
|
|
477
|
+
constructor(opts) {
|
|
478
|
+
super({
|
|
479
|
+
name: "TooManyRulesException",
|
|
480
|
+
$fault: "client",
|
|
481
|
+
...opts,
|
|
482
|
+
});
|
|
483
|
+
this.name = "TooManyRulesException";
|
|
484
|
+
this.$fault = "client";
|
|
485
|
+
Object.setPrototypeOf(this, TooManyRulesException.prototype);
|
|
486
|
+
this.Message = opts.Message;
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
export class TooManyTargetGroupsException extends __BaseException {
|
|
490
|
+
constructor(opts) {
|
|
491
|
+
super({
|
|
492
|
+
name: "TooManyTargetGroupsException",
|
|
493
|
+
$fault: "client",
|
|
494
|
+
...opts,
|
|
495
|
+
});
|
|
496
|
+
this.name = "TooManyTargetGroupsException";
|
|
497
|
+
this.$fault = "client";
|
|
498
|
+
Object.setPrototypeOf(this, TooManyTargetGroupsException.prototype);
|
|
499
|
+
this.Message = opts.Message;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
493
502
|
export var TargetGroupIpAddressTypeEnum;
|
|
494
503
|
(function (TargetGroupIpAddressTypeEnum) {
|
|
495
504
|
TargetGroupIpAddressTypeEnum["IPV4"] = "ipv4";
|
|
@@ -502,32 +511,32 @@ export var TargetTypeEnum;
|
|
|
502
511
|
TargetTypeEnum["IP"] = "ip";
|
|
503
512
|
TargetTypeEnum["LAMBDA"] = "lambda";
|
|
504
513
|
})(TargetTypeEnum || (TargetTypeEnum = {}));
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
}
|
|
530
|
-
|
|
514
|
+
export class DuplicateTargetGroupNameException extends __BaseException {
|
|
515
|
+
constructor(opts) {
|
|
516
|
+
super({
|
|
517
|
+
name: "DuplicateTargetGroupNameException",
|
|
518
|
+
$fault: "client",
|
|
519
|
+
...opts,
|
|
520
|
+
});
|
|
521
|
+
this.name = "DuplicateTargetGroupNameException";
|
|
522
|
+
this.$fault = "client";
|
|
523
|
+
Object.setPrototypeOf(this, DuplicateTargetGroupNameException.prototype);
|
|
524
|
+
this.Message = opts.Message;
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
export class InvalidTargetException extends __BaseException {
|
|
528
|
+
constructor(opts) {
|
|
529
|
+
super({
|
|
530
|
+
name: "InvalidTargetException",
|
|
531
|
+
$fault: "client",
|
|
532
|
+
...opts,
|
|
533
|
+
});
|
|
534
|
+
this.name = "InvalidTargetException";
|
|
535
|
+
this.$fault = "client";
|
|
536
|
+
Object.setPrototypeOf(this, InvalidTargetException.prototype);
|
|
537
|
+
this.Message = opts.Message;
|
|
538
|
+
}
|
|
539
|
+
}
|
|
531
540
|
export var TargetHealthReasonEnum;
|
|
532
541
|
(function (TargetHealthReasonEnum) {
|
|
533
542
|
TargetHealthReasonEnum["DEREGISTRATION_IN_PROGRESS"] = "Target.DeregistrationInProgress";
|
|
@@ -552,121 +561,331 @@ export var TargetHealthStateEnum;
|
|
|
552
561
|
TargetHealthStateEnum["UNHEALTHY"] = "unhealthy";
|
|
553
562
|
TargetHealthStateEnum["UNUSED"] = "unused";
|
|
554
563
|
})(TargetHealthStateEnum || (TargetHealthStateEnum = {}));
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
export
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
export
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
export
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
export
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
export
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
export
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
export
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
export
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
export
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
export
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
export
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
export
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
export
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
export
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
export
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
export
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
export
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
export
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
export
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
export
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
export
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
export
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
export
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
export
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
export
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
export
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
export
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
export
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
export
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
export
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
export
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
export
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
export
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
export
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
export
|
|
671
|
-
|
|
672
|
-
|
|
564
|
+
export class HealthUnavailableException extends __BaseException {
|
|
565
|
+
constructor(opts) {
|
|
566
|
+
super({
|
|
567
|
+
name: "HealthUnavailableException",
|
|
568
|
+
$fault: "server",
|
|
569
|
+
...opts,
|
|
570
|
+
});
|
|
571
|
+
this.name = "HealthUnavailableException";
|
|
572
|
+
this.$fault = "server";
|
|
573
|
+
Object.setPrototypeOf(this, HealthUnavailableException.prototype);
|
|
574
|
+
this.Message = opts.Message;
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
export const AuthenticateCognitoActionConfigFilterSensitiveLog = (obj) => ({
|
|
578
|
+
...obj,
|
|
579
|
+
});
|
|
580
|
+
export const AuthenticateOidcActionConfigFilterSensitiveLog = (obj) => ({
|
|
581
|
+
...obj,
|
|
582
|
+
});
|
|
583
|
+
export const FixedResponseActionConfigFilterSensitiveLog = (obj) => ({
|
|
584
|
+
...obj,
|
|
585
|
+
});
|
|
586
|
+
export const TargetGroupTupleFilterSensitiveLog = (obj) => ({
|
|
587
|
+
...obj,
|
|
588
|
+
});
|
|
589
|
+
export const TargetGroupStickinessConfigFilterSensitiveLog = (obj) => ({
|
|
590
|
+
...obj,
|
|
591
|
+
});
|
|
592
|
+
export const ForwardActionConfigFilterSensitiveLog = (obj) => ({
|
|
593
|
+
...obj,
|
|
594
|
+
});
|
|
595
|
+
export const RedirectActionConfigFilterSensitiveLog = (obj) => ({
|
|
596
|
+
...obj,
|
|
597
|
+
});
|
|
598
|
+
export const ActionFilterSensitiveLog = (obj) => ({
|
|
599
|
+
...obj,
|
|
600
|
+
});
|
|
601
|
+
export const CertificateFilterSensitiveLog = (obj) => ({
|
|
602
|
+
...obj,
|
|
603
|
+
});
|
|
604
|
+
export const AddListenerCertificatesInputFilterSensitiveLog = (obj) => ({
|
|
605
|
+
...obj,
|
|
606
|
+
});
|
|
607
|
+
export const AddListenerCertificatesOutputFilterSensitiveLog = (obj) => ({
|
|
608
|
+
...obj,
|
|
609
|
+
});
|
|
610
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
611
|
+
...obj,
|
|
612
|
+
});
|
|
613
|
+
export const AddTagsInputFilterSensitiveLog = (obj) => ({
|
|
614
|
+
...obj,
|
|
615
|
+
});
|
|
616
|
+
export const AddTagsOutputFilterSensitiveLog = (obj) => ({
|
|
617
|
+
...obj,
|
|
618
|
+
});
|
|
619
|
+
export const LoadBalancerAddressFilterSensitiveLog = (obj) => ({
|
|
620
|
+
...obj,
|
|
621
|
+
});
|
|
622
|
+
export const AvailabilityZoneFilterSensitiveLog = (obj) => ({
|
|
623
|
+
...obj,
|
|
624
|
+
});
|
|
625
|
+
export const CipherFilterSensitiveLog = (obj) => ({
|
|
626
|
+
...obj,
|
|
627
|
+
});
|
|
628
|
+
export const CreateListenerInputFilterSensitiveLog = (obj) => ({
|
|
629
|
+
...obj,
|
|
630
|
+
});
|
|
631
|
+
export const ListenerFilterSensitiveLog = (obj) => ({
|
|
632
|
+
...obj,
|
|
633
|
+
});
|
|
634
|
+
export const CreateListenerOutputFilterSensitiveLog = (obj) => ({
|
|
635
|
+
...obj,
|
|
636
|
+
});
|
|
637
|
+
export const SubnetMappingFilterSensitiveLog = (obj) => ({
|
|
638
|
+
...obj,
|
|
639
|
+
});
|
|
640
|
+
export const CreateLoadBalancerInputFilterSensitiveLog = (obj) => ({
|
|
641
|
+
...obj,
|
|
642
|
+
});
|
|
643
|
+
export const LoadBalancerStateFilterSensitiveLog = (obj) => ({
|
|
644
|
+
...obj,
|
|
645
|
+
});
|
|
646
|
+
export const LoadBalancerFilterSensitiveLog = (obj) => ({
|
|
647
|
+
...obj,
|
|
648
|
+
});
|
|
649
|
+
export const CreateLoadBalancerOutputFilterSensitiveLog = (obj) => ({
|
|
650
|
+
...obj,
|
|
651
|
+
});
|
|
652
|
+
export const HostHeaderConditionConfigFilterSensitiveLog = (obj) => ({
|
|
653
|
+
...obj,
|
|
654
|
+
});
|
|
655
|
+
export const HttpHeaderConditionConfigFilterSensitiveLog = (obj) => ({
|
|
656
|
+
...obj,
|
|
657
|
+
});
|
|
658
|
+
export const HttpRequestMethodConditionConfigFilterSensitiveLog = (obj) => ({
|
|
659
|
+
...obj,
|
|
660
|
+
});
|
|
661
|
+
export const PathPatternConditionConfigFilterSensitiveLog = (obj) => ({
|
|
662
|
+
...obj,
|
|
663
|
+
});
|
|
664
|
+
export const QueryStringKeyValuePairFilterSensitiveLog = (obj) => ({
|
|
665
|
+
...obj,
|
|
666
|
+
});
|
|
667
|
+
export const QueryStringConditionConfigFilterSensitiveLog = (obj) => ({
|
|
668
|
+
...obj,
|
|
669
|
+
});
|
|
670
|
+
export const SourceIpConditionConfigFilterSensitiveLog = (obj) => ({
|
|
671
|
+
...obj,
|
|
672
|
+
});
|
|
673
|
+
export const RuleConditionFilterSensitiveLog = (obj) => ({
|
|
674
|
+
...obj,
|
|
675
|
+
});
|
|
676
|
+
export const CreateRuleInputFilterSensitiveLog = (obj) => ({
|
|
677
|
+
...obj,
|
|
678
|
+
});
|
|
679
|
+
export const RuleFilterSensitiveLog = (obj) => ({
|
|
680
|
+
...obj,
|
|
681
|
+
});
|
|
682
|
+
export const CreateRuleOutputFilterSensitiveLog = (obj) => ({
|
|
683
|
+
...obj,
|
|
684
|
+
});
|
|
685
|
+
export const MatcherFilterSensitiveLog = (obj) => ({
|
|
686
|
+
...obj,
|
|
687
|
+
});
|
|
688
|
+
export const CreateTargetGroupInputFilterSensitiveLog = (obj) => ({
|
|
689
|
+
...obj,
|
|
690
|
+
});
|
|
691
|
+
export const TargetGroupFilterSensitiveLog = (obj) => ({
|
|
692
|
+
...obj,
|
|
693
|
+
});
|
|
694
|
+
export const CreateTargetGroupOutputFilterSensitiveLog = (obj) => ({
|
|
695
|
+
...obj,
|
|
696
|
+
});
|
|
697
|
+
export const DeleteListenerInputFilterSensitiveLog = (obj) => ({
|
|
698
|
+
...obj,
|
|
699
|
+
});
|
|
700
|
+
export const DeleteListenerOutputFilterSensitiveLog = (obj) => ({
|
|
701
|
+
...obj,
|
|
702
|
+
});
|
|
703
|
+
export const DeleteLoadBalancerInputFilterSensitiveLog = (obj) => ({
|
|
704
|
+
...obj,
|
|
705
|
+
});
|
|
706
|
+
export const DeleteLoadBalancerOutputFilterSensitiveLog = (obj) => ({
|
|
707
|
+
...obj,
|
|
708
|
+
});
|
|
709
|
+
export const DeleteRuleInputFilterSensitiveLog = (obj) => ({
|
|
710
|
+
...obj,
|
|
711
|
+
});
|
|
712
|
+
export const DeleteRuleOutputFilterSensitiveLog = (obj) => ({
|
|
713
|
+
...obj,
|
|
714
|
+
});
|
|
715
|
+
export const DeleteTargetGroupInputFilterSensitiveLog = (obj) => ({
|
|
716
|
+
...obj,
|
|
717
|
+
});
|
|
718
|
+
export const DeleteTargetGroupOutputFilterSensitiveLog = (obj) => ({
|
|
719
|
+
...obj,
|
|
720
|
+
});
|
|
721
|
+
export const TargetDescriptionFilterSensitiveLog = (obj) => ({
|
|
722
|
+
...obj,
|
|
723
|
+
});
|
|
724
|
+
export const DeregisterTargetsInputFilterSensitiveLog = (obj) => ({
|
|
725
|
+
...obj,
|
|
726
|
+
});
|
|
727
|
+
export const DeregisterTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
728
|
+
...obj,
|
|
729
|
+
});
|
|
730
|
+
export const DescribeAccountLimitsInputFilterSensitiveLog = (obj) => ({
|
|
731
|
+
...obj,
|
|
732
|
+
});
|
|
733
|
+
export const LimitFilterSensitiveLog = (obj) => ({
|
|
734
|
+
...obj,
|
|
735
|
+
});
|
|
736
|
+
export const DescribeAccountLimitsOutputFilterSensitiveLog = (obj) => ({
|
|
737
|
+
...obj,
|
|
738
|
+
});
|
|
739
|
+
export const DescribeListenerCertificatesInputFilterSensitiveLog = (obj) => ({
|
|
740
|
+
...obj,
|
|
741
|
+
});
|
|
742
|
+
export const DescribeListenerCertificatesOutputFilterSensitiveLog = (obj) => ({
|
|
743
|
+
...obj,
|
|
744
|
+
});
|
|
745
|
+
export const DescribeListenersInputFilterSensitiveLog = (obj) => ({
|
|
746
|
+
...obj,
|
|
747
|
+
});
|
|
748
|
+
export const DescribeListenersOutputFilterSensitiveLog = (obj) => ({
|
|
749
|
+
...obj,
|
|
750
|
+
});
|
|
751
|
+
export const DescribeLoadBalancerAttributesInputFilterSensitiveLog = (obj) => ({
|
|
752
|
+
...obj,
|
|
753
|
+
});
|
|
754
|
+
export const LoadBalancerAttributeFilterSensitiveLog = (obj) => ({
|
|
755
|
+
...obj,
|
|
756
|
+
});
|
|
757
|
+
export const DescribeLoadBalancerAttributesOutputFilterSensitiveLog = (obj) => ({
|
|
758
|
+
...obj,
|
|
759
|
+
});
|
|
760
|
+
export const DescribeLoadBalancersInputFilterSensitiveLog = (obj) => ({
|
|
761
|
+
...obj,
|
|
762
|
+
});
|
|
763
|
+
export const DescribeLoadBalancersOutputFilterSensitiveLog = (obj) => ({
|
|
764
|
+
...obj,
|
|
765
|
+
});
|
|
766
|
+
export const DescribeRulesInputFilterSensitiveLog = (obj) => ({
|
|
767
|
+
...obj,
|
|
768
|
+
});
|
|
769
|
+
export const DescribeRulesOutputFilterSensitiveLog = (obj) => ({
|
|
770
|
+
...obj,
|
|
771
|
+
});
|
|
772
|
+
export const DescribeSSLPoliciesInputFilterSensitiveLog = (obj) => ({
|
|
773
|
+
...obj,
|
|
774
|
+
});
|
|
775
|
+
export const SslPolicyFilterSensitiveLog = (obj) => ({
|
|
776
|
+
...obj,
|
|
777
|
+
});
|
|
778
|
+
export const DescribeSSLPoliciesOutputFilterSensitiveLog = (obj) => ({
|
|
779
|
+
...obj,
|
|
780
|
+
});
|
|
781
|
+
export const DescribeTagsInputFilterSensitiveLog = (obj) => ({
|
|
782
|
+
...obj,
|
|
783
|
+
});
|
|
784
|
+
export const TagDescriptionFilterSensitiveLog = (obj) => ({
|
|
785
|
+
...obj,
|
|
786
|
+
});
|
|
787
|
+
export const DescribeTagsOutputFilterSensitiveLog = (obj) => ({
|
|
788
|
+
...obj,
|
|
789
|
+
});
|
|
790
|
+
export const DescribeTargetGroupAttributesInputFilterSensitiveLog = (obj) => ({
|
|
791
|
+
...obj,
|
|
792
|
+
});
|
|
793
|
+
export const TargetGroupAttributeFilterSensitiveLog = (obj) => ({
|
|
794
|
+
...obj,
|
|
795
|
+
});
|
|
796
|
+
export const DescribeTargetGroupAttributesOutputFilterSensitiveLog = (obj) => ({
|
|
797
|
+
...obj,
|
|
798
|
+
});
|
|
799
|
+
export const DescribeTargetGroupsInputFilterSensitiveLog = (obj) => ({
|
|
800
|
+
...obj,
|
|
801
|
+
});
|
|
802
|
+
export const DescribeTargetGroupsOutputFilterSensitiveLog = (obj) => ({
|
|
803
|
+
...obj,
|
|
804
|
+
});
|
|
805
|
+
export const DescribeTargetHealthInputFilterSensitiveLog = (obj) => ({
|
|
806
|
+
...obj,
|
|
807
|
+
});
|
|
808
|
+
export const TargetHealthFilterSensitiveLog = (obj) => ({
|
|
809
|
+
...obj,
|
|
810
|
+
});
|
|
811
|
+
export const TargetHealthDescriptionFilterSensitiveLog = (obj) => ({
|
|
812
|
+
...obj,
|
|
813
|
+
});
|
|
814
|
+
export const DescribeTargetHealthOutputFilterSensitiveLog = (obj) => ({
|
|
815
|
+
...obj,
|
|
816
|
+
});
|
|
817
|
+
export const ModifyListenerInputFilterSensitiveLog = (obj) => ({
|
|
818
|
+
...obj,
|
|
819
|
+
});
|
|
820
|
+
export const ModifyListenerOutputFilterSensitiveLog = (obj) => ({
|
|
821
|
+
...obj,
|
|
822
|
+
});
|
|
823
|
+
export const ModifyLoadBalancerAttributesInputFilterSensitiveLog = (obj) => ({
|
|
824
|
+
...obj,
|
|
825
|
+
});
|
|
826
|
+
export const ModifyLoadBalancerAttributesOutputFilterSensitiveLog = (obj) => ({
|
|
827
|
+
...obj,
|
|
828
|
+
});
|
|
829
|
+
export const ModifyRuleInputFilterSensitiveLog = (obj) => ({
|
|
830
|
+
...obj,
|
|
831
|
+
});
|
|
832
|
+
export const ModifyRuleOutputFilterSensitiveLog = (obj) => ({
|
|
833
|
+
...obj,
|
|
834
|
+
});
|
|
835
|
+
export const ModifyTargetGroupInputFilterSensitiveLog = (obj) => ({
|
|
836
|
+
...obj,
|
|
837
|
+
});
|
|
838
|
+
export const ModifyTargetGroupOutputFilterSensitiveLog = (obj) => ({
|
|
839
|
+
...obj,
|
|
840
|
+
});
|
|
841
|
+
export const ModifyTargetGroupAttributesInputFilterSensitiveLog = (obj) => ({
|
|
842
|
+
...obj,
|
|
843
|
+
});
|
|
844
|
+
export const ModifyTargetGroupAttributesOutputFilterSensitiveLog = (obj) => ({
|
|
845
|
+
...obj,
|
|
846
|
+
});
|
|
847
|
+
export const RegisterTargetsInputFilterSensitiveLog = (obj) => ({
|
|
848
|
+
...obj,
|
|
849
|
+
});
|
|
850
|
+
export const RegisterTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
851
|
+
...obj,
|
|
852
|
+
});
|
|
853
|
+
export const RemoveListenerCertificatesInputFilterSensitiveLog = (obj) => ({
|
|
854
|
+
...obj,
|
|
855
|
+
});
|
|
856
|
+
export const RemoveListenerCertificatesOutputFilterSensitiveLog = (obj) => ({
|
|
857
|
+
...obj,
|
|
858
|
+
});
|
|
859
|
+
export const RemoveTagsInputFilterSensitiveLog = (obj) => ({
|
|
860
|
+
...obj,
|
|
861
|
+
});
|
|
862
|
+
export const RemoveTagsOutputFilterSensitiveLog = (obj) => ({
|
|
863
|
+
...obj,
|
|
864
|
+
});
|
|
865
|
+
export const SetIpAddressTypeInputFilterSensitiveLog = (obj) => ({
|
|
866
|
+
...obj,
|
|
867
|
+
});
|
|
868
|
+
export const SetIpAddressTypeOutputFilterSensitiveLog = (obj) => ({
|
|
869
|
+
...obj,
|
|
870
|
+
});
|
|
871
|
+
export const RulePriorityPairFilterSensitiveLog = (obj) => ({
|
|
872
|
+
...obj,
|
|
873
|
+
});
|
|
874
|
+
export const SetRulePrioritiesInputFilterSensitiveLog = (obj) => ({
|
|
875
|
+
...obj,
|
|
876
|
+
});
|
|
877
|
+
export const SetRulePrioritiesOutputFilterSensitiveLog = (obj) => ({
|
|
878
|
+
...obj,
|
|
879
|
+
});
|
|
880
|
+
export const SetSecurityGroupsInputFilterSensitiveLog = (obj) => ({
|
|
881
|
+
...obj,
|
|
882
|
+
});
|
|
883
|
+
export const SetSecurityGroupsOutputFilterSensitiveLog = (obj) => ({
|
|
884
|
+
...obj,
|
|
885
|
+
});
|
|
886
|
+
export const SetSubnetsInputFilterSensitiveLog = (obj) => ({
|
|
887
|
+
...obj,
|
|
888
|
+
});
|
|
889
|
+
export const SetSubnetsOutputFilterSensitiveLog = (obj) => ({
|
|
890
|
+
...obj,
|
|
891
|
+
});
|