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