@aws-sdk/client-global-accelerator 3.315.0 → 3.316.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.
@@ -49,551 +49,357 @@ import { UpdateEndpointGroupCommandInput, UpdateEndpointGroupCommandOutput } fro
49
49
  import { UpdateListenerCommandInput, UpdateListenerCommandOutput } from "./commands/UpdateListenerCommand";
50
50
  import { WithdrawByoipCidrCommandInput, WithdrawByoipCidrCommandOutput } from "./commands/WithdrawByoipCidrCommand";
51
51
  import { GlobalAcceleratorClient } from "./GlobalAcceleratorClient";
52
- /**
53
- * @public
54
- * <fullname>Global Accelerator</fullname>
55
- * <p>This is the <i>Global Accelerator API Reference</i>. This guide is for developers who need detailed information about
56
- * Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the
57
- * <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/what-is-global-accelerator.html">Global Accelerator Developer Guide</a>.</p>
58
- * <p>Global Accelerator is a service in which you create <i>accelerators</i> to improve the performance
59
- * of your applications for local and global users. Depending on the type of accelerator you choose, you can
60
- * gain additional benefits. </p>
61
- * <ul>
62
- * <li>
63
- * <p>By using a standard accelerator, you can improve availability of your internet applications
64
- * that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the Amazon Web Services
65
- * global network. </p>
66
- * </li>
67
- * <li>
68
- * <p>For other scenarios, you might choose a custom routing accelerator. With a custom routing accelerator, you
69
- * can use application logic to directly map one or more users to a specific endpoint among many endpoints.</p>
70
- * </li>
71
- * </ul>
72
- * <important>
73
- * <p>Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the
74
- * US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify <code>--region us-west-2</code>
75
- * on AWS CLI commands.</p>
76
- * </important>
77
- *
78
- *
79
- * <p>By default, Global Accelerator provides you with static IP addresses that you associate with your accelerator. The static IP addresses
80
- * are anycast from the Amazon Web Services edge network. For IPv4, Global Accelerator provides two static IPv4 addresses. For dual-stack,
81
- * Global Accelerator provides a total of four addresses: two static IPv4 addresses and two static IPv6 addresses.
82
- * With a standard accelerator for IPv4, instead of using the addresses that Global Accelerator provides, you can configure
83
- * these entry points to be IPv4 addresses from your own IP address ranges that you bring toGlobal Accelerator (BYOIP). </p>
84
- *
85
- *
86
- * <p>For a standard accelerator,
87
- * they distribute incoming application traffic across multiple endpoint resources in multiple Amazon Web Services Regions , which increases
88
- * the availability of your applications. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers,
89
- * Amazon EC2 instances, or Elastic IP addresses that are located in one Amazon Web Services Region or multiple Amazon Web Services Regions. For custom routing
90
- * accelerators, you map traffic that arrives to the static IP addresses to specific Amazon EC2 servers in endpoints that
91
- * are virtual private cloud (VPC) subnets.</p>
92
- *
93
- * <important>
94
- * <p>The static IP addresses remain assigned to your accelerator for as long as it exists, even if you
95
- * disable the accelerator and it no longer accepts or routes traffic. However, when you
96
- * <i>delete</i> an accelerator, you lose the static IP addresses that
97
- * are assigned to it, so you can no longer route traffic by using them. You can use
98
- * IAM policies like tag-based permissions with Global Accelerator to limit the users who have
99
- * permissions to delete an accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html">Tag-based policies</a>.</p>
100
- * </important>
101
- * <p>For standard accelerators, Global Accelerator uses the Amazon Web Services global network to route traffic to the optimal regional endpoint based
102
- * on health, client location, and policies that you configure. The service reacts instantly to
103
- * changes in health or configuration to ensure that internet traffic from clients is always
104
- * directed to healthy endpoints.</p>
105
- * <p>For more information about understanding and using Global Accelerator, see the
106
- * <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/what-is-global-accelerator.html">Global Accelerator Developer Guide</a>.</p>
107
- */
108
- export declare class GlobalAccelerator extends GlobalAcceleratorClient {
109
- /**
110
- * @public
111
- * <p>Associate a virtual private cloud (VPC) subnet endpoint with your custom routing accelerator.</p>
112
- * <p>The listener port range must be large enough to support the number of IP addresses that can be
113
- * specified in your subnet. The number of ports required is: subnet size times the number
114
- * of ports per destination EC2 instances. For example, a subnet defined as /24 requires a listener
115
- * port range of at least 255 ports. </p>
116
- * <p>Note: You must have enough remaining listener ports available to
117
- * map to the subnet ports, or the call will fail with a LimitExceededException.</p>
118
- * <p>By default, all destinations in a subnet in a custom routing accelerator cannot receive traffic. To enable all
119
- * destinations to receive traffic, or to specify individual port mappings that can receive
120
- * traffic, see the <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/API_AllowCustomRoutingTraffic.html">
121
- * AllowCustomRoutingTraffic</a> operation.</p>
52
+ export interface GlobalAccelerator {
53
+ /**
54
+ * @see {@link AddCustomRoutingEndpointsCommand}
122
55
  */
123
56
  addCustomRoutingEndpoints(args: AddCustomRoutingEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<AddCustomRoutingEndpointsCommandOutput>;
124
57
  addCustomRoutingEndpoints(args: AddCustomRoutingEndpointsCommandInput, cb: (err: any, data?: AddCustomRoutingEndpointsCommandOutput) => void): void;
125
58
  addCustomRoutingEndpoints(args: AddCustomRoutingEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddCustomRoutingEndpointsCommandOutput) => void): void;
126
59
  /**
127
- * @public
128
- * <p>Add endpoints to an endpoint group. The <code>AddEndpoints</code> API operation is the recommended option for adding endpoints. The
129
- * alternative options are to add endpoints when you create an endpoint group (with the
130
- * <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/API_CreateEndpointGroup.html">CreateEndpointGroup</a> API)
131
- * or when you update an endpoint group (with the
132
- * <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/API_UpdateEndpointGroup.html">UpdateEndpointGroup</a> API). </p>
133
- * <p>There are two advantages to using <code>AddEndpoints</code> to add endpoints:</p>
134
- * <ul>
135
- * <li>
136
- * <p>It's faster, because Global Accelerator only has to resolve the new endpoints that
137
- * you're adding.</p>
138
- * </li>
139
- * <li>
140
- * <p>It's more convenient, because you don't need to specify all of the current
141
- * endpoints that are already in the endpoint group in addition to the new endpoints that you want to add.</p>
142
- * </li>
143
- * </ul>
60
+ * @see {@link AddEndpointsCommand}
144
61
  */
145
62
  addEndpoints(args: AddEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<AddEndpointsCommandOutput>;
146
63
  addEndpoints(args: AddEndpointsCommandInput, cb: (err: any, data?: AddEndpointsCommandOutput) => void): void;
147
64
  addEndpoints(args: AddEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddEndpointsCommandOutput) => void): void;
148
65
  /**
149
- * @public
150
- * <p>Advertises an IPv4 address range that is provisioned for use with your Amazon Web Services resources
151
- * through bring your own IP addresses (BYOIP). It can take a few minutes before traffic to
152
- * the specified addresses starts routing to Amazon Web Services because of propagation delays. </p>
153
- * <p>To stop advertising the BYOIP address range, use <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/WithdrawByoipCidr.html">
154
- * WithdrawByoipCidr</a>.</p>
155
- * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html">Bring your own
156
- * IP addresses (BYOIP)</a> in the <i>Global Accelerator Developer Guide</i>.</p>
66
+ * @see {@link AdvertiseByoipCidrCommand}
157
67
  */
158
68
  advertiseByoipCidr(args: AdvertiseByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<AdvertiseByoipCidrCommandOutput>;
159
69
  advertiseByoipCidr(args: AdvertiseByoipCidrCommandInput, cb: (err: any, data?: AdvertiseByoipCidrCommandOutput) => void): void;
160
70
  advertiseByoipCidr(args: AdvertiseByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AdvertiseByoipCidrCommandOutput) => void): void;
161
71
  /**
162
- * @public
163
- * <p>Specify the Amazon EC2 instance (destination) IP addresses and ports for a VPC subnet endpoint that can receive traffic
164
- * for a custom routing accelerator. You can allow traffic to all destinations in the subnet endpoint, or allow traffic to a
165
- * specified list of destination IP addresses and ports in the subnet. Note that you cannot specify IP addresses or ports
166
- * outside of the range that you configured for the endpoint group.</p>
167
- * <p>After you make changes, you can verify that the updates are complete by checking the status of your
168
- * accelerator: the status changes from IN_PROGRESS to DEPLOYED.</p>
72
+ * @see {@link AllowCustomRoutingTrafficCommand}
169
73
  */
170
74
  allowCustomRoutingTraffic(args: AllowCustomRoutingTrafficCommandInput, options?: __HttpHandlerOptions): Promise<AllowCustomRoutingTrafficCommandOutput>;
171
75
  allowCustomRoutingTraffic(args: AllowCustomRoutingTrafficCommandInput, cb: (err: any, data?: AllowCustomRoutingTrafficCommandOutput) => void): void;
172
76
  allowCustomRoutingTraffic(args: AllowCustomRoutingTrafficCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AllowCustomRoutingTrafficCommandOutput) => void): void;
