aws-sdk-globalaccelerator 1.39.0 → 1.40.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.
@@ -25,7 +25,8 @@ module Aws::GlobalAccelerator
25
25
  # @return [String]
26
26
  #
27
27
  # @!attribute [rw] ip_address_type
28
- # The value for the address type must be IPv4.
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 your accelerator's static IP addresses.
47
+ # that points to an accelerator's static IPv4 addresses.
47
48
  #
48
- # The naming convention for the DNS name is the following: A lowercase
49
- # letter a, followed by a 16-bit random hex string, followed by
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 Addressing in Global Accelerator][1] in the *AWS Global
55
- # Accelerator Developer Guide*.
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/about-accelerators.html#about-accelerators.dns-addressing
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 Logs][1] in the *AWS Global
98
- # Accelerator Developer Guide*.
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 AWS Global Accelerator permission
109
- # to write to the bucket.
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 don’t specify a prefix, the flow logs are stored in the root
117
- # of the bucket. If you specify slash (/) for the S3 bucket prefix,
118
- # the log file bucket folder structure will include a double slash
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
@@ -347,56 +406,60 @@ module Aws::GlobalAccelerator
347
406
  end
348
407
 
349
408
  # Information about an IP address range that is provisioned for use with
350
- # your AWS resources through bring your own IP address (BYOIP).
409
+ # your Amazon Web Services resources through bring your own IP address
410
+ # (BYOIP).
351
411
  #
352
412
  # The following describes each BYOIP `State` that your IP address range
353
413
  # can be in.
354
414
  #
355
415
  # * **PENDING\_PROVISIONING** — You’ve submitted a request to provision
356
- # an IP address range but it is not yet provisioned with AWS Global
416
+ # an IP address range but it is not yet provisioned with Global
357
417
  # Accelerator.
358
418
  #
359
- # * **READY** — The address range is provisioned with AWS Global
360
- # Accelerator and can be advertised.
419
+ # * **READY** — The address range is provisioned with Global Accelerator
420
+ # and can be advertised.
361
421
  #
362
- # * **PENDING\_ADVERTISING** — You’ve submitted a request for AWS Global
422
+ # * **PENDING\_ADVERTISING** — You’ve submitted a request for Global
363
423
  # Accelerator to advertise an address range but it is not yet being
364
424
  # advertised.
365
425
  #
366
- # * **ADVERTISING** — The address range is being advertised by AWS
367
- # Global Accelerator.
426
+ # * **ADVERTISING** — The address range is being advertised by Global
427
+ # Accelerator.
368
428
  #
369
429
  # * **PENDING\_WITHDRAWING** — You’ve submitted a request to withdraw an
370
430
  # address range from being advertised but it is still being advertised
371
- # by AWS Global Accelerator.
431
+ # by Global Accelerator.
372
432
  #
373
433
  # * **PENDING\_DEPROVISIONING** — You’ve submitted a request to
374
- # deprovision an address range from AWS Global Accelerator but it is
375
- # still provisioned.
434
+ # deprovision an address range from Global Accelerator but it is still
435
+ # provisioned.
376
436
  #
377
- # * **DEPROVISIONED** — The address range is deprovisioned from AWS
378
- # Global Accelerator.
437
+ # * **DEPROVISIONED** — The address range is deprovisioned from Global
438
+ # Accelerator.
379
439
  #
380
440
  # * <b>FAILED\_PROVISION </b> — The request to provision the address
381
- # range from AWS Global Accelerator was not successful. Please make
382
- # sure that you provide all of the correct information, and try again.
383
- # If the request fails a second time, contact AWS support.
441
+ # range from Global Accelerator was not successful. Please make sure
442
+ # that you provide all of the correct information, and try again. If
443
+ # the request fails a second time, contact Amazon Web Services
444
+ # support.
384
445
  #
385
- # * **FAILED\_ADVERTISING** — The request for AWS Global Accelerator to
446
+ # * **FAILED\_ADVERTISING** — The request for Global Accelerator to
386
447
  # advertise the address range was not successful. Please make sure
387
448
  # that you provide all of the correct information, and try again. If
388
- # the request fails a second time, contact AWS support.
449
+ # the request fails a second time, contact Amazon Web Services
450
+ # support.
389
451
  #
390
452
  # * **FAILED\_WITHDRAW** — The request to withdraw the address range
391
- # from advertising by AWS Global Accelerator was not successful.
392
- # Please make sure that you provide all of the correct information,
393
- # and try again. If the request fails a second time, contact AWS
394
- # support.
453
+ # from advertising by Global Accelerator was not successful. Please
454
+ # make sure that you provide all of the correct information, and try
455
+ # again. If the request fails a second time, contact Amazon Web
456
+ # Services support.
395
457
  #
396
458
  # * <b>FAILED\_DEPROVISION </b> — The request to deprovision the address
397
- # range from AWS Global Accelerator was not successful. Please make
398
- # sure that you provide all of the correct information, and try again.
399
- # If the request fails a second time, contact AWS support.
459
+ # range from Global Accelerator was not successful. Please make sure
460
+ # that you provide all of the correct information, and try again. If
461
+ # the request fails a second time, contact Amazon Web Services
462
+ # support.
400
463
  #
401
464
  # @!attribute [rw] cidr
402
465
  # The address range, in CIDR notation.
@@ -408,7 +471,7 @@ module Aws::GlobalAccelerator
408
471
  #
409
472
  # @!attribute [rw] events
410
473
  # A history of status changes for an IP address range that you bring
