aws-sdk-globalaccelerator 1.39.0 → 1.41.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-globalaccelerator/client.rb +300 -141
- data/lib/aws-sdk-globalaccelerator/client_api.rb +70 -1
- data/lib/aws-sdk-globalaccelerator/errors.rb +16 -0
- data/lib/aws-sdk-globalaccelerator/types.rb +411 -181
- data/lib/aws-sdk-globalaccelerator.rb +1 -1
- metadata +2 -2
@@ -25,7 +25,8 @@ module Aws::GlobalAccelerator
|
|
25
25
|
# @return [String]
|
26
26
|
#
|
27
27
|
# @!attribute [rw] ip_address_type
|
28
|
-
# The
|
28
|
+
# The IP address type that an accelerator supports. For a standard
|
29
|
+
# accelerator, the value can be IPV4 or DUAL\_STACK.
|
29
30
|
# @return [String]
|
30
31
|
#
|
31
32
|
# @!attribute [rw] enabled
|
@@ -43,20 +44,25 @@ module Aws::GlobalAccelerator
|
|
43
44
|
#
|
44
45
|
# @!attribute [rw] dns_name
|
45
46
|
# The Domain Name System (DNS) name that Global Accelerator creates
|
46
|
-
# that points to
|
47
|
+
# that points to an accelerator's static IPv4 addresses.
|
47
48
|
#
|
48
|
-
# The naming convention for the DNS name
|
49
|
-
# letter a, followed by a 16-bit random hex
|
50
|
-
# .awsglobalaccelerator.com. For example:
|
49
|
+
# The naming convention for the DNS name for an accelerator is the
|
50
|
+
# following: A lowercase letter a, followed by a 16-bit random hex
|
51
|
+
# string, followed by .awsglobalaccelerator.com. For example:
|
51
52
|
# a1234567890abcdef.awsglobalaccelerator.com.
|
52
53
|
#
|
54
|
+
# If you have a dual-stack accelerator, you also have a second DNS
|
55
|
+
# name, `DualStackDnsName`, that points to both the A record and the
|
56
|
+
# AAAA record for all four static addresses for the accelerator: two
|
57
|
+
# IPv4 addresses and two IPv6 addresses.
|
58
|
+
#
|
53
59
|
# For more information about the default DNS name, see [ Support for
|
54
|
-
# DNS
|
55
|
-
#
|
60
|
+
# DNS addressing in Global Accelerator][1] in the *Global Accelerator
|
61
|
+
# Developer Guide*.
|
56
62
|
#
|
57
63
|
#
|
58
64
|
#
|
59
|
-
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/
|
65
|
+
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/dns-addressing-custom-domains.dns-addressing.html
|
60
66
|
# @return [String]
|
61
67
|
#
|
62
68
|
# @!attribute [rw] status
|
@@ -71,6 +77,32 @@ module Aws::GlobalAccelerator
|
|
71
77
|
# The date and time that the accelerator was last modified.
|
72
78
|
# @return [Time]
|
73
79
|
#
|
80
|
+
# @!attribute [rw] dual_stack_dns_name
|
81
|
+
# The Domain Name System (DNS) name that Global Accelerator creates
|
82
|
+
# that points to a dual-stack accelerator's four static IP addresses:
|
83
|
+
# two IPv4 addresses and two IPv6 addresses.
|
84
|
+
#
|
85
|
+
# The naming convention for the dual-stack DNS name is the following:
|
86
|
+
# A lowercase letter a, followed by a 16-bit random hex string,
|
87
|
+
# followed by .dualstack.awsglobalaccelerator.com. For example:
|
88
|
+
# a1234567890abcdef.dualstack.awsglobalaccelerator.com.
|
89
|
+
#
|
90
|
+
# Note: Global Accelerator also assigns a default DNS name, `DnsName`,
|
91
|
+
# to your accelerator that points just to the static IPv4 addresses.
|
92
|
+
#
|
93
|
+
# For more information, see [ Support for DNS addressing in Global
|
94
|
+
# Accelerator][1] in the *Global Accelerator Developer Guide*.
|
95
|
+
#
|
96
|
+
#
|
97
|
+
#
|
98
|
+
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/about-accelerators.html#about-accelerators.dns-addressing
|
99
|
+
# @return [String]
|
100
|
+
#
|
101
|
+
# @!attribute [rw] events
|
102
|
+
# A history of changes that you make to an accelerator in Global
|
103
|
+
# Accelerator.
|
104
|
+
# @return [Array<Types::AcceleratorEvent>]
|
105
|
+
#
|
74
106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/Accelerator AWS API Documentation
|
75
107
|
#
|
76
108
|
class Accelerator < Struct.new(
|
@@ -82,7 +114,9 @@ module Aws::GlobalAccelerator
|
|
82
114
|
:dns_name,
|
83
115
|
:status,
|
84
116
|
:created_time,
|
85
|
-
:last_modified_time
|
117
|
+
:last_modified_time,
|
118
|
+
:dual_stack_dns_name,
|
119
|
+
:events)
|
86
120
|
SENSITIVE = []
|
87
121
|
include Aws::Structure
|
88
122
|
end
|
@@ -94,8 +128,8 @@ module Aws::GlobalAccelerator
|
|
94
128
|
# If the value is true, `FlowLogsS3Bucket` and `FlowLogsS3Prefix` must
|
95
129
|
# be specified.
|
96
130
|
#
|
97
|
-
# For more information, see [Flow
|
98
|
-
#
|
131
|
+
# For more information, see [Flow logs][1] in the *Global Accelerator
|
132
|
+
# Developer Guide*.
|
99
133
|
#
|
100
134
|
#
|
101
135
|
#
|
@@ -105,18 +139,17 @@ module Aws::GlobalAccelerator
|
|
105
139
|
# @!attribute [rw] flow_logs_s3_bucket
|
106
140
|
# The name of the Amazon S3 bucket for the flow logs. Attribute is
|
107
141
|
# required if `FlowLogsEnabled` is `true`. The bucket must exist and
|
108
|
-
# have a bucket policy that grants
|
109
|
-
#
|
142
|
+
# have a bucket policy that grants Global Accelerator permission to
|
143
|
+
# write to the bucket.
|
110
144
|
# @return [String]
|
111
145
|
#
|
112
146
|
# @!attribute [rw] flow_logs_s3_prefix
|
113
147
|
# The prefix for the location in the Amazon S3 bucket for the flow
|
114
148
|
# logs. Attribute is required if `FlowLogsEnabled` is `true`.
|
115
149
|
#
|
116
|
-
# If you
|
117
|
-
#
|
118
|
-
#
|
119
|
-
# (//), like the following:
|
150
|
+
# If you specify slash (/) for the S3 bucket prefix, the log file
|
151
|
+
# bucket folder structure will include a double slash (//), like the
|
152
|
+
# following:
|
120
153
|
#
|
121
154
|
# s3-bucket\_name//AWSLogs/aws\_account\_id
|
122
155
|
# @return [String]
|
@@ -131,6 +164,32 @@ module Aws::GlobalAccelerator
|
|
131
164
|
include Aws::Structure
|
132
165
|
end
|
133
166
|
|
167
|
+
# A complex type that contains a `Timestamp` value and `Message` for
|
168
|
+
# changes that you make to an accelerator in Global Accelerator.
|
169
|
+
# Messages stored here provide progress or error information when you
|
170
|
+
# update an accelerator from IPv4 to dual-stack, or from dual-stack to
|
171
|
+
# IPv4. Global Accelerator stores a maximum of ten event messages.
|
172
|
+
#
|
173
|
+
# @!attribute [rw] message
|
174
|
+
# A string that contains an `Event` message describing changes or
|
175
|
+
# errors when you update an accelerator in Global Accelerator from
|
176
|
+
# IPv4 to dual-stack, or dual-stack to IPv4.
|
177
|
+
# @return [String]
|
178
|
+
#
|
179
|
+
# @!attribute [rw] timestamp
|
180
|
+
# A timestamp for when you update an accelerator in Global Accelerator
|
181
|
+
# from IPv4 to dual-stack, or dual-stack to IPv4.
|
182
|
+
# @return [Time]
|
183
|
+
#
|
184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/AcceleratorEvent AWS API Documentation
|
185
|
+
#
|
186
|
+
class AcceleratorEvent < Struct.new(
|
187
|
+
:message,
|
188
|
+
:timestamp)
|
189
|
+
SENSITIVE = []
|
190
|
+
include Aws::Structure
|
191
|
+
end
|
192
|
+
|
134
193
|
# The accelerator that you specified could not be disabled.
|
135
194
|
#
|
136
195
|
# @!attribute [rw] message
|
@@ -218,6 +277,54 @@ module Aws::GlobalAccelerator
|
|
218
277
|
include Aws::Structure
|
219
278
|
end
|
220
279
|
|
280
|
+
# @note When making an API call, you may pass AddEndpointsRequest
|
281
|
+
# data as a hash:
|
282
|
+
#
|
283
|
+
# {
|
284
|
+
# endpoint_configurations: [ # required
|
285
|
+
# {
|
286
|
+
# endpoint_id: "GenericString",
|
287
|
+
# weight: 1,
|
288
|
+
# client_ip_preservation_enabled: false,
|
289
|
+
# },
|
290
|
+
# ],
|
291
|
+
# endpoint_group_arn: "GenericString", # required
|
292
|
+
# }
|
293
|
+
#
|
294
|
+
# @!attribute [rw] endpoint_configurations
|
295
|
+
# The list of endpoint objects.
|
296
|
+
# @return [Array<Types::EndpointConfiguration>]
|
297
|
+
#
|
298
|
+
# @!attribute [rw] endpoint_group_arn
|
299
|
+
# The Amazon Resource Name (ARN) of the endpoint group.
|
300
|
+
# @return [String]
|
301
|
+
#
|
302
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/AddEndpointsRequest AWS API Documentation
|
303
|
+
#
|
304
|
+
class AddEndpointsRequest < Struct.new(
|
305
|
+
:endpoint_configurations,
|
306
|
+
:endpoint_group_arn)
|
307
|
+
SENSITIVE = []
|
308
|
+
include Aws::Structure
|
309
|
+
end
|
310
|
+
|
311
|
+
# @!attribute [rw] endpoint_descriptions
|
312
|
+
# The list of endpoint objects.
|
313
|
+
# @return [Array<Types::EndpointDescription>]
|
314
|
+
#
|
315
|
+
# @!attribute [rw] endpoint_group_arn
|
316
|
+
# The Amazon Resource Name (ARN) of the endpoint group.
|
317
|
+
# @return [String]
|
318
|
+
#
|
319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/AddEndpointsResponse AWS API Documentation
|
320
|
+
#
|
321
|
+
class AddEndpointsResponse < Struct.new(
|
322
|
+
:endpoint_descriptions,
|
323
|
+
:endpoint_group_arn)
|
324
|
+
SENSITIVE = []
|
325
|
+
include Aws::Structure
|
326
|
+
end
|
327
|
+
|
221
328
|
# @note When making an API call, you may pass AdvertiseByoipCidrRequest
|
222
329
|
# data as a hash:
|
223
330
|
#
|
@@ -347,56 +454,60 @@ module Aws::GlobalAccelerator
|
|
347
454
|
end
|
348
455
|
|
349
456
|
# Information about an IP address range that is provisioned for use with
|
350
|
-
# your
|
457
|
+
# your Amazon Web Services resources through bring your own IP address
|
458
|
+
# (BYOIP).
|
351
459
|
#
|
352
460
|
# The following describes each BYOIP `State` that your IP address range
|
353
461
|
# can be in.
|
354
462
|
#
|
355
463
|
# * **PENDING\_PROVISIONING** — You’ve submitted a request to provision
|
356
|
-
# an IP address range but it is not yet provisioned with
|
464
|
+
# an IP address range but it is not yet provisioned with Global
|
357
465
|
# Accelerator.
|
358
466
|
#
|
359
|
-
# * **READY** — The address range is provisioned with
|
360
|
-
#
|
467
|
+
# * **READY** — The address range is provisioned with Global Accelerator
|
468
|
+
# and can be advertised.
|
361
469
|
#
|
362
|
-
# * **PENDING\_ADVERTISING** — You’ve submitted a request for
|
470
|
+
# * **PENDING\_ADVERTISING** — You’ve submitted a request for Global
|
363
471
|
# Accelerator to advertise an address range but it is not yet being
|
364
472
|
# advertised.
|
365
473
|
#
|
366
|
-
# * **ADVERTISING** — The address range is being advertised by
|
367
|
-
#
|
474
|
+
# * **ADVERTISING** — The address range is being advertised by Global
|
475
|
+
# Accelerator.
|
368
476
|
#
|
369
477
|
# * **PENDING\_WITHDRAWING** — You’ve submitted a request to withdraw an
|
370
478
|
# address range from being advertised but it is still being advertised
|
371
|
-
# by
|
479
|
+
# by Global Accelerator.
|
372
480
|
#
|
373
481
|
# * **PENDING\_DEPROVISIONING** — You’ve submitted a request to
|
374
|
-
# deprovision an address range from
|
375
|
-
#
|
482
|
+
# deprovision an address range from Global Accelerator but it is still
|
483
|
+
# provisioned.
|
376
484
|
#
|
377
|
-
# * **DEPROVISIONED** — The address range is deprovisioned from
|
378
|
-
#
|
485
|
+
# * **DEPROVISIONED** — The address range is deprovisioned from Global
|
486
|
+
# Accelerator.
|
379
487
|
#
|
380
488
|
# * <b>FAILED\_PROVISION </b> — The request to provision the address
|
381
|
-
# range from
|
382
|
-
#
|
383
|
-
#
|
489
|
+
# range from Global Accelerator was not successful. Please make sure
|
490
|
+
# that you provide all of the correct information, and try again. If
|
491
|
+
# the request fails a second time, contact Amazon Web Services
|
492
|
+
# support.
|
384
493
|
#
|
385
|
-
# * **FAILED\_ADVERTISING** — The request for
|
494
|
+
# * **FAILED\_ADVERTISING** — The request for Global Accelerator to
|
386
495
|
# advertise the address range was not successful. Please make sure
|
387
496
|
# that you provide all of the correct information, and try again. If
|
388
|
-
# the request fails a second time, contact
|
497
|
+
# the request fails a second time, contact Amazon Web Services
|
498
|
+
# support.
|
389
499
|
#
|
390
500
|
# * **FAILED\_WITHDRAW** — The request to withdraw the address range
|
391
|
-
# from advertising by
|
392
|
-
#
|
393
|
-
#
|
394
|
-
# support.
|
501
|
+
# from advertising by Global Accelerator was not successful. Please
|
502
|
+
# make sure that you provide all of the correct information, and try
|
503
|
+
# again. If the request fails a second time, contact Amazon Web
|
504
|
+
# Services support.
|
395
505
|
#
|
396
506
|
# * <b>FAILED\_DEPROVISION </b> — The request to deprovision the address
|
397
|
-
# range from
|
398
|
-
#
|
399
|
-
#
|
507
|
+
# range from Global Accelerator was not successful. Please make sure
|
508
|
+
# that you provide all of the correct information, and try again. If
|
509
|
+
# the request fails a second time, contact Amazon Web Services
|
510
|
+
# support.
|
400
511
|
#
|
401
512
|
# @!attribute [rw] cidr
|
402
513
|
# The address range, in CIDR notation.
|
@@ -408,7 +519,7 @@ module Aws::GlobalAccelerator
|
|
408
519
|
#
|
409
520
|
# @!attribute [rw] events
|
410
521
|
# A history of status changes for an IP address range that you bring
|
411
|
-
# to
|
522
|
+
# to Global Accelerator through bring your own IP address (BYOIP).
|
412
523
|
# @return [Array<Types::ByoipCidrEvent>]
|
413
524
|
#
|
414
525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/ByoipCidr AWS API Documentation
|
@@ -422,18 +533,18 @@ module Aws::GlobalAccelerator
|
|
422
533
|
end
|
423
534
|
|
424
535
|
# A complex type that contains a `Message` and a `Timestamp` value for
|
425
|
-
# changes that you make in the status an IP address range that you
|
426
|
-
# to
|
536
|
+
# changes that you make in the status of an IP address range that you
|
537
|
+
# bring to Global Accelerator through bring your own IP address (BYOIP).
|
427
538
|
#
|
428
539
|
# @!attribute [rw] message
|
429
540
|
# A string that contains an `Event` message describing changes that
|
430
|
-
# you make in the status of an IP address range that you bring to
|
541
|
+
# you make in the status of an IP address range that you bring to
|
431
542
|
# Global Accelerator through bring your own IP address (BYOIP).
|
432
543
|
# @return [String]
|
433
544
|
#
|
434
545
|
# @!attribute [rw] timestamp
|
435
|
-
# A timestamp when you make a status change for an IP address
|
436
|
-
# that you bring to
|
546
|
+
# A timestamp for when you make a status change for an IP address
|
547
|
+
# range that you bring to Global Accelerator through bring your own IP
|
437
548
|
# address (BYOIP).
|
438
549
|
# @return [Time]
|
439
550
|
#
|
@@ -460,10 +571,11 @@ module Aws::GlobalAccelerator
|
|
460
571
|
end
|
461
572
|
|
462
573
|
# Provides authorization for Amazon to bring a specific IP address range
|
463
|
-
# to a specific
|
574
|
+
# to a specific Amazon Web Services account using bring your own IP
|
575
|
+
# addresses (BYOIP).
|
464
576
|
#
|
465
|
-
# For more information, see [Bring
|
466
|
-
# the *
|
577
|
+
# For more information, see [Bring your own IP addresses (BYOIP)][1] in
|
578
|
+
# the *Global Accelerator Developer Guide*.
|
467
579
|
#
|
468
580
|
#
|
469
581
|
#
|
@@ -512,7 +624,7 @@ module Aws::GlobalAccelerator
|
|
512
624
|
#
|
513
625
|
# {
|
514
626
|
# name: "GenericString", # required
|
515
|
-
# ip_address_type: "IPV4", # accepts IPV4
|
627
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
|
516
628
|
# ip_addresses: ["IpAddress"],
|
517
629
|
# enabled: false,
|
518
630
|
# idempotency_token: "IdempotencyToken", # required
|
@@ -525,33 +637,41 @@ module Aws::GlobalAccelerator
|
|
525
637
|
# }
|
526
638
|
#
|
527
639
|
# @!attribute [rw] name
|
528
|
-
# The name of
|
529
|
-
# characters, must contain only alphanumeric characters
|
530
|
-
# (-), and must not begin or end with a hyphen.
|
640
|
+
# The name of the accelerator. The name can have a maximum of 64
|
641
|
+
# characters, must contain only alphanumeric characters, periods (.),
|
642
|
+
# or hyphens (-), and must not begin or end with a hyphen or period.
|
531
643
|
# @return [String]
|
532
644
|
#
|
533
645
|
# @!attribute [rw] ip_address_type
|
534
|
-
# The
|
646
|
+
# The IP address type that an accelerator supports. For a standard
|
647
|
+
# accelerator, the value can be IPV4 or DUAL\_STACK.
|
535
648
|
# @return [String]
|
536
649
|
#
|
537
650
|
# @!attribute [rw] ip_addresses
|
538
651
|
# Optionally, if you've added your own IP address pool to Global
|
539
|
-
# Accelerator (BYOIP), you can choose
|
540
|
-
# to use for the accelerator's static
|
541
|
-
# accelerator.
|
542
|
-
#
|
543
|
-
#
|
544
|
-
#
|
545
|
-
#
|
546
|
-
#
|
547
|
-
# address
|
652
|
+
# Accelerator (BYOIP), you can choose an IPv4 address from your own
|
653
|
+
# pool to use for the accelerator's static IPv4 address when you
|
654
|
+
# create an accelerator.
|
655
|
+
#
|
656
|
+
# After you bring an address range to Amazon Web Services, it appears
|
657
|
+
# in your account as an address pool. When you create an accelerator,
|
658
|
+
# you can assign one IPv4 address from your range to it. Global
|
659
|
+
# Accelerator assigns you a second static IPv4 address from an Amazon
|
660
|
+
# IP address range. If you bring two IPv4 address ranges to Amazon Web
|
661
|
+
# Services, you can assign one IPv4 address from each range to your
|
662
|
+
# accelerator. This restriction is because Global Accelerator assigns
|
663
|
+
# each address range to a different network zone, for high
|
664
|
+
# availability.
|
665
|
+
#
|
666
|
+
# You can specify one or two addresses, separated by a space. Do not
|
667
|
+
# include the /32 suffix.
|
548
668
|
#
|
549
669
|
# Note that you can't update IP addresses for an existing
|
550
670
|
# accelerator. To change them, you must create a new accelerator with
|
551
671
|
# the new addresses.
|
552
672
|
#
|
553
|
-
# For more information, see [Bring
|
554
|
-
# in the *
|
673
|
+
# For more information, see [Bring your own IP addresses (BYOIP)][1]
|
674
|
+
# in the *Global Accelerator Developer Guide*.
|
555
675
|
#
|
556
676
|
#
|
557
677
|
#
|
@@ -577,8 +697,8 @@ module Aws::GlobalAccelerator
|
|
577
697
|
# @!attribute [rw] tags
|
578
698
|
# Create tags for an accelerator.
|
579
699
|
#
|
580
|
-
# For more information, see [Tagging in
|
581
|
-
#
|
700
|
+
# For more information, see [Tagging in Global Accelerator][1] in the
|
701
|
+
# *Global Accelerator Developer Guide*.
|
582
702
|
#
|
583
703
|
#
|
584
704
|
#
|
@@ -616,7 +736,7 @@ module Aws::GlobalAccelerator
|
|
616
736
|
#
|
617
737
|
# {
|
618
738
|
# name: "GenericString", # required
|
619
|
-
# ip_address_type: "IPV4", # accepts IPV4
|
739
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
|
620
740
|
# ip_addresses: ["IpAddress"],
|
621
741
|
# enabled: false,
|
622
742
|
# idempotency_token: "IdempotencyToken", # required
|
@@ -635,27 +755,35 @@ module Aws::GlobalAccelerator
|
|
635
755
|
# @return [String]
|
636
756
|
#
|
637
757
|
# @!attribute [rw] ip_address_type
|
638
|
-
# The
|
758
|
+
# The IP address type that an accelerator supports. For a custom
|
759
|
+
# routing accelerator, the value must be IPV4.
|
639
760
|
# @return [String]
|
640
761
|
#
|
641
762
|
# @!attribute [rw] ip_addresses
|
642
763
|
# Optionally, if you've added your own IP address pool to Global
|
643
|
-
# Accelerator (BYOIP), you can choose
|
644
|
-
# to use for the accelerator's static
|
645
|
-
# accelerator.
|
646
|
-
#
|
647
|
-
#
|
648
|
-
#
|
649
|
-
#
|
650
|
-
#
|
651
|
-
# address
|
764
|
+
# Accelerator (BYOIP), you can choose an IPv4 address from your own
|
765
|
+
# pool to use for the accelerator's static IPv4 address when you
|
766
|
+
# create an accelerator.
|
767
|
+
#
|
768
|
+
# After you bring an address range to Amazon Web Services, it appears
|
769
|
+
# in your account as an address pool. When you create an accelerator,
|
770
|
+
# you can assign one IPv4 address from your range to it. Global
|
771
|
+
# Accelerator assigns you a second static IPv4 address from an Amazon
|
772
|
+
# IP address range. If you bring two IPv4 address ranges to Amazon Web
|
773
|
+
# Services, you can assign one IPv4 address from each range to your
|
774
|
+
# accelerator. This restriction is because Global Accelerator assigns
|
775
|
+
# each address range to a different network zone, for high
|
776
|
+
# availability.
|
777
|
+
#
|
778
|
+
# You can specify one or two addresses, separated by a space. Do not
|
779
|
+
# include the /32 suffix.
|
652
780
|
#
|
653
781
|
# Note that you can't update IP addresses for an existing
|
654
782
|
# accelerator. To change them, you must create a new accelerator with
|
655
783
|
# the new addresses.
|
656
784
|
#
|
657
785
|
# For more information, see [Bring your own IP addresses (BYOIP)][1]
|
658
|
-
# in the *
|
786
|
+
# in the *Global Accelerator Developer Guide*.
|
659
787
|
#
|
660
788
|
#
|
661
789
|
#
|
@@ -681,8 +809,8 @@ module Aws::GlobalAccelerator
|
|
681
809
|
# @!attribute [rw] tags
|
682
810
|
# Create tags for an accelerator.
|
683
811
|
#
|
684
|
-
# For more information, see [Tagging in
|
685
|
-
#
|
812
|
+
# For more information, see [Tagging in Global Accelerator][1] in the
|
813
|
+
# *Global Accelerator Developer Guide*.
|
686
814
|
#
|
687
815
|
#
|
688
816
|
#
|
@@ -736,8 +864,8 @@ module Aws::GlobalAccelerator
|
|
736
864
|
# @return [String]
|
737
865
|
#
|
738
866
|
# @!attribute [rw] endpoint_group_region
|
739
|
-
# The
|
740
|
-
# have only one endpoint group in a specific Region.
|
867
|
+
# The Amazon Web Services Region where the endpoint group is located.
|
868
|
+
# A listener can have only one endpoint group in a specific Region.
|
741
869
|
# @return [String]
|
742
870
|
#
|
743
871
|
# @!attribute [rw] destination_configurations
|
@@ -872,8 +1000,8 @@ module Aws::GlobalAccelerator
|
|
872
1000
|
# @return [String]
|
873
1001
|
#
|
874
1002
|
# @!attribute [rw] endpoint_group_region
|
875
|
-
# The
|
876
|
-
# have only one endpoint group in a specific Region.
|
1003
|
+
# The Amazon Web Services Region where the endpoint group is located.
|
1004
|
+
# A listener can have only one endpoint group in a specific Region.
|
877
1005
|
# @return [String]
|
878
1006
|
#
|
879
1007
|
# @!attribute [rw] endpoint_configurations
|
@@ -881,8 +1009,9 @@ module Aws::GlobalAccelerator
|
|
881
1009
|
# @return [Array<Types::EndpointConfiguration>]
|
882
1010
|
#
|
883
1011
|
# @!attribute [rw] traffic_dial_percentage
|
884
|
-
# The percentage of traffic to send to an
|
885
|
-
# traffic is distributed to other endpoint groups for this
|
1012
|
+
# The percentage of traffic to send to an Amazon Web Services Region.
|
1013
|
+
# Additional traffic is distributed to other endpoint groups for this
|
1014
|
+
# listener.
|
886
1015
|
#
|
887
1016
|
# Use this action to increase (dial up) or decrease (dial down)
|
888
1017
|
# traffic to a specific Region. The percentage is applied to the
|
@@ -893,7 +1022,7 @@ module Aws::GlobalAccelerator
|
|
893
1022
|
# @return [Float]
|
894
1023
|
#
|
895
1024
|
# @!attribute [rw] health_check_port
|
896
|
-
# The port that
|
1025
|
+
# The port that Global Accelerator uses to check the health of
|
897
1026
|
# endpoints that are part of this endpoint group. The default port is
|
898
1027
|
# the listener port that this endpoint group is associated with. If
|
899
1028
|
# listener port is a list of ports, Global Accelerator uses the first
|
@@ -901,7 +1030,7 @@ module Aws::GlobalAccelerator
|
|
901
1030
|
# @return [Integer]
|
902
1031
|
#
|
903
1032
|
# @!attribute [rw] health_check_protocol
|
904
|
-
# The protocol that
|
1033
|
+
# The protocol that Global Accelerator uses to check the health of
|
905
1034
|
# endpoints that are part of this endpoint group. The default value is
|
906
1035
|
# TCP.
|
907
1036
|
# @return [String]
|
@@ -938,8 +1067,8 @@ module Aws::GlobalAccelerator
|
|
938
1067
|
# 80 and 443, but your accelerator routes that traffic to ports 1080
|
939
1068
|
# and 1443, respectively, on the endpoints.
|
940
1069
|
#
|
941
|
-
# For more information, see [
|
942
|
-
# Accelerator Developer Guide*.
|
1070
|
+
# For more information, see [ Overriding listener ports][1] in the
|
1071
|
+
# *Global Accelerator Developer Guide*.
|
943
1072
|
#
|
944
1073
|
#
|
945
1074
|
#
|
@@ -1012,7 +1141,7 @@ module Aws::GlobalAccelerator
|
|
1012
1141
|
# control over whether to always route each client to the same
|
1013
1142
|
# specific endpoint.
|
1014
1143
|
#
|
1015
|
-
#
|
1144
|
+
# Global Accelerator uses a consistent-flow hashing algorithm to
|
1016
1145
|
# choose the optimal endpoint for a connection. If client affinity is
|
1017
1146
|
# `NONE`, Global Accelerator uses the "five-tuple" (5-tuple)
|
1018
1147
|
# properties—source IP address, source port, destination IP address,
|
@@ -1075,7 +1204,8 @@ module Aws::GlobalAccelerator
|
|
1075
1204
|
# @return [String]
|
1076
1205
|
#
|
1077
1206
|
# @!attribute [rw] ip_address_type
|
1078
|
-
# The
|
1207
|
+
# The IP address type that an accelerator supports. For a custom
|
1208
|
+
# routing accelerator, the value must be IPV4.
|
1079
1209
|
# @return [String]
|
1080
1210
|
#
|
1081
1211
|
# @!attribute [rw] enabled
|
@@ -1093,20 +1223,25 @@ module Aws::GlobalAccelerator
|
|
1093
1223
|
#
|
1094
1224
|
# @!attribute [rw] dns_name
|
1095
1225
|
# The Domain Name System (DNS) name that Global Accelerator creates
|
1096
|
-
# that points to
|
1226
|
+
# that points to an accelerator's static IPv4 addresses.
|
1097
1227
|
#
|
1098
1228
|
# The naming convention for the DNS name is the following: A lowercase
|
1099
1229
|
# letter a, followed by a 16-bit random hex string, followed by
|
1100
1230
|
# .awsglobalaccelerator.com. For example:
|
1101
1231
|
# a1234567890abcdef.awsglobalaccelerator.com.
|
1102
1232
|
#
|
1233
|
+
# If you have a dual-stack accelerator, you also have a second DNS
|
1234
|
+
# name, `DualStackDnsName`, that points to both the A record and the
|
1235
|
+
# AAAA record for all four static addresses for the accelerator: two
|
1236
|
+
# IPv4 addresses and two IPv6 addresses.
|
1237
|
+
#
|
1103
1238
|
# For more information about the default DNS name, see [ Support for
|
1104
|
-
# DNS
|
1105
|
-
#
|
1239
|
+
# DNS addressing in Global Accelerator][1] in the *Global Accelerator
|
1240
|
+
# Developer Guide*.
|
1106
1241
|
#
|
1107
1242
|
#
|
1108
1243
|
#
|
1109
|
-
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/
|
1244
|
+
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/dns-addressing-custom-domains.dns-addressing.html
|
1110
1245
|
# @return [String]
|
1111
1246
|
#
|
1112
1247
|
# @!attribute [rw] status
|
@@ -1144,8 +1279,8 @@ module Aws::GlobalAccelerator
|
|
1144
1279
|
# If the value is true, `FlowLogsS3Bucket` and `FlowLogsS3Prefix` must
|
1145
1280
|
# be specified.
|
1146
1281
|
#
|
1147
|
-
# For more information, see [Flow
|
1148
|
-
#
|
1282
|
+
# For more information, see [Flow logs][1] in the *Global Accelerator
|
1283
|
+
# Developer Guide*.
|
1149
1284
|
#
|
1150
1285
|
#
|
1151
1286
|
#
|
@@ -1155,8 +1290,8 @@ module Aws::GlobalAccelerator
|
|
1155
1290
|
# @!attribute [rw] flow_logs_s3_bucket
|
1156
1291
|
# The name of the Amazon S3 bucket for the flow logs. Attribute is
|
1157
1292
|
# required if `FlowLogsEnabled` is `true`. The bucket must exist and
|
1158
|
-
# have a bucket policy that grants
|
1159
|
-
#
|
1293
|
+
# have a bucket policy that grants Global Accelerator permission to
|
1294
|
+
# write to the bucket.
|
1160
1295
|
# @return [String]
|
1161
1296
|
#
|
1162
1297
|
# @!attribute [rw] flow_logs_s3_prefix
|
@@ -1289,15 +1424,15 @@ module Aws::GlobalAccelerator
|
|
1289
1424
|
end
|
1290
1425
|
|
1291
1426
|
# A complex type for the endpoint group for a custom routing
|
1292
|
-
# accelerator. An
|
1293
|
-
# specific listener.
|
1427
|
+
# accelerator. An Amazon Web Services Region can have only one endpoint
|
1428
|
+
# group for a specific listener.
|
1294
1429
|
#
|
1295
1430
|
# @!attribute [rw] endpoint_group_arn
|
1296
1431
|
# The Amazon Resource Name (ARN) of the endpoint group.
|
1297
1432
|
# @return [String]
|
1298
1433
|
#
|
1299
1434
|
# @!attribute [rw] endpoint_group_region
|
1300
|
-
# The
|
1435
|
+
# The Amazon Web Services Region where the endpoint group is located.
|
1301
1436
|
# @return [String]
|
1302
1437
|
#
|
1303
1438
|
# @!attribute [rw] destination_descriptions
|
@@ -1831,7 +1966,7 @@ module Aws::GlobalAccelerator
|
|
1831
1966
|
# @return [String]
|
1832
1967
|
#
|
1833
1968
|
# @!attribute [rw] endpoint_group_region
|
1834
|
-
# The
|
1969
|
+
# The Amazon Web Services Region for the endpoint group.
|
1835
1970
|
# @return [String]
|
1836
1971
|
#
|
1837
1972
|
# @!attribute [rw] destination_socket_address
|
@@ -1840,7 +1975,8 @@ module Aws::GlobalAccelerator
|
|
1840
1975
|
# @return [Types::SocketAddress]
|
1841
1976
|
#
|
1842
1977
|
# @!attribute [rw] ip_address_type
|
1843
|
-
# The IP address type
|
1978
|
+
# The IP address type that an accelerator supports. For a custom
|
1979
|
+
# routing accelerator, the value must be IPV4.
|
1844
1980
|
# @return [String]
|
1845
1981
|
#
|
1846
1982
|
# @!attribute [rw] destination_traffic_state
|
@@ -1903,14 +2039,13 @@ module Aws::GlobalAccelerator
|
|
1903
2039
|
#
|
1904
2040
|
# @!attribute [rw] weight
|
1905
2041
|
# The weight associated with the endpoint. When you add weights to
|
1906
|
-
# endpoints, you configure
|
1907
|
-
#
|
1908
|
-
#
|
1909
|
-
#
|
1910
|
-
#
|
1911
|
-
#
|
1912
|
-
#
|
1913
|
-
# Guide*.
|
2042
|
+
# endpoints, you configure Global Accelerator to route traffic based
|
2043
|
+
# on proportions that you specify. For example, you might specify
|
2044
|
+
# endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20
|
2045
|
+
# of your traffic, on average, is routed to the first endpoint, 5/20
|
2046
|
+
# is routed both to the second and third endpoints, and 6/20 is routed
|
2047
|
+
# to the last endpoint. For more information, see [Endpoint
|
2048
|
+
# weights][1] in the *Global Accelerator Developer Guide*.
|
1914
2049
|
#
|
1915
2050
|
#
|
1916
2051
|
#
|
@@ -1919,17 +2054,19 @@ module Aws::GlobalAccelerator
|
|
1919
2054
|
#
|
1920
2055
|
# @!attribute [rw] client_ip_preservation_enabled
|
1921
2056
|
# Indicates whether client IP address preservation is enabled for an
|
1922
|
-
#
|
1923
|
-
#
|
2057
|
+
# endpoint. The value is true or false. The default value is true for
|
2058
|
+
# new accelerators.
|
1924
2059
|
#
|
1925
2060
|
# If the value is set to true, the client's IP address is preserved
|
1926
2061
|
# in the `X-Forwarded-For` request header as traffic travels to
|
1927
|
-
# applications on the
|
1928
|
-
# the accelerator.
|
2062
|
+
# applications on the endpoint fronted by the accelerator.
|
1929
2063
|
#
|
1930
|
-
#
|
1931
|
-
#
|
1932
|
-
#
|
2064
|
+
# Client IP address preservation is supported, in specific Amazon Web
|
2065
|
+
# Services Regions, for endpoints that are Application Load Balancers
|
2066
|
+
# and Amazon EC2 instances.
|
2067
|
+
#
|
2068
|
+
# For more information, see [ Preserve client IP addresses in Global
|
2069
|
+
# Accelerator][1] in the *Global Accelerator Developer Guide*.
|
1933
2070
|
#
|
1934
2071
|
#
|
1935
2072
|
#
|
@@ -1962,14 +2099,13 @@ module Aws::GlobalAccelerator
|
|
1962
2099
|
#
|
1963
2100
|
# @!attribute [rw] weight
|
1964
2101
|
# The weight associated with the endpoint. When you add weights to
|
1965
|
-
# endpoints, you configure
|
1966
|
-
#
|
1967
|
-
#
|
1968
|
-
#
|
1969
|
-
#
|
1970
|
-
#
|
1971
|
-
#
|
1972
|
-
# Guide*.
|
2102
|
+
# endpoints, you configure Global Accelerator to route traffic based
|
2103
|
+
# on proportions that you specify. For example, you might specify
|
2104
|
+
# endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20
|
2105
|
+
# of your traffic, on average, is routed to the first endpoint, 5/20
|
2106
|
+
# is routed both to the second and third endpoints, and 6/20 is routed
|
2107
|
+
# to the last endpoint. For more information, see [Endpoint
|
2108
|
+
# weights][1] in the *Global Accelerator Developer Guide*.
|
1973
2109
|
#
|
1974
2110
|
#
|
1975
2111
|
#
|
@@ -1986,21 +2122,23 @@ module Aws::GlobalAccelerator
|
|
1986
2122
|
#
|
1987
2123
|
# @!attribute [rw] client_ip_preservation_enabled
|
1988
2124
|
# Indicates whether client IP address preservation is enabled for an
|
1989
|
-
#
|
1990
|
-
#
|
2125
|
+
# endpoint. The value is true or false. The default value is true for
|
2126
|
+
# new accelerators.
|
1991
2127
|
#
|
1992
2128
|
# If the value is set to true, the client's IP address is preserved
|
1993
2129
|
# in the `X-Forwarded-For` request header as traffic travels to
|
1994
|
-
# applications on the
|
1995
|
-
# the accelerator.
|
2130
|
+
# applications on the endpoint fronted by the accelerator.
|
1996
2131
|
#
|
1997
|
-
#
|
1998
|
-
#
|
1999
|
-
#
|
2132
|
+
# Client IP address preservation is supported, in specific Amazon Web
|
2133
|
+
# Services Regions, for endpoints that are Application Load Balancers
|
2134
|
+
# and Amazon EC2 instances.
|
2000
2135
|
#
|
2136
|
+
# For more information, see [ Preserve client IP addresses in Global
|
2137
|
+
# Accelerator][1] in the *Global Accelerator Developer Guide*.
|
2001
2138
|
#
|
2002
2139
|
#
|
2003
|
-
#
|
2140
|
+
#
|
2141
|
+
# [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/preserve-client-ip-address.html
|
2004
2142
|
# @return [Boolean]
|
2005
2143
|
#
|
2006
2144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/EndpointDescription AWS API Documentation
|
@@ -2015,15 +2153,15 @@ module Aws::GlobalAccelerator
|
|
2015
2153
|
include Aws::Structure
|
2016
2154
|
end
|
2017
2155
|
|
2018
|
-
# A complex type for the endpoint group. An
|
2019
|
-
# endpoint group for a specific listener.
|
2156
|
+
# A complex type for the endpoint group. An Amazon Web Services Region
|
2157
|
+
# can have only one endpoint group for a specific listener.
|
2020
2158
|
#
|
2021
2159
|
# @!attribute [rw] endpoint_group_arn
|
2022
2160
|
# The Amazon Resource Name (ARN) of the endpoint group.
|
2023
2161
|
# @return [String]
|
2024
2162
|
#
|
2025
2163
|
# @!attribute [rw] endpoint_group_region
|
2026
|
-
# The
|
2164
|
+
# The Amazon Web Services Region where the endpoint group is located.
|
2027
2165
|
# @return [String]
|
2028
2166
|
#
|
2029
2167
|
# @!attribute [rw] endpoint_descriptions
|
@@ -2031,8 +2169,9 @@ module Aws::GlobalAccelerator
|
|
2031
2169
|
# @return [Array<Types::EndpointDescription>]
|
2032
2170
|
#
|
2033
2171
|
# @!attribute [rw] traffic_dial_percentage
|
2034
|
-
# The percentage of traffic to send to an
|
2035
|
-
# traffic is distributed to other endpoint groups for this
|
2172
|
+
# The percentage of traffic to send to an Amazon Web Services Region.
|
2173
|
+
# Additional traffic is distributed to other endpoint groups for this
|
2174
|
+
# listener.
|
2036
2175
|
#
|
2037
2176
|
# Use this action to increase (dial up) or decrease (dial down)
|
2038
2177
|
# traffic to a specific Region. The percentage is applied to the
|
@@ -2076,7 +2215,7 @@ module Aws::GlobalAccelerator
|
|
2076
2215
|
#
|
2077
2216
|
# @!attribute [rw] port_overrides
|
2078
2217
|
# Allows you to override the destination ports used to route traffic
|
2079
|
-
# to an endpoint. Using a port override lets you
|
2218
|
+
# to an endpoint. Using a port override lets you map a list of
|
2080
2219
|
# external destination ports (that your users send traffic to) to a
|
2081
2220
|
# list of internal destination ports that you want an application
|
2082
2221
|
# endpoint to receive traffic on.
|
@@ -2125,6 +2264,46 @@ module Aws::GlobalAccelerator
|
|
2125
2264
|
include Aws::Structure
|
2126
2265
|
end
|
2127
2266
|
|
2267
|
+
# A complex type for an endpoint. Specifies information about the
|
2268
|
+
# endpoint to remove from the endpoint group.
|
2269
|
+
#
|
2270
|
+
# @note When making an API call, you may pass EndpointIdentifier
|
2271
|
+
# data as a hash:
|
2272
|
+
#
|
2273
|
+
# {
|
2274
|
+
# endpoint_id: "GenericString", # required
|
2275
|
+
# client_ip_preservation_enabled: false,
|
2276
|
+
# }
|
2277
|
+
#
|
2278
|
+
# @!attribute [rw] endpoint_id
|
2279
|
+
# An ID for the endpoint. If the endpoint is a Network Load Balancer
|
2280
|
+
# or Application Load Balancer, this is the Amazon Resource Name (ARN)
|
2281
|
+
# of the resource. If the endpoint is an Elastic IP address, this is
|
2282
|
+
# the Elastic IP address allocation ID. For Amazon EC2 instances, this
|
2283
|
+
# is the EC2 instance ID.
|
2284
|
+
#
|
2285
|
+
# An Application Load Balancer can be either internal or
|
2286
|
+
# internet-facing.
|
2287
|
+
# @return [String]
|
2288
|
+
#
|
2289
|
+
# @!attribute [rw] client_ip_preservation_enabled
|
2290
|
+
# Indicates whether client IP address preservation is enabled for an
|
2291
|
+
# endpoint. The value is true or false.
|
2292
|
+
#
|
2293
|
+
# If the value is set to true, the client's IP address is preserved
|
2294
|
+
# in the `X-Forwarded-For` request header as traffic travels to
|
2295
|
+
# applications on the endpoint fronted by the accelerator.
|
2296
|
+
# @return [Boolean]
|
2297
|
+
#
|
2298
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/EndpointIdentifier AWS API Documentation
|
2299
|
+
#
|
2300
|
+
class EndpointIdentifier < Struct.new(
|
2301
|
+
:endpoint_id,
|
2302
|
+
:client_ip_preservation_enabled)
|
2303
|
+
SENSITIVE = []
|
2304
|
+
include Aws::Structure
|
2305
|
+
end
|
2306
|
+
|
2128
2307
|
# The endpoint that you specified doesn't exist.
|
2129
2308
|
#
|
2130
2309
|
# @!attribute [rw] message
|
@@ -2152,7 +2331,7 @@ module Aws::GlobalAccelerator
|
|
2152
2331
|
include Aws::Structure
|
2153
2332
|
end
|
2154
2333
|
|
2155
|
-
# There was an internal error for
|
2334
|
+
# There was an internal error for Global Accelerator.
|
2156
2335
|
#
|
2157
2336
|
# @!attribute [rw] message
|
2158
2337
|
# @return [String]
|
@@ -2208,7 +2387,7 @@ module Aws::GlobalAccelerator
|
|
2208
2387
|
# A complex type for the set of IP addresses for an accelerator.
|
2209
2388
|
#
|
2210
2389
|
# @!attribute [rw] ip_family
|
2211
|
-
#
|
2390
|
+
# IpFamily is deprecated and has been replaced by IpAddressFamily.
|
2212
2391
|
# @return [String]
|
2213
2392
|
#
|
2214
2393
|
# @!attribute [rw] ip_addresses
|
@@ -2216,16 +2395,21 @@ module Aws::GlobalAccelerator
|
|
2216
2395
|
# can have a maximum of two IP addresses.
|
2217
2396
|
# @return [Array<String>]
|
2218
2397
|
#
|
2398
|
+
# @!attribute [rw] ip_address_family
|
2399
|
+
# The types of IP addresses included in this IP set.
|
2400
|
+
# @return [String]
|
2401
|
+
#
|
2219
2402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/IpSet AWS API Documentation
|
2220
2403
|
#
|
2221
2404
|
class IpSet < Struct.new(
|
2222
2405
|
:ip_family,
|
2223
|
-
:ip_addresses
|
2406
|
+
:ip_addresses,
|
2407
|
+
:ip_address_family)
|
2224
2408
|
SENSITIVE = []
|
2225
2409
|
include Aws::Structure
|
2226
2410
|
end
|
2227
2411
|
|
2228
|
-
# Processing your request would cause you to exceed an
|
2412
|
+
# Processing your request would cause you to exceed an Global
|
2229
2413
|
# Accelerator limit.
|
2230
2414
|
#
|
2231
2415
|
# @!attribute [rw] message
|
@@ -2753,7 +2937,7 @@ module Aws::GlobalAccelerator
|
|
2753
2937
|
# control over whether to always route each client to the same
|
2754
2938
|
# specific endpoint.
|
2755
2939
|
#
|
2756
|
-
#
|
2940
|
+
# Global Accelerator uses a consistent-flow hashing algorithm to
|
2757
2941
|
# choose the optimal endpoint for a connection. If client affinity is
|
2758
2942
|
# `NONE`, Global Accelerator uses the "five-tuple" (5-tuple)
|
2759
2943
|
# properties—source IP address, source port, destination IP address,
|
@@ -2798,7 +2982,7 @@ module Aws::GlobalAccelerator
|
|
2798
2982
|
|
2799
2983
|
# Returns the ports and associated IP addresses and ports of Amazon EC2
|
2800
2984
|
# instances in your virtual private cloud (VPC) subnets. Custom routing
|
2801
|
-
# is a port mapping protocol in
|
2985
|
+
# is a port mapping protocol in Global Accelerator that statically
|
2802
2986
|
# associates port ranges with VPC subnets, which allows Global
|
2803
2987
|
# Accelerator to route to specific instances and ports within one or
|
2804
2988
|
# more subnets.
|
@@ -2849,8 +3033,8 @@ module Aws::GlobalAccelerator
|
|
2849
3033
|
# 443, but your accelerator routes that traffic to ports 1080 and 1443,
|
2850
3034
|
# respectively, on the endpoints.
|
2851
3035
|
#
|
2852
|
-
# For more information, see [
|
2853
|
-
# Accelerator Developer Guide*.
|
3036
|
+
# For more information, see [ Overriding listener ports][1] in the
|
3037
|
+
# *Global Accelerator Developer Guide*.
|
2854
3038
|
#
|
2855
3039
|
#
|
2856
3040
|
#
|
@@ -2983,6 +3167,36 @@ module Aws::GlobalAccelerator
|
|
2983
3167
|
include Aws::Structure
|
2984
3168
|
end
|
2985
3169
|
|
3170
|
+
# @note When making an API call, you may pass RemoveEndpointsRequest
|
3171
|
+
# data as a hash:
|
3172
|
+
#
|
3173
|
+
# {
|
3174
|
+
# endpoint_identifiers: [ # required
|
3175
|
+
# {
|
3176
|
+
# endpoint_id: "GenericString", # required
|
3177
|
+
# client_ip_preservation_enabled: false,
|
3178
|
+
# },
|
3179
|
+
# ],
|
3180
|
+
# endpoint_group_arn: "GenericString", # required
|
3181
|
+
# }
|
3182
|
+
#
|
3183
|
+
# @!attribute [rw] endpoint_identifiers
|
3184
|
+
# The identifiers of the endpoints that you want to remove.
|
3185
|
+
# @return [Array<Types::EndpointIdentifier>]
|
3186
|
+
#
|
3187
|
+
# @!attribute [rw] endpoint_group_arn
|
3188
|
+
# The Amazon Resource Name (ARN) of the endpoint group.
|
3189
|
+
# @return [String]
|
3190
|
+
#
|
3191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/RemoveEndpointsRequest AWS API Documentation
|
3192
|
+
#
|
3193
|
+
class RemoveEndpointsRequest < Struct.new(
|
3194
|
+
:endpoint_identifiers,
|
3195
|
+
:endpoint_group_arn)
|
3196
|
+
SENSITIVE = []
|
3197
|
+
include Aws::Structure
|
3198
|
+
end
|
3199
|
+
|
2986
3200
|
# An IP address/port combination.
|
2987
3201
|
#
|
2988
3202
|
# @!attribute [rw] ip_address
|
@@ -3065,6 +3279,20 @@ module Aws::GlobalAccelerator
|
|
3065
3279
|
#
|
3066
3280
|
class TagResourceResponse < Aws::EmptyStructure; end
|
3067
3281
|
|
3282
|
+
# There's already a transaction in progress. Another transaction can't
|
3283
|
+
# be processed.
|
3284
|
+
#
|
3285
|
+
# @!attribute [rw] message
|
3286
|
+
# @return [String]
|
3287
|
+
#
|
3288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/TransactionInProgressException AWS API Documentation
|
3289
|
+
#
|
3290
|
+
class TransactionInProgressException < Struct.new(
|
3291
|
+
:message)
|
3292
|
+
SENSITIVE = []
|
3293
|
+
include Aws::Structure
|
3294
|
+
end
|
3295
|
+
|
3068
3296
|
# @note When making an API call, you may pass UntagResourceRequest
|
3069
3297
|
# data as a hash:
|
3070
3298
|
#
|
@@ -3116,8 +3344,8 @@ module Aws::GlobalAccelerator
|
|
3116
3344
|
# the value is true, `FlowLogsS3Bucket` and `FlowLogsS3Prefix` must be
|
3117
3345
|
# specified.
|
3118
3346
|
#
|
3119
|
-
# For more information, see [Flow Logs][1] in the *
|
3120
|
-
#
|
3347
|
+
# For more information, see [Flow Logs][1] in the *Global Accelerator
|
3348
|
+
# Developer Guide*.
|
3121
3349
|
#
|
3122
3350
|
#
|
3123
3351
|
#
|
@@ -3127,18 +3355,17 @@ module Aws::GlobalAccelerator
|
|
3127
3355
|
# @!attribute [rw] flow_logs_s3_bucket
|
3128
3356
|
# The name of the Amazon S3 bucket for the flow logs. Attribute is
|
3129
3357
|
# required if `FlowLogsEnabled` is `true`. The bucket must exist and
|
3130
|
-
# have a bucket policy that grants
|
3131
|
-
#
|
3358
|
+
# have a bucket policy that grants Global Accelerator permission to
|
3359
|
+
# write to the bucket.
|
3132
3360
|
# @return [String]
|
3133
3361
|
#
|
3134
3362
|
# @!attribute [rw] flow_logs_s3_prefix
|
3135
3363
|
# Update the prefix for the location in the Amazon S3 bucket for the
|
3136
3364
|
# flow logs. Attribute is required if `FlowLogsEnabled` is `true`.
|
3137
3365
|
#
|
3138
|
-
# If you
|
3139
|
-
#
|
3140
|
-
#
|
3141
|
-
# (//), like the following:
|
3366
|
+
# If you specify slash (/) for the S3 bucket prefix, the log file
|
3367
|
+
# bucket folder structure will include a double slash (//), like the
|
3368
|
+
# following:
|
3142
3369
|
#
|
3143
3370
|
# s3-bucket\_name//AWSLogs/aws\_account\_id
|
3144
3371
|
# @return [String]
|
@@ -3172,7 +3399,7 @@ module Aws::GlobalAccelerator
|
|
3172
3399
|
# {
|
3173
3400
|
# accelerator_arn: "GenericString", # required
|
3174
3401
|
# name: "GenericString",
|
3175
|
-
# ip_address_type: "IPV4", # accepts IPV4
|
3402
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
|
3176
3403
|
# enabled: false,
|
3177
3404
|
# }
|
3178
3405
|
#
|
@@ -3181,13 +3408,14 @@ module Aws::GlobalAccelerator
|
|
3181
3408
|
# @return [String]
|
3182
3409
|
#
|
3183
3410
|
# @!attribute [rw] name
|
3184
|
-
# The name of the accelerator. The name can have a maximum of
|
3185
|
-
# characters, must contain only alphanumeric characters
|
3186
|
-
# (-), and must not begin or end with a hyphen.
|
3411
|
+
# The name of the accelerator. The name can have a maximum of 64
|
3412
|
+
# characters, must contain only alphanumeric characters, periods (.),
|
3413
|
+
# or hyphens (-), and must not begin or end with a hyphen or period.
|
3187
3414
|
# @return [String]
|
3188
3415
|
#
|
3189
3416
|
# @!attribute [rw] ip_address_type
|
3190
|
-
# The IP address type
|
3417
|
+
# The IP address type that an accelerator supports. For a standard
|
3418
|
+
# accelerator, the value can be IPV4 or DUAL\_STACK.
|
3191
3419
|
# @return [String]
|
3192
3420
|
#
|
3193
3421
|
# @!attribute [rw] enabled
|
@@ -3241,8 +3469,8 @@ module Aws::GlobalAccelerator
|
|
3241
3469
|
# the value is true, `FlowLogsS3Bucket` and `FlowLogsS3Prefix` must be
|
3242
3470
|
# specified.
|
3243
3471
|
#
|
3244
|
-
# For more information, see [Flow
|
3245
|
-
#
|
3472
|
+
# For more information, see [Flow logs][1] in the *Global Accelerator
|
3473
|
+
# Developer Guide*.
|
3246
3474
|
#
|
3247
3475
|
#
|
3248
3476
|
#
|
@@ -3252,8 +3480,8 @@ module Aws::GlobalAccelerator
|
|
3252
3480
|
# @!attribute [rw] flow_logs_s3_bucket
|
3253
3481
|
# The name of the Amazon S3 bucket for the flow logs. Attribute is
|
3254
3482
|
# required if `FlowLogsEnabled` is `true`. The bucket must exist and
|
3255
|
-
# have a bucket policy that grants
|
3256
|
-
#
|
3483
|
+
# have a bucket policy that grants Global Accelerator permission to
|
3484
|
+
# write to the bucket.
|
3257
3485
|
# @return [String]
|
3258
3486
|
#
|
3259
3487
|
# @!attribute [rw] flow_logs_s3_prefix
|
@@ -3297,7 +3525,7 @@ module Aws::GlobalAccelerator
|
|
3297
3525
|
# {
|
3298
3526
|
# accelerator_arn: "GenericString", # required
|
3299
3527
|
# name: "GenericString",
|
3300
|
-
# ip_address_type: "IPV4", # accepts IPV4
|
3528
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
|
3301
3529
|
# enabled: false,
|
3302
3530
|
# }
|
3303
3531
|
#
|
@@ -3306,13 +3534,14 @@ module Aws::GlobalAccelerator
|
|
3306
3534
|
# @return [String]
|
3307
3535
|
#
|
3308
3536
|
# @!attribute [rw] name
|
3309
|
-
# The name of the accelerator. The name can have a maximum of
|
3310
|
-
# characters, must contain only alphanumeric characters
|
3311
|
-
# (-), and must not begin or end with a hyphen.
|
3537
|
+
# The name of the accelerator. The name can have a maximum of 64
|
3538
|
+
# characters, must contain only alphanumeric characters, periods (.),
|
3539
|
+
# or hyphens (-), and must not begin or end with a hyphen or period.
|
3312
3540
|
# @return [String]
|
3313
3541
|
#
|
3314
3542
|
# @!attribute [rw] ip_address_type
|
3315
|
-
# The
|
3543
|
+
# The IP address type that an accelerator supports. For a custom
|
3544
|
+
# routing accelerator, the value must be IPV4.
|
3316
3545
|
# @return [String]
|
3317
3546
|
#
|
3318
3547
|
# @!attribute [rw] enabled
|
@@ -3434,8 +3663,9 @@ module Aws::GlobalAccelerator
|
|
3434
3663
|
# @return [Array<Types::EndpointConfiguration>]
|
3435
3664
|
#
|
3436
3665
|
# @!attribute [rw] traffic_dial_percentage
|
3437
|
-
# The percentage of traffic to send to an
|
3438
|
-
# traffic is distributed to other endpoint groups for this
|
3666
|
+
# The percentage of traffic to send to an Amazon Web Services Region.
|
3667
|
+
# Additional traffic is distributed to other endpoint groups for this
|
3668
|
+
# listener.
|
3439
3669
|
#
|
3440
3670
|
# Use this action to increase (dial up) or decrease (dial down)
|
3441
3671
|
# traffic to a specific Region. The percentage is applied to the
|
@@ -3446,7 +3676,7 @@ module Aws::GlobalAccelerator
|
|
3446
3676
|
# @return [Float]
|
3447
3677
|
#
|
3448
3678
|
# @!attribute [rw] health_check_port
|
3449
|
-
# The port that
|
3679
|
+
# The port that Global Accelerator uses to check the health of
|
3450
3680
|
# endpoints that are part of this endpoint group. The default port is
|
3451
3681
|
# the listener port that this endpoint group is associated with. If
|
3452
3682
|
# the listener port is a list of ports, Global Accelerator uses the
|
@@ -3454,7 +3684,7 @@ module Aws::GlobalAccelerator
|
|
3454
3684
|
# @return [Integer]
|
3455
3685
|
#
|
3456
3686
|
# @!attribute [rw] health_check_protocol
|
3457
|
-
# The protocol that
|
3687
|
+
# The protocol that Global Accelerator uses to check the health of
|
3458
3688
|
# endpoints that are part of this endpoint group. The default value is
|
3459
3689
|
# TCP.
|
3460
3690
|
# @return [String]
|
@@ -3483,8 +3713,8 @@ module Aws::GlobalAccelerator
|
|
3483
3713
|
# 80 and 443, but your accelerator routes that traffic to ports 1080
|
3484
3714
|
# and 1443, respectively, on the endpoints.
|
3485
3715
|
#
|
3486
|
-
# For more information, see [
|
3487
|
-
# Accelerator Developer Guide*.
|
3716
|
+
# For more information, see [ Overriding listener ports][1] in the
|
3717
|
+
# *Global Accelerator Developer Guide*.
|
3488
3718
|
#
|
3489
3719
|
#
|
3490
3720
|
#
|
@@ -3555,7 +3785,7 @@ module Aws::GlobalAccelerator
|
|
3555
3785
|
# control over whether to always route each client to the same
|
3556
3786
|
# specific endpoint.
|
3557
3787
|
#
|
3558
|
-
#
|
3788
|
+
# Global Accelerator uses a consistent-flow hashing algorithm to
|
3559
3789
|
# choose the optimal endpoint for a connection. If client affinity is
|
3560
3790
|
# `NONE`, Global Accelerator uses the "five-tuple" (5-tuple)
|
3561
3791
|
# properties—source IP address, source port, destination IP address,
|