173
77
  /**
174
- * @public
175
- * <p>Create an accelerator. An accelerator includes one or more listeners that process inbound connections and direct traffic
176
- * to one or more endpoint groups, each of which includes endpoints, such as Network Load Balancers. </p>
177
- * <important>
178
- * <p>Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the
179
- * US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify <code>--region us-west-2</code>
180
- * on AWS CLI commands.</p>
181
- * </important>
78
+ * @see {@link CreateAcceleratorCommand}
182
79
  */
183
80
  createAccelerator(args: CreateAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<CreateAcceleratorCommandOutput>;
184
81
  createAccelerator(args: CreateAcceleratorCommandInput, cb: (err: any, data?: CreateAcceleratorCommandOutput) => void): void;
185
82
  createAccelerator(args: CreateAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAcceleratorCommandOutput) => void): void;
186
83
  /**
187
- * @public
188
- * <p>Create a custom routing accelerator. A custom routing accelerator directs traffic to one of possibly thousands
189
- * of Amazon EC2 instance destinations running in a single or multiple virtual private clouds (VPC) subnet endpoints.</p>
190
- * <p>Be aware that, by default, all destination EC2 instances in a VPC subnet endpoint cannot receive
191
- * traffic. To enable all destinations to receive traffic, or to specify individual port
192
- * mappings that can receive traffic, see the <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/API_AllowCustomRoutingTraffic.html">
193
- * AllowCustomRoutingTraffic</a> operation.</p>
194
- * <important>
195
- * <p>Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the
196
- * US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify <code>--region us-west-2</code>
197
- * on AWS CLI commands.</p>
198
- * </important>
84
+ * @see {@link CreateCustomRoutingAcceleratorCommand}
199
85
  */
200
86
  createCustomRoutingAccelerator(args: CreateCustomRoutingAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomRoutingAcceleratorCommandOutput>;
201
87
  createCustomRoutingAccelerator(args: CreateCustomRoutingAcceleratorCommandInput, cb: (err: any, data?: CreateCustomRoutingAcceleratorCommandOutput) => void): void;
202
88
  createCustomRoutingAccelerator(args: CreateCustomRoutingAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomRoutingAcceleratorCommandOutput) => void): void;
203
89
  /**
204
- * @public
205
- * <p>Create an endpoint group for the specified listener for a custom routing accelerator.
206
- * An endpoint group is a collection of endpoints in one Amazon Web Services
207
- * Region. </p>
90
+ * @see {@link CreateCustomRoutingEndpointGroupCommand}
208
91
  */
209
92
  createCustomRoutingEndpointGroup(args: CreateCustomRoutingEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomRoutingEndpointGroupCommandOutput>;
210
93
  createCustomRoutingEndpointGroup(args: CreateCustomRoutingEndpointGroupCommandInput, cb: (err: any, data?: CreateCustomRoutingEndpointGroupCommandOutput) => void): void;
211
94
  createCustomRoutingEndpointGroup(args: CreateCustomRoutingEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomRoutingEndpointGroupCommandOutput) => void): void;