411
- # to AWS Global Accelerator through bring your own IP address (BYOIP).
474
+ # to Global Accelerator through bring your own IP address (BYOIP).
412
475
  # @return [Array<Types::ByoipCidrEvent>]
413
476
  #
414
477
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/ByoipCidr AWS API Documentation
@@ -422,18 +485,18 @@ module Aws::GlobalAccelerator
422
485
  end
423
486
 
424
487
  # 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 bring
426
- # to AWS Global Accelerator through bring your own IP address (BYOIP).
488
+ # changes that you make in the status of an IP address range that you
489
+ # bring to Global Accelerator through bring your own IP address (BYOIP).
427
490
  #
428
491
  # @!attribute [rw] message
429
492
  # 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 AWS
493
+ # you make in the status of an IP address range that you bring to
431
494
  # Global Accelerator through bring your own IP address (BYOIP).
432
495
  # @return [String]
433
496
  #
434
497
  # @!attribute [rw] timestamp
435
- # A timestamp when you make a status change for an IP address range
436
- # that you bring to AWS Global Accelerator through bring your own IP
498
+ # A timestamp for when you make a status change for an IP address
499
+ # range that you bring to Global Accelerator through bring your own IP
437
500
  # address (BYOIP).
438
501
  # @return [Time]
439
502
  #
@@ -460,10 +523,11 @@ module Aws::GlobalAccelerator
460
523
  end
461
524
 
462
525
  # Provides authorization for Amazon to bring a specific IP address range
463
- # to a specific AWS account using bring your own IP addresses (BYOIP).
526
+ # to a specific Amazon Web Services account using bring your own IP
527
+ # addresses (BYOIP).
464
528
  #
465
- # For more information, see [Bring Your Own IP Addresses (BYOIP)][1] in
466
- # the *AWS Global Accelerator Developer Guide*.
529
+ # For more information, see [Bring your own IP addresses (BYOIP)][1] in
530
+ # the *Global Accelerator Developer Guide*.
467
531
  #
468
532
  #
469
533
  #
@@ -512,7 +576,7 @@ module Aws::GlobalAccelerator
512
576
  #
513
577
  # {
514
578
  # name: "GenericString", # required
515
- # ip_address_type: "IPV4", # accepts IPV4
579
+ # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
516
580
  # ip_addresses: ["IpAddress"],
517
581
  # enabled: false,
518
582
  # idempotency_token: "IdempotencyToken", # required
@@ -525,33 +589,41 @@ module Aws::GlobalAccelerator
525
589
  # }
526
590
  #
527
591
  # @!attribute [rw] name
528
- # The name of an accelerator. The name can have a maximum of 32
529
- # characters, must contain only alphanumeric characters or hyphens
530
- # (-), and must not begin or end with a hyphen.
592
+ # The name of the accelerator. The name can have a maximum of 64
593
+ # characters, must contain only alphanumeric characters, periods (.),
594
+ # or hyphens (-), and must not begin or end with a hyphen or period.
531
595
  # @return [String]
532
596
  #
533
597
  # @!attribute [rw] ip_address_type
534
- # The value for the address type must be IPv4.
598
+ # The IP address type that an accelerator supports. For a standard
599
+ # accelerator, the value can be IPV4 or DUAL\_STACK.
535
600
  # @return [String]
536
601
  #
537
602
  # @!attribute [rw] ip_addresses
538
603
  # Optionally, if you've added your own IP address pool to Global
539
- # Accelerator (BYOIP), you can choose IP addresses from your own pool
540
- # to use for the accelerator's static IP addresses when you create an
541
- # accelerator. You can specify one or two addresses, separated by a
542
- # space. Do not include the /32 suffix.
543
- #
544
- # Only one IP address from each of your IP address ranges can be used
545
- # for each accelerator. If you specify only one IP address from your
546
- # IP address range, Global Accelerator assigns a second static IP
547
- # address for the accelerator from the AWS IP address pool.
604
+ # Accelerator (BYOIP), you can choose an IPv4 address from your own
605
+ # pool to use for the accelerator's static IPv4 address when you
606
+ # create an accelerator.
607
+ #
608
+ # After you bring an address range to Amazon Web Services, it appears
609
+ # in your account as an address pool. When you create an accelerator,
610
+ # you can assign one IPv4 address from your range to it. Global
611
+ # Accelerator assigns you a second static IPv4 address from an Amazon
612
+ # IP address range. If you bring two IPv4 address ranges to Amazon Web
613
+ # Services, you can assign one IPv4 address from each range to your
614
+ # accelerator. This restriction is because Global Accelerator assigns
615
+ # each address range to a different network zone, for high
616
+ # availability.
617
+ #
618
+ # You can specify one or two addresses, separated by a space. Do not
619
+ # include the /32 suffix.
548
620
  #
549
621
  # Note that you can't update IP addresses for an existing
550
622
  # accelerator. To change them, you must create a new accelerator with
551
623
  # the new addresses.
552
624
  #
553
- # For more information, see [Bring Your Own IP Addresses (BYOIP)][1]
554
- # in the *AWS Global Accelerator Developer Guide*.
625
+ # For more information, see [Bring your own IP addresses (BYOIP)][1]
626
+ # in the *Global Accelerator Developer Guide*.
555
627
  #
556
628
  #
557
629
  #
@@ -577,8 +649,8 @@ module Aws::GlobalAccelerator
577
649
  # @!attribute [rw] tags
578
650
  # Create tags for an accelerator.
