@aws-sdk/client-global-accelerator 3.181.0 → 3.183.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 (68) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/GlobalAccelerator.js +190 -197
  3. package/dist-es/GlobalAcceleratorClient.js +22 -28
  4. package/dist-es/commands/AddCustomRoutingEndpointsCommand.js +21 -28
  5. package/dist-es/commands/AdvertiseByoipCidrCommand.js +21 -28
  6. package/dist-es/commands/AllowCustomRoutingTrafficCommand.js +22 -29
  7. package/dist-es/commands/CreateAcceleratorCommand.js +21 -28
  8. package/dist-es/commands/CreateCustomRoutingAcceleratorCommand.js +21 -28
  9. package/dist-es/commands/CreateCustomRoutingEndpointGroupCommand.js +21 -28
  10. package/dist-es/commands/CreateCustomRoutingListenerCommand.js +21 -28
  11. package/dist-es/commands/CreateEndpointGroupCommand.js +21 -28
  12. package/dist-es/commands/CreateListenerCommand.js +21 -28
  13. package/dist-es/commands/DeleteAcceleratorCommand.js +22 -29
  14. package/dist-es/commands/DeleteCustomRoutingAcceleratorCommand.js +22 -29
  15. package/dist-es/commands/DeleteCustomRoutingEndpointGroupCommand.js +22 -29
  16. package/dist-es/commands/DeleteCustomRoutingListenerCommand.js +22 -29
  17. package/dist-es/commands/DeleteEndpointGroupCommand.js +22 -29
  18. package/dist-es/commands/DeleteListenerCommand.js +22 -29
  19. package/dist-es/commands/DenyCustomRoutingTrafficCommand.js +22 -29
  20. package/dist-es/commands/DeprovisionByoipCidrCommand.js +21 -28
  21. package/dist-es/commands/DescribeAcceleratorAttributesCommand.js +21 -28
  22. package/dist-es/commands/DescribeAcceleratorCommand.js +21 -28
  23. package/dist-es/commands/DescribeCustomRoutingAcceleratorAttributesCommand.js +21 -28
  24. package/dist-es/commands/DescribeCustomRoutingAcceleratorCommand.js +21 -28
  25. package/dist-es/commands/DescribeCustomRoutingEndpointGroupCommand.js +21 -28
  26. package/dist-es/commands/DescribeCustomRoutingListenerCommand.js +21 -28
  27. package/dist-es/commands/DescribeEndpointGroupCommand.js +21 -28
  28. package/dist-es/commands/DescribeListenerCommand.js +21 -28
  29. package/dist-es/commands/ListAcceleratorsCommand.js +21 -28
  30. package/dist-es/commands/ListByoipCidrsCommand.js +21 -28
  31. package/dist-es/commands/ListCustomRoutingAcceleratorsCommand.js +21 -28
  32. package/dist-es/commands/ListCustomRoutingEndpointGroupsCommand.js +21 -28
  33. package/dist-es/commands/ListCustomRoutingListenersCommand.js +21 -28
  34. package/dist-es/commands/ListCustomRoutingPortMappingsByDestinationCommand.js +21 -28
  35. package/dist-es/commands/ListCustomRoutingPortMappingsCommand.js +21 -28
  36. package/dist-es/commands/ListEndpointGroupsCommand.js +21 -28
  37. package/dist-es/commands/ListListenersCommand.js +21 -28
  38. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  39. package/dist-es/commands/ProvisionByoipCidrCommand.js +21 -28
  40. package/dist-es/commands/RemoveCustomRoutingEndpointsCommand.js +22 -29
  41. package/dist-es/commands/TagResourceCommand.js +21 -28
  42. package/dist-es/commands/UntagResourceCommand.js +21 -28
  43. package/dist-es/commands/UpdateAcceleratorAttributesCommand.js +21 -28
  44. package/dist-es/commands/UpdateAcceleratorCommand.js +21 -28
  45. package/dist-es/commands/UpdateCustomRoutingAcceleratorAttributesCommand.js +21 -28
  46. package/dist-es/commands/UpdateCustomRoutingAcceleratorCommand.js +21 -28
  47. package/dist-es/commands/UpdateCustomRoutingListenerCommand.js +21 -28
  48. package/dist-es/commands/UpdateEndpointGroupCommand.js +21 -28
  49. package/dist-es/commands/UpdateListenerCommand.js +21 -28
  50. package/dist-es/commands/WithdrawByoipCidrCommand.js +21 -28
  51. package/dist-es/endpoints.js +8 -8
  52. package/dist-es/models/GlobalAcceleratorServiceException.js +5 -10
  53. package/dist-es/models/models_0.js +546 -327
  54. package/dist-es/pagination/ListAcceleratorsPaginator.js +25 -68
  55. package/dist-es/pagination/ListByoipCidrsPaginator.js +25 -68
  56. package/dist-es/pagination/ListCustomRoutingAcceleratorsPaginator.js +25 -68
  57. package/dist-es/pagination/ListCustomRoutingEndpointGroupsPaginator.js +25 -68
  58. package/dist-es/pagination/ListCustomRoutingListenersPaginator.js +25 -68
  59. package/dist-es/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.js +25 -68
  60. package/dist-es/pagination/ListCustomRoutingPortMappingsPaginator.js +25 -68
  61. package/dist-es/pagination/ListEndpointGroupsPaginator.js +25 -68
  62. package/dist-es/pagination/ListListenersPaginator.js +25 -68
  63. package/dist-es/protocols/Aws_json1_1.js +3127 -4071
  64. package/dist-es/runtimeConfig.browser.js +26 -12
  65. package/dist-es/runtimeConfig.js +30 -12
  66. package/dist-es/runtimeConfig.native.js +8 -5
  67. package/dist-es/runtimeConfig.shared.js +8 -11
  68. package/package.json +33 -33