212
95
  /**
213
- * @public
214
- * <p>Create a listener to process inbound connections from clients to a custom routing accelerator.
215
- * Connections arrive to assigned static IP addresses on the port range that you specify. </p>
96
+ * @see {@link CreateCustomRoutingListenerCommand}
216
97
  */
217
98
  createCustomRoutingListener(args: CreateCustomRoutingListenerCommandInput, options?: __HttpHandlerOptions): Promise<CreateCustomRoutingListenerCommandOutput>;
218
99
  createCustomRoutingListener(args: CreateCustomRoutingListenerCommandInput, cb: (err: any, data?: CreateCustomRoutingListenerCommandOutput) => void): void;
219
100
  createCustomRoutingListener(args: CreateCustomRoutingListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomRoutingListenerCommandOutput) => void): void;
220
101
  /**
221
- * @public
222
- * <p>Create an endpoint group for the specified listener. An endpoint group is a collection of endpoints in one Amazon Web Services
223
- * Region. A resource must be valid and active when you add it as an endpoint.</p>
102
+ * @see {@link CreateEndpointGroupCommand}
224
103
  */
225
104
  createEndpointGroup(args: CreateEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateEndpointGroupCommandOutput>;
226
105
  createEndpointGroup(args: CreateEndpointGroupCommandInput, cb: (err: any, data?: CreateEndpointGroupCommandOutput) => void): void;
227
106
  createEndpointGroup(args: CreateEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEndpointGroupCommandOutput) => void): void;
228
107
  /**
229
- * @public
230
- * <p>Create a listener to process inbound connections from clients to an accelerator. Connections arrive to assigned static
231
- * IP addresses on a port, port range, or list of port ranges that you specify. </p>
108
+ * @see {@link CreateListenerCommand}
232
109
  */
233
110
  createListener(args: CreateListenerCommandInput, options?: __HttpHandlerOptions): Promise<CreateListenerCommandOutput>;
234
111
  createListener(args: CreateListenerCommandInput, cb: (err: any, data?: CreateListenerCommandOutput) => void): void;
235
112
  createListener(args: CreateListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateListenerCommandOutput) => void): void;
236
113
  /**
237
- * @public
238
- * <p>Delete an accelerator. Before you can delete an accelerator, you must disable it and remove all dependent resources
239
- * (listeners and endpoint groups). To disable the accelerator, update the accelerator to set <code>Enabled</code> to false.</p>
240
- * <important>
241
- * <p>When you create an accelerator, by default, Global Accelerator provides you with a set of two static IP addresses.
242
- * Alternatively, you can bring your own IP address ranges to Global Accelerator and assign IP addresses from those ranges.
243
- * </p>
244
- * <p>The IP addresses are assigned to your accelerator for as long as it exists, even if you disable the accelerator and
245
- * it no longer accepts or routes traffic. However, when you <i>delete</i> an accelerator, you lose the
246
- * static IP addresses that are assigned to the accelerator, so you can no longer route traffic by using them.
247
- * As a best practice, ensure that you have permissions in place to avoid inadvertently deleting accelerators. You
248
- * can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information,
249
- * see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/auth-and-access-control.html">Identity and access management</a> in
250
- * the <i>Global Accelerator Developer Guide</i>.</p>
251
- * </important>
114
+ * @see {@link DeleteAcceleratorCommand}
252
115
  */
253
116
  deleteAccelerator(args: DeleteAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAcceleratorCommandOutput>;
254
117
  deleteAccelerator(args: DeleteAcceleratorCommandInput, cb: (err: any, data?: DeleteAcceleratorCommandOutput) => void): void;
255
118
  deleteAccelerator(args: DeleteAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAcceleratorCommandOutput) => void): void;
256
119
  /**
257
- * @public
258
- * <p>Delete a custom routing accelerator. Before you can delete an accelerator, you must disable it and remove all dependent resources
259
- * (listeners and endpoint groups). To disable the accelerator, update the accelerator to set <code>Enabled</code> to false.</p>
260
- * <important>
261
- * <p>When you create a custom routing accelerator, by default, Global Accelerator provides you with a set of two static IP addresses.
262
- * </p>
263
- * <p>The IP
264
- * addresses are assigned to your accelerator for as long as it exists, even if you disable the accelerator and
265
- * it no longer accepts or routes traffic. However, when you <i>delete</i> an accelerator, you lose the
266
- * static IP addresses that are assigned to the accelerator, so you can no longer route traffic by using them.
267
- * As a best practice, ensure that you have permissions in place to avoid inadvertently deleting accelerators. You
268
- * can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information,
269
- * see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/auth-and-access-control.html">Identity and access management</a> in
270
- * the <i>Global Accelerator Developer Guide</i>.</p>
271
- * </important>
120
+ * @see {@link DeleteCustomRoutingAcceleratorCommand}
272
121
  */
273
122
  deleteCustomRoutingAccelerator(args: DeleteCustomRoutingAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomRoutingAcceleratorCommandOutput>;
274
123
  deleteCustomRoutingAccelerator(args: DeleteCustomRoutingAcceleratorCommandInput, cb: (err: any, data?: DeleteCustomRoutingAcceleratorCommandOutput) => void): void;
275
124
  deleteCustomRoutingAccelerator(args: DeleteCustomRoutingAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomRoutingAcceleratorCommandOutput) => void): void;
276
125
  /**
277
- * @public
278
- * <p>Delete an endpoint group from a listener for a custom routing accelerator.</p>
126
+ * @see {@link DeleteCustomRoutingEndpointGroupCommand}
279
127
  */
280
128
  deleteCustomRoutingEndpointGroup(args: DeleteCustomRoutingEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomRoutingEndpointGroupCommandOutput>;
281
129
  deleteCustomRoutingEndpointGroup(args: DeleteCustomRoutingEndpointGroupCommandInput, cb: (err: any, data?: DeleteCustomRoutingEndpointGroupCommandOutput) => void): void;
282
130
  deleteCustomRoutingEndpointGroup(args: DeleteCustomRoutingEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomRoutingEndpointGroupCommandOutput) => void): void;