579
651
  #
580
- # For more information, see [Tagging in AWS Global Accelerator][1] in
581
- # the *AWS Global Accelerator Developer Guide*.
652
+ # For more information, see [Tagging in Global Accelerator][1] in the
653
+ # *Global Accelerator Developer Guide*.
582
654
  #
583
655
  #
584
656
  #
@@ -616,7 +688,7 @@ module Aws::GlobalAccelerator
616
688
  #
617
689
  # {
618
690
  # name: "GenericString", # required
619
- # ip_address_type: "IPV4", # accepts IPV4
691
+ # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
620
692
  # ip_addresses: ["IpAddress"],
621
693
  # enabled: false,
622
694
  # idempotency_token: "IdempotencyToken", # required
@@ -635,27 +707,35 @@ module Aws::GlobalAccelerator
635
707
  # @return [String]
636
708
  #
637
709
  # @!attribute [rw] ip_address_type
638
- # The value for the address type must be IPv4.
710
+ # The IP address type that an accelerator supports. For a custom
711
+ # routing accelerator, the value must be IPV4.
639
712
  # @return [String]
640
713
  #
641
714
  # @!attribute [rw] ip_addresses
642
715
  # Optionally, if you've added your own IP address pool to Global
643
- # Accelerator (BYOIP), you can choose IP addresses from your own pool
644
- # to use for the accelerator's static IP addresses when you create an
645
- # accelerator. You can specify one or two addresses, separated by a
646
- # space. Do not include the /32 suffix.
647
- #
648
- # Only one IP address from each of your IP address ranges can be used
649
- # for each accelerator. If you specify only one IP address from your
650
- # IP address range, Global Accelerator assigns a second static IP
651
- # address for the accelerator from the AWS IP address pool.
716
+ # Accelerator (BYOIP), you can choose an IPv4 address from your own
717
+ # pool to use for the accelerator's static IPv4 address when you
718
+ # create an accelerator.
719
+ #
720
+ # After you bring an address range to Amazon Web Services, it appears
721
+ # in your account as an address pool. When you create an accelerator,
722
+ # you can assign one IPv4 address from your range to it. Global
723
+ # Accelerator assigns you a second static IPv4 address from an Amazon
724
+ # IP address range. If you bring two IPv4 address ranges to Amazon Web
725
+ # Services, you can assign one IPv4 address from each range to your
726
+ # accelerator. This restriction is because Global Accelerator assigns
727
+ # each address range to a different network zone, for high
728
+ # availability.
729
+ #
730
+ # You can specify one or two addresses, separated by a space. Do not
731
+ # include the /32 suffix.
652
732
  #
653
733
  # Note that you can't update IP addresses for an existing
654
734
  # accelerator. To change them, you must create a new accelerator with
655
735
  # the new addresses.
656
736
  #
657
737
  # For more information, see [Bring your own IP addresses (BYOIP)][1]
658
- # in the *AWS Global Accelerator Developer Guide*.
738
+ # in the *Global Accelerator Developer Guide*.
659
739
  #
660
740
  #
661
741
  #
@@ -681,8 +761,8 @@ module Aws::GlobalAccelerator
681
761
  # @!attribute [rw] tags
682
762
  # Create tags for an accelerator.
683
763
  #
684
- # For more information, see [Tagging in AWS Global Accelerator][1] in
685
- # the *AWS Global Accelerator Developer Guide*.
764
+ # For more information, see [Tagging in Global Accelerator][1] in the
765
+ # *Global Accelerator Developer Guide*.
686
766
  #
687
767
  #
688
768
  #
@@ -736,8 +816,8 @@ module Aws::GlobalAccelerator
736
816
  # @return [String]
737
817
  #
738
818
  # @!attribute [rw] endpoint_group_region
739
- # The AWS Region where the endpoint group is located. A listener can
740
- # have only one endpoint group in a specific Region.
819
+ # The Amazon Web Services Region where the endpoint group is located.
820
+ # A listener can have only one endpoint group in a specific Region.
741
821
  # @return [String]
742
822
  #
743
823
  # @!attribute [rw] destination_configurations
@@ -872,8 +952,8 @@ module Aws::GlobalAccelerator
872
952
  # @return [String]
873
953
  #
874
954
  # @!attribute [rw] endpoint_group_region
875
- # The AWS Region where the endpoint group is located. A listener can
876
- # have only one endpoint group in a specific Region.
955
+ # The Amazon Web Services Region where the endpoint group is located.
956
+ # A listener can have only one endpoint group in a specific Region.
877
957
  # @return [String]
878
958
  #
879
959
  # @!attribute [rw] endpoint_configurations
@@ -881,8 +961,9 @@ module Aws::GlobalAccelerator
881
961
  # @return [Array<Types::EndpointConfiguration>]
882
962
  #
883
963
  # @!attribute [rw] traffic_dial_percentage
884
- # The percentage of traffic to send to an AWS Region. Additional
885
- # traffic is distributed to other endpoint groups for this listener.
964
+ # The percentage of traffic to send to an Amazon Web Services Region.
965
+ # Additional traffic is distributed to other endpoint groups for this
966
+ # listener.
886
967
  #
887
968
  # Use this action to increase (dial up) or decrease (dial down)
888
969
  # traffic to a specific Region. The percentage is applied to the
@@ -893,7 +974,7 @@ module Aws::GlobalAccelerator
893
974
  # @return [Float]
894
975
  #
895
976
  # @!attribute [rw] health_check_port