@@ -1,4 +1,3 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { GlobalAcceleratorServiceException as __BaseException } from "./GlobalAcceleratorServiceException";
3
2
  export var IpAddressType;
4
3
  (function (IpAddressType) {
@@ -10,123 +9,123 @@ export var IpAddressFamily;
10
9
  IpAddressFamily["IPv4"] = "IPv4";
11
10
  IpAddressFamily["IPv6"] = "IPv6";
12
11
  })(IpAddressFamily || (IpAddressFamily = {}));
13
- var AcceleratorNotDisabledException = (function (_super) {
14
- __extends(AcceleratorNotDisabledException, _super);
15
- function AcceleratorNotDisabledException(opts) {
16
- var _this = _super.call(this, __assign({ name: "AcceleratorNotDisabledException", $fault: "client" }, opts)) || this;
17
- _this.name = "AcceleratorNotDisabledException";
18
- _this.$fault = "client";
19
- Object.setPrototypeOf(_this, AcceleratorNotDisabledException.prototype);
20
- _this.Message = opts.Message;
21
- return _this;
12
+ export class AcceleratorNotDisabledException extends __BaseException {
13
+ constructor(opts) {
14
+ super({
15
+ name: "AcceleratorNotDisabledException",
16
+ $fault: "client",
17
+ ...opts,
18
+ });
19
+ this.name = "AcceleratorNotDisabledException";
20
+ this.$fault = "client";
21
+ Object.setPrototypeOf(this, AcceleratorNotDisabledException.prototype);
22
+ this.Message = opts.Message;
22
23
  }
23
- return AcceleratorNotDisabledException;
24
- }(__BaseException));
25
- export { AcceleratorNotDisabledException };
26
- var AcceleratorNotFoundException = (function (_super) {
27
- __extends(AcceleratorNotFoundException, _super);
28
- function AcceleratorNotFoundException(opts) {
29
- var _this = _super.call(this, __assign({ name: "AcceleratorNotFoundException", $fault: "client" }, opts)) || this;
30
- _this.name = "AcceleratorNotFoundException";
31
- _this.$fault = "client";
32
- Object.setPrototypeOf(_this, AcceleratorNotFoundException.prototype);
33
- _this.Message = opts.Message;
34
- return _this;
24
+ }
25
+ export class AcceleratorNotFoundException extends __BaseException {
26
+ constructor(opts) {
27
+ super({
28
+ name: "AcceleratorNotFoundException",
29
+ $fault: "client",
30
+ ...opts,
31
+ });
32
+ this.name = "AcceleratorNotFoundException";
33
+ this.$fault = "client";
34
+ Object.setPrototypeOf(this, AcceleratorNotFoundException.prototype);
35
+ this.Message = opts.Message;
35
36
  }
36
- return AcceleratorNotFoundException;
37
- }(__BaseException));
38
- export { AcceleratorNotFoundException };
39
- var AccessDeniedException = (function (_super) {
40
- __extends(AccessDeniedException, _super);
41
- function AccessDeniedException(opts) {
42
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
43
- _this.name = "AccessDeniedException";
44
- _this.$fault = "client";
45
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
46
- _this.Message = opts.Message;
47
- return _this;
37
+ }
38
+ export class AccessDeniedException extends __BaseException {
39
+ constructor(opts) {
40
+ super({
41
+ name: "AccessDeniedException",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ this.name = "AccessDeniedException";
46
+ this.$fault = "client";
47
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
48
+ this.Message = opts.Message;
48
49
  }
49
- return AccessDeniedException;
50
- }(__BaseException));
51
- export { AccessDeniedException };
52
- var ConflictException = (function (_super) {
53
- __extends(ConflictException, _super);
54
- function ConflictException(opts) {
55
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
56
- _this.name = "ConflictException";
57
- _this.$fault = "client";
58
- Object.setPrototypeOf(_this, ConflictException.prototype);
59
- _this.Message = opts.Message;
60
- return _this;
50
+ }
51
+ export class ConflictException extends __BaseException {
52
+ constructor(opts) {
53
+ super({
54
+ name: "ConflictException",
55
+ $fault: "client",
56
+ ...opts,
57
+ });
58
+ this.name = "ConflictException";
59
+ this.$fault = "client";
60
+ Object.setPrototypeOf(this, ConflictException.prototype);
61
+ this.Message = opts.Message;
61
62
  }
62
- return ConflictException;
63
- }(__BaseException));
64
- export { ConflictException };
65
- var EndpointAlreadyExistsException = (function (_super) {
66
- __extends(EndpointAlreadyExistsException, _super);
67
- function EndpointAlreadyExistsException(opts) {
68
- var _this = _super.call(this, __assign({ name: "EndpointAlreadyExistsException", $fault: "client" }, opts)) || this;
69
- _this.name = "EndpointAlreadyExistsException";
70
- _this.$fault = "client";
71
- Object.setPrototypeOf(_this, EndpointAlreadyExistsException.prototype);
72
- _this.Message = opts.Message;
73
- return _this;
63
+ }
64
+ export class EndpointAlreadyExistsException extends __BaseException {
65
+ constructor(opts) {
66
+ super({
67
+ name: "EndpointAlreadyExistsException",
68
+ $fault: "client",
69
+ ...opts,
70
+ });
71
+ this.name = "EndpointAlreadyExistsException";
72
+ this.$fault = "client";
73
+ Object.setPrototypeOf(this, EndpointAlreadyExistsException.prototype);
74
+ this.Message = opts.Message;
74
75
  }
75
- return EndpointAlreadyExistsException;
76
- }(__BaseException));
77
- export { EndpointAlreadyExistsException };
78
- var EndpointGroupNotFoundException = (function (_super) {
79
- __extends(EndpointGroupNotFoundException, _super);
80
- function EndpointGroupNotFoundException(opts) {
81
- var _this = _super.call(this, __assign({ name: "EndpointGroupNotFoundException", $fault: "client" }, opts)) || this;
82
- _this.name = "EndpointGroupNotFoundException";
83
- _this.$fault = "client";
84
- Object.setPrototypeOf(_this, EndpointGroupNotFoundException.prototype);
85
- _this.Message = opts.Message;
86
- return _this;
76
+ }
77
+ export class EndpointGroupNotFoundException extends __BaseException {
78
+ constructor(opts) {
79
+ super({
80
+ name: "EndpointGroupNotFoundException",
81
+ $fault: "client",
82
+ ...opts,
83
+ });
84
+ this.name = "EndpointGroupNotFoundException";
85
+ this.$fault = "client";
86
+ Object.setPrototypeOf(this, EndpointGroupNotFoundException.prototype);
87
+ this.Message = opts.Message;
87
88
  }
88
- return EndpointGroupNotFoundException;
89
- }(__BaseException));
90
- export { EndpointGroupNotFoundException };
91
- var InternalServiceErrorException = (function (_super) {
92
- __extends(InternalServiceErrorException, _super);
93
- function InternalServiceErrorException(opts) {
94
- var _this = _super.call(this, __assign({ name: "InternalServiceErrorException", $fault: "server" }, opts)) || this;
95
- _this.name = "InternalServiceErrorException";
96
- _this.$fault = "server";
97
- Object.setPrototypeOf(_this, InternalServiceErrorException.prototype);
98
- _this.Message = opts.Message;
99
- return _this;
89
+ }
90
+ export class InternalServiceErrorException extends __BaseException {
91
+ constructor(opts) {
92
+ super({
93
+ name: "InternalServiceErrorException",
94
+ $fault: "server",
95
+ ...opts,
96
+ });
97
+ this.name = "InternalServiceErrorException";
98
+ this.$fault = "server";
99
+ Object.setPrototypeOf(this, InternalServiceErrorException.prototype);
100
+ this.Message = opts.Message;
100
101
  }
101
- return InternalServiceErrorException;
102
- }(__BaseException));
103
- export { InternalServiceErrorException };
104
- var InvalidArgumentException = (function (_super) {
105
- __extends(InvalidArgumentException, _super);
106
- function InvalidArgumentException(opts) {
107
- var _this = _super.call(this, __assign({ name: "InvalidArgumentException", $fault: "client" }, opts)) || this;
108
- _this.name = "InvalidArgumentException";
109
- _this.$fault = "client";
110
- Object.setPrototypeOf(_this, InvalidArgumentException.prototype);
111
- _this.Message = opts.Message;
112
- return _this;
102
+ }
103
+ export class InvalidArgumentException extends __BaseException {
104
+ constructor(opts) {
105
+ super({
106
+ name: "InvalidArgumentException",
107
+ $fault: "client",
108
+ ...opts,
109
+ });
110
+ this.name = "InvalidArgumentException";
111
+ this.$fault = "client";
112
+ Object.setPrototypeOf(this, InvalidArgumentException.prototype);
113
+ this.Message = opts.Message;
113
114
  }
114
- return InvalidArgumentException;
115
- }(__BaseException));
116
- export { InvalidArgumentException };
117
- var LimitExceededException = (function (_super) {
118
- __extends(LimitExceededException, _super);
119
- function LimitExceededException(opts) {
120
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
121
- _this.name = "LimitExceededException";
122
- _this.$fault = "client";
123
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
124
- _this.Message = opts.Message;
125
- return _this;
115
+ }
116
+ export class LimitExceededException extends __BaseException {
117
+ constructor(opts) {
118
+ super({
119
+ name: "LimitExceededException",
120
+ $fault: "client",
121
+ ...opts,
122
+ });
123
+ this.name = "LimitExceededException";
124
+ this.$fault = "client";
125
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
126
+ this.Message = opts.Message;
126
127
  }
127
- return LimitExceededException;
128
- }(__BaseException));
129
- export { LimitExceededException };
128
+ }
130
129
  export var ByoipCidrState;
131
130
  (function (ByoipCidrState) {
132
131
  ByoipCidrState["ADVERTISING"] = "ADVERTISING";
@@ -141,58 +140,58 @@ export var ByoipCidrState;
141
140
  ByoipCidrState["PENDING_WITHDRAWING"] = "PENDING_WITHDRAWING";
142
141
  ByoipCidrState["READY"] = "READY";
143
142
  })(ByoipCidrState || (ByoipCidrState = {}));
144
- var ByoipCidrNotFoundException = (function (_super) {
145
- __extends(ByoipCidrNotFoundException, _super);
146
- function ByoipCidrNotFoundException(opts) {
147
- var _this = _super.call(this, __assign({ name: "ByoipCidrNotFoundException", $fault: "client" }, opts)) || this;
148
- _this.name = "ByoipCidrNotFoundException";
149
- _this.$fault = "client";
150
- Object.setPrototypeOf(_this, ByoipCidrNotFoundException.prototype);
151
- _this.Message = opts.Message;
152
- return _this;
143
+ export class ByoipCidrNotFoundException extends __BaseException {
144
+ constructor(opts) {
145
+ super({
146
+ name: "ByoipCidrNotFoundException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ this.name = "ByoipCidrNotFoundException";
151
+ this.$fault = "client";
152
+ Object.setPrototypeOf(this, ByoipCidrNotFoundException.prototype);
153
+ this.Message = opts.Message;
153
154
  }
154
- return ByoipCidrNotFoundException;
155
- }(__BaseException));
156
- export { ByoipCidrNotFoundException };
157
- var IncorrectCidrStateException = (function (_super) {
158
- __extends(IncorrectCidrStateException, _super);
159
- function IncorrectCidrStateException(opts) {
160
- var _this = _super.call(this, __assign({ name: "IncorrectCidrStateException", $fault: "client" }, opts)) || this;
161
- _this.name = "IncorrectCidrStateException";
162
- _this.$fault = "client";
163
- Object.setPrototypeOf(_this, IncorrectCidrStateException.prototype);
164
- _this.Message = opts.Message;
165
- return _this;
155
+ }
156
+ export class IncorrectCidrStateException extends __BaseException {
157
+ constructor(opts) {
158
+ super({
159
+ name: "IncorrectCidrStateException",
160
+ $fault: "client",
161
+ ...opts,
162
+ });
163
+ this.name = "IncorrectCidrStateException";
164
+ this.$fault = "client";
165
+ Object.setPrototypeOf(this, IncorrectCidrStateException.prototype);
166
+ this.Message = opts.Message;
166
167
  }
167
- return IncorrectCidrStateException;
168
- }(__BaseException));
169
- export { IncorrectCidrStateException };
170
- var AssociatedEndpointGroupFoundException = (function (_super) {
171
- __extends(AssociatedEndpointGroupFoundException, _super);
172
- function AssociatedEndpointGroupFoundException(opts) {
173
- var _this = _super.call(this, __assign({ name: "AssociatedEndpointGroupFoundException", $fault: "client" }, opts)) || this;
174
- _this.name = "AssociatedEndpointGroupFoundException";
175
- _this.$fault = "client";
176
- Object.setPrototypeOf(_this, AssociatedEndpointGroupFoundException.prototype);
177
- _this.Message = opts.Message;
178
- return _this;
168
+ }
169
+ export class AssociatedEndpointGroupFoundException extends __BaseException {
170
+ constructor(opts) {
171
+ super({
172
+ name: "AssociatedEndpointGroupFoundException",
173
+ $fault: "client",
174
+ ...opts,
175
+ });
176
+ this.name = "AssociatedEndpointGroupFoundException";
177
+ this.$fault = "client";
178
+ Object.setPrototypeOf(this, AssociatedEndpointGroupFoundException.prototype);
179
+ this.Message = opts.Message;
179
180
  }
180
- return AssociatedEndpointGroupFoundException;
181
- }(__BaseException));
182
- export { AssociatedEndpointGroupFoundException };
183
- var AssociatedListenerFoundException = (function (_super) {
184
- __extends(AssociatedListenerFoundException, _super);
185
- function AssociatedListenerFoundException(opts) {
186
- var _this = _super.call(this, __assign({ name: "AssociatedListenerFoundException", $fault: "client" }, opts)) || this;
187
- _this.name = "AssociatedListenerFoundException";
188
- _this.$fault = "client";
189
- Object.setPrototypeOf(_this, AssociatedListenerFoundException.prototype);
190
- _this.Message = opts.Message;
191
- return _this;
181
+ }
182
+ export class AssociatedListenerFoundException extends __BaseException {
183
+ constructor(opts) {
184
+ super({
185
+ name: "AssociatedListenerFoundException",
186
+ $fault: "client",
187
+ ...opts,
188
+ });
189
+ this.name = "AssociatedListenerFoundException";
190
+ this.$fault = "client";
191
+ Object.setPrototypeOf(this, AssociatedListenerFoundException.prototype);
192
+ this.Message = opts.Message;
192
193
  }
193
- return AssociatedListenerFoundException;
194
- }(__BaseException));
195
- export { AssociatedListenerFoundException };
194
+ }
196
195
  export var CustomRoutingProtocol;
197
196
  (function (CustomRoutingProtocol) {
198
197
  CustomRoutingProtocol["TCP"] = "TCP";
@@ -203,45 +202,45 @@ export var Protocol;
203
202
  Protocol["TCP"] = "TCP";
204
203
  Protocol["UDP"] = "UDP";
205
204
  })(Protocol || (Protocol = {}));
206
- var EndpointGroupAlreadyExistsException = (function (_super) {
207
- __extends(EndpointGroupAlreadyExistsException, _super);
208
- function EndpointGroupAlreadyExistsException(opts) {
209
- var _this = _super.call(this, __assign({ name: "EndpointGroupAlreadyExistsException", $fault: "client" }, opts)) || this;
210
- _this.name = "EndpointGroupAlreadyExistsException";
211
- _this.$fault = "client";
212
- Object.setPrototypeOf(_this, EndpointGroupAlreadyExistsException.prototype);
213
- _this.Message = opts.Message;
214
- return _this;
205
+ export class EndpointGroupAlreadyExistsException extends __BaseException {
206
+ constructor(opts) {
207
+ super({
208
+ name: "EndpointGroupAlreadyExistsException",
209
+ $fault: "client",
210
+ ...opts,
211
+ });
212
+ this.name = "EndpointGroupAlreadyExistsException";
213
+ this.$fault = "client";
214
+ Object.setPrototypeOf(this, EndpointGroupAlreadyExistsException.prototype);
215
+ this.Message = opts.Message;
215
216
  }
216
- return EndpointGroupAlreadyExistsException;
217
- }(__BaseException));
218
- export { EndpointGroupAlreadyExistsException };
219
- var InvalidPortRangeException = (function (_super) {
220
- __extends(InvalidPortRangeException, _super);
221
- function InvalidPortRangeException(opts) {
222
- var _this = _super.call(this, __assign({ name: "InvalidPortRangeException", $fault: "client" }, opts)) || this;
223
- _this.name = "InvalidPortRangeException";
224
- _this.$fault = "client";
225
- Object.setPrototypeOf(_this, InvalidPortRangeException.prototype);
226
- _this.Message = opts.Message;
227
- return _this;
217
+ }
218
+ export class InvalidPortRangeException extends __BaseException {
219
+ constructor(opts) {
220
+ super({
221
+ name: "InvalidPortRangeException",
222
+ $fault: "client",
223
+ ...opts,
224
+ });
225
+ this.name = "InvalidPortRangeException";
226
+ this.$fault = "client";
227
+ Object.setPrototypeOf(this, InvalidPortRangeException.prototype);
228
+ this.Message = opts.Message;
228
229
  }
229
- return InvalidPortRangeException;
230
- }(__BaseException));
231
- export { InvalidPortRangeException };
232
- var ListenerNotFoundException = (function (_super) {
233
- __extends(ListenerNotFoundException, _super);
234
- function ListenerNotFoundException(opts) {
235
- var _this = _super.call(this, __assign({ name: "ListenerNotFoundException", $fault: "client" }, opts)) || this;
236
- _this.name = "ListenerNotFoundException";
237
- _this.$fault = "client";
238
- Object.setPrototypeOf(_this, ListenerNotFoundException.prototype);
239
- _this.Message = opts.Message;
240
- return _this;
230
+ }
231
+ export class ListenerNotFoundException extends __BaseException {
232
+ constructor(opts) {
233
+ super({
234
+ name: "ListenerNotFoundException",
235
+ $fault: "client",
236
+ ...opts,
237
+ });
238
+ this.name = "ListenerNotFoundException";
239
+ this.$fault = "client";
240
+ Object.setPrototypeOf(this, ListenerNotFoundException.prototype);
241
+ this.Message = opts.Message;
241
242
  }
242
- return ListenerNotFoundException;
243
- }(__BaseException));
244
- export { ListenerNotFoundException };
243
+ }
245
244
  export var HealthCheckProtocol;
246
245
  (function (HealthCheckProtocol) {
247
246
  HealthCheckProtocol["HTTP"] = "HTTP";
@@ -253,139 +252,359 @@ export var CustomRoutingDestinationTrafficState;
253
252
  CustomRoutingDestinationTrafficState["ALLOW"] = "ALLOW";
254
253
  CustomRoutingDestinationTrafficState["DENY"] = "DENY";
255
254
  })(CustomRoutingDestinationTrafficState || (CustomRoutingDestinationTrafficState = {}));
256
- var EndpointNotFoundException = (function (_super) {
257
- __extends(EndpointNotFoundException, _super);
258
- function EndpointNotFoundException(opts) {
259
- var _this = _super.call(this, __assign({ name: "EndpointNotFoundException", $fault: "client" }, opts)) || this;
260
- _this.name = "EndpointNotFoundException";
261
- _this.$fault = "client";
262
- Object.setPrototypeOf(_this, EndpointNotFoundException.prototype);
263
- _this.Message = opts.Message;
264
- return _this;
255
+ export class EndpointNotFoundException extends __BaseException {
256
+ constructor(opts) {
257
+ super({
258
+ name: "EndpointNotFoundException",
259
+ $fault: "client",
260
+ ...opts,
261
+ });
262
+ this.name = "EndpointNotFoundException";
263
+ this.$fault = "client";
264
+ Object.setPrototypeOf(this, EndpointNotFoundException.prototype);
265
+ this.Message = opts.Message;
265
266
  }
266
- return EndpointNotFoundException;
267
- }(__BaseException));
268
- export { EndpointNotFoundException };
269
- var InvalidNextTokenException = (function (_super) {
270
- __extends(InvalidNextTokenException, _super);
271
- function InvalidNextTokenException(opts) {
272
- var _this = _super.call(this, __assign({ name: "InvalidNextTokenException", $fault: "client" }, opts)) || this;
273
- _this.name = "InvalidNextTokenException";
274
- _this.$fault = "client";
275
- Object.setPrototypeOf(_this, InvalidNextTokenException.prototype);
276
- _this.Message = opts.Message;
277
- return _this;
267
+ }
268
+ export class InvalidNextTokenException extends __BaseException {
269
+ constructor(opts) {
270
+ super({
271
+ name: "InvalidNextTokenException",
272
+ $fault: "client",
273
+ ...opts,
274
+ });
275
+ this.name = "InvalidNextTokenException";
276
+ this.$fault = "client";
277
+ Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
278
+ this.Message = opts.Message;
278
279
  }
279
- return InvalidNextTokenException;
280
- }(__BaseException));
281
- export { InvalidNextTokenException };
282
- export var AcceleratorEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var IpSetFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var AcceleratorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var AcceleratorAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var CustomRoutingEndpointConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var AddCustomRoutingEndpointsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var CustomRoutingEndpointDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var AddCustomRoutingEndpointsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var AdvertiseByoipCidrRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var ByoipCidrEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var ByoipCidrFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var AdvertiseByoipCidrResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
294
- export var AllowCustomRoutingTrafficRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
295
- export var CidrAuthorizationContextFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var CreateAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var CreateAcceleratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var CreateCustomRoutingAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var CustomRoutingAcceleratorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var CreateCustomRoutingAcceleratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var CustomRoutingDestinationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var CreateCustomRoutingEndpointGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var CustomRoutingDestinationDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var CustomRoutingEndpointGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var CreateCustomRoutingEndpointGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var PortRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var CreateCustomRoutingListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var CustomRoutingListenerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
- export var CreateCustomRoutingListenerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
- export var EndpointConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
- export var PortOverrideFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var CreateEndpointGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var EndpointDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var EndpointGroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var CreateEndpointGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var CreateListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var ListenerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var CreateListenerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
320
- export var CustomRoutingAcceleratorAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
321
- export var DeleteAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
322
- export var DeleteCustomRoutingAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
323
- export var DeleteCustomRoutingEndpointGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
324
- export var DeleteCustomRoutingListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
325
- export var DeleteEndpointGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
326
- export var DeleteListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
327
- export var DenyCustomRoutingTrafficRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
328
- export var DeprovisionByoipCidrRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
329
- export var DeprovisionByoipCidrResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
330
- export var DescribeAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
331
- export var DescribeAcceleratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
332
- export var DescribeAcceleratorAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
333
- export var DescribeAcceleratorAttributesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
334
- export var DescribeCustomRoutingAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
335
- export var DescribeCustomRoutingAcceleratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
336
- export var DescribeCustomRoutingAcceleratorAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
337
- export var DescribeCustomRoutingAcceleratorAttributesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
338
- export var DescribeCustomRoutingEndpointGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
339
- export var DescribeCustomRoutingEndpointGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
340
- export var DescribeCustomRoutingListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
341
- export var DescribeCustomRoutingListenerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
342
- export var DescribeEndpointGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
343
- export var DescribeEndpointGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
344
- export var DescribeListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
345
- export var DescribeListenerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
346
- export var SocketAddressFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
347
- export var DestinationPortMappingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
348
- export var ListAcceleratorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
349
- export var ListAcceleratorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
350
- export var ListByoipCidrsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
351
- export var ListByoipCidrsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
352
- export var ListCustomRoutingAcceleratorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
353
- export var ListCustomRoutingAcceleratorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
354
- export var ListCustomRoutingEndpointGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
355
- export var ListCustomRoutingEndpointGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
356
- export var ListCustomRoutingListenersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
357
- export var ListCustomRoutingListenersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
358
- export var ListCustomRoutingPortMappingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
359
- export var PortMappingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
360
- export var ListCustomRoutingPortMappingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
361
- export var ListCustomRoutingPortMappingsByDestinationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
362
- export var ListCustomRoutingPortMappingsByDestinationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
363
- export var ListEndpointGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
364
- export var ListEndpointGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
365
- export var ListListenersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
366
- export var ListListenersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
367
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
368
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
369
- export var ProvisionByoipCidrRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
370
- export var ProvisionByoipCidrResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
371
- export var RemoveCustomRoutingEndpointsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
372
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
373
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
374
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
375
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
376
- export var UpdateAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
377
- export var UpdateAcceleratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
378
- export var UpdateAcceleratorAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
379
- export var UpdateAcceleratorAttributesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
380
- export var UpdateCustomRoutingAcceleratorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
381
- export var UpdateCustomRoutingAcceleratorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
382
- export var UpdateCustomRoutingAcceleratorAttributesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
383
- export var UpdateCustomRoutingAcceleratorAttributesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
384
- export var UpdateCustomRoutingListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
385
- export var UpdateCustomRoutingListenerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
386
- export var UpdateEndpointGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
387
- export var UpdateEndpointGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
388
- export var UpdateListenerRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
389
- export var UpdateListenerResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
390
- export var WithdrawByoipCidrRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
391
- export var WithdrawByoipCidrResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
+ }
281
+ export const AcceleratorEventFilterSensitiveLog = (obj) => ({
282
+ ...obj,
283
+ });
284
+ export const IpSetFilterSensitiveLog = (obj) => ({
285
+ ...obj,
286
+ });
287
+ export const AcceleratorFilterSensitiveLog = (obj) => ({
288
+ ...obj,
289
+ });
290
+ export const AcceleratorAttributesFilterSensitiveLog = (obj) => ({
291
+ ...obj,
292
+ });
293
+ export const CustomRoutingEndpointConfigurationFilterSensitiveLog = (obj) => ({
294
+ ...obj,
295
+ });
296
+ export const AddCustomRoutingEndpointsRequestFilterSensitiveLog = (obj) => ({
297
+ ...obj,
298
+ });
299
+ export const CustomRoutingEndpointDescriptionFilterSensitiveLog = (obj) => ({
300
+ ...obj,
301
+ });
302
+ export const AddCustomRoutingEndpointsResponseFilterSensitiveLog = (obj) => ({
303
+ ...obj,
304
+ });
305
+ export const AdvertiseByoipCidrRequestFilterSensitiveLog = (obj) => ({
306
+ ...obj,
307
+ });
308
+ export const ByoipCidrEventFilterSensitiveLog = (obj) => ({
309
+ ...obj,
310
+ });
311
+ export const ByoipCidrFilterSensitiveLog = (obj) => ({
312
+ ...obj,
313
+ });
314
+ export const AdvertiseByoipCidrResponseFilterSensitiveLog = (obj) => ({
315
+ ...obj,
316
+ });
317
+ export const AllowCustomRoutingTrafficRequestFilterSensitiveLog = (obj) => ({
318
+ ...obj,
319
+ });
320
+ export const CidrAuthorizationContextFilterSensitiveLog = (obj) => ({
321
+ ...obj,
322
+ });
323
+ export const TagFilterSensitiveLog = (obj) => ({
324
+ ...obj,
325
+ });
326
+ export const CreateAcceleratorRequestFilterSensitiveLog = (obj) => ({
327
+ ...obj,
328
+ });
329
+ export const CreateAcceleratorResponseFilterSensitiveLog = (obj) => ({
330
+ ...obj,
331
+ });
332
+ export const CreateCustomRoutingAcceleratorRequestFilterSensitiveLog = (obj) => ({
333
+ ...obj,
334
+ });
335
+ export const CustomRoutingAcceleratorFilterSensitiveLog = (obj) => ({
336
+ ...obj,
337
+ });
338
+ export const CreateCustomRoutingAcceleratorResponseFilterSensitiveLog = (obj) => ({
339
+ ...obj,
340
+ });
341
+ export const CustomRoutingDestinationConfigurationFilterSensitiveLog = (obj) => ({
342
+ ...obj,
343
+ });
344
+ export const CreateCustomRoutingEndpointGroupRequestFilterSensitiveLog = (obj) => ({
345
+ ...obj,
346
+ });
347
+ export const CustomRoutingDestinationDescriptionFilterSensitiveLog = (obj) => ({
348
+ ...obj,
349
+ });
350
+ export const CustomRoutingEndpointGroupFilterSensitiveLog = (obj) => ({
351
+ ...obj,
352
+ });
353
+ export const CreateCustomRoutingEndpointGroupResponseFilterSensitiveLog = (obj) => ({
354
+ ...obj,
355
+ });
356
+ export const PortRangeFilterSensitiveLog = (obj) => ({
357
+ ...obj,
358
+ });
359
+ export const CreateCustomRoutingListenerRequestFilterSensitiveLog = (obj) => ({
360
+ ...obj,
361
+ });
362
+ export const CustomRoutingListenerFilterSensitiveLog = (obj) => ({
363
+ ...obj,
364
+ });
365
+ export const CreateCustomRoutingListenerResponseFilterSensitiveLog = (obj) => ({
366
+ ...obj,
367
+ });
368
+ export const EndpointConfigurationFilterSensitiveLog = (obj) => ({
369
+ ...obj,
370
+ });
371
+ export const PortOverrideFilterSensitiveLog = (obj) => ({
372
+ ...obj,
373
+ });
374
+ export const CreateEndpointGroupRequestFilterSensitiveLog = (obj) => ({
375
+ ...obj,
376
+ });
377
+ export const EndpointDescriptionFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ });
380
+ export const EndpointGroupFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ });
383
+ export const CreateEndpointGroupResponseFilterSensitiveLog = (obj) => ({
384
+ ...obj,
385
+ });
386
+ export const CreateListenerRequestFilterSensitiveLog = (obj) => ({
387
+ ...obj,
388
+ });
389
+ export const ListenerFilterSensitiveLog = (obj) => ({
390
+ ...obj,
391
+ });
392
+ export const CreateListenerResponseFilterSensitiveLog = (obj) => ({
393
+ ...obj,
394
+ });
395
+ export const CustomRoutingAcceleratorAttributesFilterSensitiveLog = (obj) => ({
396
+ ...obj,
397
+ });
398
+ export const DeleteAcceleratorRequestFilterSensitiveLog = (obj) => ({
399
+ ...obj,
400
+ });
401
+ export const DeleteCustomRoutingAcceleratorRequestFilterSensitiveLog = (obj) => ({
402
+ ...obj,
403
+ });
404
+ export const DeleteCustomRoutingEndpointGroupRequestFilterSensitiveLog = (obj) => ({
405
+ ...obj,
406
+ });
407
+ export const DeleteCustomRoutingListenerRequestFilterSensitiveLog = (obj) => ({
408
+ ...obj,
409
+ });
410
+ export const DeleteEndpointGroupRequestFilterSensitiveLog = (obj) => ({
411
+ ...obj,
412
+ });
413
+ export const DeleteListenerRequestFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ });
416
+ export const DenyCustomRoutingTrafficRequestFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ });
419
+ export const DeprovisionByoipCidrRequestFilterSensitiveLog = (obj) => ({
420
+ ...obj,
421
+ });
422
+ export const DeprovisionByoipCidrResponseFilterSensitiveLog = (obj) => ({
423
+ ...obj,
424
+ });
425
+ export const DescribeAcceleratorRequestFilterSensitiveLog = (obj) => ({
426
+ ...obj,
427
+ });
428
+ export const DescribeAcceleratorResponseFilterSensitiveLog = (obj) => ({
429
+ ...obj,
430
+ });
431
+ export const DescribeAcceleratorAttributesRequestFilterSensitiveLog = (obj) => ({
432
+ ...obj,
433
+ });
434
+ export const DescribeAcceleratorAttributesResponseFilterSensitiveLog = (obj) => ({
435
+ ...obj,
436
+ });
437
+ export const DescribeCustomRoutingAcceleratorRequestFilterSensitiveLog = (obj) => ({
438
+ ...obj,
439
+ });
440
+ export const DescribeCustomRoutingAcceleratorResponseFilterSensitiveLog = (obj) => ({
441
+ ...obj,
442
+ });
443
+ export const DescribeCustomRoutingAcceleratorAttributesRequestFilterSensitiveLog = (obj) => ({
444
+ ...obj,
445
+ });
446
+ export const DescribeCustomRoutingAcceleratorAttributesResponseFilterSensitiveLog = (obj) => ({
447
+ ...obj,
448
+ });
449
+ export const DescribeCustomRoutingEndpointGroupRequestFilterSensitiveLog = (obj) => ({
450
+ ...obj,
451
+ });
452
+ export const DescribeCustomRoutingEndpointGroupResponseFilterSensitiveLog = (obj) => ({
453
+ ...obj,
454
+ });
455
+ export const DescribeCustomRoutingListenerRequestFilterSensitiveLog = (obj) => ({
456
+ ...obj,
457
+ });
458
+ export const DescribeCustomRoutingListenerResponseFilterSensitiveLog = (obj) => ({
459
+ ...obj,
460
+ });
461
+ export const DescribeEndpointGroupRequestFilterSensitiveLog = (obj) => ({
462
+ ...obj,
463
+ });
464
+ export const DescribeEndpointGroupResponseFilterSensitiveLog = (obj) => ({
465
+ ...obj,
466
+ });
467
+ export const DescribeListenerRequestFilterSensitiveLog = (obj) => ({
468
+ ...obj,
469
+ });
470
+ export const DescribeListenerResponseFilterSensitiveLog = (obj) => ({
471
+ ...obj,
472
+ });
473
+ export const SocketAddressFilterSensitiveLog = (obj) => ({
474
+ ...obj,
475
+ });
476
+ export const DestinationPortMappingFilterSensitiveLog = (obj) => ({
477
+ ...obj,
478
+ });
479
+ export const ListAcceleratorsRequestFilterSensitiveLog = (obj) => ({
480
+ ...obj,
481
+ });
482
+ export const ListAcceleratorsResponseFilterSensitiveLog = (obj) => ({
483
+ ...obj,
484
+ });
485
+ export const ListByoipCidrsRequestFilterSensitiveLog = (obj) => ({
486
+ ...obj,
487
+ });
488
+ export const ListByoipCidrsResponseFilterSensitiveLog = (obj) => ({
489
+ ...obj,
490
+ });
491
+ export const ListCustomRoutingAcceleratorsRequestFilterSensitiveLog = (obj) => ({
492
+ ...obj,
493
+ });
494
+ export const ListCustomRoutingAcceleratorsResponseFilterSensitiveLog = (obj) => ({
495
+ ...obj,
496
+ });
497
+ export const ListCustomRoutingEndpointGroupsRequestFilterSensitiveLog = (obj) => ({
498
+ ...obj,
499
+ });
500
+ export const ListCustomRoutingEndpointGroupsResponseFilterSensitiveLog = (obj) => ({
501
+ ...obj,
502
+ });
503
+ export const ListCustomRoutingListenersRequestFilterSensitiveLog = (obj) => ({
504
+ ...obj,
505
+ });
506
+ export const ListCustomRoutingListenersResponseFilterSensitiveLog = (obj) => ({
507
+ ...obj,
508
+ });
509
+ export const ListCustomRoutingPortMappingsRequestFilterSensitiveLog = (obj) => ({
510
+ ...obj,
511
+ });
512
+ export const PortMappingFilterSensitiveLog = (obj) => ({
513
+ ...obj,
514
+ });
515
+ export const ListCustomRoutingPortMappingsResponseFilterSensitiveLog = (obj) => ({
516
+ ...obj,
517
+ });
518
+ export const ListCustomRoutingPortMappingsByDestinationRequestFilterSensitiveLog = (obj) => ({
519
+ ...obj,
520
+ });
521
+ export const ListCustomRoutingPortMappingsByDestinationResponseFilterSensitiveLog = (obj) => ({
522
+ ...obj,
523
+ });
524
+ export const ListEndpointGroupsRequestFilterSensitiveLog = (obj) => ({
525
+ ...obj,
526
+ });
527
+ export const ListEndpointGroupsResponseFilterSensitiveLog = (obj) => ({
528
+ ...obj,
529
+ });
530
+ export const ListListenersRequestFilterSensitiveLog = (obj) => ({
531
+ ...obj,
532
+ });
533
+ export const ListListenersResponseFilterSensitiveLog = (obj) => ({
534
+ ...obj,
535
+ });
536
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
537
+ ...obj,
538
+ });
539
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
540
+ ...obj,
541
+ });
542
+ export const ProvisionByoipCidrRequestFilterSensitiveLog = (obj) => ({
543
+ ...obj,
544
+ });
545
+ export const ProvisionByoipCidrResponseFilterSensitiveLog = (obj) => ({
546
+ ...obj,
547
+ });
548
+ export const RemoveCustomRoutingEndpointsRequestFilterSensitiveLog = (obj) => ({
549
+ ...obj,
550
+ });
551
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
552
+ ...obj,
553
+ });
554
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
555
+ ...obj,
556
+ });
557
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
558
+ ...obj,
559
+ });
560
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
561
+ ...obj,
562
+ });
563
+ export const UpdateAcceleratorRequestFilterSensitiveLog = (obj) => ({
564
+ ...obj,
565
+ });
566
+ export const UpdateAcceleratorResponseFilterSensitiveLog = (obj) => ({
567
+ ...obj,
568
+ });
569
+ export const UpdateAcceleratorAttributesRequestFilterSensitiveLog = (obj) => ({
570
+ ...obj,
571
+ });
572
+ export const UpdateAcceleratorAttributesResponseFilterSensitiveLog = (obj) => ({
573
+ ...obj,
574
+ });
575
+ export const UpdateCustomRoutingAcceleratorRequestFilterSensitiveLog = (obj) => ({
576
+ ...obj,
577
+ });
578
+ export const UpdateCustomRoutingAcceleratorResponseFilterSensitiveLog = (obj) => ({
579
+ ...obj,
580
+ });
581
+ export const UpdateCustomRoutingAcceleratorAttributesRequestFilterSensitiveLog = (obj) => ({
582
+ ...obj,
583
+ });
584
+ export const UpdateCustomRoutingAcceleratorAttributesResponseFilterSensitiveLog = (obj) => ({
585
+ ...obj,
586
+ });
587
+ export const UpdateCustomRoutingListenerRequestFilterSensitiveLog = (obj) => ({
588
+ ...obj,
589
+ });
590
+ export const UpdateCustomRoutingListenerResponseFilterSensitiveLog = (obj) => ({
591
+ ...obj,
592
+ });
593
+ export const UpdateEndpointGroupRequestFilterSensitiveLog = (obj) => ({
594
+ ...obj,
595
+ });
596
+ export const UpdateEndpointGroupResponseFilterSensitiveLog = (obj) => ({
597
+ ...obj,
598
+ });
599
+ export const UpdateListenerRequestFilterSensitiveLog = (obj) => ({
600
+ ...obj,
601
+ });
602
+ export const UpdateListenerResponseFilterSensitiveLog = (obj) => ({
603
+ ...obj,
604
+ });
605
+ export const WithdrawByoipCidrRequestFilterSensitiveLog = (obj) => ({
606
+ ...obj,
607
+ });
608
+ export const WithdrawByoipCidrResponseFilterSensitiveLog = (obj) => ({
609
+ ...obj,
610
+ });