283
131
  /**
284
- * @public
285
- * <p>Delete a listener for a custom routing accelerator.</p>
132
+ * @see {@link DeleteCustomRoutingListenerCommand}
286
133
  */
287
134
  deleteCustomRoutingListener(args: DeleteCustomRoutingListenerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCustomRoutingListenerCommandOutput>;
288
135
  deleteCustomRoutingListener(args: DeleteCustomRoutingListenerCommandInput, cb: (err: any, data?: DeleteCustomRoutingListenerCommandOutput) => void): void;
289
136
  deleteCustomRoutingListener(args: DeleteCustomRoutingListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomRoutingListenerCommandOutput) => void): void;
290
137
  /**
291
- * @public
292
- * <p>Delete an endpoint group from a listener.</p>
138
+ * @see {@link DeleteEndpointGroupCommand}
293
139
  */
294
140
  deleteEndpointGroup(args: DeleteEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointGroupCommandOutput>;
295
141
  deleteEndpointGroup(args: DeleteEndpointGroupCommandInput, cb: (err: any, data?: DeleteEndpointGroupCommandOutput) => void): void;
296
142
  deleteEndpointGroup(args: DeleteEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointGroupCommandOutput) => void): void;
297
143
  /**
298
- * @public
299
- * <p>Delete a listener from an accelerator.</p>
144
+ * @see {@link DeleteListenerCommand}
300
145
  */
301
146
  deleteListener(args: DeleteListenerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteListenerCommandOutput>;
302
147
  deleteListener(args: DeleteListenerCommandInput, cb: (err: any, data?: DeleteListenerCommandOutput) => void): void;
303
148
  deleteListener(args: DeleteListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteListenerCommandOutput) => void): void;
304
149
  /**
305
- * @public
306
- * <p>Specify the Amazon EC2 instance (destination) IP addresses and ports for a VPC subnet endpoint that cannot receive traffic
307
- * for a custom routing accelerator. You can deny traffic to all destinations in the VPC endpoint, or deny traffic to a
308
- * specified list of destination IP addresses and ports. Note that you cannot specify IP addresses
309
- * or ports outside of the range that you configured for the endpoint group.</p>
310
- * <p>After you make changes, you can verify that the updates are complete by checking the status of your
311
- * accelerator: the status changes from IN_PROGRESS to DEPLOYED.</p>
150
+ * @see {@link DenyCustomRoutingTrafficCommand}
312
151
  */
313
152
  denyCustomRoutingTraffic(args: DenyCustomRoutingTrafficCommandInput, options?: __HttpHandlerOptions): Promise<DenyCustomRoutingTrafficCommandOutput>;
314
153
  denyCustomRoutingTraffic(args: DenyCustomRoutingTrafficCommandInput, cb: (err: any, data?: DenyCustomRoutingTrafficCommandOutput) => void): void;
315
154
  denyCustomRoutingTraffic(args: DenyCustomRoutingTrafficCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DenyCustomRoutingTrafficCommandOutput) => void): void;
316
155
  /**
317
- * @public
318
- * <p>Releases the specified address range that you provisioned to use with your Amazon Web Services resources
319
- * through bring your own IP addresses (BYOIP) and deletes the corresponding address pool. </p>
320
- * <p>Before you can release an address range, you must stop advertising it by using <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/WithdrawByoipCidr.html">WithdrawByoipCidr</a> and you must not have
321
- * any accelerators that are using static IP addresses allocated from its address range.
322
- * </p>
323
- * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html">Bring
324
- * your own IP addresses (BYOIP)</a> in the <i>Global Accelerator Developer Guide</i>.</p>
156
+ * @see {@link DeprovisionByoipCidrCommand}
325
157
  */
326
158
  deprovisionByoipCidr(args: DeprovisionByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<DeprovisionByoipCidrCommandOutput>;
327
159
  deprovisionByoipCidr(args: DeprovisionByoipCidrCommandInput, cb: (err: any, data?: DeprovisionByoipCidrCommandOutput) => void): void;
328
160
  deprovisionByoipCidr(args: DeprovisionByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeprovisionByoipCidrCommandOutput) => void): void;
329
161
  /**
330
- * @public
331
- * <p>Describe an accelerator. </p>
162
+ * @see {@link DescribeAcceleratorCommand}
332
163
  */
333
164
  describeAccelerator(args: DescribeAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAcceleratorCommandOutput>;
334
165
  describeAccelerator(args: DescribeAcceleratorCommandInput, cb: (err: any, data?: DescribeAcceleratorCommandOutput) => void): void;
335
166
  describeAccelerator(args: DescribeAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAcceleratorCommandOutput) => void): void;
336
167
  /**
337
- * @public
338
- * <p>Describe the attributes of an accelerator.
339
- * </p>
168
+ * @see {@link DescribeAcceleratorAttributesCommand}
340
169
  */
341
170
  describeAcceleratorAttributes(args: DescribeAcceleratorAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAcceleratorAttributesCommandOutput>;
342
171
  describeAcceleratorAttributes(args: DescribeAcceleratorAttributesCommandInput, cb: (err: any, data?: DescribeAcceleratorAttributesCommandOutput) => void): void;
343
172
  describeAcceleratorAttributes(args: DescribeAcceleratorAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAcceleratorAttributesCommandOutput) => void): void;
344
173
  /**
345
- * @public
346
- * <p>Describe a custom routing accelerator. </p>
174
+ * @see {@link DescribeCustomRoutingAcceleratorCommand}
347
175
  */
348
176
  describeCustomRoutingAccelerator(args: DescribeCustomRoutingAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomRoutingAcceleratorCommandOutput>;
349
177
  describeCustomRoutingAccelerator(args: DescribeCustomRoutingAcceleratorCommandInput, cb: (err: any, data?: DescribeCustomRoutingAcceleratorCommandOutput) => void): void;
350
178
  describeCustomRoutingAccelerator(args: DescribeCustomRoutingAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomRoutingAcceleratorCommandOutput) => void): void;