896
- # The port that AWS Global Accelerator uses to check the health of
977
+ # The port that Global Accelerator uses to check the health of
897
978
  # endpoints that are part of this endpoint group. The default port is
898
979
  # the listener port that this endpoint group is associated with. If
899
980
  # listener port is a list of ports, Global Accelerator uses the first
@@ -901,7 +982,7 @@ module Aws::GlobalAccelerator
901
982
  # @return [Integer]
902
983
  #
903
984
  # @!attribute [rw] health_check_protocol
904
- # The protocol that AWS Global Accelerator uses to check the health of
985
+ # The protocol that Global Accelerator uses to check the health of
905
986
  # endpoints that are part of this endpoint group. The default value is
906
987
  # TCP.
907
988
  # @return [String]
@@ -938,8 +1019,8 @@ module Aws::GlobalAccelerator
938
1019
  # 80 and 443, but your accelerator routes that traffic to ports 1080
939
1020
  # and 1443, respectively, on the endpoints.
940
1021
  #
941
- # For more information, see [ Port overrides][1] in the *AWS Global
942
- # Accelerator Developer Guide*.
1022
+ # For more information, see [ Overriding listener ports][1] in the
1023
+ # *Global Accelerator Developer Guide*.
943
1024
  #
944
1025
  #
945
1026
  #
@@ -1012,7 +1093,7 @@ module Aws::GlobalAccelerator
1012
1093
  # control over whether to always route each client to the same
1013
1094
  # specific endpoint.
1014
1095
  #
1015
- # AWS Global Accelerator uses a consistent-flow hashing algorithm to
1096
+ # Global Accelerator uses a consistent-flow hashing algorithm to
1016
1097
  # choose the optimal endpoint for a connection. If client affinity is
1017
1098
  # `NONE`, Global Accelerator uses the "five-tuple" (5-tuple)
1018
1099
  # properties—source IP address, source port, destination IP address,
@@ -1075,7 +1156,8 @@ module Aws::GlobalAccelerator
1075
1156
  # @return [String]
1076
1157
  #
1077
1158
  # @!attribute [rw] ip_address_type
1078
- # The value for the address type must be IPv4.
1159
+ # The IP address type that an accelerator supports. For a custom
1160
+ # routing accelerator, the value must be IPV4.
1079
1161
  # @return [String]
1080
1162
  #
1081
1163
  # @!attribute [rw] enabled
@@ -1093,20 +1175,25 @@ module Aws::GlobalAccelerator
1093
1175
  #
1094
1176
  # @!attribute [rw] dns_name
1095
1177
  # The Domain Name System (DNS) name that Global Accelerator creates
1096
- # that points to your accelerator's static IP addresses.
1178
+ # that points to an accelerator's static IPv4 addresses.
1097
1179
  #
1098
1180
  # The naming convention for the DNS name is the following: A lowercase
1099
1181
  # letter a, followed by a 16-bit random hex string, followed by
1100
1182
  # .awsglobalaccelerator.com. For example:
1101
1183
  # a1234567890abcdef.awsglobalaccelerator.com.
1102
1184
  #
1185
+ # If you have a dual-stack accelerator, you also have a second DNS
1186
+ # name, DualStackDnsName, that points to both the A record and the
1187
+ # AAAA record for all four static addresses for the accelerator (two
1188
+ # IPv4 addresses and two IPv6 addresses).
1189
+ #
1103
1190
  # For more information about the default DNS name, see [ Support for
1104
- # DNS Addressing in Global Accelerator][1] in the *AWS Global
1105
- # Accelerator Developer Guide*.
1191
+ # DNS Addressing in Global Accelerator][1] in the *Global Accelerator
1192
+ # Developer Guide*.
1106
1193
  #
1107
1194
  #
1108
1195
  #
1109
- # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/about-accelerators.html#about-accelerators.dns-addressing
1196
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/dns-addressing-custom-domains.dns-addressing.html
1110
1197
  # @return [String]
1111
1198
  #
1112
1199
  # @!attribute [rw] status
@@ -1144,8 +1231,8 @@ module Aws::GlobalAccelerator
1144
1231
  # If the value is true, `FlowLogsS3Bucket` and `FlowLogsS3Prefix` must
1145
1232
  # be specified.
1146
1233
  #
1147
- # For more information, see [Flow Logs][1] in the *AWS Global
1148
- # Accelerator Developer Guide*.
1234
+ # For more information, see [Flow logs][1] in the *Global Accelerator
1235
+ # Developer Guide*.
1149
1236
  #
1150
1237
  #
1151
1238
  #
@@ -1155,8 +1242,8 @@ module Aws::GlobalAccelerator
1155
1242
  # @!attribute [rw] flow_logs_s3_bucket
1156
1243
  # The name of the Amazon S3 bucket for the flow logs. Attribute is
1157
1244
  # required if `FlowLogsEnabled` is `true`. The bucket must exist and
1158
- # have a bucket policy that grants AWS Global Accelerator permission
1159
- # to write to the bucket.
1245
+ # have a bucket policy that grants Global Accelerator permission to
1246
+ # write to the bucket.
1160
1247
  # @return [String]
1161
1248
  #
1162
1249
  # @!attribute [rw] flow_logs_s3_prefix
@@ -1289,15 +1376,15 @@ module Aws::GlobalAccelerator
1289
1376
  end
1290
1377
 
1291
1378
  # A complex type for the endpoint group for a custom routing