351
179
  /**
352
- * @public
353
- * <p>Describe the attributes of a custom routing accelerator. </p>
180
+ * @see {@link DescribeCustomRoutingAcceleratorAttributesCommand}
354
181
  */
355
182
  describeCustomRoutingAcceleratorAttributes(args: DescribeCustomRoutingAcceleratorAttributesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomRoutingAcceleratorAttributesCommandOutput>;
356
183
  describeCustomRoutingAcceleratorAttributes(args: DescribeCustomRoutingAcceleratorAttributesCommandInput, cb: (err: any, data?: DescribeCustomRoutingAcceleratorAttributesCommandOutput) => void): void;
357
184
  describeCustomRoutingAcceleratorAttributes(args: DescribeCustomRoutingAcceleratorAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomRoutingAcceleratorAttributesCommandOutput) => void): void;
358
185
  /**
359
- * @public
360
- * <p>Describe an endpoint group for a custom routing accelerator. </p>
186
+ * @see {@link DescribeCustomRoutingEndpointGroupCommand}
361
187
  */
362
188
  describeCustomRoutingEndpointGroup(args: DescribeCustomRoutingEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomRoutingEndpointGroupCommandOutput>;
363
189
  describeCustomRoutingEndpointGroup(args: DescribeCustomRoutingEndpointGroupCommandInput, cb: (err: any, data?: DescribeCustomRoutingEndpointGroupCommandOutput) => void): void;
364
190
  describeCustomRoutingEndpointGroup(args: DescribeCustomRoutingEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomRoutingEndpointGroupCommandOutput) => void): void;
365
191
  /**
366
- * @public
367
- * <p>The description of a listener for a custom routing accelerator.</p>
192
+ * @see {@link DescribeCustomRoutingListenerCommand}
368
193
  */
369
194
  describeCustomRoutingListener(args: DescribeCustomRoutingListenerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomRoutingListenerCommandOutput>;
370
195
  describeCustomRoutingListener(args: DescribeCustomRoutingListenerCommandInput, cb: (err: any, data?: DescribeCustomRoutingListenerCommandOutput) => void): void;
371
196
  describeCustomRoutingListener(args: DescribeCustomRoutingListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomRoutingListenerCommandOutput) => void): void;
372
197
  /**
373
- * @public
374
- * <p>Describe an endpoint group. </p>
198
+ * @see {@link DescribeEndpointGroupCommand}
375
199
  */
376
200
  describeEndpointGroup(args: DescribeEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEndpointGroupCommandOutput>;
377
201
  describeEndpointGroup(args: DescribeEndpointGroupCommandInput, cb: (err: any, data?: DescribeEndpointGroupCommandOutput) => void): void;
378
202
  describeEndpointGroup(args: DescribeEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEndpointGroupCommandOutput) => void): void;
379
203
  /**
380
- * @public
381
- * <p>Describe a listener. </p>
204
+ * @see {@link DescribeListenerCommand}
382
205
  */
383
206
  describeListener(args: DescribeListenerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeListenerCommandOutput>;
384
207
  describeListener(args: DescribeListenerCommandInput, cb: (err: any, data?: DescribeListenerCommandOutput) => void): void;
385
208
  describeListener(args: DescribeListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeListenerCommandOutput) => void): void;
386
209
  /**
387
- * @public
388
- * <p>List the accelerators for an Amazon Web Services account. </p>
210
+ * @see {@link ListAcceleratorsCommand}
389
211
  */
390
212
  listAccelerators(args: ListAcceleratorsCommandInput, options?: __HttpHandlerOptions): Promise<ListAcceleratorsCommandOutput>;
391
213
  listAccelerators(args: ListAcceleratorsCommandInput, cb: (err: any, data?: ListAcceleratorsCommandOutput) => void): void;
392
214
  listAccelerators(args: ListAcceleratorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAcceleratorsCommandOutput) => void): void;
393
215
  /**
394
- * @public
395
- * <p>Lists the IP address ranges that were specified in calls to <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/ProvisionByoipCidr.html">ProvisionByoipCidr</a>, including
396
- * the current state and a history of state changes.</p>
216
+ * @see {@link ListByoipCidrsCommand}
397
217
  */
398
218
  listByoipCidrs(args: ListByoipCidrsCommandInput, options?: __HttpHandlerOptions): Promise<ListByoipCidrsCommandOutput>;
399
219
  listByoipCidrs(args: ListByoipCidrsCommandInput, cb: (err: any, data?: ListByoipCidrsCommandOutput) => void): void;
400
220
  listByoipCidrs(args: ListByoipCidrsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListByoipCidrsCommandOutput) => void): void;
401
221
  /**
402
- * @public
403
- * <p>List the custom routing accelerators for an Amazon Web Services account. </p>
222
+ * @see {@link ListCustomRoutingAcceleratorsCommand}
404
223
  */
405
224
  listCustomRoutingAccelerators(args: ListCustomRoutingAcceleratorsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomRoutingAcceleratorsCommandOutput>;
406
225
  listCustomRoutingAccelerators(args: ListCustomRoutingAcceleratorsCommandInput, cb: (err: any, data?: ListCustomRoutingAcceleratorsCommandOutput) => void): void;
407
226
  listCustomRoutingAccelerators(args: ListCustomRoutingAcceleratorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomRoutingAcceleratorsCommandOutput) => void): void;
408
227
  /**
409
- * @public
410
- * <p>List the endpoint groups that are associated with a listener for a custom routing accelerator. </p>
228
+ * @see {@link ListCustomRoutingEndpointGroupsCommand}
411
229
  */
412
230
  listCustomRoutingEndpointGroups(args: ListCustomRoutingEndpointGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomRoutingEndpointGroupsCommandOutput>;
413
231
  listCustomRoutingEndpointGroups(args: ListCustomRoutingEndpointGroupsCommandInput, cb: (err: any, data?: ListCustomRoutingEndpointGroupsCommandOutput) => void): void;
414
232
  listCustomRoutingEndpointGroups(args: ListCustomRoutingEndpointGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomRoutingEndpointGroupsCommandOutput) => void): void;
415
233
  /**
416
- * @public
417
- * <p>List the listeners for a custom routing accelerator. </p>
234
+ * @see {@link ListCustomRoutingListenersCommand}
418
235
  */
419
236
  listCustomRoutingListeners(args: ListCustomRoutingListenersCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomRoutingListenersCommandOutput>;
420
237
  listCustomRoutingListeners(args: ListCustomRoutingListenersCommandInput, cb: (err: any, data?: ListCustomRoutingListenersCommandOutput) => void): void;
421
238
  listCustomRoutingListeners(args: ListCustomRoutingListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomRoutingListenersCommandOutput) => void): void;
422
239
  /**
423
- * @public
424
- * <p>Provides a complete mapping from the public accelerator IP address and port to destination EC2 instance
425
- * IP addresses and ports in the virtual public cloud (VPC) subnet endpoint for a custom routing accelerator.
426
- * For each subnet endpoint that you add, Global Accelerator creates a new static port mapping for the accelerator. The port
427
- * mappings don't change after Global Accelerator generates them, so you can retrieve and cache the full mapping on your servers. </p>
428
- * <p>If you remove a subnet from your accelerator, Global Accelerator removes (reclaims) the port mappings. If you add a subnet to
429
- * your accelerator, Global Accelerator creates new port mappings (the existing ones don't change). If you add or remove EC2 instances
430
- * in your subnet, the port mappings don't change, because the mappings are created when you add the subnet to Global Accelerator.</p>
431
- * <p>The mappings also include a flag for each destination denoting which destination IP addresses and
432
- * ports are allowed or denied traffic.</p>
240
+ * @see {@link ListCustomRoutingPortMappingsCommand}
433
241
  */
434
242
  listCustomRoutingPortMappings(args: ListCustomRoutingPortMappingsCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomRoutingPortMappingsCommandOutput>;
435
243
  listCustomRoutingPortMappings(args: ListCustomRoutingPortMappingsCommandInput, cb: (err: any, data?: ListCustomRoutingPortMappingsCommandOutput) => void): void;
436
244
  listCustomRoutingPortMappings(args: ListCustomRoutingPortMappingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomRoutingPortMappingsCommandOutput) => void): void;
437
245
  /**
438
- * @public
439
- * <p>List the port mappings for a specific EC2 instance (destination) in a VPC subnet endpoint. The
440
- * response is the mappings for one destination IP address. This is useful when your subnet endpoint has mappings that
441
- * span multiple custom routing accelerators in your account, or for scenarios where you only want to
442
- * list the port mappings for a specific destination instance.</p>
246
+ * @see {@link ListCustomRoutingPortMappingsByDestinationCommand}
443
247
  */
444
248
  listCustomRoutingPortMappingsByDestination(args: ListCustomRoutingPortMappingsByDestinationCommandInput, options?: __HttpHandlerOptions): Promise<ListCustomRoutingPortMappingsByDestinationCommandOutput>;
445
249
  listCustomRoutingPortMappingsByDestination(args: ListCustomRoutingPortMappingsByDestinationCommandInput, cb: (err: any, data?: ListCustomRoutingPortMappingsByDestinationCommandOutput) => void): void;
446
250
  listCustomRoutingPortMappingsByDestination(args: ListCustomRoutingPortMappingsByDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCustomRoutingPortMappingsByDestinationCommandOutput) => void): void;
447
251
  /**
448
- * @public
449
- * <p>List the endpoint groups that are associated with a listener. </p>
252
+ * @see {@link ListEndpointGroupsCommand}
450
253
  */
451
254
  listEndpointGroups(args: ListEndpointGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListEndpointGroupsCommandOutput>;
452
255
  listEndpointGroups(args: ListEndpointGroupsCommandInput, cb: (err: any, data?: ListEndpointGroupsCommandOutput) => void): void;
453
256
  listEndpointGroups(args: ListEndpointGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEndpointGroupsCommandOutput) => void): void;
454
257
  /**
455
- * @public
456
- * <p>List the listeners for an accelerator. </p>
258
+ * @see {@link ListListenersCommand}
457
259
  */
458
260
  listListeners(args: ListListenersCommandInput, options?: __HttpHandlerOptions): Promise<ListListenersCommandOutput>;
459
261
  listListeners(args: ListListenersCommandInput, cb: (err: any, data?: ListListenersCommandOutput) => void): void;
460
262
  listListeners(args: ListListenersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListListenersCommandOutput) => void): void;
461
263
  /**
462
- * @public
463
- * <p>List all tags for an accelerator. </p>
464
- * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html">Tagging
465
- * in Global Accelerator</a> in the <i>Global Accelerator Developer Guide</i>. </p>
264
+ * @see {@link ListTagsForResourceCommand}
466
265
  */
467
266
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
468
267
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
469
268
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
470
269
  /**
471
- * @public
472
- * <p>Provisions an IP address range to use with your Amazon Web Services resources through bring your own IP
473
- * addresses (BYOIP) and creates a corresponding address pool. After the address range is provisioned,
474
- * it is ready to be advertised using <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/AdvertiseByoipCidr.html">
475
- * AdvertiseByoipCidr</a>.</p>
476
- * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html">Bring your own
477
- * IP addresses (BYOIP)</a> in the <i>Global Accelerator Developer Guide</i>.</p>
270
+ * @see {@link ProvisionByoipCidrCommand}
478
271
  */
479
272
  provisionByoipCidr(args: ProvisionByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<ProvisionByoipCidrCommandOutput>;
480
273
  provisionByoipCidr(args: ProvisionByoipCidrCommandInput, cb: (err: any, data?: ProvisionByoipCidrCommandOutput) => void): void;
481
274
  provisionByoipCidr(args: ProvisionByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ProvisionByoipCidrCommandOutput) => void): void;
482
275
  /**
483
- * @public
484
- * <p>Remove endpoints from a custom routing accelerator.</p>
276
+ * @see {@link RemoveCustomRoutingEndpointsCommand}
485
277
  */