1292
- # accelerator. An AWS Region can have only one endpoint group for a
1293
- # specific listener.
1379
+ # accelerator. An Amazon Web Services Region can have only one endpoint
1380
+ # group for a specific listener.
1294
1381
  #
1295
1382
  # @!attribute [rw] endpoint_group_arn
1296
1383
  # The Amazon Resource Name (ARN) of the endpoint group.
1297
1384
  # @return [String]
1298
1385
  #
1299
1386
  # @!attribute [rw] endpoint_group_region
1300
- # The AWS Region where the endpoint group is located.
1387
+ # The Amazon Web Services Region where the endpoint group is located.
1301
1388
  # @return [String]
1302
1389
  #
1303
1390
  # @!attribute [rw] destination_descriptions
@@ -1831,7 +1918,7 @@ module Aws::GlobalAccelerator
1831
1918
  # @return [String]
1832
1919
  #
1833
1920
  # @!attribute [rw] endpoint_group_region
1834
- # The AWS Region for the endpoint group.
1921
+ # The Amazon Web Services Region for the endpoint group.
1835
1922
  # @return [String]
1836
1923
  #
1837
1924
  # @!attribute [rw] destination_socket_address
@@ -1840,7 +1927,8 @@ module Aws::GlobalAccelerator
1840
1927
  # @return [Types::SocketAddress]
1841
1928
  #
1842
1929
  # @!attribute [rw] ip_address_type
1843
- # The IP address type, which must be IPv4.
1930
+ # The IP address type that an accelerator supports. For a custom
1931
+ # routing accelerator, the value must be IPV4.
1844
1932
  # @return [String]
1845
1933
  #
1846
1934
  # @!attribute [rw] destination_traffic_state
@@ -1903,14 +1991,13 @@ module Aws::GlobalAccelerator
1903
1991
  #
1904
1992
  # @!attribute [rw] weight
1905
1993
  # The weight associated with the endpoint. When you add weights to
1906
- # endpoints, you configure AWS Global Accelerator to route traffic
1907
- # based on proportions that you specify. For example, you might
1908
- # specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is
1909
- # that 4/20 of your traffic, on average, is routed to the first
1910
- # endpoint, 5/20 is routed both to the second and third endpoints, and
1911
- # 6/20 is routed to the last endpoint. For more information, see
1912
- # [Endpoint Weights][1] in the *AWS Global Accelerator Developer
1913
- # Guide*.
1994
+ # endpoints, you configure Global Accelerator to route traffic based
1995
+ # on proportions that you specify. For example, you might specify
1996
+ # endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20
1997
+ # of your traffic, on average, is routed to the first endpoint, 5/20
1998
+ # is routed both to the second and third endpoints, and 6/20 is routed
1999
+ # to the last endpoint. For more information, see [Endpoint
2000
+ # weights][1] in the *Global Accelerator Developer Guide*.
1914
2001
  #
1915
2002
  #
1916
2003
  #
@@ -1919,17 +2006,19 @@ module Aws::GlobalAccelerator
1919
2006
  #
1920
2007
  # @!attribute [rw] client_ip_preservation_enabled
1921
2008
  # Indicates whether client IP address preservation is enabled for an
1922
- # Application Load Balancer endpoint. The value is true or false. The
1923
- # default value is true for new accelerators.
2009
+ # endpoint. The value is true or false. The default value is true for
2010
+ # new accelerators.
1924
2011
  #
1925
2012
  # If the value is set to true, the client's IP address is preserved
1926
2013
  # in the `X-Forwarded-For` request header as traffic travels to
1927
- # applications on the Application Load Balancer endpoint fronted by
1928
- # the accelerator.
2014
+ # applications on the endpoint fronted by the accelerator.
2015
+ #
2016
+ # Client IP address preservation is supported, in specific Amazon Web
2017
+ # Services Regions, for endpoints that are Application Load Balancers
2018
+ # and Amazon EC2 instances.
1929
2019
  #
1930
- # For more information, see [ Preserve Client IP Addresses in AWS
1931
- # Global Accelerator][1] in the *AWS Global Accelerator Developer
1932
- # Guide*.
2020
+ # For more information, see [ Preserve client IP addresses in Global
2021
+ # Accelerator][1] in the *Global Accelerator Developer Guide*.
1933
2022
  #
1934
2023
  #
1935
2024
  #
@@ -1962,14 +2051,13 @@ module Aws::GlobalAccelerator
1962
2051
  #
1963
2052
  # @!attribute [rw] weight
1964
2053
  # The weight associated with the endpoint. When you add weights to
1965
- # endpoints, you configure AWS Global Accelerator to route traffic
1966
- # based on proportions that you specify. For example, you might
1967
- # specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is
1968
- # that 4/20 of your traffic, on average, is routed to the first
1969
- # endpoint, 5/20 is routed both to the second and third endpoints, and
1970
- # 6/20 is routed to the last endpoint. For more information, see
1971
- # [Endpoint Weights][1] in the *AWS Global Accelerator Developer
1972
- # Guide*.
2054
+ # endpoints, you configure Global Accelerator to route traffic based
2055
+ # on proportions that you specify. For example, you might specify
2056
+ # endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20
2057
+ # of your traffic, on average, is routed to the first endpoint, 5/20
2058
+ # is routed both to the second and third endpoints, and 6/20 is routed
2059
+ # to the last endpoint. For more information, see [Endpoint
2060
+ # weights][1] in the *Global Accelerator Developer Guide*.
1973
2061
  #
1974
2062
  #
1975
2063
  #