486
278
  removeCustomRoutingEndpoints(args: RemoveCustomRoutingEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveCustomRoutingEndpointsCommandOutput>;
487
279
  removeCustomRoutingEndpoints(args: RemoveCustomRoutingEndpointsCommandInput, cb: (err: any, data?: RemoveCustomRoutingEndpointsCommandOutput) => void): void;
488
280
  removeCustomRoutingEndpoints(args: RemoveCustomRoutingEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveCustomRoutingEndpointsCommandOutput) => void): void;
489
281
  /**
490
- * @public
491
- * <p>Remove endpoints from an endpoint group. </p>
492
- * <p>The <code>RemoveEndpoints</code> API operation is the recommended option for removing endpoints. The alternative is to remove
493
- * endpoints by updating an endpoint group by using the
494
- * <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/API_UpdateEndpointGroup.html">UpdateEndpointGroup</a>
495
- * API operation. There are two advantages to using <code>AddEndpoints</code> to remove endpoints instead:</p>
496
- * <ul>
497
- * <li>
498
- * <p>It's more convenient, because you only need to specify the endpoints that you want to remove. With the
499
- * <code>UpdateEndpointGroup</code> API operation, you must specify all of the endpoints in the
500
- * endpoint group except the ones that you want to remove from the group.</p>
501
- * </li>
502
- * <li>
503
- * <p>It's faster, because Global Accelerator doesn't need to resolve any endpoints. With the
504
- * <code>UpdateEndpointGroup</code> API operation, Global Accelerator must resolve all of the endpoints that
505
- * remain in the group.</p>
506
- * </li>
507
- * </ul>
282
+ * @see {@link RemoveEndpointsCommand}
508
283
  */
509
284
  removeEndpoints(args: RemoveEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<RemoveEndpointsCommandOutput>;
510
285
  removeEndpoints(args: RemoveEndpointsCommandInput, cb: (err: any, data?: RemoveEndpointsCommandOutput) => void): void;
511
286
  removeEndpoints(args: RemoveEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveEndpointsCommandOutput) => void): void;
512
287
  /**
513
- * @public
514
- * <p>Add tags to an accelerator resource. </p>
515
- * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html">Tagging
516
- * in Global Accelerator</a> in the <i>Global Accelerator Developer Guide</i>. </p>
288
+ * @see {@link TagResourceCommand}
517
289
  */
518
290
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
519
291
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
520
292
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
521
293
  /**
522
- * @public
523
- * <p>Remove tags from a Global Accelerator resource. When you specify a tag key, the action removes both that key and its associated value.
524
- * The operation succeeds even if you attempt to remove tags from an accelerator that was already removed.</p>
525
- * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html">Tagging
526
- * in Global Accelerator</a> in the <i>Global Accelerator Developer Guide</i>.</p>
294
+ * @see {@link UntagResourceCommand}
527
295
  */
528
296
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
529
297
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
530
298
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
531
299
  /**
532
- * @public
533
- * <p>Update an accelerator. </p>
534
- *
535
- * <important>
536
- * <p>Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the
537
- * US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify <code>--region us-west-2</code>
538
- * on AWS CLI commands.</p>
539
- * </important>
300
+ * @see {@link UpdateAcceleratorCommand}
540
301
  */
541
302
  updateAccelerator(args: UpdateAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAcceleratorCommandOutput>;
542
303
  updateAccelerator(args: UpdateAcceleratorCommandInput, cb: (err: any, data?: UpdateAcceleratorCommandOutput) => void): void;
543
304
  updateAccelerator(args: UpdateAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAcceleratorCommandOutput) => void): void;
544
305
  /**
545
- * @public
546
- * <p>Update the attributes for an accelerator. </p>
306
+ * @see {@link UpdateAcceleratorAttributesCommand}
547
307
  */
548
308
  updateAcceleratorAttributes(args: UpdateAcceleratorAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAcceleratorAttributesCommandOutput>;
549
309
  updateAcceleratorAttributes(args: UpdateAcceleratorAttributesCommandInput, cb: (err: any, data?: UpdateAcceleratorAttributesCommandOutput) => void): void;
550
310
  updateAcceleratorAttributes(args: UpdateAcceleratorAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAcceleratorAttributesCommandOutput) => void): void;
551
311
  /**
552
- * @public
553
- * <p>Update a custom routing accelerator. </p>
312
+ * @see {@link UpdateCustomRoutingAcceleratorCommand}
554
313
  */
555
314
  updateCustomRoutingAccelerator(args: UpdateCustomRoutingAcceleratorCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomRoutingAcceleratorCommandOutput>;
556
315
  updateCustomRoutingAccelerator(args: UpdateCustomRoutingAcceleratorCommandInput, cb: (err: any, data?: UpdateCustomRoutingAcceleratorCommandOutput) => void): void;
557
316
  updateCustomRoutingAccelerator(args: UpdateCustomRoutingAcceleratorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomRoutingAcceleratorCommandOutput) => void): void;
558
317
  /**
559
- * @public
560
- * <p>Update the attributes for a custom routing accelerator. </p>
318
+ * @see {@link UpdateCustomRoutingAcceleratorAttributesCommand}
561
319
  */
562
320
  updateCustomRoutingAcceleratorAttributes(args: UpdateCustomRoutingAcceleratorAttributesCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomRoutingAcceleratorAttributesCommandOutput>;
563
321
  updateCustomRoutingAcceleratorAttributes(args: UpdateCustomRoutingAcceleratorAttributesCommandInput, cb: (err: any, data?: UpdateCustomRoutingAcceleratorAttributesCommandOutput) => void): void;
564
322
  updateCustomRoutingAcceleratorAttributes(args: UpdateCustomRoutingAcceleratorAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomRoutingAcceleratorAttributesCommandOutput) => void): void;
565
323
  /**
566
- * @public
567
- * <p>Update a listener for a custom routing accelerator. </p>
324
+ * @see {@link UpdateCustomRoutingListenerCommand}
568
325
  */
569
326
  updateCustomRoutingListener(args: UpdateCustomRoutingListenerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCustomRoutingListenerCommandOutput>;
570
327
  updateCustomRoutingListener(args: UpdateCustomRoutingListenerCommandInput, cb: (err: any, data?: UpdateCustomRoutingListenerCommandOutput) => void): void;
571
328
  updateCustomRoutingListener(args: UpdateCustomRoutingListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCustomRoutingListenerCommandOutput) => void): void;
572
329
  /**
573
- * @public
574
- * <p>Update an endpoint group. A resource must be valid and active when you add it as an endpoint.</p>
330
+ * @see {@link UpdateEndpointGroupCommand}
575
331
  */
576
332
  updateEndpointGroup(args: UpdateEndpointGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEndpointGroupCommandOutput>;
577
333
  updateEndpointGroup(args: UpdateEndpointGroupCommandInput, cb: (err: any, data?: UpdateEndpointGroupCommandOutput) => void): void;
578
334
  updateEndpointGroup(args: UpdateEndpointGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEndpointGroupCommandOutput) => void): void;
579
335
  /**
580
- * @public
581
- * <p>Update a listener. </p>
336
+ * @see {@link UpdateListenerCommand}
582
337
  */
583
338
  updateListener(args: UpdateListenerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateListenerCommandOutput>;
584
339
  updateListener(args: UpdateListenerCommandInput, cb: (err: any, data?: UpdateListenerCommandOutput) => void): void;
585
340
  updateListener(args: UpdateListenerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateListenerCommandOutput) => void): void;
586
341
  /**
587
- * @public
588
- * <p>Stops advertising an address range that is provisioned as an address pool.
589
- * You can perform this operation at most once every 10 seconds, even if you specify different address
590
- * ranges each time.</p>
591
- * <p>It can take a few minutes before traffic to the specified addresses stops routing to Amazon Web Services because of
592
- * propagation delays.</p>
593
- * <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/using-byoip.html">Bring your own
594
- * IP addresses (BYOIP)</a> in the <i>Global Accelerator Developer Guide</i>.</p>
342
+ * @see {@link WithdrawByoipCidrCommand}
595
343
  */
596
344
  withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, options?: __HttpHandlerOptions): Promise<WithdrawByoipCidrCommandOutput>;
597
345
  withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, cb: (err: any, data?: WithdrawByoipCidrCommandOutput) => void): void;
598
346
  withdrawByoipCidr(args: WithdrawByoipCidrCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: WithdrawByoipCidrCommandOutput) => void): void;
599
347
  }
348
+ /**
349
+ * @public
350
+ * <fullname>Global Accelerator</fullname>
351
+ * <p>This is the <i>Global Accelerator API Reference</i>. This guide is for developers who need detailed information about
352
+ * Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the
353
+ * <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/what-is-global-accelerator.html">Global Accelerator Developer Guide</a>.</p>
354
+ * <p>Global Accelerator is a service in which you create <i>accelerators</i> to improve the performance
355
+ * of your applications for local and global users. Depending on the type of accelerator you choose, you can
356
+ * gain additional benefits. </p>
357
+ * <ul>
358
+ * <li>
359
+ * <p>By using a standard accelerator, you can improve availability of your internet applications
360
+ * that are used by a global audience. With a standard accelerator, Global Accelerator directs traffic to optimal endpoints over the Amazon Web Services
361
+ * global network. </p>
362
+ * </li>
363
+ * <li>
364
+ * <p>For other scenarios, you might choose a custom routing accelerator. With a custom routing accelerator, you
365
+ * can use application logic to directly map one or more users to a specific endpoint among many endpoints.</p>
366
+ * </li>
367
+ * </ul>
368
+ * <important>
369
+ * <p>Global Accelerator is a global service that supports endpoints in multiple Amazon Web Services Regions but you must specify the
370
+ * US West (Oregon) Region to create, update, or otherwise work with accelerators. That is, for example, specify <code>--region us-west-2</code>
371
+ * on AWS CLI commands.</p>
372
+ * </important>
373
+ *
374
+ *
375
+ * <p>By default, Global Accelerator provides you with static IP addresses that you associate with your accelerator. The static IP addresses
376
+ * are anycast from the Amazon Web Services edge network. For IPv4, Global Accelerator provides two static IPv4 addresses. For dual-stack,
377
+ * Global Accelerator provides a total of four addresses: two static IPv4 addresses and two static IPv6 addresses.
378
+ * With a standard accelerator for IPv4, instead of using the addresses that Global Accelerator provides, you can configure
379
+ * these entry points to be IPv4 addresses from your own IP address ranges that you bring toGlobal Accelerator (BYOIP). </p>
380
+ *
381
+ *
382
+ * <p>For a standard accelerator,
383
+ * they distribute incoming application traffic across multiple endpoint resources in multiple Amazon Web Services Regions , which increases
384
+ * the availability of your applications. Endpoints for standard accelerators can be Network Load Balancers, Application Load Balancers,
385
+ * Amazon EC2 instances, or Elastic IP addresses that are located in one Amazon Web Services Region or multiple Amazon Web Services Regions. For custom routing
386
+ * accelerators, you map traffic that arrives to the static IP addresses to specific Amazon EC2 servers in endpoints that
387
+ * are virtual private cloud (VPC) subnets.</p>
388
+ *
389
+ * <important>
390
+ * <p>The static IP addresses remain assigned to your accelerator for as long as it exists, even if you
391
+ * disable the accelerator and it no longer accepts or routes traffic. However, when you
392
+ * <i>delete</i> an accelerator, you lose the static IP addresses that
393
+ * are assigned to it, so you can no longer route traffic by using them. You can use
394
+ * IAM policies like tag-based permissions with Global Accelerator to limit the users who have
395
+ * permissions to delete an accelerator. For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/access-control-manage-access-tag-policies.html">Tag-based policies</a>.</p>
396
+ * </important>
397
+ * <p>For standard accelerators, Global Accelerator uses the Amazon Web Services global network to route traffic to the optimal regional endpoint based
398
+ * on health, client location, and policies that you configure. The service reacts instantly to
399
+ * changes in health or configuration to ensure that internet traffic from clients is always
400
+ * directed to healthy endpoints.</p>
401
+ * <p>For more information about understanding and using Global Accelerator, see the
402
+ * <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/what-is-global-accelerator.html">Global Accelerator Developer Guide</a>.</p>
403
+ */
404
+ export declare class GlobalAccelerator extends GlobalAcceleratorClient implements GlobalAccelerator {
405
+ }