@@ -1986,21 +2074,23 @@ module Aws::GlobalAccelerator
1986
2074
  #
1987
2075
  # @!attribute [rw] client_ip_preservation_enabled
1988
2076
  # Indicates whether client IP address preservation is enabled for an
1989
- # Application Load Balancer endpoint. The value is true or false. The
1990
- # default value is true for new accelerators.
2077
+ # endpoint. The value is true or false. The default value is true for
2078
+ # new accelerators.
1991
2079
  #
1992
2080
  # If the value is set to true, the client's IP address is preserved
1993
2081
  # in the `X-Forwarded-For` request header as traffic travels to
1994
- # applications on the Application Load Balancer endpoint fronted by
1995
- # the accelerator.
2082
+ # applications on the endpoint fronted by the accelerator.
2083
+ #
2084
+ # Client IP address preservation is supported, in specific Amazon Web
2085
+ # Services Regions, for endpoints that are Application Load Balancers
2086
+ # and Amazon EC2 instances.
1996
2087
  #
1997
- # For more information, see [ Viewing Client IP Addresses in AWS
1998
- # Global Accelerator][1] in the *AWS Global Accelerator Developer
1999
- # Guide*.
2088
+ # For more information, see [ Preserve client IP addresses in Global
2089
+ # Accelerator][1] in the *Global Accelerator Developer Guide*.
2000
2090
  #
2001
2091
  #
2002
2092
  #
2003
- # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/introduction-how-it-works-client-ip.html
2093
+ # [1]: https://docs.aws.amazon.com/global-accelerator/latest/dg/preserve-client-ip-address.html
2004
2094
  # @return [Boolean]
2005
2095
  #
2006
2096
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/EndpointDescription AWS API Documentation
@@ -2015,15 +2105,15 @@ module Aws::GlobalAccelerator
2015
2105
  include Aws::Structure
2016
2106
  end
2017
2107
 
2018
- # A complex type for the endpoint group. An AWS Region can have only one
2019
- # endpoint group for a specific listener.
2108
+ # A complex type for the endpoint group. An Amazon Web Services Region
2109
+ # can have only one endpoint group for a specific listener.
2020
2110
  #
2021
2111
  # @!attribute [rw] endpoint_group_arn
2022
2112
  # The Amazon Resource Name (ARN) of the endpoint group.
2023
2113
  # @return [String]
2024
2114
  #
2025
2115
  # @!attribute [rw] endpoint_group_region
2026
- # The AWS Region where the endpoint group is located.
2116
+ # The Amazon Web Services Region where the endpoint group is located.
2027
2117
  # @return [String]
2028
2118
  #
2029
2119
  # @!attribute [rw] endpoint_descriptions
@@ -2031,8 +2121,9 @@ module Aws::GlobalAccelerator
2031
2121
  # @return [Array<Types::EndpointDescription>]
2032
2122
  #
2033
2123
  # @!attribute [rw] traffic_dial_percentage
2034
- # The percentage of traffic to send to an AWS Region. Additional
2035
- # traffic is distributed to other endpoint groups for this listener.
2124
+ # The percentage of traffic to send to an Amazon Web Services Region.
2125
+ # Additional traffic is distributed to other endpoint groups for this
2126
+ # listener.
2036
2127
  #
2037
2128
  # Use this action to increase (dial up) or decrease (dial down)
2038
2129
  # traffic to a specific Region. The percentage is applied to the
@@ -2076,7 +2167,7 @@ module Aws::GlobalAccelerator
2076
2167
  #
2077
2168
  # @!attribute [rw] port_overrides
2078
2169
  # Allows you to override the destination ports used to route traffic
2079
- # to an endpoint. Using a port override lets you to map a list of
2170
+ # to an endpoint. Using a port override lets you map a list of
2080
2171
  # external destination ports (that your users send traffic to) to a
2081
2172
  # list of internal destination ports that you want an application
2082
2173
  # endpoint to receive traffic on.
@@ -2152,7 +2243,7 @@ module Aws::GlobalAccelerator
2152
2243
  include Aws::Structure
2153
2244
  end
2154
2245
 
2155
- # There was an internal error for AWS Global Accelerator.
2246
+ # There was an internal error for Global Accelerator.
2156
2247
  #
2157
2248
  # @!attribute [rw] message
2158
2249
  # @return [String]
@@ -2208,7 +2299,7 @@ module Aws::GlobalAccelerator
2208
2299
  # A complex type for the set of IP addresses for an accelerator.
2209
2300
  #
2210
2301
  # @!attribute [rw] ip_family
2211
- # The types of IP addresses included in this IP set.
2302
+ # IpFamily is deprecated and has been replaced by IpAddressFamily.
2212
2303
  # @return [String]
2213
2304
  #
2214
2305
  # @!attribute [rw] ip_addresses
@@ -2216,16 +2307,21 @@ module Aws::GlobalAccelerator
2216
2307
  # can have a maximum of two IP addresses.
2217
2308
  # @return [Array<String>]
2218
2309
  #
2310
+ # @!attribute [rw] ip_address_family
2311
+ # The types of IP addresses included in this IP set.
2312
+ # @return [String]
2313
+ #
2219
2314
  # @see http://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/IpSet AWS API Documentation
2220
2315
  #
2221
2316
  class IpSet < Struct.new(
2222
2317
  :ip_family,
2223
- :ip_addresses)
2318
+ :ip_addresses,
2319
+ :ip_address_family)
2224
2320
  SENSITIVE = []
2225
2321
  include Aws::Structure
2226
2322
  end
2227
2323
 
2228
- # Processing your request would cause you to exceed an AWS Global
2324
+ # Processing your request would cause you to exceed an Global
2229
2325
  # Accelerator limit.
2230
2326
  #
2231
2327
  # @!attribute [rw] message
@@ -2753,7 +2849,7 @@ module Aws::GlobalAccelerator
2753
2849
  # control over whether to always route each client to the same
2754
2850
  # specific endpoint.
2755
2851
  #
2756
- # AWS Global Accelerator uses a consistent-flow hashing algorithm to
2852
+ # Global Accelerator uses a consistent-flow hashing algorithm to
2757
2853
  # choose the optimal endpoint for a connection. If client affinity is
2758
2854
  # `NONE`, Global Accelerator uses the "five-tuple" (5-tuple)
2759
2855
  # properties—source IP address, source port, destination IP address,
@@ -2798,7 +2894,7 @@ module Aws::GlobalAccelerator
2798
2894
 
2799
2895
  # Returns the ports and associated IP addresses and ports of Amazon EC2
2800
2896
  # instances in your virtual private cloud (VPC) subnets. Custom routing
2801
- # is a port mapping protocol in AWS Global Accelerator that statically
2897
+ # is a port mapping protocol in Global Accelerator that statically
2802
2898
  # associates port ranges with VPC subnets, which allows Global
2803
2899
  # Accelerator to route to specific instances and ports within one or
2804
2900
  # more subnets.
@@ -2849,8 +2945,8 @@ module Aws::GlobalAccelerator
2849
2945
  # 443, but your accelerator routes that traffic to ports 1080 and 1443,
2850
2946
  # respectively, on the endpoints.
2851
2947
  #
2852
- # For more information, see [ Port overrides][1] in the *AWS Global
2853
- # Accelerator Developer Guide*.
2948
+ # For more information, see [ Overriding listener ports][1] in the
2949
+ # *Global Accelerator Developer Guide*.
2854
2950
  #
2855
2951
  #
2856
2952
  #
@@ -3116,8 +3212,8 @@ module Aws::GlobalAccelerator
3116
3212
  # the value is true, `FlowLogsS3Bucket` and `FlowLogsS3Prefix` must be
3117
3213
  # specified.
3118
3214
  #
3119
- # For more information, see [Flow Logs][1] in the *AWS Global
3120
- # Accelerator Developer Guide*.
3215
+ # For more information, see [Flow Logs][1] in the *Global Accelerator
3216
+ # Developer Guide*.
3121
3217
  #
3122
3218
  #
3123
3219
  #
@@ -3127,18 +3223,17 @@ module Aws::GlobalAccelerator
3127
3223
  # @!attribute [rw] flow_logs_s3_bucket
3128
3224
  # The name of the Amazon S3 bucket for the flow logs. Attribute is
3129
3225
  # required if `FlowLogsEnabled` is `true`. The bucket must exist and
3130
- # have a bucket policy that grants AWS Global Accelerator permission
3131
- # to write to the bucket.
3226
+ # have a bucket policy that grants Global Accelerator permission to
3227
+ # write to the bucket.
3132
3228
  # @return [String]
3133
3229
  #
3134
3230
  # @!attribute [rw] flow_logs_s3_prefix
3135
3231
  # Update the prefix for the location in the Amazon S3 bucket for the
3136
3232
  # flow logs. Attribute is required if `FlowLogsEnabled` is `true`.
3137
3233
  #
3138
- # If you don’t specify a prefix, the flow logs are stored in the root
3139
- # of the bucket. If you specify slash (/) for the S3 bucket prefix,
3140
- # the log file bucket folder structure will include a double slash
3141
- # (//), like the following:
3234
+ # If you specify slash (/) for the S3 bucket prefix, the log file
3235
+ # bucket folder structure will include a double slash (//), like the
3236
+ # following:
3142
3237
  #
3143
3238
  # s3-bucket\_name//AWSLogs/aws\_account\_id
3144
3239
  # @return [String]
@@ -3172,7 +3267,7 @@ module Aws::GlobalAccelerator
3172
3267
  # {
3173
3268
  # accelerator_arn: "GenericString", # required
3174
3269
  # name: "GenericString",
3175
- # ip_address_type: "IPV4", # accepts IPV4
3270
+ # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
3176
3271
  # enabled: false,
3177
3272
  # }
3178
3273
  #
@@ -3181,13 +3276,14 @@ module Aws::GlobalAccelerator
3181
3276
  # @return [String]
3182
3277
  #
3183
3278
  # @!attribute [rw] name
3184
- # The name of the accelerator. The name can have a maximum of 32
3185
- # characters, must contain only alphanumeric characters or hyphens
3186
- # (-), and must not begin or end with a hyphen.
3279
+ # The name of the accelerator. The name can have a maximum of 64
3280
+ # characters, must contain only alphanumeric characters, periods (.),
3281
+ # or hyphens (-), and must not begin or end with a hyphen or period.
3187
3282
  # @return [String]
3188
3283
  #
3189
3284
  # @!attribute [rw] ip_address_type
3190
- # The IP address type, which must be IPv4.
3285
+ # The IP address type that an accelerator supports. For a standard
3286
+ # accelerator, the value can be IPV4 or DUAL\_STACK.
3191
3287
  # @return [String]
3192
3288
  #
3193
3289
  # @!attribute [rw] enabled
@@ -3241,8 +3337,8 @@ module Aws::GlobalAccelerator
3241
3337
  # the value is true, `FlowLogsS3Bucket` and `FlowLogsS3Prefix` must be
3242
3338
  # specified.
3243
3339
  #
3244
- # For more information, see [Flow Logs][1] in the *AWS Global
3245
- # Accelerator Developer Guide*.
3340
+ # For more information, see [Flow logs][1] in the *Global Accelerator
3341
+ # Developer Guide*.
3246
3342
  #
3247
3343
  #
3248
3344
  #
@@ -3252,8 +3348,8 @@ module Aws::GlobalAccelerator
3252
3348
  # @!attribute [rw] flow_logs_s3_bucket
3253
3349
  # The name of the Amazon S3 bucket for the flow logs. Attribute is
3254
3350
  # required if `FlowLogsEnabled` is `true`. The bucket must exist and
3255
- # have a bucket policy that grants AWS Global Accelerator permission
3256
- # to write to the bucket.
3351
+ # have a bucket policy that grants Global Accelerator permission to
3352
+ # write to the bucket.
3257
3353
  # @return [String]
3258
3354
  #
3259
3355
  # @!attribute [rw] flow_logs_s3_prefix
@@ -3297,7 +3393,7 @@ module Aws::GlobalAccelerator
3297
3393
  # {
3298
3394
  # accelerator_arn: "GenericString", # required
3299
3395
  # name: "GenericString",
3300
- # ip_address_type: "IPV4", # accepts IPV4
3396
+ # ip_address_type: "IPV4", # accepts IPV4, DUAL_STACK
3301
3397
  # enabled: false,
3302
3398
  # }
3303
3399
  #
@@ -3306,13 +3402,14 @@ module Aws::GlobalAccelerator
3306
3402
  # @return [String]
3307
3403
  #
3308
3404
  # @!attribute [rw] name
3309
- # The name of the accelerator. The name can have a maximum of 32
3310
- # characters, must contain only alphanumeric characters or hyphens
3311
- # (-), and must not begin or end with a hyphen.
3405
+ # The name of the accelerator. The name can have a maximum of 64
3406
+ # characters, must contain only alphanumeric characters, periods (.),
3407
+ # or hyphens (-), and must not begin or end with a hyphen or period.
3312
3408
  # @return [String]
3313
3409
  #
3314
3410
  # @!attribute [rw] ip_address_type
3315
- # The value for the address type must be IPv4.
3411
+ # The IP address type that an accelerator supports. For a custom
3412
+ # routing accelerator, the value must be IPV4.
3316
3413
  # @return [String]
3317
3414
  #
3318
3415
  # @!attribute [rw] enabled
@@ -3434,8 +3531,9 @@ module Aws::GlobalAccelerator
3434
3531
  # @return [Array<Types::EndpointConfiguration>]
3435
3532
  #
3436
3533
  # @!attribute [rw] traffic_dial_percentage
3437
- # The percentage of traffic to send to an AWS Region. Additional
3438
- # traffic is distributed to other endpoint groups for this listener.
3534
+ # The percentage of traffic to send to an Amazon Web Services Region.
3535
+ # Additional traffic is distributed to other endpoint groups for this
3536
+ # listener.
3439
3537
  #
3440
3538
  # Use this action to increase (dial up) or decrease (dial down)
3441
3539
  # traffic to a specific Region. The percentage is applied to the
@@ -3446,7 +3544,7 @@ module Aws::GlobalAccelerator
3446
3544
  # @return [Float]
3447
3545
  #
3448
3546
  # @!attribute [rw] health_check_port
3449
- # The port that AWS Global Accelerator uses to check the health of
3547
+ # The port that Global Accelerator uses to check the health of
3450
3548
  # endpoints that are part of this endpoint group. The default port is
3451
3549
  # the listener port that this endpoint group is associated with. If
3452
3550
  # the listener port is a list of ports, Global Accelerator uses the
@@ -3454,7 +3552,7 @@ module Aws::GlobalAccelerator
3454
3552
  # @return [Integer]
3455
3553
  #
3456
3554
  # @!attribute [rw] health_check_protocol
3457
- # The protocol that AWS Global Accelerator uses to check the health of
3555
+ # The protocol that Global Accelerator uses to check the health of
3458
3556
  # endpoints that are part of this endpoint group. The default value is
3459
3557
  # TCP.
3460
3558
  # @return [String]
@@ -3483,8 +3581,8 @@ module Aws::GlobalAccelerator
3483
3581
  # 80 and 443, but your accelerator routes that traffic to ports 1080
3484
3582
  # and 1443, respectively, on the endpoints.
3485
3583
  #
3486
- # For more information, see [ Port overrides][1] in the *AWS Global
3487
- # Accelerator Developer Guide*.
3584
+ # For more information, see [ Overriding listener ports][1] in the
3585
+ # *Global Accelerator Developer Guide*.
3488
3586
  #
3489
3587
  #
3490
3588
  #
@@ -3555,7 +3653,7 @@ module Aws::GlobalAccelerator
3555
3653
  # control over whether to always route each client to the same
3556
3654
  # specific endpoint.
3557
3655
  #
3558
- # AWS Global Accelerator uses a consistent-flow hashing algorithm to
3656
+ # Global Accelerator uses a consistent-flow hashing algorithm to
3559
3657
  # choose the optimal endpoint for a connection. If client affinity is
3560
3658
  # `NONE`, Global Accelerator uses the "five-tuple" (5-tuple)
3561
3659
  # properties—source IP address, source port, destination IP address,